opensea name tags (#175)

This commit is contained in:
Graham Onders 2023-09-12 14:41:03 -06:00 committed by GitHub
parent 5aefa2f202
commit 70f9113eae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 15 additions and 1 deletions

View File

@ -0,0 +1,2 @@
blockchain,creator,address,tag_name,tag_type,start_date,end_date
ethereum,flipside,0x3a3e2323d3eb1c9bc83b953959f5e0d05104a395,NAJaneThomas,opensea name,1/17/22,null
1 blockchain creator address tag_name tag_type start_date end_date
2 ethereum flipside 0x3a3e2323d3eb1c9bc83b953959f5e0d05104a395 NAJaneThomas opensea name 1/17/22 null

View File

@ -585,4 +585,16 @@ SELECT
null as end_date,
'2023-08-22' :: TIMESTAMP as tag_created_at
FROM
{{ ref('silver__uniswap_verified_token_tags') }}
{{ ref('silver__uniswap_verified_token_tags') }}
UNION ALL
SELECT
blockchain,
creator,
lower(address),
tag_name,
tag_type,
start_date :: date as start_date,
null as end_date,
'2023-09-11' :: TIMESTAMP as tag_created_at
FROM
{{ ref('silver__opensea_names') }}