Skip to content

Commit

Permalink
use friendly_name
Browse files Browse the repository at this point in the history
  • Loading branch information
alexwes committed Nov 25, 2024
1 parent 9bf0f64 commit 2c0b8cd
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion macros/rwa/ez_rwa_by_chain.sql
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ select
tvl.date,
tvl.chain,
tvl.symbol,
tvl.issuer_friendly,
tvl.issuer_friendly_name,
sum(tvl.tokenized_supply_change) as tokenized_supply_change,
sum(tvl.tokenized_mcap_change) as tokenized_mcap_change,
sum(tvl.tokenized_supply) as tokenized_supply,
Expand Down
2 changes: 1 addition & 1 deletion macros/rwa/ez_rwa_by_product.sql
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

select
tvl.date,
tvl.issuer_friendly,
tvl.issuer_friendly_name,
tvl.symbol,
sum(tvl.tokenized_supply_change) as tokenized_supply_change,
sum(tvl.tokenized_mcap_change) as tokenized_mcap_change,
Expand Down
2 changes: 1 addition & 1 deletion macros/rwa/rwa_data_by_chain_for_issuer.sql
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
date
, chain
, symbol
, issuer_friendly
, issuer_friendly_name
, avg(price) as price
, sum(rwa_supply_usd) as tokenized_mcap
, sum(net_rwa_supply_usd_change) as tokenized_mcap_change
Expand Down
2 changes: 1 addition & 1 deletion macros/rwa/rwa_data_by_product_for_issuer.sql
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
date
, chain
, symbol
, issuer_friendly
, issuer_friendly_name
, avg(price) as price
, sum(rwa_supply_usd) as tokenized_mcap
, sum(net_rwa_supply_usd_change) as tokenized_mcap_change
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
)
}}

SELECT symbol, issuer_id, issuer_friendly, product_type FROM
SELECT symbol, issuer_id, issuer_friendly_name, product_type FROM
(
VALUES
('BUIDL', 'blackrock', 'BlackRock', 'Treasury'),
Expand All @@ -16,4 +16,4 @@ SELECT symbol, issuer_id, issuer_friendly, product_type FROM
('FOBXX', 'franklin_templeton', 'Franklin Templeton', 'Treasury'),
('PAXG', 'paxos', 'Paxos', 'Gold'),
('XAUT', 'tether', 'Tether', 'Gold')
) as results(symbol, issuer_id, issuer_friendly, product_type)
) as results(symbol, issuer_id, issuer_friendly_name, product_type)
2 changes: 1 addition & 1 deletion models/staging/rwa/agg_rwa_by_product_and_chain.sql
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ SELECT
, chain
, i.symbol
, i.issuer_id
, i.issuer_friendly
, i.issuer_friendly_name
, i.product_type
, price
, net_rwa_supply_native_change
Expand Down

0 comments on commit 2c0b8cd

Please sign in to comment.