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.
Copy file name to clipboardExpand all lines: README.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,7 @@
5
5
# web3.js - Ethereum JavaScript API
6
6
7
7
[](https://gitter.im/ethereum/web3.js?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)[](https://www.npmjs.com/package/web3)[![Build Status][travis-image]][travis-url][![dependency status][dep-image]][dep-url][![dev dependency status][dep-dev-image]][dep-dev-url][![Coverage Status][coveralls-image]][coveralls-url]
Copy file name to clipboardExpand all lines: docs/web3-eth-accounts.rst
+4-1Lines changed: 4 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -164,6 +164,7 @@ Returns
164
164
- ``s`` - ``String``: Next 32 bytes of the signature
165
165
- ``v`` - ``String``: Recovery value + 27
166
166
- ``rawTransaction`` - ``String``: The RLP encoded transaction, ready to be send using :ref:`web3.eth.sendSignedTransaction <eth-sendsignedtransaction>`.
167
+
- ``transactionHash`` - ``String``: The transaction hash for the RLP encoded transaction.
Copy file name to clipboardExpand all lines: docs/web3-eth-contract.rst
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -790,7 +790,7 @@ Parameters
790
790
791
791
1. ``options`` - ``Object`` (optional): The options used for deployment.
792
792
* ``filter`` - ``Object`` (optional): Let you filter events by indexed parameters, e.g. ``{filter: {myNumber: [12,13]}}`` means all events where "myNumber" is 12 or 13.
793
-
* ``fromBlock`` - ``Number`` (optional): The block number from which to get events on.
793
+
* ``fromBlock`` - ``Number`` (optional): The block number (greater than or equal to) from which to get events on.
794
794
* ``topics`` - ``Array`` (optional): This allows to manually set the topics for the event filter. If given the filter property and event signature, (topic[0]) will not be set automatically.
795
795
2. ``callback`` - ``Function`` (optional): This callback will be fired for each *event* as the second argument, or an error as the first argument.
796
796
@@ -893,8 +893,8 @@ Parameters
893
893
1. ``event`` - ``String``: The name of the event in the contract, or ``"allEvents"`` to get all events.
894
894
2. ``options`` - ``Object`` (optional): The options used for deployment.
895
895
* ``filter`` - ``Object`` (optional): Lets you filter events by indexed parameters, e.g. ``{filter: {myNumber: [12,13]}}`` means all events where "myNumber" is 12 or 13.
896
-
* ``fromBlock`` - ``Number`` (optional): The block number from which to get events on.
897
-
* ``toBlock`` - ``Number`` (optional): The block number to get events up to (Defaults to ``"latest"``).
896
+
* ``fromBlock`` - ``Number`` (optional): The block number (greater than or equal to) from which to get events on.
897
+
* ``toBlock`` - ``Number`` (optional): The block number (less than or equal to) to get events up to (Defaults to ``"latest"``).
898
898
* ``topics`` - ``Array`` (optional): This allows manually setting the topics for the event filter. If given the filter property and event signature, (topic[0]) will not be set automatically.
899
899
3. ``callback`` - ``Function`` (optional): This callback will be fired with an array of event logs as the second argument, or an error as the first argument.
0 commit comments