From a7029b748a5922c574aea4cf5cdd69344ead5e0e Mon Sep 17 00:00:00 2001 From: Stephen Fluin Date: Fri, 30 Aug 2024 14:55:08 -0500 Subject: [PATCH] fix: remove invalid prover json (#1134) --- .../dev/amplifier/chain-integration/integrate-a-chain.mdx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/pages/dev/amplifier/chain-integration/integrate-a-chain.mdx b/src/pages/dev/amplifier/chain-integration/integrate-a-chain.mdx index d4f6e4a41..4aefbc18d 100644 --- a/src/pages/dev/amplifier/chain-integration/integrate-a-chain.mdx +++ b/src/pages/dev/amplifier/chain-integration/integrate-a-chain.mdx @@ -338,7 +338,7 @@ You can also deploy a custom implementation of the gateway, verifier, and prover "verifier_set_diff_threshold": 1, "encoder": "abi", "key_type": "ecdsa", - "domain_separator": "6973c72935604464b28827141b0a463af8e3487616de69c5aa0c785392c9fb9f" # Hash of chain name, admin address, and code ID. Value must be a String in hex format without `0x`. + "domain_separator": "6973c72935604464b28827141b0a463af8e3487616de69c5aa0c785392c9fb9f" }' \ --keyring-backend test \ --from wallet \ @@ -349,6 +349,8 @@ You can also deploy a custom implementation of the gateway, verifier, and prover --admin $MY_WALLET_ADDRESS ``` +The `domain_separator` is a hash of chain name, admin address, and code ID. Value must be a String in hex format without `0x`. + 1. Search the output of this command and note the `_contract_address`. ## Whitelist your contract addresses