@layerzerolabs/lz-evm-sdk-v1 1.5.14 → 1.5.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (33) hide show
  1. package/artifacts/contracts/Endpoint.sol/Endpoint.json +2 -2
  2. package/artifacts/contracts/NonceContract.sol/NonceContract.json +2 -2
  3. package/artifacts/contracts/PriceFeed.sol/PriceFeed.json +2 -2
  4. package/artifacts/contracts/Relayer.sol/Relayer.json +2 -2
  5. package/artifacts/contracts/RelayerV2.sol/RelayerV2.json +2 -2
  6. package/artifacts/contracts/UltraLightNode.sol/UltraLightNode.json +2 -2
  7. package/artifacts/contracts/UltraLightNodeV2.sol/UltraLightNodeV2.json +2 -2
  8. package/artifacts/contracts/messagelib-e2/MessageLibBase.sol/MessageLibBase.json +886 -0
  9. package/artifacts/contracts/messagelib-e2/interfaces/ILayerZeroRelayer.sol/ILayerZeroRelayer.json +79 -0
  10. package/artifacts/contracts/messagelib-e2/interfaces/ILayerZeroTreasury.sol/ILayerZeroTreasury.json +45 -0
  11. package/artifacts/contracts/messagelib-e2/interfaces/IMessageLib.sol/IMessageLib.json +319 -0
  12. package/artifacts/contracts/messagelib-e2/interfaces/IPacket.sol/IPacket.json +10 -0
  13. package/artifacts/contracts/messagelib-e2/libs/BytesLib.sol/BytesLib.json +10 -0
  14. package/artifacts/contracts/messagelib-e2/libs/Options.sol/Options.json +63 -0
  15. package/artifacts/contracts/messagelib-e2/libs/PacketV1Codec.sol/PacketV1Codec.json +10 -0
  16. package/artifacts/contracts/messagelib-e2/libs/RelayerOptions.sol/RelayerOptions.json +76 -0
  17. package/artifacts/contracts/messagelib-e2/libs/TreasuryOptions.sol/TreasuryOptions.json +37 -0
  18. package/artifacts/contracts/messagelib-e2/uln/UlnConfig.sol/UlnConfig.json +356 -0
  19. package/artifacts/contracts/messagelib-e2/uln/UltraLightNode301.sol/UltraLightNode301.json +1381 -0
  20. package/artifacts/contracts/messagelib-e2/uln/interfaces/ILayerZeroOracle.sol/ILayerZeroOracle.json +79 -0
  21. package/artifacts/contracts/messagelib-e2/uln/libs/OracleOptions.sol/OracleOptions.json +24 -0
  22. package/artifacts/contracts/proof/FPValidator.sol/FPValidator.json +2 -2
  23. package/artifacts/contracts/proof/MPTValidator.sol/MPTValidator.json +2 -2
  24. package/artifacts/contracts/proof/MPTValidator01.sol/MPTValidator01.json +2 -2
  25. package/artifacts/contracts/proof/MPTValidatorStgV3.sol/MPTValidatorStgV3.json +2 -2
  26. package/artifacts/contracts/proof/MPTValidatorV2.sol/MPTValidatorV2.json +2 -2
  27. package/artifacts/contracts/proof/MPTValidatorV4.sol/MPTValidatorV4.json +2 -2
  28. package/artifacts/contracts/proof/MPTValidatorV5.sol/MPTValidatorV5.json +2 -2
  29. package/artifacts/contracts/proof/utility/Buffer.sol/Buffer.json +2 -2
  30. package/artifacts/contracts/proof/utility/LayerZeroPacket.sol/LayerZeroPacket.json +2 -2
  31. package/artifacts/contracts/proof/utility/RLPDecode.sol/RLPDecode.json +2 -2
  32. package/artifacts/contracts/proof/utility/UltraLightNodeEVMDecoder.sol/UltraLightNodeEVMDecoder.json +2 -2
  33. package/package.json +12 -4
@@ -0,0 +1,79 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "ILayerZeroRelayer",
4
+ "sourceName": "contracts/messagelib-e2/interfaces/ILayerZeroRelayer.sol",
5
+ "abi": [
6
+ {
7
+ "inputs": [
8
+ {
9
+ "internalType": "uint32",
10
+ "name": "_dstEid",
11
+ "type": "uint32"
12
+ },
13
+ {
14
+ "internalType": "address",
15
+ "name": "_sender",
16
+ "type": "address"
17
+ },
18
+ {
19
+ "internalType": "uint256",
20
+ "name": "_calldataSize",
21
+ "type": "uint256"
22
+ },
23
+ {
24
+ "internalType": "bytes",
25
+ "name": "_options",
26
+ "type": "bytes"
27
+ }
28
+ ],
29
+ "name": "assignJob",
30
+ "outputs": [
31
+ {
32
+ "internalType": "uint256",
33
+ "name": "price",
34
+ "type": "uint256"
35
+ }
36
+ ],
37
+ "stateMutability": "payable",
38
+ "type": "function"
39
+ },
40
+ {
41
+ "inputs": [
42
+ {
43
+ "internalType": "uint32",
44
+ "name": "_dstEid",
45
+ "type": "uint32"
46
+ },
47
+ {
48
+ "internalType": "address",
49
+ "name": "_sender",
50
+ "type": "address"
51
+ },
52
+ {
53
+ "internalType": "uint256",
54
+ "name": "_calldataSize",
55
+ "type": "uint256"
56
+ },
57
+ {
58
+ "internalType": "bytes",
59
+ "name": "_options",
60
+ "type": "bytes"
61
+ }
62
+ ],
63
+ "name": "getFee",
64
+ "outputs": [
65
+ {
66
+ "internalType": "uint256",
67
+ "name": "price",
68
+ "type": "uint256"
69
+ }
70
+ ],
71
+ "stateMutability": "view",
72
+ "type": "function"
73
+ }
74
+ ],
75
+ "bytecode": "0x",
76
+ "deployedBytecode": "0x",
77
+ "linkReferences": {},
78
+ "deployedLinkReferences": {}
79
+ }
@@ -0,0 +1,45 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "ILayerZeroTreasury",
4
+ "sourceName": "contracts/messagelib-e2/interfaces/ILayerZeroTreasury.sol",
5
+ "abi": [
6
+ {
7
+ "inputs": [
8
+ {
9
+ "internalType": "address",
10
+ "name": "_sender",
11
+ "type": "address"
12
+ },
13
+ {
14
+ "internalType": "uint32",
15
+ "name": "_eid",
16
+ "type": "uint32"
17
+ },
18
+ {
19
+ "internalType": "uint256",
20
+ "name": "_totalFee",
21
+ "type": "uint256"
22
+ },
23
+ {
24
+ "internalType": "bool",
25
+ "name": "_payInLzToken",
26
+ "type": "bool"
27
+ }
28
+ ],
29
+ "name": "getFees",
30
+ "outputs": [
31
+ {
32
+ "internalType": "uint256",
33
+ "name": "",
34
+ "type": "uint256"
35
+ }
36
+ ],
37
+ "stateMutability": "view",
38
+ "type": "function"
39
+ }
40
+ ],
41
+ "bytecode": "0x",
42
+ "deployedBytecode": "0x",
43
+ "linkReferences": {},
44
+ "deployedLinkReferences": {}
45
+ }
@@ -0,0 +1,319 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "IMessageLib",
4
+ "sourceName": "contracts/messagelib-e2/interfaces/IMessageLib.sol",
5
+ "abi": [
6
+ {
7
+ "inputs": [
8
+ {
9
+ "internalType": "uint16",
10
+ "name": "_chainId",
11
+ "type": "uint16"
12
+ },
13
+ {
14
+ "internalType": "address",
15
+ "name": "_userApplication",
16
+ "type": "address"
17
+ },
18
+ {
19
+ "internalType": "bytes",
20
+ "name": "_payload",
21
+ "type": "bytes"
22
+ },
23
+ {
24
+ "internalType": "bool",
25
+ "name": "_payInZRO",
26
+ "type": "bool"
27
+ },
28
+ {
29
+ "internalType": "bytes",
30
+ "name": "_adapterParam",
31
+ "type": "bytes"
32
+ }
33
+ ],
34
+ "name": "estimateFees",
35
+ "outputs": [
36
+ {
37
+ "internalType": "uint256",
38
+ "name": "nativeFee",
39
+ "type": "uint256"
40
+ },
41
+ {
42
+ "internalType": "uint256",
43
+ "name": "zroFee",
44
+ "type": "uint256"
45
+ }
46
+ ],
47
+ "stateMutability": "view",
48
+ "type": "function"
49
+ },
50
+ {
51
+ "inputs": [
52
+ {
53
+ "internalType": "uint16",
54
+ "name": "_chainId",
55
+ "type": "uint16"
56
+ },
57
+ {
58
+ "internalType": "address",
59
+ "name": "_userApplication",
60
+ "type": "address"
61
+ },
62
+ {
63
+ "internalType": "uint256",
64
+ "name": "_configType",
65
+ "type": "uint256"
66
+ }
67
+ ],
68
+ "name": "getConfig",
69
+ "outputs": [
70
+ {
71
+ "internalType": "bytes",
72
+ "name": "",
73
+ "type": "bytes"
74
+ }
75
+ ],
76
+ "stateMutability": "view",
77
+ "type": "function"
78
+ },
79
+ {
80
+ "inputs": [
81
+ {
82
+ "internalType": "uint32",
83
+ "name": "_eid",
84
+ "type": "uint32"
85
+ },
86
+ {
87
+ "internalType": "uint32",
88
+ "name": "_configType",
89
+ "type": "uint32"
90
+ }
91
+ ],
92
+ "name": "getDefaultConfig",
93
+ "outputs": [
94
+ {
95
+ "internalType": "bytes",
96
+ "name": "",
97
+ "type": "bytes"
98
+ }
99
+ ],
100
+ "stateMutability": "view",
101
+ "type": "function"
102
+ },
103
+ {
104
+ "inputs": [
105
+ {
106
+ "internalType": "uint16",
107
+ "name": "_chainId",
108
+ "type": "uint16"
109
+ },
110
+ {
111
+ "internalType": "bytes",
112
+ "name": "_path",
113
+ "type": "bytes"
114
+ }
115
+ ],
116
+ "name": "getOutboundNonce",
117
+ "outputs": [
118
+ {
119
+ "internalType": "uint64",
120
+ "name": "",
121
+ "type": "uint64"
122
+ }
123
+ ],
124
+ "stateMutability": "view",
125
+ "type": "function"
126
+ },
127
+ {
128
+ "inputs": [],
129
+ "name": "layerZeroToken",
130
+ "outputs": [
131
+ {
132
+ "internalType": "address",
133
+ "name": "",
134
+ "type": "address"
135
+ }
136
+ ],
137
+ "stateMutability": "view",
138
+ "type": "function"
139
+ },
140
+ {
141
+ "inputs": [
142
+ {
143
+ "internalType": "address",
144
+ "name": "_userApplication",
145
+ "type": "address"
146
+ },
147
+ {
148
+ "internalType": "uint64",
149
+ "name": "_lastNonce",
150
+ "type": "uint64"
151
+ },
152
+ {
153
+ "internalType": "uint16",
154
+ "name": "_chainId",
155
+ "type": "uint16"
156
+ },
157
+ {
158
+ "internalType": "bytes",
159
+ "name": "_destination",
160
+ "type": "bytes"
161
+ },
162
+ {
163
+ "internalType": "bytes",
164
+ "name": "_payload",
165
+ "type": "bytes"
166
+ },
167
+ {
168
+ "internalType": "address payable",
169
+ "name": "refundAddress",
170
+ "type": "address"
171
+ },
172
+ {
173
+ "internalType": "address",
174
+ "name": "_zroPaymentAddress",
175
+ "type": "address"
176
+ },
177
+ {
178
+ "internalType": "bytes",
179
+ "name": "_adapterParams",
180
+ "type": "bytes"
181
+ }
182
+ ],
183
+ "name": "send",
184
+ "outputs": [],
185
+ "stateMutability": "payable",
186
+ "type": "function"
187
+ },
188
+ {
189
+ "inputs": [
190
+ {
191
+ "internalType": "uint16",
192
+ "name": "_chainId",
193
+ "type": "uint16"
194
+ },
195
+ {
196
+ "internalType": "address",
197
+ "name": "_userApplication",
198
+ "type": "address"
199
+ },
200
+ {
201
+ "internalType": "uint256",
202
+ "name": "_configType",
203
+ "type": "uint256"
204
+ },
205
+ {
206
+ "internalType": "bytes",
207
+ "name": "_config",
208
+ "type": "bytes"
209
+ }
210
+ ],
211
+ "name": "setConfig",
212
+ "outputs": [],
213
+ "stateMutability": "nonpayable",
214
+ "type": "function"
215
+ },
216
+ {
217
+ "inputs": [
218
+ {
219
+ "internalType": "address",
220
+ "name": "_treasury",
221
+ "type": "address"
222
+ }
223
+ ],
224
+ "name": "setLayerZeroToken",
225
+ "outputs": [],
226
+ "stateMutability": "nonpayable",
227
+ "type": "function"
228
+ },
229
+ {
230
+ "inputs": [
231
+ {
232
+ "internalType": "address",
233
+ "name": "_treasury",
234
+ "type": "address"
235
+ }
236
+ ],
237
+ "name": "setTreasury",
238
+ "outputs": [],
239
+ "stateMutability": "nonpayable",
240
+ "type": "function"
241
+ },
242
+ {
243
+ "inputs": [],
244
+ "name": "treasury",
245
+ "outputs": [
246
+ {
247
+ "internalType": "address",
248
+ "name": "",
249
+ "type": "address"
250
+ }
251
+ ],
252
+ "stateMutability": "view",
253
+ "type": "function"
254
+ },
255
+ {
256
+ "inputs": [],
257
+ "name": "version",
258
+ "outputs": [
259
+ {
260
+ "internalType": "uint64",
261
+ "name": "major",
262
+ "type": "uint64"
263
+ },
264
+ {
265
+ "internalType": "uint8",
266
+ "name": "minor",
267
+ "type": "uint8"
268
+ },
269
+ {
270
+ "internalType": "uint8",
271
+ "name": "endpointVersion",
272
+ "type": "uint8"
273
+ }
274
+ ],
275
+ "stateMutability": "view",
276
+ "type": "function"
277
+ },
278
+ {
279
+ "inputs": [
280
+ {
281
+ "internalType": "address",
282
+ "name": "_to",
283
+ "type": "address"
284
+ },
285
+ {
286
+ "internalType": "uint256",
287
+ "name": "_amount",
288
+ "type": "uint256"
289
+ }
290
+ ],
291
+ "name": "withdrawFee",
292
+ "outputs": [],
293
+ "stateMutability": "nonpayable",
294
+ "type": "function"
295
+ },
296
+ {
297
+ "inputs": [
298
+ {
299
+ "internalType": "address",
300
+ "name": "_to",
301
+ "type": "address"
302
+ },
303
+ {
304
+ "internalType": "uint256",
305
+ "name": "_amount",
306
+ "type": "uint256"
307
+ }
308
+ ],
309
+ "name": "withdrawLzTokenFee",
310
+ "outputs": [],
311
+ "stateMutability": "nonpayable",
312
+ "type": "function"
313
+ }
314
+ ],
315
+ "bytecode": "0x",
316
+ "deployedBytecode": "0x",
317
+ "linkReferences": {},
318
+ "deployedLinkReferences": {}
319
+ }
@@ -0,0 +1,10 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "IPacket",
4
+ "sourceName": "contracts/messagelib-e2/interfaces/IPacket.sol",
5
+ "abi": [],
6
+ "bytecode": "0x",
7
+ "deployedBytecode": "0x",
8
+ "linkReferences": {},
9
+ "deployedLinkReferences": {}
10
+ }
@@ -0,0 +1,10 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "BytesLib",
4
+ "sourceName": "contracts/messagelib-e2/libs/BytesLib.sol",
5
+ "abi": [],
6
+ "bytecode": "0x60566023600b82828239805160001a607314601657fe5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea264697066735822122093706bcd12b3bd0b9329546af824283fa6999bad869e0f2e1803624b045b082864736f6c63430007060033",
7
+ "deployedBytecode": "0x73000000000000000000000000000000000000000030146080604052600080fdfea264697066735822122093706bcd12b3bd0b9329546af824283fa6999bad869e0f2e1803624b045b082864736f6c63430007060033",
8
+ "linkReferences": {},
9
+ "deployedLinkReferences": {}
10
+ }
@@ -0,0 +1,63 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "Options",
4
+ "sourceName": "contracts/messagelib-e2/libs/Options.sol",
5
+ "abi": [
6
+ {
7
+ "inputs": [],
8
+ "name": "RELAYER_WORKER_ID",
9
+ "outputs": [
10
+ {
11
+ "internalType": "uint16",
12
+ "name": "",
13
+ "type": "uint16"
14
+ }
15
+ ],
16
+ "stateMutability": "view",
17
+ "type": "function"
18
+ },
19
+ {
20
+ "inputs": [],
21
+ "name": "TYPE_1",
22
+ "outputs": [
23
+ {
24
+ "internalType": "uint16",
25
+ "name": "",
26
+ "type": "uint16"
27
+ }
28
+ ],
29
+ "stateMutability": "view",
30
+ "type": "function"
31
+ },
32
+ {
33
+ "inputs": [],
34
+ "name": "TYPE_2",
35
+ "outputs": [
36
+ {
37
+ "internalType": "uint16",
38
+ "name": "",
39
+ "type": "uint16"
40
+ }
41
+ ],
42
+ "stateMutability": "view",
43
+ "type": "function"
44
+ },
45
+ {
46
+ "inputs": [],
47
+ "name": "TYPE_3",
48
+ "outputs": [
49
+ {
50
+ "internalType": "uint16",
51
+ "name": "",
52
+ "type": "uint16"
53
+ }
54
+ ],
55
+ "stateMutability": "view",
56
+ "type": "function"
57
+ }
58
+ ],
59
+ "bytecode": "0x60d0610025600b82828239805160001a60731461001857fe5b30600052607381538281f3fe730000000000000000000000000000000000000000301460806040526004361060515760003560e01c8063578e694d146056578063767bfc15146070578063b15ff6e1146076578063ee693ad7146056575b600080fd5b605c607c565b60405160679190608b565b60405180910390f35b605c6081565b605c6086565b600181565b600381565b600281565b61ffff9190911681526020019056fea2646970667358221220ec5ddd72a8c3fbc0e8b7b134030ac344166debafa247637768b7df6e9b1cfe8364736f6c63430007060033",
60
+ "deployedBytecode": "0x730000000000000000000000000000000000000000301460806040526004361060515760003560e01c8063578e694d146056578063767bfc15146070578063b15ff6e1146076578063ee693ad7146056575b600080fd5b605c607c565b60405160679190608b565b60405180910390f35b605c6081565b605c6086565b600181565b600381565b600281565b61ffff9190911681526020019056fea2646970667358221220ec5ddd72a8c3fbc0e8b7b134030ac344166debafa247637768b7df6e9b1cfe8364736f6c63430007060033",
61
+ "linkReferences": {},
62
+ "deployedLinkReferences": {}
63
+ }
@@ -0,0 +1,10 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "PacketV1Codec",
4
+ "sourceName": "contracts/messagelib-e2/libs/PacketV1Codec.sol",
5
+ "abi": [],
6
+ "bytecode": "0x60566023600b82828239805160001a607314601657fe5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea264697066735822122049007596617e0c5043c17ea9ce3163e9695a8da54f3945297308662df80152d564736f6c63430007060033",
7
+ "deployedBytecode": "0x73000000000000000000000000000000000000000030146080604052600080fdfea264697066735822122049007596617e0c5043c17ea9ce3163e9695a8da54f3945297308662df80152d564736f6c63430007060033",
8
+ "linkReferences": {},
9
+ "deployedLinkReferences": {}
10
+ }
@@ -0,0 +1,76 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "RelayerOptions",
4
+ "sourceName": "contracts/messagelib-e2/libs/RelayerOptions.sol",
5
+ "abi": [
6
+ {
7
+ "inputs": [],
8
+ "name": "OPTION_TYPE_AIRDROP",
9
+ "outputs": [
10
+ {
11
+ "internalType": "uint16",
12
+ "name": "",
13
+ "type": "uint16"
14
+ }
15
+ ],
16
+ "stateMutability": "view",
17
+ "type": "function"
18
+ },
19
+ {
20
+ "inputs": [],
21
+ "name": "OPTION_TYPE_LZCOMPOSE",
22
+ "outputs": [
23
+ {
24
+ "internalType": "uint16",
25
+ "name": "",
26
+ "type": "uint16"
27
+ }
28
+ ],
29
+ "stateMutability": "view",
30
+ "type": "function"
31
+ },
32
+ {
33
+ "inputs": [],
34
+ "name": "OPTION_TYPE_LZRECEIVE",
35
+ "outputs": [
36
+ {
37
+ "internalType": "uint16",
38
+ "name": "",
39
+ "type": "uint16"
40
+ }
41
+ ],
42
+ "stateMutability": "view",
43
+ "type": "function"
44
+ },
45
+ {
46
+ "inputs": [],
47
+ "name": "OPTION_TYPE_ORDERED_EXECUTION",
48
+ "outputs": [
49
+ {
50
+ "internalType": "uint16",
51
+ "name": "",
52
+ "type": "uint16"
53
+ }
54
+ ],
55
+ "stateMutability": "view",
56
+ "type": "function"
57
+ },
58
+ {
59
+ "inputs": [],
60
+ "name": "WORKER_ID",
61
+ "outputs": [
62
+ {
63
+ "internalType": "uint16",
64
+ "name": "",
65
+ "type": "uint16"
66
+ }
67
+ ],
68
+ "stateMutability": "view",
69
+ "type": "function"
70
+ }
71
+ ],
72
+ "bytecode": "0x60e5610025600b82828239805160001a60731461001857fe5b30600052607381538281f3fe7300000000000000000000000000000000000000003014608060405260043610605b5760003560e01c80631207253b146060578063260b1bb214607a5780633d3e22421460805780634e2a649d146086578063806699c0146086575b600080fd5b6066608c565b6040516071919060a0565b60405180910390f35b60666091565b60666096565b6066609b565b600481565b600281565b600381565b600181565b61ffff9190911681526020019056fea264697066735822122041a169d044b21eee07eb8d6595d72424abf14ad737698067097990e8b5d7b23b64736f6c63430007060033",
73
+ "deployedBytecode": "0x7300000000000000000000000000000000000000003014608060405260043610605b5760003560e01c80631207253b146060578063260b1bb214607a5780633d3e22421460805780634e2a649d146086578063806699c0146086575b600080fd5b6066608c565b6040516071919060a0565b60405180910390f35b60666091565b60666096565b6066609b565b600481565b600281565b600381565b600181565b61ffff9190911681526020019056fea264697066735822122041a169d044b21eee07eb8d6595d72424abf14ad737698067097990e8b5d7b23b64736f6c63430007060033",
74
+ "linkReferences": {},
75
+ "deployedLinkReferences": {}
76
+ }
@@ -0,0 +1,37 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "TreasuryOptions",
4
+ "sourceName": "contracts/messagelib-e2/libs/TreasuryOptions.sol",
5
+ "abi": [
6
+ {
7
+ "inputs": [],
8
+ "name": "OPTION_TYPE_TREASURY_FEE",
9
+ "outputs": [
10
+ {
11
+ "internalType": "uint16",
12
+ "name": "",
13
+ "type": "uint16"
14
+ }
15
+ ],
16
+ "stateMutability": "view",
17
+ "type": "function"
18
+ },
19
+ {
20
+ "inputs": [],
21
+ "name": "WORKER_ID",
22
+ "outputs": [
23
+ {
24
+ "internalType": "uint16",
25
+ "name": "",
26
+ "type": "uint16"
27
+ }
28
+ ],
29
+ "stateMutability": "view",
30
+ "type": "function"
31
+ }
32
+ ],
33
+ "bytecode": "0x60b2610024600b82828239805160001a607314601757fe5b30600052607381538281f3fe7300000000000000000000000000000000000000003014608060405260043610603d5760003560e01c8063806699c0146042578063c5192e4914605c575b600080fd5b60486062565b60405160539190606d565b60405180910390f35b60486068565b61ffff81565b600181565b61ffff9190911681526020019056fea26469706673582212204c58c5bbde35322bdbdeccd3a43fcf28ae268c84947fe36216950df5308b995364736f6c63430007060033",
34
+ "deployedBytecode": "0x7300000000000000000000000000000000000000003014608060405260043610603d5760003560e01c8063806699c0146042578063c5192e4914605c575b600080fd5b60486062565b60405160539190606d565b60405180910390f35b60486068565b61ffff81565b600181565b61ffff9190911681526020019056fea26469706673582212204c58c5bbde35322bdbdeccd3a43fcf28ae268c84947fe36216950df5308b995364736f6c63430007060033",
35
+ "linkReferences": {},
36
+ "deployedLinkReferences": {}
37
+ }