Ritual
Update your system:
Install needed tools:
Install docker & docker compose:
Clone repository:
Run the hello-world container:
We will use a screen to ensure it always runs.
Detach from the screen: Ctrl + A, then press D
Register wallet:
Go on basescan and enter our coordinator address: 0x8d871ef2826ac9001fb2e33fdd6379b6aabf449c
Then, go to Contract
> Write Contract
And click Connect to Web3
& connect your wallet to basescan.
Next, go to registerNode
enter your own wallet's address and click Write
. Ensure that the transaction sent from your wallet succeeds.
Wait an hour, and activate your node: in the same basescan page, go to activateNode
and click Write
. Ensure that the tx succeeds, and that your node is activated.
Reconfigure the files:
Change config.json
:
change
coordinator_address
to0x8d871ef2826ac9001fb2e33fdd6379b6aabf449c
change
rpc_url
tohttps://base-rpc.publicnode.com
change
private_key
to your wallet's private key.
Change Makefile :
change
sender
's address to your wallet's private key.change
RPC_URL
tohttps://base-rpc.publicnode.com
Change Deploy.s.sol:
change
coordinator_address
to0x8D871Ef2826ac9001fB2e33fDD6379b6aaBF449c
Update containers:
Deploy contracts:
Look at the logs here, and save what address was your
SaysGM/SaysHello
deployed to:
Then go to CallContract.s.sol
and change the SaysGM
address to the one you got above:
Then you can call your contract with the same command:
Do not forget to periodically check the logs:
Last updated