@kamino-finance/scope-sdk
Version:
Scope Oracle SDK
19 lines • 854 B
TypeScript
import { Address, IAccountMeta, IInstruction, TransactionSigner } from "@solana/kit";
import * as types from "../types";
export interface WithdrawFeesArgs {
params: types.WithdrawFeesParamsFields;
}
export interface WithdrawFeesAccounts {
keeper: TransactionSigner;
transferAuthority: Address;
perpetuals: Address;
pool: Address;
custody: Address;
custodyTokenAccount: Address;
custodyOracleAccount: Address;
receivingTokenAccount: Address;
tokenProgram: Address;
}
export declare const layout: import("buffer-layout").Layout<unknown>;
export declare function withdrawFees(args: WithdrawFeesArgs, accounts: WithdrawFeesAccounts, programAddress?: Address): IInstruction<string, readonly (IAccountMeta<string> | import("@solana/kit").IAccountLookupMeta<string, string>)[]>;
//# sourceMappingURL=withdrawFees.d.ts.map