@kamino-finance/farms-sdk
Version:
24 lines • 884 B
TypeScript
/**
* This code was AUTOGENERATED using the Codama library.
* Please DO NOT EDIT THIS FILE, instead use visitors
* to add features, then rerun Codama to update it.
*
* @see https://github.com/codama-idl/codama
*/
import { type Address, type FixedSizeCodec, type FixedSizeDecoder, type FixedSizeEncoder } from "@solana/kit";
export type TokenInfo = {
mint: Address;
decimals: bigint;
tokenProgram: Address;
padding: Array<bigint>;
};
export type TokenInfoArgs = {
mint: Address;
decimals: number | bigint;
tokenProgram: Address;
padding: Array<number | bigint>;
};
export declare function getTokenInfoEncoder(): FixedSizeEncoder<TokenInfoArgs>;
export declare function getTokenInfoDecoder(): FixedSizeDecoder<TokenInfo>;
export declare function getTokenInfoCodec(): FixedSizeCodec<TokenInfoArgs, TokenInfo>;
//# sourceMappingURL=tokenInfo.d.ts.map