File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -831,7 +831,7 @@ The :py:class:`ContractFunction` class provides attributes for each function. Ac
831
831
832
832
The signature of the function assigned to the class ``__name__ `` during initialization.
833
833
Fallback and Receive functions will be assigned as classes :py:class: `FallbackFn ` or
834
- :py:class: `RecieveFn ` respectively.
834
+ :py:class: `ReceiveFn ` respectively.
835
835
836
836
.. py :attribute :: ContractFunction.myMethod(* args, ** kwargs).name
837
837
Original file line number Diff line number Diff line change @@ -131,7 +131,7 @@ def filter_by_argument_name(
131
131
argument_names : Collection [str ], contract_abi : ABI
132
132
) -> Sequence [ABIElement ]:
133
133
"""
134
- Return a list of each ``ABIElement`` which contain arguments matching provided
134
+ Return a list of each ``ABIElement`` which contains arguments matching provided
135
135
names.
136
136
"""
137
137
abis_with_matching_args = []
@@ -153,7 +153,7 @@ def filter_by_argument_type(
153
153
argument_types : Collection [str ], contract_abi : ABI
154
154
) -> List [ABIElement ]:
155
155
"""
156
- Return a list of each ``ABIElement`` which contain arguments matching provided
156
+ Return a list of each ``ABIElement`` which contains arguments matching provided
157
157
types.
158
158
"""
159
159
abis_with_matching_args = []
@@ -429,7 +429,7 @@ def find_constructor_abi_element_by_type(contract_abi: ABI) -> ABIConstructor:
429
429
Find the constructor ABI element in the contract ABI.
430
430
431
431
This function is often used in place of `web3.utils.abi.get_abi_element` to find
432
- a constructor without considering it's argument types. This is used prior to
432
+ a constructor without considering its argument types. This is used prior to
433
433
encoding the abi, since the argument types are not known at that time.
434
434
"""
435
435
candidates = [abi for abi in contract_abi if abi ["type" ] == "constructor" ]
Original file line number Diff line number Diff line change @@ -15,6 +15,6 @@ def rpc_gas_price_strategy(
15
15
w3 : Web3 , transaction_params : Optional [TxParams ] = None
16
16
) -> Wei :
17
17
"""
18
- A simple gas price strategy deriving it's value from the eth_gasPrice JSON-RPC call.
18
+ A simple gas price strategy deriving its value from the eth_gasPrice JSON-RPC call.
19
19
"""
20
20
return w3 .eth .gas_price
You can’t perform that action at this time.
0 commit comments