-
Notifications
You must be signed in to change notification settings - Fork 0
/
token.ts
446 lines (386 loc) · 10.7 KB
/
token.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
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
import {
Connection,
PublicKey,
Account,
Transaction,
SystemProgram,
sendAndConfirmTransaction,
TransactionInstruction,
SYSVAR_RENT_PUBKEY,
SYSTEM_INSTRUCTION_LAYOUTS,
} from "@solana/web3.js"
import {
MintLayout,
AccountLayout,
} from "@solana/spl-token"
// import {
// Layout,
// } from "@solana/spl-token/layout"
import BufferLayout from "buffer-layout"
export const SPL_TOKEN_PROGRM_ID = new PublicKey("TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA")
async function getMinBalanceRentForExempt(
connection: Connection,
size: number,
): Promise<number> {
return await connection.getMinimumBalanceForRentExemption(size);
}
function createMintToInstruction(
programId: PublicKey,
mint: PublicKey,
dest: PublicKey,
authority: PublicKey | null,
multiSigners: Account[] | null,
amount: bigint,
): TransactionInstruction {
const dataLayout = BufferLayout.struct([
BufferLayout.u8('instruction'),
uint64('amount'),
]);
const data = Buffer.alloc(dataLayout.span);
dataLayout.encode(
{
instruction: 7, // MintTo instruction
amount: u64LEBuffer(amount),
},
data,
);
let keys = [
{pubkey: mint, isSigner: false, isWritable: true},
{pubkey: dest, isSigner: false, isWritable: true},
];
if (authority) {
keys.push({
pubkey: authority,
isSigner: true,
isWritable: false,
});
} else {
// FIXME: multisig
// keys.push({pubkey: authority, isSigner: false, isWritable: false});
// multiSigners.forEach(signer =>
// keys.push({
// pubkey: signer.publicKey,
// isSigner: true,
// isWritable: false,
// }),
// );
}
return new TransactionInstruction({
keys,
programId: programId,
data,
});
}
function createInitAccountInstruction(
programId: PublicKey,
mint: PublicKey,
account: PublicKey,
owner: PublicKey,
): TransactionInstruction {
const keys = [
{pubkey: account, isSigner: false, isWritable: true},
{pubkey: mint, isSigner: false, isWritable: false},
{pubkey: owner, isSigner: false, isWritable: false},
{pubkey: SYSVAR_RENT_PUBKEY, isSigner: false, isWritable: false},
];
const dataLayout = BufferLayout.struct([BufferLayout.u8('instruction')]);
const data = Buffer.alloc(dataLayout.span);
dataLayout.encode(
{
instruction: 1, // InitializeAccount instruction
},
data,
);
return new TransactionInstruction({
keys,
programId,
data,
});
}
export interface InstructionType {
index: number,
layout: BufferLayout,
}
export interface CreateAccountParams {
fromPubkey: PublicKey,
newAccountPubkey: PublicKey,
lamports: number,
space: number,
programId: PublicKey,
}
export function encodeData(type: InstructionType, fields: Object): Buffer {
const allocLength =
type.layout.span >= 0 ? type.layout.span : 0;
const data = Buffer.alloc(allocLength);
const layoutFields = Object.assign({instruction: type.index}, fields);
type.layout.encode(layoutFields, data);
return data;
}
function createAccount(params: CreateAccountParams): TransactionInstruction {
const type = SYSTEM_INSTRUCTION_LAYOUTS.Create;
const data = encodeData(type, {
lamports: params.lamports,
space: params.space,
programId: params.programId.toBuffer(),
});
// do you need the second account to be signed..?
return new TransactionInstruction({
keys: [
{pubkey: params.fromPubkey, isSigner: true, isWritable: true},
{pubkey: params.newAccountPubkey, isSigner: false, isWritable: true},
],
programId: SystemProgram.programId,
data,
});
}
export class Token {
constructor (private connection: Connection, private publicKey: PublicKey, private payer: Account, private programId = SPL_TOKEN_PROGRM_ID) {}
async createAccount(newAccount: Account, owner: PublicKey): Promise<PublicKey> {
// Allocate memory for the account
const balanceNeeded = await getMinBalanceRentForExempt(
this.connection,
AccountLayout.span,
);
// const newAccount = new Account();
const transaction = new Transaction();
const info = await this.connection.getAccountInfo(newAccount.publicKey)
if (!info) {
transaction.add(
// SystemProgram.createAccount({
createAccount({
fromPubkey: this.payer.publicKey,
newAccountPubkey: newAccount.publicKey,
lamports: balanceNeeded,
space: AccountLayout.span,
programId: this.programId,
}),
);
}
const mintPublicKey = this.publicKey;
transaction.add(
createInitAccountInstruction(
this.programId,
mintPublicKey,
newAccount.publicKey,
owner,
),
);
// Send the two instructions
await sendAndConfirmTransaction(
this.connection,
transaction,
[this.payer, newAccount]
);
return newAccount.publicKey;
}
public async mintTo(
dest: PublicKey,
authority: Account | null,
multiSigners: Account[] | null,
amount: bigint,
): Promise<void> {
let ownerPublicKey;
let signers;
if (authority) {
ownerPublicKey = authority.publicKey;
signers = [authority];
} else {
ownerPublicKey = authority;
signers = multiSigners;
}
await sendAndConfirmTransaction(
this.connection,
new Transaction().add(
createMintToInstruction(
SPL_TOKEN_PROGRM_ID,
this.publicKey,
dest,
ownerPublicKey,
multiSigners,
amount,
),
),
[this.payer, ...signers],
);
}
}
export class Mint {
constructor (private connection: Connection, private payer: Account) {}
public async info(mintAccount: PublicKey): Promise<MintInfo> {
const info = await this.connection.getAccountInfo(mintAccount);
if (info === null) {
throw new Error('Failed to find mint account');
}
if (!info.owner.equals(SPL_TOKEN_PROGRM_ID)) {
throw new Error(`Invalid mint owner: ${JSON.stringify(info.owner)}`);
}
if (info.data.length != MintLayout.span) {
throw new Error(`Invalid mint size`);
}
const data = Buffer.from(info.data);
const mintInfo = MintLayout.decode(data);
if (mintInfo.mintAuthorityOption === 0) {
mintInfo.mintAuthority = null;
} else {
mintInfo.mintAuthority = new PublicKey(mintInfo.mintAuthority);
}
mintInfo.supply = mintInfo.supply.readBigUInt64LE();
mintInfo.isInitialized = mintInfo.isInitialized != 0;
if (mintInfo.freezeAuthorityOption === 0) {
mintInfo.freezeAuthority = null;
} else {
mintInfo.freezeAuthority = new PublicKey(mintInfo.freezeAuthority);
}
return mintInfo;
}
public async createMint(
mintAccount: Account,
mintAuthority: PublicKey,
freezeAuthority: PublicKey | null,
decimals: number,
) {
const programId = SPL_TOKEN_PROGRM_ID
const {
connection,
payer,
} = this
// Allocate memory for the account
const balanceNeeded = await getMinBalanceRentForExempt(
connection,
MintLayout.span,
);
const transaction = new Transaction();
const info = await this.connection.getAccountInfo(mintAccount.publicKey)
if (info == null) {
transaction.add(
SystemProgram.createAccount({
fromPubkey: payer.publicKey,
newAccountPubkey: mintAccount.publicKey,
lamports: balanceNeeded,
space: MintLayout.span,
programId,
}),
)
}
transaction.add(
this.createInitMintInstruction(
programId,
mintAccount.publicKey,
decimals,
mintAuthority,
freezeAuthority,
),
)
// Send the two instructions
await sendAndConfirmTransaction(
connection,
transaction,
[payer, mintAccount], // mintAccount // i don't think it needs signature from mintAccount...
)
}
public createInitMintInstruction(
programId: PublicKey,
mint: PublicKey,
decimals: number,
mintAuthority: PublicKey,
freezeAuthority: PublicKey | null,
): TransactionInstruction {
const keys = [
{pubkey: mint, isSigner: false, isWritable: true},
{pubkey: SYSVAR_RENT_PUBKEY, isSigner: false, isWritable: false},
];
const commandDataLayout = BufferLayout.struct([
BufferLayout.u8('instruction'),
BufferLayout.u8('decimals'),
publicKey('mintAuthority'),
BufferLayout.u8('option'),
publicKey('freezeAuthority'),
]);
let data = Buffer.alloc(1024);
{
const encodeLength = commandDataLayout.encode(
{
instruction: 0, // InitializeMint instruction
decimals,
mintAuthority: mintAuthority.toBuffer(),
option: freezeAuthority === null ? 0 : 1,
freezeAuthority: (freezeAuthority || new PublicKey(0)).toBuffer(),
},
data,
);
data = data.slice(0, encodeLength);
}
return new TransactionInstruction({
keys,
programId,
data,
});
}
}
/**
* Layout for a public key
*/
export const publicKey = (property: string): Object => {
return BufferLayout.blob(32, property);
};
// /**
// * Layout for a 64bit unsigned value
// */
export const uint64 = (property: string = 'uint64'): Object => {
return BufferLayout.blob(8, property);
};
// /**
// * Layout for a Rust String type
// */
// export const rustString = (property: string = 'string'): Object => {
// const rsl = BufferLayout.struct(
// [
// BufferLayout.u32('length'),
// BufferLayout.u32('lengthPadding'),
// BufferLayout.blob(BufferLayout.offset(BufferLayout.u32(), -8), 'chars'),
// ],
// property,
// );
// const _decode = rsl.decode.bind(rsl);
// const _encode = rsl.encode.bind(rsl);
// rsl.decode = (buffer, offset) => {
// const data = _decode(buffer, offset);
// return data.chars.toString('utf8');
// };
// rsl.encode = (str, buffer, offset) => {
// const data = {
// chars: Buffer.from(str, 'utf8'),
// };
// return _encode(data, buffer, offset);
// };
// return rsl;
// };
function u64LEBuffer(n: bigint): Buffer {
const buf = Buffer.allocUnsafe(8)
buf.writeBigUInt64LE(n)
return buf
}
interface MintInfo {
/**
* Optional authority used to mint new tokens. The mint authority may only be provided during
* mint creation. If no mint authority is present then the mint has a fixed supply and no
* further tokens may be minted.
*/
mintAuthority: null | PublicKey,
/**
* Total supply of tokens
*/
supply: BigInt,
/**
* Number of base 10 digits to the right of the decimal place
*/
decimals: number,
/**
* Is this mint initialized
*/
isInitialized: boolean,
/**
* Optional authority to freeze token accounts
*/
freezeAuthority: null | PublicKey,
}