Skip to content

Commit

Permalink
lower address
Browse files Browse the repository at this point in the history
  • Loading branch information
Tburm committed Dec 13, 2024
1 parent 13ae68f commit db9b250
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ with dim as (
inner join
{{ ref('arbitrum_mainnet_tokens') }}
as t
on p.collateral_type = t.token_address
lower(p.collateral_type) = lower(t.token_address)
where
t.yield_token_symbol is not null
),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ with dim as (
inner join
{{ ref('base_mainnet_tokens') }}
as t
on p.collateral_type = t.token_address
lower(p.collateral_type) = lower(t.token_address)
where
t.yield_token_symbol is not null
),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ with dim as (
inner join
{{ ref('eth_mainnet_tokens') }}
as t
on p.collateral_type = t.token_address
lower(p.collateral_type) = lower(t.token_address)
where
t.yield_token_symbol is not null
),
Expand Down

0 comments on commit db9b250

Please sign in to comment.