Skip to content

Commit c3cc939

Browse files
authored
chore: added correct code ids (#1364)
1 parent f73c891 commit c3cc939

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

src/content/docs/dev/amplifier/chain-integration/integrate-a-chain.mdx

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -94,9 +94,13 @@ You can either use the existing deployed contracts and on the devnet via their `
9494
<tab-item title="Use pre-deployed contracts">
9595
Use the existing deployments for all three contracts, making note of the existing deployment's `code_id`:
9696

97-
- Voting verifier (code_id: `626`)
98-
- Gateway (code_id: `616`)
99-
- Mutisig prover (code_id: `618`)
97+
- Voting verifier (code_id: `854`)
98+
- Gateway (code_id: `848`)
99+
- Mutisig prover (code_id: `855`)
100+
101+
<Callout>
102+
Note: `code_ids` may change with new releases. You can find the latest code ids in the [Axelar contract deployments repo](https://github.com/axelarnetwork/axelar-contract-deployments/blob/main/axelar-chains-config/info/devnet-amplifier.json)
103+
</Callout>
100104
</tab-item>
101105

102106
<tab-item title="Build and deploy contracts">
@@ -220,7 +224,7 @@ Use the existing deployments for all three contracts, making note of the existin
220224
1. Instantiate the voting verifier contract on the command line. See the [testnet](https://github.com/axelarnetwork/axelar-contract-deployments/blob/main/axelar-chains-config/info/testnet.json), [devnet-amplifier](https://github.com/axelarnetwork/axelar-contract-deployments/blob/main/axelar-chains-config/info/devnet-amplifier.json) configurations for the correct `code_id`.
221225
222226
```bash
223-
export VERIFIER_CODE_ID=626
227+
export VERIFIER_CODE_ID=854
224228
export MY_WALLET_ADDRESS="axelar14r0xzwz8hmkshau39dyja5kx503dx6zu52623h"
225229
export MY_SOURCE_CHAIN_GATEWAY_ADDRESS="0xCa85f85C72df5f8428a440887CA7c449D94e0D0c"
226230
```
@@ -294,7 +298,7 @@ Use the existing deployments for all three contracts, making note of the existin
294298
1. Instantiate the gateway contract on the command line with the verifier address from the previous step.
295299
296300
```bash
297-
export GATEWAY_CODE_ID=616
301+
export GATEWAY_CODE_ID=848
298302
export MY_VERIFIER_ADDRESS="axelar1x3960tw9cml6xsqtvzt4gmw3scauaxdd83rhs9dmlpjfjf9z9s7qjx8g0j"
299303
```
300304
@@ -322,7 +326,7 @@ Use the existing deployments for all three contracts, making note of the existin
322326
1. Instantiate the multisig prover contract on the command line with the gateway address from the previous step.
323327
324328
```bash
325-
export PROVER_CODE_ID=618
329+
export PROVER_CODE_ID=855
326330
export MY_GATEWAY_ADDRESS="axelar1ufs3tlq4umljk0qfe8k5ya0x6hpavn897u2cnf9k0en9jr7qarqqa9263g"
327331
export MY_CHAIN_ID=43113
328332
```

0 commit comments

Comments
 (0)