You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 3, 2023. It is now read-only.
In Eudico Garden we have automations in place to add new nodes in runtime, but not to add new miners, this is currently done manually. The steps would be the following:
Provide the infrastructure and sync the node running from our local environment.
./add_node 1
We would then create a new bls account for the node and connect to some other node to send some funds: ./eudico send <bls_addr> <someFIL>.
Finally, once the funds have arrived to the would connect to the new node and configure it as a miner by running:
OWNER_ID=./eudico state lookup <bls_addr>
WORKER_ID=./eudico state lookup <bls_addr>
# Fund OWNER_ID and WORKER_ID
lotus send $OWNER_ID 10000
lotus send $WORKER_ID 10000
# Configure miner
./lotus-miner init --owner $OWNER_ID --worker=$WORKER_ID --nosync
./lotus-miner run --nosync
./lotus-miner sectors pledge
./lotus-miner sectors pledge
./lotus-miner sectors seal 0
./lotus-miner sectors seal 1
The reason why this hasn't been automated is because ./lotus-miner run doesn't seem to ever sync. We'll defer introducing this until we figure out how to configure a miner correctly. In the meantime, this can be done manually.
The text was updated successfully, but these errors were encountered:
In Eudico Garden we have automations in place to add new nodes in runtime, but not to add new miners, this is currently done manually. The steps would be the following:
bls
account for the node and connect to some other node to send some funds:./eudico send <bls_addr> <someFIL>
.The reason why this hasn't been automated is because
./lotus-miner run
doesn't seem to ever sync. We'll defer introducing this until we figure out how to configure a miner correctly. In the meantime, this can be done manually.The text was updated successfully, but these errors were encountered: