mirror of
https://github.com/FlipsideCrypto/aptos-models.git
synced 2026-02-06 15:27:12 +00:00
Merge pull request #75 from FlipsideCrypto/fix/native_apt_token
Fix/native apt token
This commit is contained in:
commit
df8a23f64a
@ -9,7 +9,10 @@ SELECT
|
||||
NAME,
|
||||
decimals,
|
||||
price,
|
||||
FALSE AS is_native,
|
||||
CASE
|
||||
WHEN LOWER(token_address) = LOWER('0xa') THEN TRUE
|
||||
ELSE FALSE
|
||||
END AS is_native,
|
||||
is_deprecated,
|
||||
is_imputed,
|
||||
COALESCE(
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
materialized = 'incremental',
|
||||
incremental_strategy = 'delete+insert',
|
||||
unique_key = 'complete_native_asset_metadata_id',
|
||||
tags = ['core']
|
||||
tags = ['disabled']
|
||||
) }}
|
||||
|
||||
SELECT
|
||||
|
||||
@ -3,7 +3,7 @@
|
||||
incremental_strategy = 'delete+insert',
|
||||
unique_key = 'complete_native_prices_id',
|
||||
cluster_by = ['HOUR::DATE'],
|
||||
tags = ['core']
|
||||
tags = ['disabled']
|
||||
) }}
|
||||
|
||||
SELECT
|
||||
|
||||
Loading…
Reference in New Issue
Block a user