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
address PR review comments for self-anchoring docs
- Add anchor contract section with pre-deployed addresses (Ethereum, Gnosis)
- Add deployment instructions linking to ceramic-anchor-service repo
- Replace --ethereum-rpc-urls with --evm-rpc-url (used for both submit and verify)
- Add --additional-chain-rpc-urls for validating anchors from other chains
- Update all examples to use simplified configuration
The contract (`CeramicAnchorServiceV2.sol`) implements [CIP-110](https://github.com/ceramicnetwork/CIPs/blob/main/CIPs/cip-110.md) for indexable anchors.
This is required for validating anchor proofs, including the proofs created by your own self-anchoring. The node uses these endpoints to verify that anchors exist on-chain.
|`--evm-confirmations`|`CERAMIC_ONE_EVM_CONFIRMATIONS`| 4 | Number of block confirmations before anchor is final |
38
76
|`--anchor-interval`|`CERAMIC_ONE_ANCHOR_INTERVAL`| 3600 | Anchoring frequency in seconds |
77
+
|`--additional-chain-rpc-urls`|`CERAMIC_ONE_ADDITIONAL_CHAIN_RPC_URLS`| - | Comma-separated list of RPC URLs for validating anchors from other chains |
78
+
79
+
### Validating Anchors from Other Chains
80
+
81
+
If your node syncs events from the network that were anchored on different chains (e.g., historical anchors or events from other nodes), you can provide additional RPC endpoints to validate those proofs:
0 commit comments