()
| 60 | }; |
| 61 | |
| 62 | const main = async () => { |
| 63 | await printWalletBalances(); |
| 64 | cliPrint.info('Making withdrawal request...'); |
| 65 | const requestId = await setMaxPromiseTimeout(makeWithdrawalRequest(), 80 * 1000); |
| 66 | cliPrint.info('Waiting for fulfillment...'); |
| 67 | await waitForFulfillment(requestId); |
| 68 | cliPrint.info('Withdrawal request fulfilled'); |
| 69 | await printWalletBalances(); |
| 70 | }; |
| 71 | |
| 72 | runAndHandleErrors(main); |
nothing calls this directly
no test coverage detected