@kamino-finance/klend-sdk
Version:
Typescript SDK for interacting with the Kamino Lending (klend) protocol
13 lines • 561 B
TypeScript
import { TransactionInstruction, PublicKey } from "@solana/web3.js";
import * as types from "../types";
export interface UpdateGlobalConfigArgs {
mode: types.UpdateGlobalConfigModeKind;
value: Uint8Array;
}
export interface UpdateGlobalConfigAccounts {
globalAdmin: PublicKey;
globalConfig: PublicKey;
}
export declare const layout: any;
export declare function updateGlobalConfig(args: UpdateGlobalConfigArgs, accounts: UpdateGlobalConfigAccounts, programId?: PublicKey): TransactionInstruction;
//# sourceMappingURL=updateGlobalConfig.d.ts.map