Skip to content

Commit

Permalink
[Tokenomics] Reduce MinProofSubmissionFee (#1042)
Browse files Browse the repository at this point in the history
## Summary

Reducing `MinProofSubmissionFee`.

Changes:
- Reducing `1000000` to `100`

## Issue

- Description: Beta TestNet tests indicated that we require too large of
a submission fee. Tried to lower the fee, but this value prevented the
param change.
- Issue:
https://www.notion.so/buildwithgrove/Load-Testing-Findings-15aa36edfff68020a324d1b0d490dec4?pvs=4

## Type of change

Select one or more from the following:

- [ ] New feature, functionality or library
- [x] Consensus breaking; add the `consensus-breaking` label if so. See
#791 for details
- [ ] Bug fix
- [ ] Code health or cleanup
- [ ] Documentation
- [x] Other (specify)

## Sanity Checklist

- [ ] I have updated the GitHub Issue `assignees`, `reviewers`,
`labels`, `project`, `iteration` and `milestone`
- [ ] For docs, I have run `make docusaurus_start`
- [ ] For code, I have run `make go_develop_and_test` and `make
test_e2e`
- [ ] For code, I have added the `devnet-test-e2e` label to run E2E
tests in CI
- [ ] For configurations, I have update the documentation
- [ ] I added TODOs where applicable
  • Loading branch information
okdas authored Jan 30, 2025
1 parent 2055b0f commit b4dee84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x/proof/types/params.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ var (
ParamProofSubmissionFee = "proof_submission_fee"
// TODO_MAINNET: Determine a sensible default value for the proof submission fee.
// MinProofSubmissionFee is the default and minimum fee for submitting a proof.
MinProofSubmissionFee = cosmostypes.NewCoin(volatile.DenomuPOKT, math.NewInt(1000000))
MinProofSubmissionFee = cosmostypes.NewCoin(volatile.DenomuPOKT, math.NewInt(100))
)

// ParamKeyTable the param key table for launch module
Expand Down

0 comments on commit b4dee84

Please sign in to comment.