UNPKG

@cks-systems/manifest-sdk

Version:
41 lines (40 loc) 1.23 kB
/** * This code was GENERATED using the solita package. * Please DO NOT EDIT THIS FILE, instead rerun solita to update it or write a wrapper to add functionality. * * See: https://github.com/metaplex-foundation/solita */ import * as beet from '@metaplex-foundation/beet'; import * as web3 from '@solana/web3.js'; /** * @category Instructions * @category Expand * @category generated */ export declare const ExpandStruct: beet.BeetArgsStruct<{ instructionDiscriminator: number; }>; /** * Accounts required by the _Expand_ instruction * * @property [_writable_, **signer**] payer * @property [_writable_] market * @category Instructions * @category Expand * @category generated */ export type ExpandInstructionAccounts = { payer: web3.PublicKey; market: web3.PublicKey; systemProgram?: web3.PublicKey; }; export declare const expandInstructionDiscriminator = 5; /** * Creates a _Expand_ instruction. * * @param accounts that will be accessed while the instruction is processed * @category Instructions * @category Expand * @category generated */ export declare function createExpandInstruction(accounts: ExpandInstructionAccounts, programId?: web3.PublicKey): web3.TransactionInstruction;