File tree Expand file tree Collapse file tree 4 files changed +24
-1
lines changed
governance/xc_admin/packages/xc_admin_common/src Expand file tree Collapse file tree 4 files changed +24
-1
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,11 @@ async function main() {
3333 const argv = await parser . argv ;
3434 const contract = DefaultStore . contracts [ argv . contract ] ;
3535 if ( ! contract ) {
36- throw new Error ( `Contract ${ argv . contract } not found` ) ;
36+ throw new Error (
37+ `Contract ${ argv . contract } not found. Contracts found: ${ Object . keys (
38+ DefaultStore . contracts
39+ ) } `
40+ ) ;
3741 }
3842 const defaultEndpoint = contract . getChain ( ) . isMainnet ( )
3943 ? "https://xc-mainnet.pyth.network"
Original file line number Diff line number Diff line change 316316 rpcUrl : https://sepolia-rpc.scroll.io/
317317 networkId : 534351
318318 type : EvmChain
319+ - id : saigon
320+ wormholeChainName : ronin
321+ mainnet : false
322+ rpcUrl : https://api-gateway.skymavis.com/rpc/testnet?apikey=put-me-here-from-ronin-wallet
323+ networkId : 2021
324+ type : EvmChain
325+ - id : ronin
326+ wormholeChainName : ronin
327+ mainnet : true
328+ rpcUrl : https://api-gateway.skymavis.com/rpc?apikey=put-me-here-from-ronin-wallet
329+ networkId : 2020
330+ type : EvmChain
Original file line number Diff line number Diff line change 157157- chain : scroll_sepolia
158158 address : " 0xA2aa501b19aff244D90cc15a4Cf739D2725B5729"
159159 type : EvmContract
160+ - chain : saigon
161+ address : " 0xA2aa501b19aff244D90cc15a4Cf739D2725B5729"
162+ type : EvmContract
163+ - chain : ronin
164+ address : " 0x2880aB155794e7179c9eE2e38200202908C17B43"
165+ type : EvmContract
Original file line number Diff line number Diff line change @@ -41,6 +41,7 @@ export const RECEIVER_CHAINS = {
4141 eos : 60026 ,
4242 syndr : 60027 ,
4343 scroll : 60028 ,
44+ ronin : 60029 ,
4445} ;
4546
4647// If there is any overlapping value the receiver chain will replace the wormhole
You can’t perform that action at this time.
0 commit comments