MCPcopy Create free account
hub / github.com/PolymathNetwork/polymath-core / processAddressWithBalance

Function processAddressWithBalance

CLI/commands/investor_portal.js:243–251  ·  view source on GitHub ↗
(array)

Source from the content-addressed store, hash-verified

241}
242
243async function processAddressWithBalance(array) {
244 let list = [];
245 for (const address of array) {
246 let symbol = await checkSymbol(address);
247 let balance = await checkBalance(address);
248 list.push({ 'address': address, 'symbol': symbol, 'balance': balance })
249 }
250 return list
251}
252
253async function processAddress(array) {
254 let list = [];

Callers 2

showUserInfoFunction · 0.85
investUsdTieredSTOFunction · 0.85

Calls 2

checkBalanceFunction · 0.85
checkSymbolFunction · 0.70

Tested by

no test coverage detected