From fb87070b1318dad77d33d67864373bd72b605089 Mon Sep 17 00:00:00 2001 From: Sam Chen Date: Sun, 5 Dec 2021 18:41:48 +0800 Subject: [PATCH 1/2] Fix a typo --- docs/web3-eth-contract.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/web3-eth-contract.rst b/docs/web3-eth-contract.rst index 47a4c225f62..7490f416638 100644 --- a/docs/web3-eth-contract.rst +++ b/docs/web3-eth-contract.rst @@ -859,7 +859,7 @@ Parameters * ``from`` - ``String``: The address the transaction should be sent from. * ``gasPrice`` - ``String`` (optional): The gas price in wei to use for this transaction. * ``gas`` - ``Number`` (optional): The maximum gas provided for this transaction (gas limit). - * ``value`` - ``Number|String|BN|BigNumber``(optional): The value transferred for the transaction in wei. + * ``value`` - ``Number|String|BN|BigNumber`` (optional): The value transferred for the transaction in wei. * ``nonce`` - ``Number`` (optional): the nonce number of transaction 2. ``callback`` - ``Function`` (optional): This callback will be fired first with the "transactionHash", or with an error object as the first argument. From e1d01c730b019a3b63ac5da6975a8a9f30485f04 Mon Sep 17 00:00:00 2001 From: chenxsan Date: Fri, 10 Dec 2021 21:09:31 +0800 Subject: [PATCH 2/2] update changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 14c3d4c13f9..069948bba59 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -488,6 +488,7 @@ Released with 1.0.0-beta.37 code base. ### Fixed - Fix readthedoc's build for web3js documentation (#4425) - Fix response sorting for batch requests (#4250) + - Fix a typo in the documentation for `methods.myMethod.send` (#4599) ### Changed