/** * 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 DepositVaultEvent = { user: Address; userAmountAssetDeposited: bigint; userAmountLpMinted: bigint; vault: Address; vaultAssetMint: Address; vaultAssetTotalValueBefore: bigint; vaultAssetTotalValueAfter: bigint; vaultLpSupplyInclFeesBefore: bigint; vaultLpSupplyInclFeesAfter: bigint; vaultLpTotalAccumulatedFeesBefore: bigint; vaultLpTotalAccumulatedFeesAfter: bigint; vaultLpDeadWeightBefore: bigint; vaultLpDeadWeightAfter: bigint; vaultHighestAssetPerLpDecimalBitsBefore: bigint; vaultHighestAssetPerLpDecimalBitsAfter: bigint; depositedTs: bigint; }; export type DepositVaultEventArgs = { user: Address; userAmountAssetDeposited: number | bigint; userAmountLpMinted: number | bigint; vault: Address; vaultAssetMint: Address; vaultAssetTotalValueBefore: number | bigint; vaultAssetTotalValueAfter: number | bigint; vaultLpSupplyInclFeesBefore: number | bigint; vaultLpSupplyInclFeesAfter: number | bigint; vaultLpTotalAccumulatedFeesBefore: number | bigint; vaultLpTotalAccumulatedFeesAfter: number | bigint; vaultLpDeadWeightBefore: number | bigint; vaultLpDeadWeightAfter: number | bigint; vaultHighestAssetPerLpDecimalBitsBefore: number | bigint; vaultHighestAssetPerLpDecimalBitsAfter: number | bigint; depositedTs: number | bigint; }; export declare function getDepositVaultEventEncoder(): FixedSizeEncoder; export declare function getDepositVaultEventDecoder(): FixedSizeDecoder; export declare function getDepositVaultEventCodec(): FixedSizeCodec; //# sourceMappingURL=depositVaultEvent.d.ts.map