Compare commits

..

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

114 changed files with 12 additions and 13 deletions

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

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