UNPKG

@solana-suite/nft

Version:
14 lines 611 B
import { Instruction, Pubkey, Result, Secret } from '@solana-suite/shared'; export declare namespace Metaplex { /** * Thawing a target NFT * it should set to freezeAuthority when mint() * * @param {Pubkey} mint // mint address * @param {Pubkey} owner // current owner * @param {Secret} freezeAuthority // setted freeze authority of nft * @param {Secret} feePayer? // fee payer */ const thaw: (mint: Pubkey, owner: Pubkey, freezeAuthority: Secret, feePayer?: Secret) => Result<Instruction, Error>; } //# sourceMappingURL=thaw.d.ts.map