Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(entropy) Deploy Sanko mainnet & testnet #1996

Merged
merged 1 commit into from
Oct 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions contract_manager/store/chains/EvmChains.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -719,3 +719,13 @@
rpcUrl: https://api.testnet.abs.xyz
networkId: 11124
type: EvmChain
- id: sanko
mainnet: true
rpcUrl: https://mainnet.sanko.xyz
networkId: 1996
type: EvmChain
- id: sanko_testnet
mainnet: false
rpcUrl: https://sanko-arb-sepolia.rpc.caldera.xyz
networkId: 1992
type: EvmChain
6 changes: 6 additions & 0 deletions contract_manager/store/contracts/EvmEntropyContracts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -109,3 +109,9 @@
- chain: fantom_sonic_testnet
address: "0x5124FAE0890dE83B3bb2cc30Bb3EDAfFc07Da744"
type: EvmEntropyContract
- chain: sanko
address: "0x5744Cbf430D99456a0A8771208b674F27f8EF0Fb"
type: EvmEntropyContract
- chain: sanko_testnet
address: "0x5744Cbf430D99456a0A8771208b674F27f8EF0Fb"
type: EvmEntropyContract
6 changes: 6 additions & 0 deletions contract_manager/store/contracts/EvmWormholeContracts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -391,3 +391,9 @@
- chain: abstract_testnet
address: "0xB1DB1498902F08E16E11F1a423ec9CCB9537E1D6"
type: EvmWormholeContract
- chain: sanko
address: "0xb27e5ca259702f209a29225d0eDdC131039C9933"
type: EvmWormholeContract
- chain: sanko_testnet
address: "0xb27e5ca259702f209a29225d0eDdC131039C9933"
type: EvmWormholeContract
2 changes: 2 additions & 0 deletions governance/xc_admin/packages/xc_admin_common/src/chains.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ export const RECEIVER_CHAINS = {
idex_xchain_mainnet: 60060,
apechain_mainnet: 60061,
flow_mainnet: 60062,
sanko: 60063,

// Testnets as a separate chain ids (to use stable data sources and governance for them)
injective_testnet: 60013,
Expand Down Expand Up @@ -191,6 +192,7 @@ export const RECEIVER_CHAINS = {
nighthawk: 50097,
blackbird: 50099,
abstract_testnet: 50100,
sanko_testnet: 50101,
};

// If there is any overlapping value the receiver chain will replace the wormhole
Expand Down
Loading