@metaplex-foundation/mpl-auction-house
Version:
MPL Auction House JavaScript API.
22 lines (21 loc) • 965 B
TypeScript
import * as beet from '@metaplex-foundation/beet';
import * as web3 from '@solana/web3.js';
export declare const cancelRemainingAccountsStruct: beet.BeetArgsStruct<{
instructionDiscriminator: number[];
}>;
export declare type CancelRemainingAccountsInstructionAccounts = {
metadataProgram: web3.PublicKey;
delegateRecord: web3.PublicKey;
programAsSigner: web3.PublicKey;
metadata: web3.PublicKey;
edition: web3.PublicKey;
tokenRecord: web3.PublicKey;
tokenMint: web3.PublicKey;
authRulesProgram: web3.PublicKey;
authRules: web3.PublicKey;
sysvarInstructions: web3.PublicKey;
systemProgram?: web3.PublicKey;
anchorRemainingAccounts?: web3.AccountMeta[];
};
export declare const cancelRemainingAccountsInstructionDiscriminator: number[];
export declare function createCancelRemainingAccountsInstruction(accounts: CancelRemainingAccountsInstructionAccounts, programId?: web3.PublicKey): web3.TransactionInstruction;