Skip to content

Commit

Permalink
metadium/scripts: default block interval, maxPriorityFeePerGas
Browse files Browse the repository at this point in the history
  • Loading branch information
sadoci committed Sep 11, 2023
1 parent 6f59f68 commit f5631c0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions metadium/scripts/config.json.example
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
"stakingMin": 1500000000000000000000000,
"stakingMax": 1500000000000000000000000,
"MaxIdleBlockInterval": 5,
"blockCreationTime": 1000,
"blockCreationTime": 2000,
"blockRewardAmount": 1000000000000000000,
"maxPriorityFeePerGas": 100000000000,
"maxPriorityFeePerGas": 80000000000,
"rewardDistributionMethod": [ 4000, 1000, 2500, 2500 ],
"maxBaseFee": 50000000000000,
"blockGasLimit": 105000000,
Expand Down
6 changes: 3 additions & 3 deletions metadium/scripts/deploy-governance.js
Original file line number Diff line number Diff line change
Expand Up @@ -332,11 +332,11 @@ var GovernanceDeployer = new function() {
data.env.stakingMin || 1500000000000000000000000,
data.env.stakingMax || 1500000000000000000000000,
data.env.MaxIdleBlockInterval || 5,
data.env.blockCreationTime || 1000,
data.env.blockCreationTime || 2000,
// mint amount: 1 meta
data.env.blockRewardAmount || web3.toWei(1, 'ether'),
// tip: 100 gwei
data.env.maxPriorityFeePerGas || web3.toWei(100, 'gwei'),
// tip: 80 gwei
data.env.maxPriorityFeePerGas || web3.toWei(80, 'gwei'),
// NCPs, Metadium Staker, Eco System, Maintenance
rewardDistributionMethod[0],
rewardDistributionMethod[1],
Expand Down

0 comments on commit f5631c0

Please sign in to comment.