@rainfi/sdk
Version:
This package is used to interact with Rain.fi protocol on Solana
53 lines (52 loc) • 1.73 kB
TypeScript
/**
* 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';
import { PoolStatus } from '../types/PoolStatus';
/**
* @category Instructions
* @category UpdatePoolStatus
* @category generated
*/
export type UpdatePoolStatusInstructionArgs = {
status: PoolStatus;
};
/**
* @category Instructions
* @category UpdatePoolStatus
* @category generated
*/
export declare const updatePoolStatusStruct: beet.BeetArgsStruct<UpdatePoolStatusInstructionArgs & {
instructionDiscriminator: number[];
}>;
/**
* Accounts required by the _updatePoolStatus_ instruction
*
* @property [_writable_, **signer**] signer
* @property [_writable_] pool
* @category Instructions
* @category UpdatePoolStatus
* @category generated
*/
export type UpdatePoolStatusInstructionAccounts = {
signer: web3.PublicKey;
pool: web3.PublicKey;
systemProgram?: web3.PublicKey;
anchorRemainingAccounts?: web3.AccountMeta[];
};
export declare const updatePoolStatusInstructionDiscriminator: number[];
/**
* Creates a _UpdatePoolStatus_ instruction.
*
* @param accounts that will be accessed while the instruction is processed
* @param args to provide as instruction data to the program
*
* @category Instructions
* @category UpdatePoolStatus
* @category generated
*/
export declare function createUpdatePoolStatusInstruction(accounts: UpdatePoolStatusInstructionAccounts, args: UpdatePoolStatusInstructionArgs, programId?: web3.PublicKey): web3.TransactionInstruction;