Skip to content
Open
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
2 changes: 1 addition & 1 deletion ape_foundry/provider.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
from ape_test import ApeTestConfig
from eth_pydantic_types import HexBytes, HexBytes32
from eth_typing import HexStr
from eth_utils import add_0x_prefix, is_0x_prefixed, is_hex, to_hex
from faster_eth_utils import add_0x_prefix, is_0x_prefixed, is_hex, to_hex
from pydantic import field_validator, model_validator
from pydantic_settings import SettingsConfigDict
from web3 import HTTPProvider, Web3
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@
"eth_pydantic_types>=0.2.0,<0.3",
"evm-trace>=0.2.3,<0.3",
"ethpm-types>=0.6.19,<0.7",
"faster-eth-utils>=2.1.0,<6",
"hexbytes>=0.3.1,<2",
"web3>=6.20.1,<8",
"yarl>=1.9.2,<2",
Expand Down
2 changes: 1 addition & 1 deletion tests/test_provider.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
from ape_ethereum.trace import Trace
from ape_ethereum.transactions import TransactionStatusEnum, TransactionType
from eth_pydantic_types import HexBytes32
from eth_utils import to_hex, to_int
from evm_trace import CallType
from faster_eth_utils import to_hex, to_int
from hexbytes import HexBytes

from ape_foundry import FoundryProviderError
Expand Down
2 changes: 1 addition & 1 deletion tests/test_trace.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import pytest
from ape.exceptions import ContractLogicError
from ape.utils import create_tempdir
from eth_utils import to_hex
from faster_eth_utils import to_hex
from hexbytes import HexBytes

from .expected_traces import (
Expand Down