-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdelegate-transfer.ts
More file actions
98 lines (91 loc) · 2.29 KB
/
delegate-transfer.ts
File metadata and controls
98 lines (91 loc) · 2.29 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
91
92
93
94
95
96
97
98
import "dotenv/config";
import { Keypair } from "@solana/web3.js";
import { createRpc } from "@lightprotocol/stateless.js";
import {
createMintInterface,
createAtaInterface,
getAssociatedTokenAddressInterface,
} from "@lightprotocol/compressed-token";
import {
approveInterface,
transferInterface,
wrap,
} from "@lightprotocol/compressed-token/unified";
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, fund, wrap into Light ATA (hot balance)
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, 1_000_000_000);
await createAtaInterface(rpc, payer, mint, payer.publicKey);
const senderAta = getAssociatedTokenAddressInterface(
mint,
payer.publicKey
);
await wrap(
rpc,
payer,
splAta,
senderAta,
payer,
mint,
BigInt(1_000_000_000)
);
const delegate = Keypair.generate();
const recipient = Keypair.generate();
// Approve delegate
await approveInterface(
rpc,
payer,
senderAta,
mint,
delegate.publicKey,
500_000_000,
payer
);
console.log("Approved delegate:", delegate.publicKey.toBase58());
// Delegate transfers tokens on behalf of the owner
const tx = await transferInterface(
rpc,
payer,
senderAta,
mint,
recipient.publicKey,
payer.publicKey,
delegate,
200_000_000
);
console.log("Delegated transfer:", tx);
})();