@metaplex-foundation/mpl-metaplex
Version:
MPL Metaplex JavaScript API.
19 lines (18 loc) • 605 B
TypeScript
import { Borsh, Transaction } from '@metaplex-foundation/mpl-core';
import { PublicKey, TransactionCtorFields } from '@solana/web3.js';
import { ParamsWithStore } from '@metaplex-foundation/mpl-token-vault';
export declare class SetStoreArgs extends Borsh.Data<{
public: boolean;
}> {
static readonly SCHEMA: any;
instruction: number;
public: boolean;
}
declare type SetStoreParams = {
admin: PublicKey;
isPublic: boolean;
};
export declare class SetStore extends Transaction {
constructor(options: TransactionCtorFields, params: ParamsWithStore<SetStoreParams>);
}
export {};