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
ALIGNED_DEPLOYMENT_OUTPUT=../../contracts/script/output/holesky/alignedlayer_deployment_output.json# Path to the deployment output file from the aligned layer, relative to verify directory
3
+
ALIGNED_DEPLOYMENT_OUTPUT=../../contracts/script/output/hoodi/alignedlayer_deployment_output.json# Path to the deployment output file from the aligned layer, relative to verify directory
|`RPC_URL`| Your ethereum RPC url. You can use public node: https://ethereum-holesky-rpc.publicnode.com|
24
-
|`ALIGNED_DEPLOYMENT_OUTPUT`| Path to aligned layer deployment output. This is needed to get service manager address. You can get it from https://github.com/yetanotherco/aligned_layer/blob/main/contracts/script/output/holesky/alignedlayer_deployment_output.json|
23
+
|`RPC_URL`| Your ethereum RPC url. You can use public node: https://ethereum-hoodi-rpc.publicnode.com|
24
+
|`ALIGNED_DEPLOYMENT_OUTPUT`| Path to aligned layer deployment output. This is needed to get service manager address. You can get it from https://github.com/yetanotherco/aligned_layer/blob/main/contracts/script/output/hoodi/alignedlayer_deployment_output.json|
25
25
26
26
Then, you can deploy the contract by running the following command:
27
27
@@ -49,7 +49,7 @@ Replace `[SENDER_ADDRESS]` with the address of the `BatcherPaymentService` contr
49
49
This will output the encoded call. You can then use this encoded call to check your submitted proof with the associated data is verified in Ethereum by running the following command:
50
50
51
51
```bash
52
-
curl -X POST http://localhost:8545 \
52
+
curl -X POST <RPC_URL> \
53
53
-H "Content-Type: application/json" \
54
54
-d '{
55
55
"jsonrpc": "2.0",
@@ -62,16 +62,16 @@ curl -X POST http://localhost:8545 \
62
62
}'
63
63
```
64
64
65
-
Replace `<CONTRACT_ADDRESS>` with the address of the contract you deployed earlier (or `0x58F280BeBE9B34c9939C3C39e0890C81f163B623` for Aligned ServiceManager in Holesky), `<CALLDATA>` with the encoded call,
66
-
and `<RPC_URL>` with the RPC URL of the blockchain you are using.
65
+
Replace `<CONTRACT_ADDRESS>` with the address of the contract you deployed earlier (or `0x87CD431F160e88EC34fA48EC6F6cF7F2C0E8248c` for Aligned ServiceManager in Hoodi), `<CALLDATA>` with the encoded call,
66
+
and `<RPC_URL>` with the RPC URL of the blockchain you are using (`https://ethereum-hoodi-rpc.publicnode.com` for Hoodi).
In this case, `--contract-address` is the address of the `AlignedLayerServiceManager` and `--sender-address` is the address of the `BatcherPaymentService` in Holesky Testnet.
102
+
In this case, `--contract-address` is the address of the `AlignedLayerServiceManager` and `--sender-address` is the address of the `BatcherPaymentService` in Hoodi Testnet.
103
103
104
104
You need to replace the `--aligned-verification-data` with the path to the JSON file containing the verification data. This is the output when submitting a proof.
0 commit comments