Claim funding fees

This commit is contained in:
2025-06-05 21:29:53 +07:00
parent 9b643aced6
commit 5703a6792d
7 changed files with 327 additions and 105 deletions

View File

@@ -24,7 +24,7 @@ import type {
Ticker,
Timeframe,
TradeDirection,
TradingBot,
TradingBotResponse,
TradingExchanges
} from '../generated/ManagingApi'
import {FC, ReactNode} from 'react'
@@ -184,7 +184,7 @@ export type IOpenPositionFormInput = {
}
export type IBotList = {
list: TradingBot[]
list: TradingBotResponse[]
}
export type IScenarioFormInput = {
name: string
@@ -219,7 +219,7 @@ export type IAccountFormInput = {
}
export type IAccountBalanceProps = {
bots: TradingBot[]
bots: TradingBotResponse[]
accounts: Account[]
}