import { Coin, type CoinSDKType } from '../../cosmos/base/v1beta1/coin.js'; import { BinaryReader, BinaryWriter } from '../../binary.js'; import { type JsonSafe } from '../../json-safe.js'; export declare enum DepositRecord_Status { /** TRANSFER_QUEUE - in transfer queue to be sent to the delegation ICA */ TRANSFER_QUEUE = 0, /** TRANSFER_IN_PROGRESS - transfer in progress (IBC packet sent, ack not received) */ TRANSFER_IN_PROGRESS = 2, /** DELEGATION_QUEUE - in staking queue on delegation ICA */ DELEGATION_QUEUE = 1, /** DELEGATION_IN_PROGRESS - staking in progress (ICA packet sent, ack not received) */ DELEGATION_IN_PROGRESS = 3, UNRECOGNIZED = -1 } export declare const DepositRecord_StatusSDKType: typeof DepositRecord_Status; export declare function depositRecord_StatusFromJSON(object: any): DepositRecord_Status; export declare function depositRecord_StatusToJSON(object: DepositRecord_Status): string; export declare enum DepositRecord_Source { STRIDE = 0, WITHDRAWAL_ICA = 1, UNRECOGNIZED = -1 } export declare const DepositRecord_SourceSDKType: typeof DepositRecord_Source; export declare function depositRecord_SourceFromJSON(object: any): DepositRecord_Source; export declare function depositRecord_SourceToJSON(object: DepositRecord_Source): string; export declare enum HostZoneUnbonding_Status { /** UNBONDING_QUEUE - tokens bonded on delegate account */ UNBONDING_QUEUE = 0, /** UNBONDING_IN_PROGRESS - unbonding ICA has been submitted */ UNBONDING_IN_PROGRESS = 3, /** UNBONDING_RETRY_QUEUE - unbonding ICA failed for at least one batch and need to be retried */ UNBONDING_RETRY_QUEUE = 5, /** EXIT_TRANSFER_QUEUE - unbonding completed on delegate account */ EXIT_TRANSFER_QUEUE = 1, /** EXIT_TRANSFER_IN_PROGRESS - redemption sweep has been submitted */ EXIT_TRANSFER_IN_PROGRESS = 4, /** CLAIMABLE - transfer success */ CLAIMABLE = 2, UNRECOGNIZED = -1 } export declare const HostZoneUnbonding_StatusSDKType: typeof HostZoneUnbonding_Status; export declare function hostZoneUnbonding_StatusFromJSON(object: any): HostZoneUnbonding_Status; export declare function hostZoneUnbonding_StatusToJSON(object: HostZoneUnbonding_Status): string; export declare enum LSMTokenDeposit_Status { DEPOSIT_PENDING = 0, TRANSFER_QUEUE = 1, TRANSFER_IN_PROGRESS = 2, TRANSFER_FAILED = 3, DETOKENIZATION_QUEUE = 4, DETOKENIZATION_IN_PROGRESS = 5, DETOKENIZATION_FAILED = 6, UNRECOGNIZED = -1 } export declare const LSMTokenDeposit_StatusSDKType: typeof LSMTokenDeposit_Status; export declare function lSMTokenDeposit_StatusFromJSON(object: any): LSMTokenDeposit_Status; export declare function lSMTokenDeposit_StatusToJSON(object: LSMTokenDeposit_Status): string; export interface UserRedemptionRecord { /** {chain_id}.{epoch}.{receiver} */ id: string; receiver: string; nativeTokenAmount: string; denom: string; hostZoneId: string; epochNumber: bigint; claimIsPending: boolean; stTokenAmount: string; } export interface UserRedemptionRecordProtoMsg { typeUrl: '/stride.records.UserRedemptionRecord'; value: Uint8Array; } export interface UserRedemptionRecordSDKType { id: string; receiver: string; native_token_amount: string; denom: string; host_zone_id: string; epoch_number: bigint; claim_is_pending: boolean; st_token_amount: string; } export interface DepositRecord { id: bigint; amount: string; denom: string; hostZoneId: string; status: DepositRecord_Status; depositEpochNumber: bigint; source: DepositRecord_Source; delegationTxsInProgress: bigint; } export interface DepositRecordProtoMsg { typeUrl: '/stride.records.DepositRecord'; value: Uint8Array; } export interface DepositRecordSDKType { id: bigint; amount: string; denom: string; host_zone_id: string; status: DepositRecord_Status; deposit_epoch_number: bigint; source: DepositRecord_Source; delegation_txs_in_progress: bigint; } export interface HostZoneUnbonding { stTokenAmount: string; nativeTokenAmount: string; stTokensToBurn: string; nativeTokensToUnbond: string; claimableNativeTokens: string; undelegationTxsInProgress: bigint; denom: string; hostZoneId: string; unbondingTime: bigint; status: HostZoneUnbonding_Status; userRedemptionRecords: string[]; } export interface HostZoneUnbondingProtoMsg { typeUrl: '/stride.records.HostZoneUnbonding'; value: Uint8Array; } export interface HostZoneUnbondingSDKType { st_token_amount: string; native_token_amount: string; st_tokens_to_burn: string; native_tokens_to_unbond: string; claimable_native_tokens: string; undelegation_txs_in_progress: bigint; denom: string; host_zone_id: string; unbonding_time: bigint; status: HostZoneUnbonding_Status; user_redemption_records: string[]; } export interface EpochUnbondingRecord { epochNumber: bigint; hostZoneUnbondings: HostZoneUnbonding[]; } export interface EpochUnbondingRecordProtoMsg { typeUrl: '/stride.records.EpochUnbondingRecord'; value: Uint8Array; } export interface EpochUnbondingRecordSDKType { epoch_number: bigint; host_zone_unbondings: HostZoneUnbondingSDKType[]; } export interface LSMTokenDeposit { depositId: string; chainId: string; denom: string; ibcDenom: string; stakerAddress: string; validatorAddress: string; amount: string; stToken: Coin; status: LSMTokenDeposit_Status; } export interface LSMTokenDepositProtoMsg { typeUrl: '/stride.records.LSMTokenDeposit'; value: Uint8Array; } export interface LSMTokenDepositSDKType { deposit_id: string; chain_id: string; denom: string; ibc_denom: string; staker_address: string; validator_address: string; amount: string; st_token: CoinSDKType; status: LSMTokenDeposit_Status; } export declare const UserRedemptionRecord: { typeUrl: "/stride.records.UserRedemptionRecord"; encode(message: UserRedemptionRecord, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): UserRedemptionRecord; fromJSON(object: any): UserRedemptionRecord; toJSON(message: UserRedemptionRecord): JsonSafe; fromPartial(object: Partial): UserRedemptionRecord; fromProtoMsg(message: UserRedemptionRecordProtoMsg): UserRedemptionRecord; toProto(message: UserRedemptionRecord): Uint8Array; toProtoMsg(message: UserRedemptionRecord): UserRedemptionRecordProtoMsg; }; export declare const DepositRecord: { typeUrl: "/stride.records.DepositRecord"; encode(message: DepositRecord, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): DepositRecord; fromJSON(object: any): DepositRecord; toJSON(message: DepositRecord): JsonSafe; fromPartial(object: Partial): DepositRecord; fromProtoMsg(message: DepositRecordProtoMsg): DepositRecord; toProto(message: DepositRecord): Uint8Array; toProtoMsg(message: DepositRecord): DepositRecordProtoMsg; }; export declare const HostZoneUnbonding: { typeUrl: "/stride.records.HostZoneUnbonding"; encode(message: HostZoneUnbonding, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): HostZoneUnbonding; fromJSON(object: any): HostZoneUnbonding; toJSON(message: HostZoneUnbonding): JsonSafe; fromPartial(object: Partial): HostZoneUnbonding; fromProtoMsg(message: HostZoneUnbondingProtoMsg): HostZoneUnbonding; toProto(message: HostZoneUnbonding): Uint8Array; toProtoMsg(message: HostZoneUnbonding): HostZoneUnbondingProtoMsg; }; export declare const EpochUnbondingRecord: { typeUrl: "/stride.records.EpochUnbondingRecord"; encode(message: EpochUnbondingRecord, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): EpochUnbondingRecord; fromJSON(object: any): EpochUnbondingRecord; toJSON(message: EpochUnbondingRecord): JsonSafe; fromPartial(object: Partial): EpochUnbondingRecord; fromProtoMsg(message: EpochUnbondingRecordProtoMsg): EpochUnbondingRecord; toProto(message: EpochUnbondingRecord): Uint8Array; toProtoMsg(message: EpochUnbondingRecord): EpochUnbondingRecordProtoMsg; }; export declare const LSMTokenDeposit: { typeUrl: "/stride.records.LSMTokenDeposit"; encode(message: LSMTokenDeposit, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): LSMTokenDeposit; fromJSON(object: any): LSMTokenDeposit; toJSON(message: LSMTokenDeposit): JsonSafe; fromPartial(object: Partial): LSMTokenDeposit; fromProtoMsg(message: LSMTokenDepositProtoMsg): LSMTokenDeposit; toProto(message: LSMTokenDeposit): Uint8Array; toProtoMsg(message: LSMTokenDeposit): LSMTokenDepositProtoMsg; }; //# sourceMappingURL=records.d.ts.map