Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit dd6a144

Browse files
committedFeb 7, 2025·
add strategy_category
1 parent 6bc5a59 commit dd6a144

File tree

2 files changed

+56
-14
lines changed

2 files changed

+56
-14
lines changed
 

‎dbt_subprojects/daily_spellbook/models/eigenlayer/eigenlayer_schema.yml

+24-14
Original file line numberDiff line numberDiff line change
@@ -11,24 +11,34 @@ models:
1111
description: >
1212
FlattenedV2 withdrawal queued events from EigenLayer
1313
columns:
14-
- &evt_block_time
15-
name: evt_block_time
14+
- name: evt_block_time
1615
description: 'Block time in UTC'
17-
- &evt_block_number
18-
name: evt_block_number
16+
- name: evt_block_number
1917
description: 'Block Number'
20-
- &evt_tx_hash
21-
name: evt_tx_hash
18+
- name: evt_tx_hash
2219
description: 'Tx Hash'
23-
- &evt_index
24-
name: evt_index
20+
- name: evt_index
2521
description: "Event index"
26-
- &withdrawalRoot
27-
name: withdrawalRoot
22+
- name: withdrawalRoot
2823
description: "Withdrawal hash root"
29-
- &strategy
30-
name: strategy
24+
- name: strategy
3125
description: "Strategy to withdraw from"
32-
- &share
33-
name: share
26+
- name: share
3427
description: "Share of the withdrawal"
28+
29+
- name: strategy_category
30+
meta:
31+
blockchain: ethereum
32+
sector: restaking
33+
contributors: bowenli
34+
config:
35+
tags: ['eigenlayer', 'restaking', 'strategy']
36+
description: >
37+
Strategy category in EigenLayer
38+
columns:
39+
- name: category
40+
description: "Category of the strategy"
41+
- name: name
42+
description: "Name of the strategy"
43+
- name: strategy
44+
description: "Strategy address"
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{{
2+
config(
3+
schema = 'eigenlayer',
4+
alias = 'strategy_category',
5+
post_hook='{{ expose_spells(\'["ethereum"]\',
6+
"project",
7+
"eigenlayer",
8+
\'["bowenli"]\') }}'
9+
)
10+
}}
11+
12+
select
13+
category,
14+
name,
15+
strategy
16+
from (
17+
values
18+
('eth lst','stETH',0x93c4b944d05dfe6df7645a86cd2206016c51564d),
19+
('eth lst','rETH',0x1bee69b7dffa4e2d53c2a2df135c388ad25dcd2),
20+
('eth lst','cbETH',0x54945180db7943c0ed0fee7edab2bd24620256bc),
21+
('eth lst','ETHx',0x9d7ed45ee2e8fc5482fa2428f15c971e6369011d),
22+
('eth lst','ankrETH',0x13760f50a9d7377e4f20cb8cf9e4c26586c658ff),
23+
('eth lst','oETH',0xa4c637e0f704745d182e4d38cab7e7485321d059),
24+
('eth lst','osETH',0x57ba429517c3473b6d34ca9acd56c0e735b94c02),
25+
('eth lst','swETH',0x0fe4f44bee93503346a3ac9ee5a26b130a5796d6),
26+
('eth lst','wBETH',0x7ca911e83dabf90c90dd3de5411a10f1a6112184),
27+
('eth lst','sfrxETH',0x8ca7a5d6f3acd3a7a8bc468a8cd0fb14b6bd28b6),
28+
('eth lst','lsETH',0xae60d8180437b5c34bb956822ac2710972584473),
29+
('eth lst','mETH',0x298afb19a105d59e74658c4c334ff360bade6dd2),
30+
('eth native','ETH',0xbeac0eeeeeeeeeeeeeeeeeeeeeeeeeeeeeebeac0),
31+
('eigen','EIGEN',0xacb55c530acdb2849e6d4f36992cd8c9d50ed8f7)
32+
) t (category, name, strategy)

0 commit comments

Comments
 (0)
Please sign in to comment.