Skip to content

Commit

Permalink
chore: add SwapOperator contract
Browse files Browse the repository at this point in the history
  • Loading branch information
tomfutago committed Jan 27, 2025
1 parent b612468 commit 00ad64d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ with
transfer_combined as (
select * from {{ ref('nexusmutual_ethereum_capital_pool_transfers') }}
where block_time >= timestamp '2019-05-23'
and 1=1 -- dummy condition to trigger re-run
),

lido_oracle as (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ nexusmutual_contracts (contract_address) as (
(0x7cbe5682be6b648cc1100c76d4f6c96997f753d6), --Pool2, deployed: May-23-2019
(0xcafea8321b5109d22c53ac019d7a449c947701fb), --MCR, deployed: May-25-2021
(0xcafea92739e411a4D95bbc2275CA61dE6993C9a7), --MCR, deployed: Nov-21-2023
(0x51ad1265C8702c9e96Ea61Fe4088C2e22eD4418e) --Advisory Board multisig
(0x51ad1265C8702c9e96Ea61Fe4088C2e22eD4418e), --Advisory Board multisig
(0xcafeaed98d7Fce8F355C03c9F3507B90a974f37e) --SwapOperator
),

transfer_in as (
Expand Down Expand Up @@ -122,4 +123,3 @@ from transfer_nxmty_in
union all
select block_time, block_number, block_date, transfer_type, symbol, amount, contract_address, unique_key, tx_hash
from transfer_nxmty_out
where 1=1 -- dummy condition to trigger re-run

0 comments on commit 00ad64d

Please sign in to comment.