@metaplex-foundation/mpl-auction-house
Version:
MPL Auction House JavaScript API.
19 lines (18 loc) • 852 B
TypeScript
import * as beet from '@metaplex-foundation/beet';
import * as web3 from '@solana/web3.js';
export declare const sellRemainingAccountsStruct: beet.BeetArgsStruct<{
instructionDiscriminator: number[];
}>;
export declare type SellRemainingAccountsInstructionAccounts = {
metadataProgram: web3.PublicKey;
delegateRecord: web3.PublicKey;
tokenRecord: web3.PublicKey;
tokenMint: web3.PublicKey;
edition: web3.PublicKey;
authRulesProgram: web3.PublicKey;
authRules: web3.PublicKey;
sysvarInstructions: web3.PublicKey;
anchorRemainingAccounts?: web3.AccountMeta[];
};
export declare const sellRemainingAccountsInstructionDiscriminator: number[];
export declare function createSellRemainingAccountsInstruction(accounts: SellRemainingAccountsInstructionAccounts, programId?: web3.PublicKey): web3.TransactionInstruction;