We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
StdFee doesn't apply on signAmino function.
const fee: StdFee = { amount: [{ amount: gasPrice.amount.multiply(Uint53.fromString(gasLimit.toString())).toString(), denom: chainInfo[chainId].denom, }, { amount: "50", denom: "uusd", }], gas: gasLimit.toString(), };
If I write more than one amount like this, the fee will be applied.
const fee: StdFee = { amount: [{ amount: gasPrice.amount.multiply(Uint53.fromString(gasLimit.toString())).toString(), denom: chainInfo[chainId].denom, }], gas: gasLimit.toString(), };
However, if I write only one less, Keplr Sign will not apply the fee.
The text was updated successfully, but these errors were encountered:
When gasPrice is set to 30 and 1 amount is entered in fee.amount
When setting gasPrice to 30 and adding 50uusd to fee.amount for 2 amounts
Sorry, something went wrong.
No branches or pull requests
StdFee doesn't apply on signAmino function.
If I write more than one amount like this, the fee will be applied.
However, if I write only one less, Keplr Sign will not apply the fee.
The text was updated successfully, but these errors were encountered: