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
SELECT COUNT(*) as tx_count
FROM gas.fees
WHERE tx_from=0xC94eBB328aC25b95DB0E0AA968371885Fa516215
AND blockchain='ethereum'
Expected behavior
Transaction count in gas.usage_by_address should match the count in gas.fees table where currency_symbol is not null.
Impacted model(s)
gas.usage_by_address
Possible solution
Investigate incremental processing logic in the model. May be a full refresh or modification of the incremental merge strategy to properly aggregate historical transactions?
The text was updated successfully, but these errors were encountered:
Description
The
gas.usage_by_address
model is significantly undercounting the number of transactions for addresses.Current behavior
For example, for address
0xC94eBB328aC25b95DB0E0AA968371885Fa516215
:gas.usage_by_address
shows 20,534 transactions (query)gas.fees
(source table) shows 1,397,874 transactions (query)Expected behavior
Transaction count in
gas.usage_by_address
should match the count ingas.fees
table where currency_symbol is not null.Impacted model(s)
Possible solution
Investigate incremental processing logic in the model. May be a full refresh or modification of the incremental merge strategy to properly aggregate historical transactions?
The text was updated successfully, but these errors were encountered: