Skip to content
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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ The format is based on [Keep a Changelog], and this project adheres to [Semantic

Releases prior to 7.0 has been removed from this file to declutter search results; see the [archived copy](https://github.com/dipdup-io/dipdup/blob/8.0.0b5/CHANGELOG.md) for the full list.

## [Unreleased]

### Fixed

- evm.node: Fixed empty `gasPrice` field base conversion on evm transaction deserialization.

## [8.2.1] - 2025-02-19

### Added
Expand Down
4 changes: 2 additions & 2 deletions src/dipdup/models/evm.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ class EvmTransactionData(HasLevel):
effective_gas_price: int | None
from_: str
gas: int
gas_price: int
gas_price: int | None
gas_used: int | None
hash: str
input: str
Expand Down Expand Up @@ -107,7 +107,7 @@ def from_node_json(
effective_gas_price=None,
from_=transaction_json['from'],
gas=int(transaction_json['gas'], 16),
gas_price=int(transaction_json['gasPrice'], 16),
gas_price=int(transaction_json['gasPrice'], 16) if transaction_json.get('gasPrice') else None,
gas_used=None,
hash=transaction_json['hash'],
input=transaction_json['input'],
Expand Down