-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: float
overflow
for base traces (#2378)
* fix: override `value` field to be of type `bytes` * fix: cast back `value` to `float` on `base` traces * fix: use correct `type` to avoid overflows
- Loading branch information
Showing
3 changed files
with
36 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,13 @@ | ||
from ..factories.goldsky import goldsky_network_assets | ||
from ..factories.goldsky.config import NetworkAssetSourceConfigDict | ||
|
||
base_network = goldsky_network_assets( | ||
network_name="base", | ||
destination_dataset_name="superchain", | ||
working_destination_dataset_name="oso_raw_sources", | ||
traces_config=NetworkAssetSourceConfigDict( | ||
schema_overrides=[ | ||
{"name": "value", "field_type": "STRING"}, | ||
] | ||
), | ||
) |