UNPKG

@renec-foundation/mpl-token-metadata

Version:

MPL Token Metadata JavaScript API.

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