-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path13_withdrawTokens.ts
45 lines (41 loc) · 1.38 KB
/
13_withdrawTokens.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
// Usage: npx ts-node app/deploy/devnet/tests/13_withdrawTokens.ts
import { AnchorProvider, Wallet } from "@coral-xyz/anchor";
import { Connection } from "@solana/web3.js";
import { StakeConnection } from "../../../StakeConnection";
import { WHTokenBalance } from "../../../whTokenBalance";
import { RPC_NODE, USER_AUTHORITY_KEYPAIR } from "../constants";
async function main() {
try {
const connection = new Connection(RPC_NODE);
const provider = new AnchorProvider(
connection,
new Wallet(USER_AUTHORITY_KEYPAIR),
{},
);
const stakeConnection = await StakeConnection.createStakeConnection(
connection,
provider.wallet as Wallet,
);
const user = provider.wallet.publicKey;
let stakeAccountMetadataAddress =
await stakeConnection.getStakeMetadataAddress(user);
let stakeAccountCheckpointsAddress =
await stakeConnection.getStakeAccountCheckpointsAddressByMetadata(
stakeAccountMetadataAddress,
false,
);
if (!stakeAccountCheckpointsAddress) {
throw new Error(`stakeAccountCheckpointsAddress is not defined`);
}
let stakeAccount = await stakeConnection.loadStakeAccount(
stakeAccountCheckpointsAddress,
);
await stakeConnection.withdrawTokens(
stakeAccount,
WHTokenBalance.fromString("20"),
);
} catch (err) {
console.error("Error:", err);
}
}
main();