Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
SELECT
blockchain,
trim(lower(address)) as address,
name,
'nft' as category,
'cryptuschrist' as contributor,
'static' as source,
timestamp('2023-06-05') as created_at,
NOW() as updated_at,
'opensea_usernames' as model_name,
'identifier' as label_type
FROM
(
SELECT blockchain, address, name
FROM {{ ref('labels_nft_opensea_usernames_seed') }}

) a
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
version: 2

models:
- name: labels_opensea_usernames
meta:
blockchain: ethereum
sector: labels
project: opensea_usernames
contributors: cryptuschrist
config:
tags: ["labels", "opensea_usernames", "nft", "ethereum"]
description: "OpenSea Wallet Usernames"
columns:
- name: blockchain
description: "Blockchain"
- name: address
description: "OpenSea Wallet Usernames"
- name: name
description: "Label name"
- name: category
description: "Label category"
- name: contributor
description: "Wizard(s) contributing to labels"
- name: source
description: "Static - OpenSea API"
- name: created_at
description: "When were labels created"
- name: updated_at
description: "When were labels updated for the last time"
- name: model_name
description: "Name of the label model sourced from"
- name: label_type
description: "Type of label"
Loading