You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The last parameter, collectMinimum is currently set to 10^12. This means that the min per-transaction buy-in is about $0.00035 USD. This is significantly less than the cost of gas required to buy-in, which means the long-tail is really long and effectively needlessly burning people's gas for no gain.
The min value on each curve point should be at least 1 attoeth higher than expected gas costs. Since we know the max gas price, it should be pretty easy to calculate the expected gas cost for a transaction and then set the minimum to be higher than that.
The text was updated successfully, but these errors were encountered:
With mere hours before the deploy, the actual deployment scripts should be put into GitHub so the community has time to review them. It would not be good to deploy with non-public scripts because it makes auditing really hard as the auditors will need to look to see what is actually being submitted to the chain and then guess at what was being attempted. And they only will have 24 hours to do this.
All the contracts will be deployed and verified in the Mainchain with enough time to be reviewed by the community. It's important not only to verify the code but also the different parameters set during the deployment of those contracts.
https://github.com/status-im/status-network-token/blob/master/migrations/2_deploy_contracts.js#L60-L64
The last parameter,
collectMinimum
is currently set to 10^12. This means that the min per-transaction buy-in is about $0.00035 USD. This is significantly less than the cost of gas required to buy-in, which means the long-tail is really long and effectively needlessly burning people's gas for no gain.The min value on each curve point should be at least 1 attoeth higher than expected gas costs. Since we know the max gas price, it should be pretty easy to calculate the expected gas cost for a transaction and then set the minimum to be higher than that.
The text was updated successfully, but these errors were encountered: