(selectedSTO, currentSTO)
| 104 | } |
| 105 | |
| 106 | async function modifySTO(selectedSTO, currentSTO) { |
| 107 | switch (selectedSTO) { |
| 108 | case 'CappedSTO': |
| 109 | console.log(chalk.red(` |
| 110 | ********************************* |
| 111 | This option is not yet available. |
| 112 | *********************************`)); |
| 113 | break; |
| 114 | case 'USDTieredSTO': |
| 115 | await usdTieredSTO_configure(currentSTO); |
| 116 | break; |
| 117 | } |
| 118 | } |
| 119 | |
| 120 | async function addSTOModule(stoConfig) { |
| 121 | console.log(chalk.blue('Launch STO - Configuration')); |
no test coverage detected