-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Stablecoin V2: Celo Stablecoin Supply (#420)
- Loading branch information
1 parent
8278be4
commit 9a1e530
Showing
3 changed files
with
57 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 12 additions & 0 deletions
12
models/metrics/stablecoins/contracts/fact_celo_stablecoin_premint_addresses.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{{ config(materialized="table") }} | ||
-- Premint addresses for ethereum are representative of USDT that has been bridged to other L2s | ||
select contract_address, premint_address | ||
from | ||
( | ||
values | ||
-- Un-released Supply | ||
( | ||
'0x48065fbBE25f71C9282ddf5e1cD6D6A887483D5e', | ||
'0x5754284f345afc66a98fbb0a0afe71e0f007b949' | ||
) | ||
) as results(contract_address, premint_address) |