v3.10.13: feat() add updated withdraw request params

This commit is contained in:
tiagosiebler
2024-08-01 11:27:08 +01:00
parent 14280d9013
commit daad11d619
3 changed files with 15 additions and 4 deletions

View File

@@ -123,6 +123,12 @@ export interface WithdrawParamsV5 {
timestamp: number;
forceChain?: number;
accountType?: 'SPOT' | 'FUND';
feeType?: 0 | 1;
requestId?: string;
beneficiary?: {
vaspEntityId: string;
beneficiaryName?: string;
};
}
export interface ConvertCoinsParamsV5 {
@@ -143,7 +149,12 @@ export interface RequestConvertQuoteParamsV5 {
toCoinType?: string;
requestCoin: string;
requestAmount: string;
accountType: 'eb_convert_funding' | 'eb_convert_uta' | 'eb_convert_spot' | 'eb_convert_contract' | 'eb_convert_inverse';
accountType:
| 'eb_convert_funding'
| 'eb_convert_uta'
| 'eb_convert_spot'
| 'eb_convert_contract'
| 'eb_convert_inverse';
requestId?: string;
}