UNPKG

kamino-sdk-beta

Version:

Typescript SDK for interacting with the Kamino Liquidity (kliquidity) protocol

27 lines 883 B
import * as types from "../types"; export interface CompressedBinDepositAmountFields { binId: number; amount: number; } export interface CompressedBinDepositAmountJSON { binId: number; amount: number; } export declare class CompressedBinDepositAmount { readonly binId: number; readonly amount: number; constructor(fields: CompressedBinDepositAmountFields); static layout(property?: string): any; static fromDecoded(obj: any): types.CompressedBinDepositAmount; static toEncodable(fields: CompressedBinDepositAmountFields): { binId: number; amount: number; }; toJSON(): CompressedBinDepositAmountJSON; static fromJSON(obj: CompressedBinDepositAmountJSON): CompressedBinDepositAmount; toEncodable(): { binId: number; amount: number; }; } //# sourceMappingURL=CompressedBinDepositAmount.d.ts.map