Skip to content

Commit

Permalink
lower create cost
Browse files Browse the repository at this point in the history
  • Loading branch information
Reecepbcups committed Dec 8, 2023
1 parent 20a1d9e commit 95d452e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -1105,7 +1105,7 @@ func (app *App) RegisterUpgradeHandlers(cfg module.Configurator) {

if err := app.TokenFactoryKeeper.SetParams(ctx, tokenfactorytypes.Params{
DenomCreationFee: nil,
DenomCreationGasConsume: 5_000_000,
DenomCreationGasConsume: 50_000, // 50k gas consume for creating a token. Ref: Juno is 2m and Osmosis 2m.
}); err != nil {
return nil, err
}
Expand Down

0 comments on commit 95d452e

Please sign in to comment.