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 commit was created on GitHub.com and signed with GitHub’s verified signature.
The key has expired.
Add support for sandbox option to providers (defaults to false). When sandbox is set to true, no transaction is actually transmitted to the blockchain, but rather a check whether the transaction would be successful is performed (via estimateGas).
Add support for gasPriceMultiplier to providers (defaults to 1.1). This option sets a multiplier which is applied when creating a mutation. Calculation of gas price is made by first calling eth_gasPrice and then multiplying the result with the gasPriceMultiplier. This way, we can dynamically adjust the gas price for optimal results. You can still manually set the gas price per specific mutation.