-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlookup_table.ts
62 lines (59 loc) · 1.73 KB
/
lookup_table.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
import {
TOKEN_PROGRAM_ID,
} from "@solana/spl-token";
import {
PublicKey,
SystemProgram,
AddressLookupTableProgram,
ComputeBudgetProgram,
SYSVAR_RENT_PUBKEY,
VersionedTransaction,
TransactionMessage,
} from "@solana/web3.js";
import * as anchor from "@coral-xyz/anchor";
import * as wasm from "@wormhole/staking-wasm";
function getConfigAccount(programId: PublicKey): PublicKey {
return PublicKey.findProgramAddressSync(
[anchor.utils.bytes.utf8.encode(wasm.Constants.CONFIG_SEED())],
programId,
)[0];
}
export async function initAddressLookupTable(
provider: anchor.AnchorProvider,
mint: PublicKey,
stakingPID: PublicKey,
) {
const configAccount = getConfigAccount(stakingPID);
const [loookupTableInstruction, lookupTableAddress] =
AddressLookupTableProgram.createLookupTable({
authority: provider.publicKey,
payer: provider.publicKey,
recentSlot: await provider.connection.getSlot(),
});
const extendInstruction = AddressLookupTableProgram.extendLookupTable({
payer: provider.publicKey,
authority: provider.publicKey,
lookupTable: lookupTableAddress,
addresses: [
ComputeBudgetProgram.programId,
SystemProgram.programId,
stakingPID,
mint,
configAccount,
SYSVAR_RENT_PUBKEY,
TOKEN_PROGRAM_ID,
],
});
const createLookupTableTx = new VersionedTransaction(
new TransactionMessage({
instructions: [loookupTableInstruction, extendInstruction],
payerKey: provider.publicKey,
recentBlockhash: (await provider.connection.getLatestBlockhash())
.blockhash,
}).compileToV0Message(),
);
await provider.sendAndConfirm(createLookupTableTx, [], {
skipPreflight: true,
});
return lookupTableAddress;
}