1
This commit is contained in:
parent
03a8bce4c2
commit
b3f1d32e62
@ -10,7 +10,9 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"net_id": 42161
|
"net_id": 42161,
|
||||||
|
"air_drop": [
|
||||||
|
]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -6,6 +6,7 @@ const log = require('j7/log');
|
|||||||
const metaClassList = [];
|
const metaClassList = [];
|
||||||
const metaClasses = {};
|
const metaClasses = {};
|
||||||
const web3ConfHash = {};
|
const web3ConfHash = {};
|
||||||
|
const airDropTokenIdHash = {};
|
||||||
let web3DbSpiderConf = null;
|
let web3DbSpiderConf = null;
|
||||||
let configDir = './config/';
|
let configDir = './config/';
|
||||||
|
|
||||||
@ -151,7 +152,14 @@ async function init() {
|
|||||||
return address;
|
return address;
|
||||||
};
|
};
|
||||||
web3ConfHash[netId] = netObj;
|
web3ConfHash[netId] = netObj;
|
||||||
});
|
{
|
||||||
|
net['air_drop'].forEach(
|
||||||
|
(item) => {
|
||||||
|
console.log(item);
|
||||||
|
}
|
||||||
|
);
|
||||||
|
}
|
||||||
|
});//end forEach nets
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user