-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathclaimVesting.ts
141 lines (128 loc) · 3.73 KB
/
claimVesting.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
// Usage: npx ts-node app/deploy/devnet/vesting/claimVesting.ts
import { Wallet, AnchorProvider } from "@coral-xyz/anchor";
import {
Connection,
PublicKey,
SystemProgram,
} from "@solana/web3.js";
import {
VESTING_ADMIN_KEYPAIR,
USER_AUTHORITY_KEYPAIR,
WORMHOLE_TOKEN,
RPC_NODE,
} from "../constants";
import { StakeConnection } from "../../../StakeConnection";
import BN from "bn.js";
import * as wasm from "@wormhole/staking-wasm";
import {
ASSOCIATED_TOKEN_PROGRAM_ID,
TOKEN_PROGRAM_ID,
getAssociatedTokenAddressSync,
} from "@solana/spl-token";
async function main() {
const admin = VESTING_ADMIN_KEYPAIR;
const vester = USER_AUTHORITY_KEYPAIR;
const connection = new Connection(RPC_NODE);
const vesterProvider = new AnchorProvider(connection, new Wallet(vester), {});
const vesterStakeConnection = await StakeConnection.createStakeConnection(
connection,
vesterProvider.wallet as Wallet,
);
const confirm = async (signature: string): Promise<string> => {
const block =
await vesterStakeConnection.provider.connection.getLatestBlockhash();
await vesterStakeConnection.provider.connection.confirmTransaction({
signature,
...block,
});
return signature;
};
const NOW = new BN(1740006704);
const config = new PublicKey(
"BcJSiMQLggZxJ3v7kLLnQemB7Z6XJABV5Bci5LX7KhA3",
);
const vault = getAssociatedTokenAddressSync(
WORMHOLE_TOKEN,
config,
true,
TOKEN_PROGRAM_ID,
);
const vesterTa = getAssociatedTokenAddressSync(
WORMHOLE_TOKEN,
vester.publicKey,
false,
TOKEN_PROGRAM_ID,
);
const adminAta = getAssociatedTokenAddressSync(
WORMHOLE_TOKEN,
admin.publicKey,
false,
TOKEN_PROGRAM_ID,
);
const vestNow = PublicKey.findProgramAddressSync(
[
Buffer.from(wasm.Constants.VEST_SEED()),
config.toBuffer(),
vesterTa.toBuffer(),
NOW.toBuffer("le", 8),
],
vesterStakeConnection.program.programId,
)[0];
const vestingBalance = PublicKey.findProgramAddressSync(
[
Buffer.from(wasm.Constants.VESTING_BALANCE_SEED()),
config.toBuffer(),
vester.publicKey.toBuffer(),
],
vesterStakeConnection.program.programId,
)[0];
let accounts = {
admin: admin.publicKey,
mint: WORMHOLE_TOKEN,
config,
vault,
vester: vester.publicKey,
vesterTa,
adminAta,
recovery: adminAta,
associatedTokenProgram: ASSOCIATED_TOKEN_PROGRAM_ID,
tokenProgram: TOKEN_PROGRAM_ID,
systemProgram: SystemProgram.programId,
vestingBalance: vestingBalance,
};
let stakeAccountMetadataAddress =
await vesterStakeConnection.getStakeMetadataAddress(
vester.publicKey,
);
let stakeAccountMetadataData =
await vesterStakeConnection.fetchStakeAccountMetadata(
vester.publicKey,
);
let delegateStakeAccountCheckpointsOwner =
stakeAccountMetadataData.delegate;
let delegateStakeAccountMetadataAddress =
await vesterStakeConnection.getStakeMetadataAddress(
delegateStakeAccountCheckpointsOwner,
);
let delegateStakeAccountCheckpointsAddress =
await vesterStakeConnection.getStakeAccountCheckpointsAddressByMetadata(
delegateStakeAccountMetadataAddress,
false,
);
console.log("Starting claimVesting...");
await vesterStakeConnection.program.methods
.claimVesting()
.accountsPartial({
...accounts,
vest: vestNow,
delegateStakeAccountCheckpoints: delegateStakeAccountCheckpointsAddress,
delegateStakeAccountMetadata: stakeAccountMetadataAddress,
stakeAccountMetadata: stakeAccountMetadataAddress,
globalConfig: vesterStakeConnection.configAddress,
})
.signers([vester])
.rpc()
.then(confirm);
console.log("claimVesting completed successfully.");
}
main();