amilz
amilz
In case this is helpful: i just updated an nft mint script i use to `0.17.2` and got this same error when running `await METAPLEX.nfts().create({...})` on `devnet`: ``` key: 'metaplex.errors.sdk.account_not_found',...
Occasionally hitting a similar issue minting from a candy machine using SDK: ```typescript let { nft, response } = await METAPLEX.candyMachines().mint({ candyMachine, collectionUpdateAuthority: WALLET.publicKey, },{commitment:'finalized'}); ``` NFT is actually getting...
The `` component for `mint` is passed with parameters `link` and `truncate` at line 133: https://github.com/solana-labs/solana/blob/db0bff06686c9b1778fd99f2fa376aa72b99d749/explorer/src/components/account/OwnedTokensCard.tsx#L133 Here's where the `addressLabel` is defined: https://github.com/solana-labs/solana/blob/db0bff06686c9b1778fd99f2fa376aa72b99d749/explorer/src/components/common/Address.tsx#L46-59 ```typescript let addressLabel = raw ? address...