Merge pull request #1808 from lamassu/releases/v10.2

Releases/v10.2
This commit is contained in:
Rafael Taranto 2025-03-14 14:27:54 +00:00 committed by GitHub
commit 3a82ad3b74
3 changed files with 6 additions and 7 deletions

View file

@ -221,10 +221,9 @@ function generateTx (_toAddress, wallet, amount, includesFee, cryptoCode, txId)
const maxPriorityFeePerGas = new BN(web3.utils.toWei('1.0', 'gwei')) // web3 default value
const maxFeePerGas = baseFeePerGas.times(2).plus(maxPriorityFeePerGas)
const newGasPrice = BN.minimum(maxFeePerGas, baseFeePerGas.plus(maxPriorityFeePerGas))
const toSend = includesFee
? new BN(amount).minus(newGasPrice.times(gas))
? new BN(amount).minus(maxFeePerGas.times(gas))
: amount
const rawTx = {

View file

@ -10,7 +10,7 @@
"license": "../LICENSE",
"dependencies": {
"@apollo/react-hooks": "^3.1.3",
"@lamassu/coins": "v1.5.3",
"@lamassu/coins": "v1.6.0",
"@material-ui/core": "4.12.4",
"@material-ui/icons": "4.11.2",
"@material-ui/lab": "^4.0.0-alpha.61",
@ -1222,9 +1222,9 @@
"integrity": "sha512-s0IrSOzLlbvX7yp4WBfPITzpAU8sqQcpsmwXDiKwrG4r491vwCO/XpejasRNl0piBMe/DvP4Tz0mIS/X1DPJBQ=="
},
"node_modules/@lamassu/coins": {
"version": "1.5.3",
"resolved": "https://registry.npmjs.org/@lamassu/coins/-/coins-1.5.3.tgz",
"integrity": "sha512-rcDFefIh17B3nrgxJhUBxngL6ilyHcS/WwPN92tIS4Z4jpFKFaqAZ1bJiLZbtxrOJpeSxR2fZfW7xqCdexIAhQ==",
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/@lamassu/coins/-/coins-1.6.0.tgz",
"integrity": "sha512-Rl6NmbAwZQwltEw60YIxTmI9Idiae7MhucV44Zv8mQ+bBaVW88SE4lXFR1dbyETYS+2uWjX0qIvBw7KolAiGtQ==",
"dependencies": {
"@lamassu/bolt11": "1.5.1",
"bech32": "2.0.0",

View file

@ -5,7 +5,7 @@
"type": "module",
"dependencies": {
"@apollo/react-hooks": "^3.1.3",
"@lamassu/coins": "v1.5.3",
"@lamassu/coins": "v1.6.0",
"@material-ui/core": "4.12.4",
"@material-ui/icons": "4.11.2",
"@material-ui/lab": "^4.0.0-alpha.61",