This repository has been archived by the owner on Aug 31, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
subgraph.yaml
56 lines (56 loc) · 1.69 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
specVersion: 0.0.4
schema:
file: ./schema.graphql
dataSources:
- kind: ethereum
name: EthSignV4
network: matic
source:
address: "0x47480015f1f1B96df687285Ff94e3B6125ae4D5E"
abi: EthSignV4
startBlock: 28811769
mapping:
kind: ethereum/events
apiVersion: 0.0.6
language: wasm/assemblyscript
entities:
- ContractCreated
- ContractHidden
- ContractSigningCompleted
- SignerSigned
- RecipientsAdded
abis:
- name: EthSignV4
file: ./abis/EthSignV4.json
eventHandlers:
- event: ContractCreated(bytes32,string,address,uint8)
handler: handleContractCreated
- event: ContractHidden(bytes32,address)
handler: handleContractHidden
- event: ContractSigningCompleted(bytes32)
handler: handleContractSigningCompleted
- event: SignerSigned(bytes32,address,string)
handler: handleSignerSigned
- event: RecipientsAdded(bytes32,uint168[],address[])
handler: handleRecipientsAdded
file: ./src/mapping.ts
- kind: ethereum
name: EthSignPublicEncryptionKeyRegistry
network: matic
source:
address: "0x7Dc2b15856320a8AE56209FC0565A8a095a2A803"
abi: EthSignPublicEncryptionKeyRegistry
startBlock: 27529860
mapping:
kind: ethereum/events
apiVersion: 0.0.6
language: wasm/assemblyscript
entities:
- Registered
abis:
- name: EthSignPublicEncryptionKeyRegistry
file: ./abis/EthSignPublicEncryptionKeyRegistry.json
eventHandlers:
- event: Registered(address,string)
handler: handleRegistered
file: ./src/mapping.ts