From dffb6f0faae15874971b5a0ff536e70fcb4ce19a Mon Sep 17 00:00:00 2001 From: Sebastian Boehler <basti.boehler@hotmail.de> Date: Wed, 3 Apr 2024 20:14:54 +0200 Subject: [PATCH] fix: remove signature params as it is handled --- src/types/simpleEarn.ts | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/types/simpleEarn.ts b/src/types/simpleEarn.ts index efc0f694..76ac3c14 100644 --- a/src/types/simpleEarn.ts +++ b/src/types/simpleEarn.ts @@ -2,8 +2,6 @@ export interface SimpleEarnProductListParams { asset?: string; current?: number; size?: number; - recvWindow?: number; - timestamp: number; } export interface SimpleEarnFlexibleProduct { @@ -56,8 +54,6 @@ export interface SimpleEarnSubscribeProductParams { amount: number; autoSubscribe?: boolean; sourceAccount?: 'SPOT' | 'FUND' | 'ALL'; - recvWindow?: number; - timestamp: number; } export interface SimpleEarnSubscribeFlexibleProductResponse { @@ -73,8 +69,6 @@ export interface SimpleEarnSubscribeLockedProductResponse { export interface SimpleEarnRedeemParams { positionId: string; - recvWindow?: number; - timestamp: number; } export interface SimpleEarnRedeemResponse { @@ -87,8 +81,6 @@ export interface SimpleEarnFlexibleProductPositionParams { productId?: string; current?: number; size?: number; - recvWindow?: number; - timestamp: number; } export interface SimpleEarnLockedProductPositionParams