* Transfer from main account to delivery account * @param {string} asset - the asset * @param {number} amount - the asset (optionnal) * @param {object} options - additional options * @return {undefined}
(asset: string, amount: number)
| 5554 | * @return {undefined} |
| 5555 | */ |
| 5556 | async transferMainToDelivery(asset: string, amount: number) { |
| 5557 | return await this.transferBetweenMainAndFutures(asset, amount, 3); |
| 5558 | } |
| 5559 | |
| 5560 | /** |
| 5561 | * Transfer from delivery account to main account |
nothing calls this directly
no test coverage detected