@marinade.finance/kamino-sdk
Version:
14 lines (13 loc) • 483 B
TypeScript
import { TransactionInstruction, PublicKey } from "@solana/web3.js";
export interface UpdateGlobalConfigArgs {
key: number;
index: number;
value: Array<number>;
}
export interface UpdateGlobalConfigAccounts {
adminAuthority: PublicKey;
globalConfig: PublicKey;
systemProgram: PublicKey;
}
export declare const layout: any;
export declare function updateGlobalConfig(args: UpdateGlobalConfigArgs, accounts: UpdateGlobalConfigAccounts): TransactionInstruction;