1
- import {
2
- ChainName ,
3
- coalesceChainId ,
4
- tryNativeToUint8Array ,
5
- tryUint8ArrayToNative ,
6
- } from "@certusone/wormhole-sdk" ;
7
- import * as splToken from "@solana/spl-token" ;
8
- import {
9
- Connection ,
10
- Keypair ,
11
- PublicKey ,
12
- Transaction ,
13
- sendAndConfirmTransaction ,
14
- } from "@solana/web3.js" ;
1
+ import { Connection , PublicKey } from "@solana/web3.js" ;
2
+ import { Chain , toChainId , toNative , toUniversal } from "@wormhole-foundation/sdk" ;
15
3
import * as matchingEngineSdk from "../src/matchingEngine" ;
16
4
import * as tokenRouterSdk from "../src/tokenRouter" ;
17
5
18
6
const USDC_MINT = new PublicKey ( "4zMMC9srt5Ri5X14GAgXhaHii3GnPAEERYPJgZJDncDU" ) ;
19
7
20
- const CHAINS : ChainName [ ] = [
21
- "sepolia " ,
22
- "avalanche " ,
23
- "optimism_sepolia " ,
24
- "arbitrum_sepolia " ,
25
- "base_sepolia " ,
26
- "polygon " ,
8
+ const CHAINS : Chain [ ] = [
9
+ "Sepolia " ,
10
+ "Avalanche " ,
11
+ "OptimismSepolia " ,
12
+ "ArbitrumSepolia " ,
13
+ "BaseSepolia " ,
14
+ "PolygonSepolia " ,
27
15
] ;
28
16
29
17
// Here we go.
@@ -70,7 +58,7 @@ async function main() {
70
58
71
59
for ( const chainName of CHAINS ) {
72
60
await matchingEngine
73
- . fetchRouterEndpoint ( coalesceChainId ( chainName ) )
61
+ . fetchRouterEndpointInfo ( toChainId ( chainName ) )
74
62
. then ( ( endpointData ) => {
75
63
console . log (
76
64
`Registered Endpoint (${ chainName } ): ${ stringifyEndpoint (
@@ -79,7 +67,7 @@ async function main() {
79
67
) } `,
80
68
) ;
81
69
} )
82
- . catch ( ( _ ) => {
70
+ . catch ( ( err ) => {
83
71
console . log ( `Not Registered: ${ chainName } ` ) ;
84
72
} ) ;
85
73
console . log ( ) ;
@@ -108,10 +96,12 @@ async function main() {
108
96
}
109
97
}
110
98
111
- function stringifyEndpoint ( chainName : ChainName , endpoint : matchingEngineSdk . RouterEndpoint ) {
99
+ function stringifyEndpoint ( chain : Chain , endpoint : matchingEngineSdk . EndpointInfo ) {
112
100
const out = {
113
- address : tryUint8ArrayToNative ( Uint8Array . from ( endpoint . address ) , chainName ) ,
114
- mintRecipient : tryUint8ArrayToNative ( Uint8Array . from ( endpoint . mintRecipient ) , chainName ) ,
101
+ address : toUniversal ( chain , Uint8Array . from ( endpoint . address ) ) . toNative ( chain ) . toString ( ) ,
102
+ mintRecipient : toUniversal ( chain , Uint8Array . from ( endpoint . mintRecipient ) )
103
+ . toNative ( chain )
104
+ . toString ( ) ,
115
105
protocol : endpoint . protocol ,
116
106
} ;
117
107
return JSON . stringify ( out , null , 2 ) ;
0 commit comments