Uniéndose a la red principal de Ergo desde el principio
28 de junio de 2019

Uniéndose a la red principal de Ergo desde el principio
Para unirte a la red desde su inicio y competir por minar el bloque génesis, necesitas seguir los pasos descritos a continuación. Si no vas a participar en la minería de Ergo y solo quieres configurar un nodo completo, necesitas seguir los pasos 3 y 5.
Preparativos
1. Construir software de minería
Consulta la guía primero.
Construye un minero de acuerdo con las instrucciones de su readme (para Ubuntu) o usando el manual de Windows.
Intenta ejecutarlo como ./auto.out config.json con la configuración de prueba:
{
"mnemonic": "noise peasant subway frozen illegal pretty oak agent train valid wash title burst column yard decide move coin gas asset pretty hire happy fuel",
"node": "http://159.203.36.162:9052",
"keepPrehash": true
}
y ver algo como:
2019-06-27 14:44:58,626 INFO [main thread] Using 1 GPU devices
2019-06-27 14:44:58,626 INFO [main thread] Using configuration file mine162.json
2019-06-27 14:44:58,628 INFO [main thread] Block getting URL:
http://159.203.36.162:9052/mining/candidate
2019-06-27 14:44:58,628 INFO [main thread] Solution posting URL:
http://159.203.36.162:9052/mining/solution
2019-06-27 14:44:58,629 INFO [main thread] Generated public key:
pk = 0x03 F5214F2F6D87C714 4A2E12F8D4C4E110 1C59FF7D9AEABC11 77C4CB50FA8497E7
2019-06-27 14:44:58,714 INFO [main thread] Got new block in main thread, block data: {
"MSG" : "3637B40440681781F92EDC92B33E623330F05705446168952CBD3720BA922442",
"B" : 3462030106355215694294694818737961234095984491840283822105474632310,
"PK" : "03F5214F2F6D87C7144A2E12F8D4C4E1101C59FF7D9AEABC1177C4CB50FA8497E7"
}
2019-06-27 14:44:58,956 INFO [GPU 0 miner] GPU 0 allocating memory
2019-06-27 14:44:58,964 INFO [GPU 0 miner] Preparing unfinalized hashes on GPU 0
2019-06-27 14:45:13,443 INFO [GPU 0 miner] GPU 0 read new block data
2019-06-27 14:48:02,298 INFO [main thread] Average hashrates: GPU0 24.8537 MH/s Total 24.8537 MH/s
Las notificaciones anteriores muestran que tu minero está construido correctamente.
2. Generar frase mnemotécnica para minería
Ejecuta ./auto.out -G para generar una nueva frase mnemotécnica si no tienes una.
$ ./auto.out -G
2019-06-28 12:08:32,915 INFO [main thread] !!!Generada nueva mnemotécnica, colócala en tu archivo config.json!!!
job great stage urge elite purity surprise any cram matrix typical table panel honey curious enlist fault matrix
!!!Generada nueva mnemotécnica, colócala en tu archivo config.json!!!
2019-06-28 12:08:32,918 INFO [main thread] Generated public key:
pk = 0x03 61F8098779E5EC8C 2A851E3EF57C471E 9A6803F60666E93E EB0BDD67411439D0
En el ejemplo anterior, tu frase mnemotécnica generada es job great stage urge elite purity surprise any cram matrix typical table panel honey curious enlist fault matrix mientras que tu clave pública es 0361F8098779E5EC8C2A851E3EF57C471E9A6803F60666E93EEB0BDD67411439D0.
Guarda tu frase mnemotécnica (por ejemplo, escribiéndola en un papel) y mantenla en secreto en todo momento, cualquier persona que tenga acceso a ella podrá robar tus fondos. Escribe tu clave pública, la necesitarás en los siguientes pasos.
3. Configura y comienza tu minero
Crea un archivo de configuración settings.json con el siguiente contenido (no olvides reemplazar las secciones en los corchetes <>):
{
"mnemonic": "<mnemonic generated at step 2>",
"node": "http://<ip address of your node>:9053",
"keepPrehash": true
}
y ejecuta un minero como ./auto.out settings.json. Debería inicializarse y comenzar a solicitar un nodo para el candidato a bloque.
2019-06-27 15:14:02,267 INFO [main thread] Using 1 GPU devices
2019-06-27 15:14:02,267 INFO [main thread] Using configuration file mainnet-conf.json
2019-06-27 15:14:02,269 INFO [main thread] Block getting URL:
http://<ip address of your node>:9053/mining/candidate
2019-06-27 15:14:02,269 INFO [main thread] Solution posting URL:
http://<ip address of your node>:9053/mining/solution
2019-06-27 15:14:02,269 INFO [main thread] Generated public key:
pk = 0x02 F611D5F6AAB70C05 4A530C6420395B3C 4521642DC7125A93 49AAA2D9BB89D7AF
2019-06-28 12:21:36,035 ERROR [main thread] CURL: Couldn't connect to server
2019-06-28 12:21:36,835 INFO [main thread] Waiting for block data to be published by node...
2019-06-28 12:21:36,876 ERROR [main thread] CURL: Couldn't connect to server
2019-06-28 12:21:37,676 INFO [main thread] Waiting for block data to be published by node...
2019-06-28 12:21:37,718 ERROR [main thread] CURL: Couldn't connect to server
No se requieren más acciones con el minero.
4. Configura y ejecuta tu nodo completo
Consulta la guía primero.
Crea un archivo de configuración settings.conf con el siguiente contenido (no olvides reemplazar las secciones en los corchetes <>):
ergo {
node {
mining = true
miningPubKeyHex = "<your public key from step 2>"
}
chain {
initialDifficultyHex="011765000000"
}
}
scorex {
network {
nodeName = "<some name to identify your node>"
}
restApi {
# you may wish to configure an apiKeyHash to use your wallet. Check https://ergoplatform.org/blog/2019_06_04_wallet-documentation/ for wallet documentation.
apiKeyHash = "1111"
}
}
Descarga la última versión de mainnet desde aquí y ejecútala como nohup java -jar -Xmx3G -Dlogback.stdout.level=DEBUG ergo-3.0.1.jar --mainnet -c settings.conf y si ves algo similar a lo siguiente:
17:02:11.449 INFO [main] o.e.settings.ErgoSettings$ - Running in mainnet network mode
17:02:12.262 INFO [main] org.ergoplatform.ErgoApp - Entering coordinated network bootstrap procedure ..
17:02:12.933 INFO [main] o.e.BootstrapController - Wrong response format, retrying in 10s
17:02:22.933 INFO [main] o.e.BootstrapController - Wrong response format, retrying in 10s
Tu nodo ya está configurado correctamente y no se requieren más acciones con él.
5. Espera el lanzamiento de la mainnet
Después de estos pasos, estás listo para participar en la minería de Ergo y solo debes esperar. Tu minero está esperando el candidato a bloque de tu nodo, mientras que tu nodo está esperando la prueba de no premine que será transmitida por el Equipo de Desarrollo de Ergo de acuerdo con el cronograma de lanzamiento de la red principal. La prueba de no premine contendrá titulares de los medios (The Guardian, Vedomosti, Xinhua), así como los últimos identificadores de bloques de Bitcoin y Ethereum. Cuando llegue el momento del lanzamiento, distribuiremos la prueba de no premine y comenzará la minería.
Para asegurarte de que tu nodo está minando, puedes verificar el registro de tu nodo. Debería dejar de escribir registros de BootstrapController y escribir Boot settings received. Starting the node, por lo que el archivo de registros se verá así:
17:21:39.417 INFO [main] o.e.BootstrapController - Wrong response format, retrying in 10s
17:21:49.437 INFO [main] o.e.BootstrapController - Wrong response format, retrying in 10s
17:21:59.500 INFO [main] org.ergoplatform.ErgoApp - Boot settings received. Starting the node ..
17:21:59.554 INFO [ctor.default-dispatcher-3] s.c.n.NetworkController - Declared address: None
17:21:59.558 INFO [ctor.default-dispatcher-3] s.c.n.NetworkController - Registering handlers for List((1,GetPeers message), (2,Peers message))
17:21:59.559 INFO [ctor.default-dispatcher-3] s.c.n.NetworkController - Successfully bound to the port 9030
17:21:59.565 INFO [ctor.default-dispatcher-4] o.e.n.state.ErgoState$ - Generating genesis UTXO state
17:21:59.568 INFO [ctor.default-dispatcher-2] o.e.local.ErgoMiner - Trying to use key from wallet for mining
17:21:59.583 INFO [ctor.default-dispatcher-3] s.c.u.NetworkTimeProvider - New offset adjusted: 2
17:21:59.585 WARN [ctor.default-dispatcher-3] o.e.n.ErgoReadersHolder - Got GetReaders request in state (None,None,None,None)
17:21:59.598 INFO [ctor.default-dispatcher-2] s.c.n.NetworkController - Registering handlers for List((55,Inv), (22,RequestModifier), (33,Modifier), (65,Sync))
17:21:59.729 INFO [ctor.default-dispatcher-4] s.c.a.a.b.VersionedIODBAVLStorage - Update storage to version ByteArrayWrapper[6813BCA7232C6E156FB6229ECF165D157640A8576A5B320506E4C1B66011253402]: 14 elements to insert, 1 elements to remove
17:21:59.846 INFO [ctor.default-dispatcher-4] o.e.n.state.ErgoState$ - Genesis UTXO state generated with hex digest 6813bca7232c6e156fb6229ecf165d157640a8576a5b320506e4c1b66011253402
Al mismo tiempo, tu minero debería escribir algo como:
2019-06-28 12:21:36,035 ERROR [main thread] CURL: Couldn't connect to server
2019-06-28 12:21:36,835 INFO [main thread] Waiting for block data to be published by node...
2019-06-28 12:21:36,876 ERROR [main thread] CURL: Couldn't connect to server
2019-06-28 12:21:37,676 INFO [main thread] Waiting for block data to be published by node...
2019-06-27 15:26:20,328 INFO [main thread] Got new block in main thread, block data: {
"MSG" : "0777078E22BB64C771DE8A8D3B1E454847A91024D98AB86949091C8019FA7453",
"B" : 964934076977634961863091541739065898773646368992290869855043026179318012,
"PK" : "02F611D5F6AAB70C054A530C6420395B3C4521642DC7125A9349AAA2D9BB89D7AF"
}
2019-06-27 14:44:58,956 INFO [GPU 0 miner] GPU 0 allocating memory
2019-06-27 14:44:58,964 INFO [GPU 0 miner] Preparing unfinalized hashes on GPU 0
2019-06-27 14:45:13,443 INFO [GPU 0 miner] GPU 0 read new block data
2019-06-27 14:48:02,298 INFO [main thread] Average hashrates: GPU0 24.8537 MH/s Total 24.8537 MH/s
2019-06-27 15:27:11,033 INFO [GPU 0 miner] GPU 0 found and trying to POST a solution:
Share post
13 de agosto de 2025
12 de agosto de 2025
9 de julio de 2025
12 de mayo de 2025

9 de febrero de 2022

8 de febrero de 2022

5 de febrero de 2022

1 de febrero de 2022

27 de enero de 2022

20 de enero de 2022

18 de enero de 2022

6 de enero de 2022

4 de enero de 2022

30 de diciembre de 2021

28 de diciembre de 2021

23 de diciembre de 2021








