-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path25_fetchSpokeMessageExecutor.ts
40 lines (34 loc) · 1.39 KB
/
25_fetchSpokeMessageExecutor.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
// Usage: npx ts-node app/deploy/devnet/tests/25_fetchSpokeMessageExecutor.ts
import { Wallet, AnchorProvider, utils } from "@coral-xyz/anchor";
import { Connection, PublicKey } from "@solana/web3.js";
import * as wasm from "@wormhole/staking-wasm";
import {
DEPLOYER_AUTHORITY_KEYPAIR,
HUB_CHAIN_ID,
hubSolanaMessageDispatcherPublicKey,
RPC_NODE,
} from "../constants";
import { StakeConnection } from "../../../StakeConnection";
async function main() {
const connection = new Connection(RPC_NODE);
const provider = new AnchorProvider(
connection,
new Wallet(DEPLOYER_AUTHORITY_KEYPAIR),
{},
);
const stakeConnection = await StakeConnection.createStakeConnection(
connection,
provider.wallet as Wallet,
);
console.log("HUB_CHAIN_ID:", HUB_CHAIN_ID);
console.log("hubSolanaMessageDispatcherPublicKey:", hubSolanaMessageDispatcherPublicKey);
const [spokeMessageExecutorAccountAddress, _] = PublicKey.findProgramAddressSync(
[utils.bytes.utf8.encode(wasm.Constants.SPOKE_MESSAGE_EXECUTOR_SEED())],
stakeConnection.program.programId,
);
console.log("spokeMessageExecutorAccountAddress:", spokeMessageExecutorAccountAddress);
let spokeMessageExecutorAccountData =
await stakeConnection.program.account.spokeMessageExecutor.fetch(spokeMessageExecutorAccountAddress);
console.log("spokeMessageExecutorAccountData:", spokeMessageExecutorAccountData);
}
main();