-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes for dbt compile, including adding forgotten sources and some mi…
…inor others
- Loading branch information
1 parent
df511f7
commit 11c9d62
Showing
5 changed files
with
81 additions
and
11 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
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
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,70 @@ | ||
version: 2 | ||
|
||
sources: | ||
- name: yield_yak_mantle | ||
freshness: | ||
warn_after: { count: 12, period: hour } | ||
description: > | ||
Decoded event tables for swaps, deposits, withdraws, reinvests and transfers on yield yak | ||
tables: | ||
- name: YakRouter_evt_YakSwap | ||
loaded_at_field: evt_block_time | ||
- name: YakRouter_call_swapNoSplitFromAVAX | ||
loaded_at_field: call_block_time | ||
- name: YakRouter_call_swapNoSplit | ||
loaded_at_field: call_block_time | ||
- name: YakRouter_call_swapNoSplitToAVAXWithPermit | ||
loaded_at_field: call_block_time | ||
- name: YakRouter_call_swapNoSplitWithPermit | ||
loaded_at_field: call_block_time | ||
- name: YakRouter_call_swapNoSplitToAVAX | ||
loaded_at_field: call_block_time | ||
# Now the strategies | ||
- name: CompoundingJoeMantle_evt_Deposit | ||
loaded_at_field: evt_block_time | ||
- name: CompoundingJoeMantle_evt_Withdraw | ||
loaded_at_field: evt_block_time | ||
- name: CompoundingJoeMantle_evt_Reinvest | ||
loaded_at_field: evt_block_time | ||
- name: CompoundingJoeMantle_evt_Transfer | ||
loaded_at_field: evt_block_time | ||
- name: CompoundingMoe_evt_Deposit | ||
loaded_at_field: evt_block_time | ||
- name: CompoundingMoe_evt_Withdraw | ||
loaded_at_field: evt_block_time | ||
- name: CompoundingMoe_evt_Reinvest | ||
loaded_at_field: evt_block_time | ||
- name: CompoundingMoe_evt_Transfer | ||
loaded_at_field: evt_block_time | ||
- name: CompoundingYYStaking_evt_Deposit | ||
loaded_at_field: evt_block_time | ||
- name: CompoundingYYStaking_evt_Withdraw | ||
loaded_at_field: evt_block_time | ||
- name: CompoundingYYStaking_evt_Reinvest | ||
loaded_at_field: evt_block_time | ||
- name: CompoundingYYStaking_evt_Transfer | ||
loaded_at_field: evt_block_time | ||
- name: LendleStrategy_evt_Deposit | ||
loaded_at_field: evt_block_time | ||
- name: LendleStrategy_evt_Withdraw | ||
loaded_at_field: evt_block_time | ||
- name: LendleStrategy_evt_Reinvest | ||
loaded_at_field: evt_block_time | ||
- name: LendleStrategy_evt_Transfer | ||
loaded_at_field: evt_block_time | ||
- name: MoeStrategy_evt_Deposit | ||
loaded_at_field: evt_block_time | ||
- name: MoeStrategy_evt_Withdraw | ||
loaded_at_field: evt_block_time | ||
- name: MoeStrategy_evt_Reinvest | ||
loaded_at_field: evt_block_time | ||
- name: MoeStrategy_evt_Transfer | ||
loaded_at_field: evt_block_time | ||
- name: StargateV2Strategy_evt_Deposit | ||
loaded_at_field: evt_block_time | ||
- name: StargateV2Strategy_evt_Withdraw | ||
loaded_at_field: evt_block_time | ||
- name: StargateV2Strategy_evt_Reinvest | ||
loaded_at_field: evt_block_time | ||
- name: StargateV2Strategy_evt_Transfer | ||
loaded_at_field: evt_block_time |