From 7bdd44b5955e400f9e94d97ba4e7c296ea87c440 Mon Sep 17 00:00:00 2001 From: tiagosiebler Date: Mon, 13 Feb 2023 17:24:00 +0000 Subject: [PATCH] chore(): fix use-before-define type check --- src/types/response/account-asset.ts | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/types/response/account-asset.ts b/src/types/response/account-asset.ts index 21b9014..f341826 100644 --- a/src/types/response/account-asset.ts +++ b/src/types/response/account-asset.ts @@ -80,11 +80,6 @@ export interface AssetInfoResponseV3 { }; } -export interface SupportedDepositListResponseV3 { - configList: SupportedDepositV3[]; - nextPageCursor: string; -} - interface SupportedDepositV3 { coin: string; chain: string; @@ -94,8 +89,8 @@ interface SupportedDepositV3 { minDepositAmount: string; } -export interface DepositRecordQueryResponseV3 { - rows: DepositRecordV3[]; +export interface SupportedDepositListResponseV3 { + configList: SupportedDepositV3[]; nextPageCursor: string; } @@ -114,6 +109,11 @@ interface DepositRecordV3 { blockHash: string; } +export interface DepositRecordQueryResponseV3 { + rows: DepositRecordV3[]; + nextPageCursor: string; +} + export interface WithdrawRecordsQueryResponseV3 { rows: { coin: string;