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
This essential applicable to all Transactions of a blockchain transactions. Does Keplr provides the functionality which allows to set different fee for specific Transactions? So, that once the user tries to perform those specific transactions, the fee options being displayed in UI will be different from the usual one.
The text was updated successfully, but these errors were encountered:
To set a different fee for each tx, simply pass a different gas when passing the fee to the API that signs or broadcasts tx.
...
constfee={amount: [{denom: "uosmo",// this is ignored if `preferNoSetFee` is not true in `KeplrSignOptions`(ref: https://docs.keplr.app/api/#interaction-options)amount: "5000",},],// you can set this conditionally by txgas: "200000",};
...
the fee is calculated for each gasPriceStep passed in suggestChainExperimental. so it allow the user to choose fee by options. (ex. low fee = gas * gasPriceStep.low)
We can set the general Gas Price option through
suggestChainExperimental
through one of the following fields :This essential applicable to all Transactions of a blockchain transactions. Does Keplr provides the functionality which allows to set different fee for specific Transactions? So, that once the user tries to perform those specific transactions, the fee options being displayed in UI will be different from the usual one.
The text was updated successfully, but these errors were encountered: