Skip to content

Commit

Permalink
Merge pull request #595 from bnb-chain/develop
Browse files Browse the repository at this point in the history
fix: update init_holders.template (#594)
  • Loading branch information
unclezoro authored Aug 28, 2024
2 parents 4197814 + 7ba75b1 commit 5d12307
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/init_holders.template
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@ const web3 = require('web3');
const init_holders = [
{
address: '0x37B8516a0F88E65D677229b402ec6C1e0E333004',
balance: web3.utils.toBN('500000000000000000000').toString('hex') // 500e18
balance: BigInt('500000000000000000000').toString(16) // 500e18
},
{
address: '0x6c468CF8c9879006E22EC4029696E005C2319C9D',
balance: web3.utils.toBN('500000000000000000000').toString('hex') // 500e18
balance: BigInt('500000000000000000000').toString(16) // 500e18
},
{% for initHolder in initHolders %}{
address: '{{initHolder }}',
balance: web3.utils.toBN('500000000000000000000000000').toString('hex') // 500000000e18
balance: BigInt('500000000000000000000000000').toString(16) // 500000000e18
},{% endfor %}
];

Expand Down

0 comments on commit 5d12307

Please sign in to comment.