forked from ensdomains/ens-subgraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
subgraph.yaml
155 lines (155 loc) · 5.07 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
146
147
148
149
150
151
152
153
154
155
specVersion: 0.0.3
description: >-
A secure & decentralized way to address resources on and off the blockchain
using simple, human-readable names. Access domains and transfer history.
repository: 'https://github.com/ensdomains/ens-subgraph'
schema:
file: ./schema.graphql
dataSources:
- kind: ethereum/contract
name: ENSRegistry
network: mainnet
source:
address: '0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e'
abi: EnsRegistry
mapping:
kind: ethereum/events
apiVersion: 0.0.5
language: wasm/assemblyscript
file: ./src/ensRegistry.ts
entities:
- Domain
- Account
- Resolver
abis:
- name: EnsRegistry
file: ./abis/Registry.json
eventHandlers:
- event: 'Transfer(indexed bytes32,address)'
handler: handleTransfer
- event: 'NewOwner(indexed bytes32,indexed bytes32,address)'
handler: handleNewOwner
- event: 'NewResolver(indexed bytes32,address)'
handler: handleNewResolver
- event: 'NewTTL(indexed bytes32,uint64)'
handler: handleNewTTL
- kind: ethereum/contract
name: ENSRegistryOld
network: mainnet
source:
address: '0x314159265dd8dbb310642f98f50c066173c1259b'
abi: EnsRegistry
mapping:
kind: ethereum/events
apiVersion: 0.0.5
language: wasm/assemblyscript
file: ./src/ensRegistry.ts
entities:
- Domain
- Account
- Resolver
abis:
- name: EnsRegistry
file: ./abis/Registry.json
eventHandlers:
- event: 'Transfer(indexed bytes32,address)'
handler: handleTransferOldRegistry
- event: 'NewOwner(indexed bytes32,indexed bytes32,address)'
handler: handleNewOwnerOldRegistry
- event: 'NewResolver(indexed bytes32,address)'
handler: handleNewResolverOldRegistry
- event: 'NewTTL(indexed bytes32,uint64)'
handler: handleNewTTLOldRegistry
- kind: ethereum/contract
name: Resolver
network: mainnet
source:
abi: Resolver
mapping:
kind: ethereum/events
apiVersion: 0.0.5
language: wasm/assemblyscript
file: ./src/resolver.ts
entities:
- AddrChanged
- MulticoinAddrChanged
- NameChanged
- AbiChanged
- PubkeyChanged
- Textchanged
- ContenthashChanged
- InterfaceChanged
- AuthorisationChanged
abis:
- name: Resolver
file: ./abis/PublicResolver.json
eventHandlers:
- event: 'ABIChanged(indexed bytes32,indexed uint256)'
handler: handleABIChanged
- event: 'AddrChanged(indexed bytes32,address)'
handler: handleAddrChanged
- event: 'AddressChanged(indexed bytes32,uint256,bytes)'
handler: handleMulticoinAddrChanged
- event: >-
AuthorisationChanged(indexed bytes32,indexed address,indexed
address,bool)
handler: handleAuthorisationChanged
- event: 'ContenthashChanged(indexed bytes32,bytes)'
handler: handleContentHashChanged
- event: 'InterfaceChanged(indexed bytes32,indexed bytes4,address)'
handler: handleInterfaceChanged
- event: 'NameChanged(indexed bytes32,string)'
handler: handleNameChanged
- event: 'PubkeyChanged(indexed bytes32,bytes32,bytes32)'
handler: handlePubkeyChanged
- event: 'TextChanged(indexed bytes32,indexed string,string)'
handler: handleTextChanged
- kind: ethereum/contract
name: BaseRegistrar
network: mainnet
source:
address: '0x57f1887a8BF19b14fC0dF6Fd9B2acc9Af147eA85'
abi: BaseRegistrar
mapping:
kind: ethereum/events
apiVersion: 0.0.5
language: wasm/assemblyscript
file: ./src/ethRegistrar.ts
entities:
- Registration
- NameRegistered
- NameRenewed
- NameTransferred
abis:
- name: BaseRegistrar
file: ./abis/BaseRegistrar.json
eventHandlers:
- event: 'NameRegistered(indexed uint256,indexed address,uint256)'
handler: handleNameRegistered
- event: 'NameRenewed(indexed uint256,uint256)'
handler: handleNameRenewed
- event: 'Transfer(indexed address,indexed address,indexed uint256)'
handler: handleNameTransferred
- kind: ethereum/contract
name: EthRegistrarController
network: mainnet
source:
address: '0x283Af0B28c62C092C9727F1Ee09c02CA627EB7F5'
abi: EthRegistrarController
mapping:
kind: ethereum/events
apiVersion: 0.0.5
language: wasm/assemblyscript
file: ./src/ethRegistrar.ts
entities:
- Registration
abis:
- name: EthRegistrarController
file: ./abis/EthRegistrarController.json
eventHandlers:
- event: >-
NameRegistered(string,indexed bytes32,indexed
address,uint256,uint256)
handler: handleNameRegisteredByController
- event: 'NameRenewed(string,indexed bytes32,uint256,uint256)'
handler: handleNameRenewedByController