-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathwrap.ts
More file actions
90 lines (81 loc) · 2.2 KB
/
wrap.ts
File metadata and controls
90 lines (81 loc) · 2.2 KB
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
import "dotenv/config";
import {
Keypair,
ComputeBudgetProgram,
Transaction,
sendAndConfirmTransaction,
} from "@solana/web3.js";
import { createRpc } from "@lightprotocol/stateless.js";
import {
createMintInterface,
createAtaInterface,
createWrapInstruction,
getAssociatedTokenAddressInterface,
getSplInterfaceInfos,
} from "@lightprotocol/compressed-token";
import {
TOKEN_PROGRAM_ID,
createAssociatedTokenAccount,
mintTo,
} from "@solana/spl-token";
import { homedir } from "os";
import { readFileSync } from "fs";
// devnet:
// const RPC_URL = `https://devnet.helius-rpc.com?api-key=${process.env.API_KEY!}`;
// const rpc = createRpc(RPC_URL);
// localnet:
const rpc = createRpc();
const payer = Keypair.fromSecretKey(
new Uint8Array(
JSON.parse(readFileSync(`${homedir()}/.config/solana/id.json`, "utf8"))
)
);
(async function () {
// Setup: Create SPL mint and fund an SPL ATA
const { mint } = await createMintInterface(
rpc,
payer,
payer,
null,
9,
undefined,
undefined,
TOKEN_PROGRAM_ID
);
const splAta = await createAssociatedTokenAccount(
rpc,
payer,
mint,
payer.publicKey,
undefined,
TOKEN_PROGRAM_ID
);
await mintTo(rpc, payer, mint, splAta, payer, 1000);
// Create wrap instruction
await createAtaInterface(rpc, payer, mint, payer.publicKey);
const lightTokenAta = getAssociatedTokenAddressInterface(
mint,
payer.publicKey
);
const splInterfaceInfos = await getSplInterfaceInfos(rpc, mint);
const splInterfaceInfo = splInterfaceInfos.find(
(info) => info.isInitialized
);
if (!splInterfaceInfo) throw new Error("No SPL interface found");
const ix = createWrapInstruction(
splAta,
lightTokenAta,
payer.publicKey,
mint,
500n,
splInterfaceInfo,
9,
payer.publicKey
);
const tx = new Transaction().add(
ComputeBudgetProgram.setComputeUnitLimit({ units: 200_000 }),
ix
);
const signature = await sendAndConfirmTransaction(rpc, tx, [payer]);
console.log("Tx:", signature);
})();