Skip to content

Commit 0309b25

Browse files
barnjamina5-pickle
authored andcommitted
Add build script to solana ts package
1 parent 3c5c6c6 commit 0309b25

File tree

5 files changed

+16
-12
lines changed

5 files changed

+16
-12
lines changed

solana/package-lock.json

+5-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

solana/package.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
"initialize": "npx ts-node ts/scripts/initialize.ts",
66
"register-contracts": "npx ts-node ts/scripts/register_foreign_contracts.ts",
77
"register-tokens": "npx ts-node ts/scripts/register_tokens.ts",
8-
"set-relayer-fees": "npx ts-node ts/scripts/set_relayer_fees.ts"
8+
"set-relayer-fees": "npx ts-node ts/scripts/set_relayer_fees.ts",
9+
"build":"npx tsc -p tsconfig.json"
910
},
1011
"dependencies": {
1112
"@certusone/wormhole-sdk": "^0.10.10",
@@ -33,6 +34,6 @@
3334
"mocha": "^10.0.0",
3435
"ts-mocha": "^10.0.0",
3536
"ts-results": "^3.3.0",
36-
"typescript": "^4.3.5"
37+
"typescript": "5.4.5"
3738
}
3839
}

solana/ts/scripts/getTestnetInfo.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -110,9 +110,9 @@ async function main() {
110110

111111
function stringifyEndpoint(chainName: ChainName, endpoint: matchingEngineSdk.RouterEndpoint) {
112112
const out = {
113-
address: tryUint8ArrayToNative(Uint8Array.from(endpoint.address), chainName),
114-
mintRecipient: tryUint8ArrayToNative(Uint8Array.from(endpoint.mintRecipient), chainName),
115-
protocol: endpoint.protocol,
113+
address: tryUint8ArrayToNative(Uint8Array.from(endpoint.info.address), chainName),
114+
mintRecipient: tryUint8ArrayToNative(Uint8Array.from(endpoint.info.mintRecipient), chainName),
115+
protocol: endpoint.info.protocol,
116116
};
117117
return JSON.stringify(out, null, 2);
118118
}

solana/ts/scripts/setUpTestnetMatchingEngine.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ async function addCctpRouterEndpoint(
202202
: Array.from(tryNativeToUint8Array(foreignMintRecipient, foreignChain));
203203

204204
if (exists) {
205-
const { address, mintRecipient } = await matchingEngine.fetchRouterEndpoint(chain);
205+
const { info: {address, mintRecipient} } = await matchingEngine.fetchRouterEndpoint(chain);
206206
if (
207207
Buffer.from(address).equals(Buffer.from(endpointAddress)) &&
208208
Buffer.from(mintRecipient).equals(Buffer.from(endpointMintRecipient ?? endpointAddress))
@@ -270,7 +270,7 @@ async function addLocalRouterEndpoint(
270270
);
271271

272272
if (exists) {
273-
const { address, mintRecipient } = await matchingEngine.fetchRouterEndpoint(chain);
273+
const { info: {address, mintRecipient} } = await matchingEngine.fetchRouterEndpoint(chain);
274274
if (
275275
Buffer.from(address).equals(Buffer.from(endpointAddress)) &&
276276
Buffer.from(mintRecipient).equals(Buffer.from(endpointMintRecipient ?? endpointAddress))

solana/tsconfig.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@
66
"module": "commonjs",
77
"target": "es2020",
88
"strict": true,
9+
"noEmit":true,
910
"resolveJsonModule": true,
10-
"esModuleInterop": true
11+
"esModuleInterop": true,
12+
"skipLibCheck":true
1113
}
1214
}

0 commit comments

Comments
 (0)