f2f68dba15
* ci: add unit test fix: failed on test * ci: add truffle test * ci: update os version * ci: add cache for go build
8 lines
274 B
Plaintext
8 lines
274 B
Plaintext
const web3 = require("web3")
|
|
|
|
const addresses = "{{INIT_HOLDER_ADDRESSES}}"
|
|
const balance = web3.utils.toBN("{{INIT_HOLDER_BALANCE}}").toString("hex")
|
|
const init_holders = addresses.split(",").map(address => ({ address, balance }));
|
|
|
|
exports = module.exports = init_holders
|