-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsubgraph.yaml
61 lines (61 loc) · 1.97 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
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