Open Winfans opened 5 months ago
const result = await createNft(umi, { mint, name: metadata.name, uri: metadata.uri, symbol: metadata.symbol, authority: umi.identity, sellerFeeBasisPoints: percentAmount(1), }) .add({ instruction: ComputeBudgetProgram.setComputeUnitPrice({ microLamports: 3300000, }) as any, signers: [umi.payer], bytesCreatedOnChain: 0, }) .useV0() .setAddressLookupTables([ { publicKey: umi.identity.publicKey, addresses: [umi.identity.publicKey, mint.publicKey], }, ]) .sendAndConfirm(umi, { // skipPreflight: true, });
i've got the same issue.