Skip to content

Commit db4048d

Browse files
authored
solana/ts: fix getTestnetInfo (#158)
Co-authored-by: A5 Pickle <a5-pickle@users.noreply.github.com>
1 parent 13f0773 commit db4048d

File tree

1 file changed

+16
-26
lines changed

1 file changed

+16
-26
lines changed

solana/ts/scripts/getTestnetInfo.ts

+16-26
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,17 @@
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";
153
import * as matchingEngineSdk from "../src/matchingEngine";
164
import * as tokenRouterSdk from "../src/tokenRouter";
175

186
const USDC_MINT = new PublicKey("4zMMC9srt5Ri5X14GAgXhaHii3GnPAEERYPJgZJDncDU");
197

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",
2715
];
2816

2917
// Here we go.
@@ -70,7 +58,7 @@ async function main() {
7058

7159
for (const chainName of CHAINS) {
7260
await matchingEngine
73-
.fetchRouterEndpoint(coalesceChainId(chainName))
61+
.fetchRouterEndpointInfo(toChainId(chainName))
7462
.then((endpointData) => {
7563
console.log(
7664
`Registered Endpoint (${chainName}): ${stringifyEndpoint(
@@ -79,7 +67,7 @@ async function main() {
7967
)}`,
8068
);
8169
})
82-
.catch((_) => {
70+
.catch((err) => {
8371
console.log(`Not Registered: ${chainName}`);
8472
});
8573
console.log();
@@ -108,10 +96,12 @@ async function main() {
10896
}
10997
}
11098

111-
function stringifyEndpoint(chainName: ChainName, endpoint: matchingEngineSdk.RouterEndpoint) {
99+
function stringifyEndpoint(chain: Chain, endpoint: matchingEngineSdk.EndpointInfo) {
112100
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(),
115105
protocol: endpoint.protocol,
116106
};
117107
return JSON.stringify(out, null, 2);

0 commit comments

Comments
 (0)