UNPKG

@renec-foundation/mpl-token-metadata

Version:

MPL Token Metadata JavaScript API.

17 lines (16 loc) 561 B
import { Borsh, Transaction } from '@renec-foundation/mpl-core'; import { PublicKey, TransactionCtorFields } from '@solana/web3.js'; export declare class ThawDelegatedAccountArgs extends Borsh.Data { static readonly SCHEMA: any; instruction: number; } type ThawDelegatedAccountParams = { delegate: PublicKey; token_account: PublicKey; edition: PublicKey; mint: PublicKey; }; export declare class ThawDelegatedAccount extends Transaction { constructor(options: TransactionCtorFields, params: ThawDelegatedAccountParams); } export {};