Skip to content

Commit

Permalink
fix seeds and naming
Browse files Browse the repository at this point in the history
  • Loading branch information
Tburm committed Nov 26, 2024
1 parent 36ad20d commit f18d36a
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ transfers as (
cm.block_number,
cm.block_timestamp as ts,
cm.transaction_hash,
cm.collateral_id,
cm.synth_market_id as collateral_id,
synths.synth_token_address,
CAST(
cm.account_id as text
Expand All @@ -20,7 +20,7 @@ transfers as (
from
{{ ref('perp_collateral_modified_base_mainnet') }} as cm
inner join synths
on cm.collateral_id = synths.collateral_id
on cm.synth_market_id = synths.collateral_id
),

liq_tx as (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ transfers as (
cm.block_number,
cm.block_timestamp as ts,
cm.transaction_hash,
cm.collateral_id,
cm.synth_market_id as collateral_id,
synths.synth_token_address,
CAST(
cm.account_id as text
Expand All @@ -20,7 +20,7 @@ transfers as (
from
{{ ref('perp_collateral_modified_base_sepolia') }} as cm
inner join synths
on cm.collateral_id = synths.collateral_id
on cm.synth_market_id = synths.collateral_id
),

liq_tx as (
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
distributor_address,token_symbol
distributor_address,token_symbol,synth_token_address
0xe92bcD40849BE5a5eb90065402e508aF4b28263b,USDC
0x45063DCd92f56138686810eacB1B510C941d6593,SNX
0xbb63CA5554dc4CcaCa4EDd6ECC2837d5EFe83C82,SNX
0x7656bDEE9f4e7A507fd0C5b2431D3F3690E20711,BTC,0xEDE1d04C864EeEC40393ED4cb454B85A5ABD071C
0x4D64E1FDcfD08081F0bF088C1e6b32087FeF0237,ETH,0xc302f3f74ec19d0917C7F19Bca6775f7000a292a
0x2F64ad511C33a78080b114c5ef51370B31488e65,ETH,0xFA24Be208408F20395914Ba82Def333d987E0080
0xE8183A61d64ea44a430bB361467063535B769052,wstETH,0x3526D453D1Edb105E4e2b8448760fC501050d976
Original file line number Diff line number Diff line change
@@ -1 +1 @@
distributor_address,token_symbol
distributor_address,token_symbol,synth_token_address

0 comments on commit f18d36a

Please sign in to comment.