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
If the evm configuration is set, eip1559 will be used first to calculate the handling fee. However, the cosmos transaction fee is calculated according to minimum-gas-prices. The gas prices in the two places may not be the same. If minimum-gas-prices is larger and always fails when sending transactions using keplr.
Our intention is that if the user enters a bech32 address on the send page, the transaction fee should be calculated by Cosmos way, and if the user enters a hex address, it should be calculated by EIP-1559 way. But currently gas estimation works as intended, but gas price doesn't work like that as you said. Thanks for letting us know. We will fix it as soon as possible.
Describe the bug
If the
evm
configuration is set, eip1559 will be used first to calculate the handling fee. However, the cosmos transaction fee is calculated according tominimum-gas-prices
. The gas prices in the two places may not be the same. Ifminimum-gas-prices
is larger and always fails when sending transactions using keplr.keplr-wallet/packages/hooks/src/tx/fee.ts
Lines 553 to 561 in 9ee1c40
Expected behavior
I wonder if I can add configuration in
evm
, such asenable_eip1559
, or compare the final calculation results of the two, and use the larger one first.The text was updated successfully, but these errors were encountered: