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
{{ message }}
This repository was archived by the owner on Mar 5, 2025. It is now read-only.
* add nonce to send options.
* add nonce to send options.
* Update CHANGELOG.md
* linting
* updating docs
* update web3-shh.rst : whisper-overview broken link (#4170)
whisper overview has been moved from https://github.com/ethereum/go-ethereum/wiki/Whisper to https://eth.wiki/concepts/whisper/whisper-overview
* [Docs] Fixed a broken link (#4151)
Original link gives out a 404, replaced by the closest thing I could find.
* Possible typo in docs (#4088)
I think the author missed a "this" in the phrase
* Typically you will have only one Web3 connection, use const (#3967)
Co-authored-by: Gregory Markou <[email protected]>
* Removing deprecation notice for HttpProvider (#4008)
* Removing deprecation notice for HttpProvider
From my view, it is just a provider with less capabilities than websockets, but still widely useful — and widely used as well.
@frozeman@nivida@GregTheGreek any thoughts?
* Update include_package-core.rst
* Update CHANGELOG.md
Co-authored-by: Gregory Markou <[email protected]>
Co-authored-by: Alex <[email protected]>
* [Docs] Updated solidity example to modern syntax (#4147)
* [Docs] Updated solidity example to modern syntax
Replaced the old constructor function syntax with the modern one, added 'emit' to event calls, added pragma, added a valid bytes32 value and updated the JSON ABI.
* [Docs] Fixed a broken link (#1)
Original link gives out a 404, replaced by the proper guide.
Co-authored-by: Juan Alonso <[email protected]>
* Revert "[Docs] Fixed a broken link (#1)"
This reverts commit 0de1272.
Co-authored-by: Juan Alonso <[email protected]>
* added EIP-2718 and EIP-1559 documentation
* fixing typo
* addressing feedback
* changing possible types for maxPriorityFeePerGas
* updating maxFeePerGas type
* update changelog
Co-authored-by: exx8 <[email protected]>
Co-authored-by: starwalker00 <[email protected]>
Co-authored-by: mongolsteppe <[email protected]>
Co-authored-by: João Monteiro <[email protected]>
Co-authored-by: William Entriken <[email protected]>
Co-authored-by: Gregory Markou <[email protected]>
Co-authored-by: Ev <[email protected]>
Co-authored-by: Juan Alonso <[email protected]>
Copy file name to clipboardExpand all lines: docs/web3-eth-contract.rst
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -837,6 +837,8 @@ Parameters
837
837
* ``gasPrice`` - ``String`` (optional): The gas price in wei to use for this transaction.
838
838
* ``gas`` - ``Number`` (optional): The maximum gas provided for this transaction (gas limit).
839
839
* ``value`` - ``Number|String|BN|BigNumber``(optional): The value transferred for the transaction in wei.
840
+
* ``nonce`` - ``Number`` (optional): the nonce number of transaction
841
+
840
842
2. ``callback`` - ``Function`` (optional): This callback will be fired first with the "transactionHash", or with an error object as the first argument.
- ``value`` - ``Number|String|BN|BigNumber``: (optional) The value transferred for the transaction in :ref:`wei <what-is-wei>`, also the endowment if it's a contract-creation transaction.
1420
1422
- ``gas`` - ``Number``: (optional, default: To-Be-Determined) The amount of gas to use for the transaction (unused gas is refunded).
1421
1423
- ``gasPrice`` - ``Number|String|BN|BigNumber``: (optional) The price of gas for this transaction in :ref:`wei <what-is-wei>`, defaults to :ref:`web3.eth.gasPrice <eth-gasprice>`.
1424
+
- ``type`` - ``Number|String|BN|BigNumber``: (optional) A positive unsigned 8-bit number between 0 and 0x7f that represents the type of the transaction.
1425
+
- ``maxFeePerGas`` - ``Number|String|BN``: (optional, defaulted to ``(2 * block.baseFeePerGas) + maxPriorityFeePerGas``) The maximum fee per gas that the transaction is willing to pay in total
1426
+
- ``maxPriorityFeePerGas`` - ``Number|String|BN`` (optional, defaulted to ``1 Gwei``) The maximum fee per gas to give miners to incentivize them to include the transaction (Priority fee)
1427
+
- ``accessList`` - ``List of hexstrings`` (optional) a list of addresses and storage keys that the transaction plans to access
1422
1428
- ``data`` - ``String``: (optional) Either a `ABI byte string <http://solidity.readthedocs.io/en/latest/abi-spec.html>`_ containing the data of the function call on a contract, or in the case of a contract-creation transaction the initialisation code.
1423
1429
- ``nonce`` - ``Number``: (optional) Integer of the nonce. This allows to overwrite your own pending transactions that use the same nonce.
1424
1430
- ``chain`` - ``String``: (optional) Defaults to ``mainnet``.
1425
-
- ``hardfork`` - ``String``: (optional) Defaults to ``petersburg``.
1431
+
- ``hardfork`` - ``String``: (optional) Defaults to ``london``.
1426
1432
- ``common`` - ``Object``: (optional) The common object
1427
1433
- ``customChain`` - ``Object``: The custom chain properties
1428
1434
- ``name`` - ``string``: (optional) The name of the chain
1429
1435
- ``networkId`` - ``number``: Network ID of the custom chain
1430
1436
- ``chainId`` - ``number``: Chain ID of the custom chain
Copy file name to clipboardExpand all lines: docs/web3-shh.rst
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ web3.shh
5
5
========
6
6
7
7
8
-
The ``web3-shh`` package allows you to interact with the whisper protocol for broadcasting. For more see `Whisper Overview <https://github.com/ethereum/go-ethereum/wiki/Whisper>`_.
8
+
The ``web3-shh`` package allows you to interact with the whisper protocol for broadcasting. For more see `Whisper Overview <https://eth.wiki/concepts/whisper/whisper-overview>`_.
0 commit comments