-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path23_fetchVoteWeightWindowLengths.ts
51 lines (45 loc) · 1.75 KB
/
23_fetchVoteWeightWindowLengths.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
41
42
43
44
45
46
47
48
49
50
51
// Usage: npx ts-node app/deploy/devnet/tests/23_fetchVoteWeightWindowLengths.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,
RPC_NODE,
VOTE_WEIGHT_WINDOW_LENGTHS
} from "../constants";
import { StakeConnection } from "../../../StakeConnection";
import {
readWindowLengths,
WindowLengthsAccount,
} from "../../../vote_weight_window_lengths";
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("VOTE_WEIGHT_WINDOW_LENGTHS:", VOTE_WEIGHT_WINDOW_LENGTHS);
const [voteWeightWindowLengthsAccountAddress, _] =
PublicKey.findProgramAddressSync(
[
utils.bytes.utf8.encode(
wasm.Constants.VOTE_WEIGHT_WINDOW_LENGTHS_SEED(),
),
],
stakeConnection.program.programId,
);
console.log("voteWeightWindowLengthsAccountAddress:", voteWeightWindowLengthsAccountAddress);
let windowLengthsAccount: WindowLengthsAccount = await readWindowLengths(
connection,
voteWeightWindowLengthsAccountAddress,
);
console.log("windowLengthsAccount.getWindowLengthCount():", windowLengthsAccount.getWindowLengthCount());
console.log("windowLengthsAccount.voteWeightWindowLengths.nextIndex:", windowLengthsAccount.voteWeightWindowLengths.nextIndex);
console.log("windowLengthsAccount.getLastWindowLength().value.toString():", windowLengthsAccount.getLastWindowLength()?.value.toString());
}
main();