-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsubgraph.yaml
99 lines (99 loc) · 3.28 KB
/
subgraph.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
specVersion: 1.0.0
indexerHints:
prune: auto
schema:
file: ./schema.graphql
dataSources:
- kind: ethereum
name: Auction
network: holesky
source:
address: "0xC050C50e18CB8787dDF1E1227c0FE7A8a5404815"
abi: Auction
startBlock: 2510892
mapping:
kind: ethereum/events
apiVersion: 0.0.7
language: wasm/assemblyscript
entities:
- BidPlaced
- BidUpdated
- BidWithdrawn
- WinnerJoinedCluster
- ClusterCreated
abis:
- name: Auction
file: ./abis/Auction.json
eventHandlers:
- event: BidPlaced(indexed address,bytes32,uint16,uint32,uint256,uint256,uint8)
handler: handleBidPlaced
- event: BidUpdated(indexed address,indexed bytes32,uint16,uint32,uint256,uint256)
handler: handleBidUpdated
- event: BidWithdrawn(indexed address,indexed bytes32)
handler: handleBidWithdrawn
- event: WinnerJoinedCluster(indexed address,indexed bytes32,bytes32)
handler: handleWinnerJoinedCluster
- event: ClusterCreated(indexed bytes32,uint256,address)
handler: handleClusterCreatedLegacy
- event: ClusterCreated(indexed bytes32,uint256,address,address,address)
handler: handleClusterCreated
file: ./src/auction.ts
- kind: ethereum
name: StrategyVaultManager
network: holesky
source:
address: "0x7027CfbB4E295288c7346c04C577f03aA9a1e5a4"
abi: StrategyVaultManager
startBlock: 2510892
mapping:
kind: ethereum/events
apiVersion: 0.0.7
language: wasm/assemblyscript
entities:
- EigenLayerNativeVaultCreated
abis:
- name: StrategyVaultManager
file: ./abis/StrategyVaultManager.json
eventHandlers:
- event: EigenLayerNativeVaultCreated(indexed address,indexed
address,address,address,bool,bool)
handler: handleEigenLayerNativeVaultCreated
file: ./src/strategy-vault-manager.ts
- kind: ethereum
name: ByzantineDeposit
network: holesky
source:
address: "0xF7517CB32Cd5e78a2E0AB6BcBD46b974aCe7f148"
abi: ByzantineDeposit
startBlock: 3236803
mapping:
kind: ethereum/events
apiVersion: 0.0.7
language: wasm/assemblyscript
entities:
- Deposit
- DepositTokenAdded
- DepositorStatusChanged
- MoveToVault
- PermissionlessDepositSet
- Withdraw
- DepositTokenRemoved
abis:
- name: ByzantineDeposit
file: ./abis/ByzantineDeposit.json
eventHandlers:
- event: Deposit(indexed address,address,uint256)
handler: handleDeposit
- event: DepositTokenAdded(address)
handler: handleDepositTokenAdded
- event: DepositorStatusChanged(indexed address,bool)
handler: handleDepositorStatusChanged
- event: MoveToVault(indexed address,address,address,uint256,address)
handler: handleMoveToVault
- event: PermissionlessDepositSet(bool)
handler: handlePermissionlessDepositSet
- event: Withdraw(indexed address,address,uint256,address)
handler: handleWithdraw
- event: DepositTokenRemoved(address)
handler: handleDepositTokenRemoved
file: ./src/byzantine-deposit.ts