@metaplex-foundation/mpl-auction-house
Version:
MPL Auction House JavaScript API.
18 lines (17 loc) • 851 B
TypeScript
import * as beet from '@metaplex-foundation/beet';
import * as web3 from '@solana/web3.js';
export declare const executeSaleRemainingAccountsStruct: beet.BeetArgsStruct<{
instructionDiscriminator: number[];
}>;
export declare type ExecuteSaleRemainingAccountsInstructionAccounts = {
metadataProgram: web3.PublicKey;
edition: web3.PublicKey;
ownerTr: web3.PublicKey;
destinationTr: web3.PublicKey;
authRulesProgram: web3.PublicKey;
authRules: web3.PublicKey;
sysvarInstructions: web3.PublicKey;
anchorRemainingAccounts?: web3.AccountMeta[];
};
export declare const executeSaleRemainingAccountsInstructionDiscriminator: number[];
export declare function createExecuteSaleRemainingAccountsInstruction(accounts: ExecuteSaleRemainingAccountsInstructionAccounts, programId?: web3.PublicKey): web3.TransactionInstruction;