Skip to content

Commit

Permalink
Add gnosis safe airdrop address data (#1535)
Browse files Browse the repository at this point in the history
* Add gnosis safe airdrop address data

* Reformat according to PR #1529
  • Loading branch information
springzh authored Sep 11, 2022
1 parent 4b07b47 commit 768fd67
Show file tree
Hide file tree
Showing 3 changed files with 55,743 additions and 0 deletions.
8 changes: 8 additions & 0 deletions dbt_project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,14 @@ models:
labels:
+schema: labels
+materialized: view

addresses:
+schema: addresses
+materialized: table
ethereum:
+schema: addresses_ethereum
+materialized: table

tokens:
+schema: tokens
+materialized: view
Expand Down
10 changes: 10 additions & 0 deletions macros/alter_table_properties.sql
Original file line number Diff line number Diff line change
Expand Up @@ -415,6 +415,15 @@ ALTER TABLE airdrop_optimism.addresses_1 SET TBLPROPERTIES('dune.public'='true',
'dune.data_explorer.contributors'='["soispoke"]');
{% endset %}

{% set addresses_ethereum_safe_airdrop %}
ALTER TABLE addresses_ethereum.safe_airdrop SET TBLPROPERTIES('dune.public'='true',
'dune.data_explorer.blockchains'='["ethereum"]',
'dune.data_explorer.category'='abstraction',
'dune.data_explorer.abstraction.type'='sector',
'dune.data_explorer.abstraction.name'='addresses',
'dune.data_explorer.contributors'='["springzh"]');
{% endset %}

{% set ens_view_expirations %}
ALTER VIEW ens.view_expirations SET TBLPROPERTIES('dune.public'='true',
'dune.data_explorer.blockchains'='["ethereum"]',
Expand Down Expand Up @@ -674,6 +683,7 @@ ALTER VIEW archipelago_ethereum.fees SET TBLPROPERTIES ('dune.public'='true',
{% do run_query(safe_ethereum_eth_transfers) %}
{% do run_query(prices_tokens) %}
{% do run_query(airdrop_optimism_addresses_1) %}
{% do run_query(addresses_ethereum_safe_airdrop) %}
{% do run_query(tornado_cash_deposits) %}
{% do run_query(tornado_cash_withdrawals) %}
{% do run_query(tokens_erc20) %}
Expand Down
Loading

0 comments on commit 768fd67

Please sign in to comment.