Skip to content

Commit

Permalink
Merge branch 'main' into fix/eip-712-hex
Browse files Browse the repository at this point in the history
  • Loading branch information
antazoey committed Jun 10, 2024
2 parents aebe5e8 + 58c4331 commit e94c9a9
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/ape_ethereum/ecosystem.py
Original file line number Diff line number Diff line change
Expand Up @@ -1016,6 +1016,7 @@ def enrich_trace(self, trace: TraceAPI, **kwargs) -> TraceAPI:
kwargs["sender"] = sender

# Get the un-enriched calltree.
# NOTE: Using JSON mode so Enums are all str types.
data = trace.get_calltree().model_dump(mode="json", by_alias=True)

if isinstance(trace, TransactionTrace):
Expand Down Expand Up @@ -1044,7 +1045,12 @@ def _enrich_calltree(self, call: dict, **kwargs) -> dict:
kwargs["use_symbol_for_tokens"] = kwargs.get(
"use_symbol_for_tokens", default_symbol_for_tokens
)

# Handle if for some reason this is still an Enum.
call_type = call.get("call_type", "")
if call_type and not isinstance(call_type, str):
call["call_type"] = call_type = call_type.value

is_create = "CREATE" in call_type

# Enrich sub-calls first.
Expand Down
38 changes: 38 additions & 0 deletions tests/functional/test_ecosystem.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,19 @@
import copy
import re
from typing import Any, ClassVar, cast

import pytest
from eth_pydantic_types import HashBytes32, HexBytes
from eth_typing import HexAddress, HexStr
from ethpm_types import ContractType, ErrorABI
from ethpm_types.abi import ABIType, EventABI, MethodABI
from evm_trace import CallTreeNode, CallType

from ape.api.networks import LOCAL_NETWORK_NAME, NetworkAPI
from ape.exceptions import CustomError, DecodingError, NetworkError, NetworkNotFoundError
from ape.types import AddressType
from ape.utils import DEFAULT_LOCAL_TRANSACTION_ACCEPTANCE_TIMEOUT
from ape_ethereum import TransactionTrace
from ape_ethereum.ecosystem import BLUEPRINT_HEADER, BaseEthereumConfig, Block
from ape_ethereum.transactions import (
DynamicFeeTransaction,
Expand Down Expand Up @@ -1033,3 +1036,38 @@ def test_decode_custom_error_selector_not_found(chain, ethereum):
tx = ethereum.create_transaction()
actual = ethereum.decode_custom_error(data, addr, txn=tx)
assert actual is None


def test_enrich_trace(ethereum, vyper_contract_instance, owner):
tx = vyper_contract_instance.setNumber(96247783, sender=owner)
trace = TransactionTrace(transaction_hash=tx.txn_hash)
actual = ethereum.enrich_trace(trace)
assert isinstance(actual, TransactionTrace)
assert actual._enriched_calltree is not None
assert re.match(r"VyperContract\.setNumber\(num=\d*\) \[\d* gas]", repr(actual))


def test_enrich_trace_handles_call_type_enum(ethereum, vyper_contract_instance, owner):
"""
Testing a custom trace who's call tree uses an Enum type instead of a str.
"""

class PluginTxTrace(TransactionTrace):
def get_calltree(self) -> CallTreeNode:
call = super().get_calltree()
# Force enum value instead of str.
call.call_type = CallType.CALL
return call

tx = vyper_contract_instance.setNumber(96247783, sender=owner)
trace = PluginTxTrace(transaction_hash=tx.txn_hash)
actual = ethereum.enrich_trace(trace)
assert isinstance(actual, PluginTxTrace)
assert actual._enriched_calltree is not None
assert re.match(r"VyperContract\.setNumber\(num=\d*\) \[\d* gas]", repr(actual))

# Hook into helper method hackily with an enum.
# Notice the mode is Python and not JSON here.
call = trace.get_calltree().model_dump(by_alias=True)
actual = ethereum._enrich_calltree(call)
assert actual["call_type"] == CallType.CALL.value

0 comments on commit e94c9a9

Please sign in to comment.