diff --git a/models/doc_descriptions/fsc_evm/evm_deprecations.md b/models/doc_descriptions/fsc_evm/evm_deprecations.md index a1ed99b..d4458b9 100644 --- a/models/doc_descriptions/fsc_evm/evm_deprecations.md +++ b/models/doc_descriptions/fsc_evm/evm_deprecations.md @@ -135,4 +135,106 @@ This column is being deprecated for standardization purposes. Please remove from This column is being deprecated for standardization purposes. Please remove from your queries by February 28, 2025. +{% enddocs %} + +{% docs evm_column_deprecation_notice_token_price %} + +This column is being deprecated for standardization purposes. Please remove from your queries by February 28, 2025. + +{% enddocs %} + +{% docs evm_column_deprecation_notice_has_price %} + +This column is being deprecated for standardization purposes. Please remove from your queries by February 28, 2025. + +{% enddocs %} + +{% docs evm_column_deprecation_notice_has_decimal %} + +This column is being deprecated for standardization purposes. Please remove from your queries by February 28, 2025. + +{% enddocs %} + +{% docs evm_column_deprecation_notice_nft_address %} + +This column is being removed for standardization purposes. Please update your queries to use the `contract_address` column instead by February 28, 2025. + +{% enddocs %} + +{% docs evm_column_deprecation_notice_tokenid %} + +This column is being removed for standardization purposes. Please update your queries to use the `token_id` column instead by February 28, 2025. + +{% enddocs %} + +{% docs evm_column_deprecation_notice_erc1155_value %} + +This column is being removed for standardization purposes. Please update your queries to use the `quantity` column instead by February 28, 2025. + +{% enddocs %} + +{% docs evm_column_deprecation_notice_project_name %} + +This column is being removed for standardization purposes. Please update your queries to use the `name` column instead by February 28, 2025. + +{% enddocs %} + +{% docs evm_column_deprecation_notice_loanid %} + +This column is being removed for standardization purposes. Please update your queries to use the `loan_id` column instead by February 28, 2025. + +{% enddocs %} + +{% docs evm_column_deprecation_notice_tokenid_name %} + +This column is being removed for standardization purposes. Please update your queries to use the `token_id_name` column instead by February 28, 2025. + +{% enddocs %} + +{% docs evm_column_deprecation_notice_tokenid_description %} + +This column is being removed for standardization purposes. Please update your queries to use the `token_id_description` column instead by February 28, 2025. + +{% enddocs %} + +{% docs evm_column_deprecation_notice_tokenid_image_url %} + +This column is being removed for standardization purposes. Please update your queries to use the `token_id_image_url` column instead by February 28, 2025. + +{% enddocs %} + +{% docs evm_column_deprecation_notice_nft_address_tokenid %} + +This column is being removed for standardization purposes. Please update your queries to use the `nft_address_token_id` column instead by February 28, 2025. + +{% enddocs %} + +{% docs evm_column_deprecation_notice_nft_from_address %} + +This column is being removed for standardization purposes. Please update your queries to use the `from_address` column instead by February 28, 2025. + +{% enddocs %} + +{% docs evm_column_deprecation_notice_nft_to_address %} + +This column is being removed for standardization purposes. Please update your queries to use the `to_address` column instead by February 28, 2025. + +{% enddocs %} + +{% docs evm_column_deprecation_notice_mint_price_eth %} + +This column is being removed for standardization purposes. Please update your queries to use the `mint_price_native` column instead by February 28, 2025. + +{% enddocs %} + +{% docs evm_column_deprecation_notice_event_type %} + +This column is being removed for standardization purposes. Please remove from your queries by February 28, 2025. + +{% enddocs %} + +{% docs evm_column_deprecation_notice_inserted_timestamp %} + +This column is being removed for standardization purposes. Please update your queries to use the `modified_timestamp` column instead by February 28, 2025. + {% enddocs %} \ No newline at end of file diff --git a/models/gold/core/core__ez_token_transfers.sql b/models/gold/core/core__ez_token_transfers.sql index 1880cc1..7894042 100644 --- a/models/gold/core/core__ez_token_transfers.sql +++ b/models/gold/core/core__ez_token_transfers.sql @@ -22,10 +22,10 @@ SELECT amount_usd, decimals, symbol, - token_price, - _inserted_timestamp, transfers_id AS ez_token_transfers_id, inserted_timestamp, - modified_timestamp + modified_timestamp, + _inserted_timestamp, --deprecate + token_price --deprecate FROM {{ ref('silver__transfers') }} \ No newline at end of file diff --git a/models/gold/core/core__ez_token_transfers.yml b/models/gold/core/core__ez_token_transfers.yml index 7a2f237..5c2558a 100644 --- a/models/gold/core/core__ez_token_transfers.yml +++ b/models/gold/core/core__ez_token_transfers.yml @@ -39,7 +39,9 @@ models: - name: SYMBOL description: '{{ doc("blast_symbol") }}' - name: TOKEN_PRICE - description: '{{ doc("blast_transfer_token_price") }}' + description: '{{ doc("evm_column_deprecation_notice_token_price") }}' + - name: _INSERTED_TIMESTAMP + description: '{{ doc("evm_column_deprecation_notice_inserted_timestamp") }}' - name: EZ_TOKEN_TRANSFERS_ID description: '{{ doc("pk") }}' - name: INSERTED_TIMESTAMP