We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7946dcf commit c5337e6Copy full SHA for c5337e6
web3/_utils/abi.py
@@ -448,7 +448,7 @@ def find_constructor_abi_element_by_type(contract_abi: ABI) -> ABIConstructor:
448
BYTES_SIZES = range(1, 33)
449
UINT_TYPES = [f"uint{i}" for i in INT_SIZES]
450
INT_TYPES = [f"int{i}" for i in INT_SIZES]
451
-BYTES_TYPES = [f"bytes{i}" for i in BYTES_SIZES] + ["bytes32.byte"]
+BYTES_TYPES = [f"bytes{i}" for i in BYTES_SIZES] + ["bytes32"]
452
453
STATIC_TYPES = list(
454
itertools.chain(
0 commit comments