-
Notifications
You must be signed in to change notification settings - Fork 4.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
getTransactionReceipt: Number can only safely store up to 53 bits #5153
Comments
Hi @WizardsOrb , thanks for the issue. We are into it. |
13 tasks
13 tasks
Merged
@nikoulai error appears again on web3@1.8.1 when I am trying to get receipt for a specific transaction on goerli network, i suppose it's because of this transaction huge fee at 6,764.3 eth https://goerli.etherscan.io/tx/0x2e9c7587a80d33e801ad76b62e3c27f1f263955e02f870e6c01b3ad4b0b4aa3d Solution: > vi +207 ./node_modules/web3-utils/lib/utils.js 207 //return toBN(value).toNumber();
208 return toBN(value).toString(); log
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Is there an existing issue for this?
Current Behavior
Expected Behavior
Steps to Reproduce
gasPrice is 10mio GWEI.
representing
effectiveGasPrice
as string would solve the problem (currently typeof number)https://blockscout.com/etc/mainnet/tx/0x84e8b73c5f9e5f1fdd6e3482022f3c65ceb92d95c4ea92075c04d1a22f6b3152
Web3.js Version
1.7.3
Environment
Anything Else?
thanks.
The text was updated successfully, but these errors were encountered: