-
Notifications
You must be signed in to change notification settings - Fork 0
/
subgraph.yaml
145 lines (145 loc) · 4.43 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
specVersion: 0.0.5
schema:
file: ./schema.graphql
dataSources:
- kind: ethereum
name: Registry
network: sepolia
source:
address: "0xe0cde9239d16bEf05e62Bbf7aA93e420f464c826"
abi: Registry
mapping:
kind: ethereum/events
apiVersion: 0.0.7
language: wasm/assemblyscript
entities:
- ModuleRegistration
- Attested
- Revoked
abis:
- name: Registry
file: ./abis/Registry.json
eventHandlers:
- event: ModuleRegistration(indexed address,indexed address,bytes32)
handler: handleModuleRegistration
- event: Attested(indexed address,indexed address,bytes32,indexed address)
handler: handleAttested
- event: Revoked(indexed address,indexed address,indexed bytes32)
handler: handleRevoked
file: ./src/registry.ts
- kind: ethereum
name: VirtualColdStorage
network: sepolia
source:
address: "0xDFE507Ad4035256E586f9e8B7d0e82184d5b8cb4"
abi: VirtualColdStorage
mapping:
kind: ethereum/events
apiVersion: 0.0.7
language: wasm/assemblyscript
entities:
- ExecutionExecuted
- ExecutionRequested
abis:
- name: VirtualColdStorage
file: ./abis/VirtualColdStorage.json
eventHandlers:
- event: ExecutionExecuted(indexed address,address,uint256,bytes)
handler: handleExecutionExecuted
- event: ExecutionRequested(indexed address,address,uint256,bytes,uint256)
handler: handleExecutionRequested
file: ./src/virtualColdStorage.ts
- kind: ethereum
name: ScheduledOrders
network: sepolia
source:
address: "0x506A89D85a9733225fDB54d9e7E76D017c21E1C1"
abi: ScheduledOrders
startBlock: 46219600
mapping:
kind: ethereum/events
apiVersion: 0.0.7
language: wasm/assemblyscript
entities:
- ExecutionAdded
- ExecutionTriggered
- ExecutionsCancelled
abis:
- name: ScheduledOrders
file: ./abis/ScheduledOrders.json
eventHandlers:
- event: ExecutionAdded(indexed address,indexed uint256)
handler: handleExecutionAdded
- event: ExecutionTriggered(indexed address,indexed uint256)
handler: handleExecutionTriggered
- event: ExecutionsCancelled(indexed address)
handler: handleExecutionsCancelled
file: ./src/scheduled-orders.ts
- kind: ethereum
name: ScheduledTransfers
network: sepolia
source:
address: "0xAd6330089d9a1fe89f4020292E1aFE9969a5A2Fc"
abi: ScheduledTransfers
mapping:
kind: ethereum/events
apiVersion: 0.0.7
language: wasm/assemblyscript
entities:
- ExecutionAdded
- ExecutionTriggered
- ExecutionsCancelled
abis:
- name: ScheduledTransfers
file: ./abis/ScheduledTransfers.json
eventHandlers:
- event: ExecutionAdded(indexed address,indexed uint256)
handler: handleExecutionAdded
- event: ExecutionTriggered(indexed address,indexed uint256)
handler: handleExecutionTriggered
- event: ExecutionsCancelled(indexed address)
handler: handleExecutionsCancelled
file: ./src/scheduled-transfers.ts
- kind: ethereum
name: AutoSavings
network: sepolia
source:
address: "0x9fc07B42B4e13cBeA040F4f3F80223C9aDf4005E"
abi: AutoSavings
startBlock: 0
mapping:
kind: ethereum/events
apiVersion: 0.0.7
language: wasm/assemblyscript
entities:
- AutoSaveExecuted
abis:
- name: AutoSavings
file: ./abis/AutoSavings.json
eventHandlers:
- event: AutoSaveExecuted(indexed address,indexed address,uint256)
handler: handleAutoSaveExecuted
file: ./src/auto-savings.ts
- kind: ethereum
name: SmartAccount
network: sepolia
source:
abi: SmartAccount
startBlock: 5016208
mapping:
kind: ethereum/events
apiVersion: 0.0.7
language: wasm/assemblyscript
entities:
- ModuleInstalled
- ModuleUninstalled
- TryExecuteUnsuccessful
abis:
- name: SmartAccount
file: ./abis/SmartAccount.json
eventHandlers:
- event: ModuleInstalled(uint256,address)
handler: handleModuleInstalled
- event: ModuleUninstalled(uint256,address)
handler: handleModuleUninstalled
file: ./src/smart-account.ts