-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path12_deposit.ts
61 lines (54 loc) · 1.52 KB
/
12_deposit.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/12_deposit.ts
import * as anchor from "@coral-xyz/anchor";
import { AnchorProvider, Program, Wallet } from "@coral-xyz/anchor";
import {
createTransferInstruction,
getAssociatedTokenAddress,
} from "@solana/spl-token";
import { PublicKey, Transaction, Connection } from "@solana/web3.js";
import * as wasm from "@wormhole/staking-wasm";
import {
RPC_NODE,
STAKING_ADDRESS,
USER_AUTHORITY_KEYPAIR,
WORMHOLE_TOKEN,
} from "../constants";
async function main() {
try {
const connection = new Connection(RPC_NODE);
const provider = new AnchorProvider(
connection,
new Wallet(USER_AUTHORITY_KEYPAIR),
{},
);
const user = provider.wallet.publicKey;
const idl = (await Program.fetchIdl(STAKING_ADDRESS, provider))!;
const program = new Program(idl, provider);
const transaction = new Transaction();
const from_account = await getAssociatedTokenAddress(
WORMHOLE_TOKEN,
provider.wallet.publicKey,
true,
);
const toAccount = PublicKey.findProgramAddressSync(
[
anchor.utils.bytes.utf8.encode(wasm.Constants.CUSTODY_SEED()),
user.toBuffer(),
],
program.programId,
)[0];
const ix = createTransferInstruction(
from_account,
toAccount,
provider.wallet.publicKey,
50,
);
transaction.add(ix);
const tx = await provider.sendAndConfirm(transaction, [], {
skipPreflight: false,
});
} catch (err) {
console.error("Error:", err);
}
}
main();