Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade to web3 v6 #97

Merged
merged 1 commit into from
Nov 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading