-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path14_delegate.ts
61 lines (53 loc) · 1.49 KB
/
14_delegate.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
// Usage: npx ts-node app/deploy/devnet/tests/14_delegate.ts
import { AnchorProvider, Wallet } from "@coral-xyz/anchor";
import { Connection } from "@solana/web3.js";
import { StakeConnection } from "../../../StakeConnection";
import { WHTokenBalance } from "../../../whTokenBalance";
import {
USER_AUTHORITY_KEYPAIR,
USER2_AUTHORITY_KEYPAIR,
RPC_NODE,
} from "../constants";
function sleep(ms) {
return new Promise((resolve) => setTimeout(resolve, ms));
}
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,
);
await stakeConnection.delegate(
undefined,
WHTokenBalance.fromString("10000000"),
);
await sleep(10000);
const user2Provider = new AnchorProvider(
connection,
new Wallet(USER2_AUTHORITY_KEYPAIR),
{},
);
const user2StakeConnection = await StakeConnection.createStakeConnection(
connection,
user2Provider.wallet as Wallet,
);
await user2StakeConnection.delegate(
undefined,
WHTokenBalance.fromString("10000000"),
);
await sleep(10000);
await stakeConnection.delegate(
user2StakeConnection.userPublicKey(),
WHTokenBalance.fromString("10000000"),
);
} catch (err) {
console.error("Error:", err);
}
}
main();