(array)
| 374 | } |
| 375 | |
| 376 | async function processArray(array) { |
| 377 | let result = true; |
| 378 | for (const address of array) { |
| 379 | let symbol = await checkSymbol(address); |
| 380 | if (symbol == "") { |
| 381 | result = false; |
| 382 | console.log(`${address} seems not to be a stable coin`) |
| 383 | } |
| 384 | } |
| 385 | return result |
| 386 | } |
| 387 | |
| 388 | async function processAddress(array) { |
| 389 | let list = []; |
no test coverage detected