UNPKG

@renec-foundation/mpl-token-metadata

Version:

MPL Token Metadata JavaScript API.

20 lines (19 loc) 721 B
import { Borsh, Transaction } from '@renec-foundation/mpl-core'; import { PublicKey, TransactionCtorFields } from '@solana/web3.js'; export declare class SetAndVerifyCollectionArgs extends Borsh.Data { static readonly SCHEMA: any; instruction: number; } type SetAndVerifyCollectionParams = { metadata: PublicKey; collectionAuthority: PublicKey; collectionMint: PublicKey; updateAuthority: PublicKey; collectionMetadata: PublicKey; collectionMasterEdition: PublicKey; collectionAuthorityRecord?: PublicKey; }; export declare class SetAndVerifyCollectionCollection extends Transaction { constructor(options: TransactionCtorFields, params: SetAndVerifyCollectionParams); } export {};