Skip to content

Commit 5a52f3e

Browse files
committed
Upgrade to web3 v6
1 parent dad9d36 commit 5a52f3e

File tree

6 files changed

+553
-476
lines changed

6 files changed

+553
-476
lines changed

docs/changelog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## v0.3.0
4+
5+
- Upgrade web3 to 6.11.3
6+
37
## v0.2.7
48

59
- Clean up an unused and obsolete `DEFAULT_ADAPTER_CONFIGS` symbol.

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Getting Started
22

3-
Documentation for version: **v0.2.7**
3+
Documentation for version: **v0.3.0**
44

55
## Overview
66

offchain/web3/contract_caller.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from typing import Optional, Any
22

3-
from eth_abi import encode_abi, decode_abi # type: ignore[attr-defined]
3+
from eth_abi import encode as encode_abi, decode as decode_abi # type: ignore[attr-defined]
44
from eth_utils import to_hex # type: ignore[attr-defined]
55

66
from offchain.concurrency import parmap

offchain/web3/read_async.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from typing import Any, Literal, Optional, Union
55

66
import aiohttp
7-
from eth_abi import decode_abi, encode_abi
7+
from eth_abi import decode as decode_abi, encode as encode_abi
88
from eth_utils import to_hex
99
from web3 import Web3
1010
from web3.eth import AsyncEth

0 commit comments

Comments
 (0)