Skip to content

Commit

Permalink
Upgrade to web3 v6
Browse files Browse the repository at this point in the history
  • Loading branch information
ninazo committed Nov 27, 2023
1 parent dad9d36 commit 5a52f3e
Show file tree
Hide file tree
Showing 6 changed files with 553 additions and 476 deletions.
4 changes: 4 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## v0.3.0

- Upgrade web3 to 6.11.3

## v0.2.7

- Clean up an unused and obsolete `DEFAULT_ADAPTER_CONFIGS` symbol.
Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Getting Started

Documentation for version: **v0.2.7**
Documentation for version: **v0.3.0**

## Overview

Expand Down
2 changes: 1 addition & 1 deletion offchain/web3/contract_caller.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from typing import Optional, Any

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

from offchain.concurrency import parmap
Expand Down
2 changes: 1 addition & 1 deletion offchain/web3/read_async.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from typing import Any, Literal, Optional, Union

import aiohttp
from eth_abi import decode_abi, encode_abi
from eth_abi import decode as decode_abi, encode as encode_abi
from eth_utils import to_hex
from web3 import Web3
from web3.eth import AsyncEth
Expand Down
Loading

0 comments on commit 5a52f3e

Please sign in to comment.