* Transfer from main account to delivery account * @param {string} asset - the asset * @param {number} amount - the asset * @param {object} options - additional options * @return {undefined}
(asset: string, amount: number)
| 5531 | * @return {undefined} |
| 5532 | */ |
| 5533 | async transferMainToFutures(asset: string, amount: number) { |
| 5534 | return await this.transferBetweenMainAndFutures(asset, amount, 1); |
| 5535 | } |
| 5536 | |
| 5537 | /** |
| 5538 | * Transfer from delivery account to main account |
nothing calls this directly
no test coverage detected