You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the transactions are polars hstacked with the decoded logs in the query construction function with a config pass through parameter. However this leads to a lot of duplicate code
TransactionField.GAS_USED: DataType.FLOAT64,
TransactionField.MAX_FEE_PER_BLOB_GAS: DataType.FLOAT64,
TransactionField.MAX_PRIORITY_FEE_PER_GAS: DataType.FLOAT64,
TransactionField.GAS_PRICE: DataType.FLOAT64,
TransactionField.CUMULATIVE_GAS_USED: DataType.FLOAT64,
TransactionField.EFFECTIVE_GAS_PRICE: DataType.FLOAT64,
TransactionField.NONCE: DataType.INT64,
TransactionField.GAS: DataType.FLOAT64,
TransactionField.MAX_FEE_PER_GAS: DataType.FLOAT64,
TransactionField.VALUE: DataType.FLOAT64,
TransactionField.CHAIN_ID: DataType.INT64,
}```
Morever this pass through doesn't even work for all columns. Need to come up with a better way to ensure the transaction fields are being decoded properly and hstack is working
The text was updated successfully, but these errors were encountered:
Currently the transactions are polars hstacked with the decoded logs in the query construction function with a config pass through parameter. However this leads to a lot of duplicate code
The text was updated successfully, but these errors were encountered: