-
Notifications
You must be signed in to change notification settings - Fork 0
/
subgraph.sepolia.yaml
46 lines (46 loc) · 1.29 KB
/
subgraph.sepolia.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
specVersion: 0.0.5
schema:
file: ./schema.graphql
dataSources:
- kind: ethereum
name: FractalRegistry
network: sepolia
source:
abi: FractalRegistry
address: "0x4791FF2a6E84F012402c0679C12Cb1d9260450A6"
startBlock: 4916634
mapping:
kind: ethereum/events
apiVersion: 0.0.7
language: wasm/assemblyscript
entities:
- DAO
abis:
- name: FractalRegistry
file: ./abis/FractalRegistry.json
eventHandlers:
- event: FractalNameUpdated(indexed address,string)
handler: handleFractalNameUpdated
- event: FractalSubDAODeclared(indexed address,indexed address)
handler: handleFractalSubDAODeclared
file: ./src/fractal-registry.ts
- kind: ethereum
name: KeyValuePairs
network: sepolia
source:
abi: KeyValuePairs
address: "0xC0E08581b70cF745770154f3E9a9A8890198b024"
startBlock: 4916643
mapping:
kind: ethereum/events
apiVersion: 0.0.7
language: wasm/assemblyscript
entities:
- DAO
abis:
- name: KeyValuePairs
file: ./abis/KeyValuePairs.json
eventHandlers:
- event: ValueUpdated(indexed address,string,string)
handler: handleValueUpdated
file: ./src/key-value-pairs.ts