-
Notifications
You must be signed in to change notification settings - Fork 0
/
subgraph.yaml
71 lines (71 loc) · 1.96 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
specVersion: 0.0.2
schema:
file: ./schema.graphql
dataSources:
- kind: ethereum/contract
name: erc1155
network: matic
source:
#address : "0xc47550CEBb8DFE8ec1B1c368DED6330446C3a224"
address: "0x320354dBf70AB703F8dCCCC0Cf981094edDC075e"
abi: erc1155
#startBlock: 20940693
startBlock: 25597708
mapping:
kind: ethereum/events
apiVersion: 0.0.4
language: wasm/assemblyscript
entities:
- TransferSingle
- URI
abis:
- name: erc1155
file: ./abis/erc1155.json
eventHandlers:
- event: TransferSingle(indexed address,indexed address,indexed address,uint256,uint256)
handler: handleTransferSingle
- event: URI(string,indexed uint256)
handler: handleURI
file: ./src/mapping.ts
- kind: ethereum/contract
name: wuweiswapv1
network: matic
source:
#address : "0xaA948522efEf197B36e2C1D461fDF13402eBf442"
address: "0x563Ae9F8CEE2dd553C62646e0328bB78B2438170"
abi: wuweiswapv1
#startBlock: 20945467
startBlock: 25277434
mapping:
kind: ethereum/events
apiVersion: 0.0.4
language: wasm/assemblyscript
entities:
- swapLog
abis:
- name: wuweiswapv1
file: ./abis/wuweiswapv1.json
eventHandlers:
- event: swapLog(address,uint256,uint256,uint256,uint256,indexed uint256)
handler: handleswapLog
file: ./src/mapping.ts
- kind: ethereum/contract
name: ungrundid
network: matic
source:
address: "0x5341Aeb7F190b0e24A21E69136c6e93e1490f4C1"
abi: ungrundid
startBlock: 26094300
mapping:
kind: ethereum/events
apiVersion: 0.0.4
language: wasm/assemblyscript
entities:
- idLog
abis:
- name: ungrundid
file: ./abis/ungrundid.json
eventHandlers:
- event: idLog(string,string)
handler: handleidLog
file: ./src/mapping.ts