Compare commits

..

No commits in common. "91889af448aa2c4e5e1821280fb4b540fe273595" and "b4e23e96b438d5ea4e702e332ba542d05fc4d130" have entirely different histories.

114 changed files with 12 additions and 13 deletions

@ -17,22 +17,21 @@ function updateEncrypted(netId) {
async function updateCommon(netId) {
const { nativeCurrency, tokens } = networkConfig[`netId${netId}`]
for (const type of EVENTS) {
for (const [tokenName, tokenInfo] of Object.entries(tokens)) {
console.log(`${tokenInfo.symbol}: ${Object.keys(tokenInfo.instanceAddress)}`)
for (const instance of Object.keys(tokenInfo.instanceAddress)) {
console.warn('instance', instance)
console.log(Object.keys(tokens[nativeCurrency].instanceAddress))
const filename = `${type.toLowerCase()}s_${netId}_${tokenName}_${instance}.json`
for await (const type of EVENTS) {
for await (const instance of Object.keys(tokens[nativeCurrency].instanceAddress)) {
console.warn('instance', instance)
const isSaved = save(`${EVENTS_PATH}${filename}`)
const filename = `${type.toLowerCase()}s_${netId}_${nativeCurrency}_${instance}.json`
if (isSaved) {
try {
testCommon(netId, type, filename)
} catch (err) {
console.error(err.message)
}
const isSaved = save(`${EVENTS_PATH}${filename}`)
if (isSaved) {
try {
testCommon(netId, type, filename)
} catch (err) {
console.error(err.message)
}
}
}

Some files were not shown because too many files have changed in this diff Show More