(address)
| 365 | } |
| 366 | |
| 367 | async function checkSymbol(address) { |
| 368 | let stableCoin = common.connect(abis.erc20(), address); |
| 369 | try { |
| 370 | return await stableCoin.methods.symbol().call(); |
| 371 | } catch (e) { |
| 372 | return "" |
| 373 | } |
| 374 | } |
| 375 | |
| 376 | async function processArray(array) { |
| 377 | let result = true; |
no outgoing calls
no test coverage detected