-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsubgraph.mantle.yaml
112 lines (112 loc) · 3.45 KB
/
subgraph.mantle.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
specVersion: 0.0.5
schema:
file: ./schema.graphql
dataSources:
- kind: ethereum/contract
name: ERC20Proxy
network: mantle
source:
address: "0x88Ecc15fDC2985A7926171B938BB2Cd808A5ba40"
abi: ERC20Proxy
startBlock: 127947
mapping:
kind: ethereum/events
apiVersion: 0.0.7
language: wasm/assemblyscript
entities:
- Payment
abis:
- name: ERC20Proxy
file: ./abis/ERC20Proxy.json
eventHandlers:
- event: TransferWithReference(address,address,uint256,indexed bytes)
handler: handleTransferWithReference
receipt: true
file: ./src/erc20Proxy.ts
- kind: ethereum/contract
name: ERC20FeeProxy_0_2_0
network: mantle
source:
address: "0x399F5EE127ce7432E4921a61b8CF52b0af52cbfE"
abi: ERC20FeeProxy_0_2_0
startBlock: 127951
mapping:
kind: ethereum/events
apiVersion: 0.0.7
language: wasm/assemblyscript
entities:
- Payment
abis:
- name: ERC20FeeProxy_0_2_0
file: ./abis/ERC20FeeProxy-0.2.0.json
eventHandlers:
- event: TransferWithReferenceAndFee(address,address,uint256,indexed bytes,uint256,address)
handler: handleTransferWithReferenceAndFee
receipt: true
file: ./src/erc20FeeProxy.ts
- kind: ethereum/contract
name: EthProxy_0_3_0
network: mantle
source:
address: "0x171Ee0881407d4c0C11eA1a2FB7D5b4cdED71e6e"
abi: EthProxy_0_3_0
startBlock: 127942
mapping:
kind: ethereum/events
apiVersion: 0.0.7
language: wasm/assemblyscript
entities:
- Payment
abis:
- name: EthProxy_0_3_0
file: ./abis/EthProxy-0.3.0.json
eventHandlers:
- event: TransferWithReference(address,uint256,indexed bytes)
handler: handleTransferWithReference
receipt: true
file: ./src/ethProxy.ts
- kind: ethereum/contract
name: EthFeeProxy_0_2_0
network: mantle
source:
address: "0xe11BF2fDA23bF0A98365e1A4c04A87C9339e8687"
abi: EthFeeProxy_0_2_0
startBlock: 127944
mapping:
kind: ethereum/events
apiVersion: 0.0.7
language: wasm/assemblyscript
entities:
- Payment
abis:
- name: EthFeeProxy_0_2_0
file: ./abis/EthFeeProxy-0.2.0.json
eventHandlers:
- event: TransferWithReferenceAndFee(address,uint256,indexed bytes,uint256,address)
handler: handleTransferWithReferenceAndFee
receipt: true
file: ./src/ethFeeProxy.ts
- kind: ethereum/contract
name: SingleRequestProxyFactory
network: mantle
source:
address: "0xf8cACE7EE4c03Eb4f225434B0709527938D365b4"
abi: SingleRequestProxyFactory
startBlock: 71485828
mapping:
kind: ethereum/events
apiVersion: 0.0.7
language: wasm/assemblyscript
entities:
- SingleRequestProxyDeployment
abis:
- name: SingleRequestProxyFactory
file: ./abis/SingleRequestProxyFactory.json
eventHandlers:
- event: ERC20SingleRequestProxyCreated(address,address,address,indexed bytes,address,uint256,address)
handler: handleERC20SingleRequestProxyCreated
receipt: true
- event: EthereumSingleRequestProxyCreated(address,address,indexed bytes,address,uint256,address)
handler: handleEthereumSingleRequestProxyCreated
receipt: true
file: ./src/singleRequestProxyFactory.ts