From 316394776c0139a4de2807aa31c6ea0853fdbbe8 Mon Sep 17 00:00:00 2001 From: Reuven Gonzales Date: Mon, 23 Sep 2024 15:26:03 -0700 Subject: [PATCH] Fix arb txs (#2192) Fixes arbitrum transactions column types --- warehouse/oso_dagster/assets/arbitrum.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/warehouse/oso_dagster/assets/arbitrum.py b/warehouse/oso_dagster/assets/arbitrum.py index ac66d104c..273b837b0 100644 --- a/warehouse/oso_dagster/assets/arbitrum.py +++ b/warehouse/oso_dagster/assets/arbitrum.py @@ -10,4 +10,10 @@ {"name": "value", "field_type": "BYTES"}, ] ), + transactions_config=NetworkAssetSourceConfigDict( + schema_overrides=[ + {"name": "value", "field_type": "BYTES"}, + {"name": "gas_price", "field_type": "BYTES"}, + ] + ), )