/** * 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, type ReadonlyUint8Array } from "@solana/kit"; export type VaultAsset = { /** The mint for the vault’s main asset. */ mint: Address; /** The “idle” token account holding un-invested assets. */ idleAta: Address; /** The total amount of this asset currently in the vault. */ totalValue: bigint; /** The bump for the vault asset mint. */ idleAtaAuthBump: number; /** Reserved bytes for future use. */ reserved: ReadonlyUint8Array; }; export type VaultAssetArgs = { /** The mint for the vault’s main asset. */ mint: Address; /** The “idle” token account holding un-invested assets. */ idleAta: Address; /** The total amount of this asset currently in the vault. */ totalValue: number | bigint; /** The bump for the vault asset mint. */ idleAtaAuthBump: number; /** Reserved bytes for future use. */ reserved: ReadonlyUint8Array; }; export declare function getVaultAssetEncoder(): FixedSizeEncoder; export declare function getVaultAssetDecoder(): FixedSizeDecoder; export declare function getVaultAssetCodec(): FixedSizeCodec; //# sourceMappingURL=vaultAsset.d.ts.map