This commit is contained in:
aozhiwei 2023-07-24 17:19:51 +08:00
parent 03a8bce4c2
commit b3f1d32e62
2 changed files with 12 additions and 2 deletions

View File

@ -10,7 +10,9 @@
]
},
{
"net_id": 42161
"net_id": 42161,
"air_drop": [
]
}
]
}

View File

@ -6,6 +6,7 @@ const log = require('j7/log');
const metaClassList = [];
const metaClasses = {};
const web3ConfHash = {};
const airDropTokenIdHash = {};
let web3DbSpiderConf = null;
let configDir = './config/';
@ -151,7 +152,14 @@ async function init() {
return address;
};
web3ConfHash[netId] = netObj;
});
{
net['air_drop'].forEach(
(item) => {
console.log(item);
}
);
}
});//end forEach nets
}
});
}