forked from ledamint-IO/js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcreateNft.ts
451 lines (395 loc) · 11.7 KB
/
createNft.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
447
448
449
450
451
import { Metaplex } from '@/Metaplex';
import { findAssociatedTokenAccountPda } from '@/plugins/tokenModule';
import {
BigNumber,
CreatorInput,
Operation,
OperationHandler,
Signer,
token,
toPublicKey,
useOperation,
} from '@/types';
import { DisposableScope, Option, TransactionBuilder } from '@/utils';
import {
createCreateMasterEditionV3Instruction,
Uses,
} from '@safecoin/lpl-token-metadata';
import { ConfirmOptions, Keypair, PublicKey } from '@safecoin/web3.js';
import { SendAndConfirmTransactionResponse } from '../../rpcModule';
import { assertNftWithToken, NftWithToken } from '../models';
import { findMasterEditionV2Pda } from '../pdas';
// -----------------
// Operation
// -----------------
const Key = 'CreateNftOperation' as const;
/**
* Creates a new NFT.
*
* ```ts
* const { nft } = await metaplex
* .nfts()
* .create({
* name: 'My NFT',
* uri: 'https://example.com/my-nft',
* sellerFeeBasisPoints: 250, // 2.5%
* })
* .run();
* ```
*
* @group Operations
* @category Constructors
*/
export const createNftOperation = useOperation<CreateNftOperation>(Key);
/**
* @group Operations
* @category Types
*/
export type CreateNftOperation = Operation<
typeof Key,
CreateNftInput,
CreateNftOutput
>;
/**
* @group Operations
* @category Inputs
*/
export type CreateNftInput = {
/**
* The Signer paying for the creation of all accounts
* required to create a new NFT.
* This account will also pay for the transaction fee.
*
* @defaultValue `metaplex.identity()`
*/
payer?: Signer;
/**
* The authority that will be able to make changes
* to the created NFT.
*
* This is required as a Signer because creating the master
* edition account requires the update authority to sign
* the transaction.
*
* @defaultValue `metaplex.identity()`
*/
updateAuthority?: Signer;
/**
* The authority that is currently allowed to mint new tokens
* for the provided mint account.
*
* Note that this is only relevant if the `useExistingMint` parameter
* if provided.
*
* @defaultValue `metaplex.identity()`
*/
mintAuthority?: Signer;
/**
* The address of the new mint account as a Signer.
* This is useful if you already have a generated Keypair
* for the mint account of the NFT to create.
*
* @defaultValue `Keypair.generate()`
*/
useNewMint?: Signer;
/**
* The address of the existing mint account that should be converted
* into an NFT. The account at this address should have the right
* requirements to become an NFT, e.g. its supply should contains
* exactly 1 token.
*
* @defaultValue Defaults to creating a new mint account with the
* right requirements.
*/
useExistingMint?: PublicKey;
/**
* The owner of the NFT to create.
*
* @defaultValue `metaplex.identity().publicKey`
*/
tokenOwner?: PublicKey;
/**
* The token account linking the mint account and the token owner
* together. By default, the associated token account will be used.
*
* If the provided token account does not exist, it must be passed as
* a Signer as we will need to create it before creating the NFT.
*
* @defaultValue Defaults to creating a new associated token account
* using the `mintAddress` and `tokenOwner` parameters.
*/
tokenAddress?: PublicKey | Signer;
/** The URI that points to the JSON metadata of the asset. */
uri: string;
/** The on-chain name of the asset, e.g. "My NFT #123". */
name: string;
/**
* The royalties in percent basis point (i.e. 250 is 2.5%) that
* should be paid to the creators on each secondary sale.
*/
sellerFeeBasisPoints: number;
/**
* The on-chain symbol of the asset, stored in the Metadata account.
* E.g. "MYNFT".
*
* @defaultValue `""`
*/
symbol?: string;
/**
* {@inheritDoc CreatorInput}
* @defaultValue
* Defaults to using the provided `updateAuthority` as the only verified creator.
* ```ts
* [{
* address: updateAuthority.publicKey,
* authority: updateAuthority,
* share: 100,
* }]
* ```
*/
creators?: CreatorInput[];
/**
* Whether or not the NFT's metadata is mutable.
* When set to `false` no one can update the Metadata account,
* not even the update authority.
*
* @defaultValue `true`
*/
isMutable?: boolean;
/**
* The maximum supply of printed editions.
* When this is `null`, an unlimited amount of editions
* can be printed from the original edition.
*
* @defaultValue `toBigNumber(0)`
*/
maxSupply?: Option<BigNumber>;
/**
* When this field is not `null`, it indicates that the NFT
* can be "used" by its owner or any approved "use authorities".
*
* @defaultValue `null`
*/
uses?: Option<Uses>;
/**
* Whether the created NFT is a Collection NFT.
* When set to `true`, the NFT will be created as a
* Sized Collection NFT with an initial size of 0.
*
* @defaultValue `false`
*/
isCollection?: boolean;
/**
* The Collection NFT that this new NFT belongs to.
* When `null`, the created NFT will not be part of a collection.
*
* @defaultValue `null`
*/
collection?: Option<PublicKey>;
/**
* The collection authority that should sign the created NFT
* to prove that it is part of the provided collection.
* When `null`, the provided `collection` will not be verified.
*
* @defaultValue `null`
*/
collectionAuthority?: Option<Signer>;
/**
* Whether or not the provided `collectionAuthority` is a delegated
* collection authority, i.e. it was approved by the update authority
* using `metaplex.nfts().approveCollectionAuthority()`.
*
* @defaultValue `false`
*/
collectionAuthorityIsDelegated?: boolean;
/**
* Whether or not the provided `collection` is a sized collection
* and not a legacy collection.
*
* @defaultValue `true`
*/
collectionIsSized?: boolean;
/** The address of the SPL Token program to override if necessary. */
tokenProgram?: PublicKey;
/** The address of the SPL Associated Token program to override if necessary. */
associatedTokenProgram?: PublicKey;
/** A set of options to configure how the transaction is sent and confirmed. */
confirmOptions?: ConfirmOptions;
};
/**
* @group Operations
* @category Outputs
*/
export type CreateNftOutput = {
/** The blockchain response from sending and confirming the transaction. */
response: SendAndConfirmTransactionResponse;
/** The newly created NFT and its associated token. */
nft: NftWithToken;
/** The address of the mint account. */
mintAddress: PublicKey;
/** The address of the metadata account. */
metadataAddress: PublicKey;
/** The address of the master edition account. */
masterEditionAddress: PublicKey;
/** The address of the token account. */
tokenAddress: PublicKey;
};
/**
* @group Operations
* @category Handlers
*/
export const createNftOperationHandler: OperationHandler<CreateNftOperation> = {
handle: async (
operation: CreateNftOperation,
metaplex: Metaplex,
scope: DisposableScope
) => {
const {
useNewMint = Keypair.generate(),
useExistingMint,
tokenOwner = metaplex.identity().publicKey,
tokenAddress: tokenSigner,
confirmOptions,
} = operation.input;
const mintAddress = useExistingMint ?? useNewMint.publicKey;
const tokenAddress = tokenSigner
? toPublicKey(tokenSigner)
: findAssociatedTokenAccountPda(mintAddress, tokenOwner);
const tokenAccount = await metaplex.rpc().getAccount(tokenAddress);
const tokenExists = tokenAccount.exists;
const builder = await createNftBuilder(metaplex, {
...operation.input,
useNewMint,
tokenOwner,
tokenExists,
});
scope.throwIfCanceled();
const output = await builder.sendAndConfirm(metaplex, confirmOptions);
scope.throwIfCanceled();
const nft = await metaplex
.nfts()
.findByMint({
mintAddress: output.mintAddress,
tokenAddress: output.tokenAddress,
})
.run(scope);
scope.throwIfCanceled();
assertNftWithToken(nft);
return { ...output, nft };
},
};
// -----------------
// Builder
// -----------------
/**
* @group Transaction Builders
* @category Inputs
*/
export type CreateNftBuilderParams = Omit<CreateNftInput, 'confirmOptions'> & {
/**
* Whether or not the provided token account already exists.
* If `false`, we'll add another instruction to create it.
*
* @defaultValue `true`
*/
tokenExists?: boolean;
/** A key to distinguish the instruction that creates the mint account. */
createMintAccountInstructionKey?: string;
/** A key to distinguish the instruction that initializes the mint account. */
initializeMintInstructionKey?: string;
/** A key to distinguish the instruction that creates the associated token account. */
createAssociatedTokenAccountInstructionKey?: string;
/** A key to distinguish the instruction that creates the token account. */
createTokenAccountInstructionKey?: string;
/** A key to distinguish the instruction that initializes the token account. */
initializeTokenInstructionKey?: string;
/** A key to distinguish the instruction that mints tokens. */
mintTokensInstructionKey?: string;
/** A key to distinguish the instruction that creates the metadata account. */
createMetadataInstructionKey?: string;
/** A key to distinguish the instruction that creates the master edition account. */
createMasterEditionInstructionKey?: string;
};
/**
* @group Transaction Builders
* @category Contexts
*/
export type CreateNftBuilderContext = Omit<CreateNftOutput, 'response' | 'nft'>;
/**
* Creates a new NFT.
*
* ```ts
* const transactionBuilder = await metaplex
* .nfts()
* .builders()
* .create({
* name: 'My NFT',
* uri: 'https://example.com/my-nft',
* sellerFeeBasisPoints: 250, // 2.5%
* });
* ```
*
* @group Transaction Builders
* @category Constructors
*/
export const createNftBuilder = async (
metaplex: Metaplex,
params: CreateNftBuilderParams
): Promise<TransactionBuilder<CreateNftBuilderContext>> => {
const {
useNewMint = Keypair.generate(),
payer = metaplex.identity(),
updateAuthority = metaplex.identity(),
mintAuthority = metaplex.identity(),
tokenOwner = metaplex.identity().publicKey,
} = params;
const sftBuilder = await metaplex
.nfts()
.builders()
.createSft({
...params,
payer,
updateAuthority,
mintAuthority,
freezeAuthority: mintAuthority.publicKey,
useNewMint,
tokenOwner,
tokenAmount: token(1),
decimals: 0,
});
const { mintAddress, metadataAddress, tokenAddress } =
sftBuilder.getContext();
const masterEditionAddress = findMasterEditionV2Pda(mintAddress);
return (
TransactionBuilder.make<CreateNftBuilderContext>()
.setFeePayer(payer)
.setContext({
mintAddress,
metadataAddress,
masterEditionAddress,
tokenAddress: tokenAddress as PublicKey,
})
// Create the mint, the token and the metadata.
.add(sftBuilder)
// Create master edition account (prevents further minting).
.add({
instruction: createCreateMasterEditionV3Instruction(
{
edition: masterEditionAddress,
mint: mintAddress,
updateAuthority: updateAuthority.publicKey,
mintAuthority: mintAuthority.publicKey,
payer: payer.publicKey,
metadata: metadataAddress,
},
{
createMasterEditionArgs: {
maxSupply: params.maxSupply === undefined ? 0 : params.maxSupply,
},
}
),
signers: [payer, mintAuthority, updateAuthority],
key: params.createMasterEditionInstructionKey ?? 'createMasterEdition',
})
);
};