@layerzerolabs/lz-evm-sdk-v1 2.3.9 → 2.3.10
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.
- package/CHANGELOG.md +8 -0
- package/artifacts-tron/contracts/Endpoint.sol/Endpoint.json +958 -0
- package/artifacts-tron/contracts/NonceContract.sol/NonceContract.json +88 -0
- package/artifacts-tron/contracts/PriceFeed.sol/PriceFeed.json +531 -0
- package/artifacts-tron/contracts/RelayerV2.sol/RelayerV2.json +1170 -0
- package/artifacts-tron/contracts/UltraLightNode.sol/UltraLightNode.json +1475 -0
- package/artifacts-tron/contracts/UltraLightNodeV2.sol/UltraLightNodeV2.json +1423 -0
- package/artifacts-tron/contracts/interfaces/IContractOne.sol/IContractOne.json +24 -0
- package/artifacts-tron/contracts/interfaces/ILayerZeroEndpoint.sol/ILayerZeroEndpoint.json +447 -0
- package/artifacts-tron/contracts/interfaces/ILayerZeroMessagingLibrary.sol/ILayerZeroMessagingLibrary.json +160 -0
- package/artifacts-tron/contracts/interfaces/ILayerZeroMessagingLibraryV2.sol/ILayerZeroMessagingLibraryV2.json +184 -0
- package/artifacts-tron/contracts/interfaces/ILayerZeroOracle.sol/ILayerZeroOracle.json +77 -0
- package/artifacts-tron/contracts/interfaces/ILayerZeroOracleV2.sol/ILayerZeroOracleV2.json +97 -0
- package/artifacts-tron/contracts/interfaces/ILayerZeroPriceFeed.sol/ILayerZeroPriceFeed.json +107 -0
- package/artifacts-tron/contracts/interfaces/ILayerZeroPriceFeedV2.sol/ILayerZeroPriceFeedV2.json +104 -0
- package/artifacts-tron/contracts/interfaces/ILayerZeroReceiver.sol/ILayerZeroReceiver.json +39 -0
- package/artifacts-tron/contracts/interfaces/ILayerZeroRelayer.sol/ILayerZeroRelayer.json +92 -0
- package/artifacts-tron/contracts/interfaces/ILayerZeroRelayerV2.sol/ILayerZeroRelayerV2.json +107 -0
- package/artifacts-tron/contracts/interfaces/ILayerZeroRelayerV2PriceData.sol/ILayerZeroRelayerV2PriceData.json +83 -0
- package/artifacts-tron/contracts/interfaces/ILayerZeroTreasury.sol/ILayerZeroTreasury.json +40 -0
- package/artifacts-tron/contracts/interfaces/ILayerZeroUltraLightNodeV1.sol/ILayerZeroUltraLightNodeV1.json +156 -0
- package/artifacts-tron/contracts/interfaces/ILayerZeroUltraLightNodeV2.sol/ILayerZeroUltraLightNodeV2.json +582 -0
- package/artifacts-tron/contracts/interfaces/ILayerZeroUserApplicationConfig.sol/ILayerZeroUserApplicationConfig.json +83 -0
- package/artifacts-tron/contracts/interfaces/ILayerZeroValidationLibrary.sol/ILayerZeroValidationLibrary.json +77 -0
- package/artifacts-tron/contracts/interfaces/IValidationLibraryHelper.sol/IValidationLibraryHelper.json +146 -0
- package/artifacts-tron/contracts/interfaces/IValidationLibraryHelperV2.sol/IValidationLibraryHelperV2.json +154 -0
- package/artifacts-tron/contracts/precrime/PreCrime.sol/PreCrime.json +353 -0
- package/artifacts-tron/contracts/precrime/PreCrimeBase.sol/PreCrimeBase.json +259 -0
- package/artifacts-tron/contracts/precrime/PreCrimeView.sol/PreCrimeView.json +318 -0
- package/artifacts-tron/contracts/precrime/interfaces/IPreCrime.sol/IPreCrime.json +162 -0
- package/artifacts-tron/contracts/precrime/interfaces/IPreCrimeBase.sol/IPreCrimeBase.json +116 -0
- package/artifacts-tron/contracts/precrime/interfaces/IPreCrimeView.sol/IPreCrimeView.json +162 -0
- package/artifacts-tron/contracts/proof/FPValidator.sol/FPValidator.json +326 -0
- package/artifacts-tron/contracts/proof/FPValidator.sol/IStargate.json +10 -0
- package/artifacts-tron/contracts/proof/MPTValidator.sol/MPTValidator.json +146 -0
- package/artifacts-tron/contracts/proof/MPTValidator01.sol/IStargate.json +10 -0
- package/artifacts-tron/contracts/proof/MPTValidator01.sol/MPTValidator01.json +339 -0
- package/artifacts-tron/contracts/proof/MPTValidatorStgV3.sol/MPTValidatorStgV3.json +310 -0
- package/artifacts-tron/contracts/proof/MPTValidatorV2.sol/MPTValidatorV2.json +212 -0
- package/artifacts-tron/contracts/proof/MPTValidatorV4.sol/IStargate.json +10 -0
- package/artifacts-tron/contracts/proof/MPTValidatorV4.sol/IUltraLightNode.json +108 -0
- package/artifacts-tron/contracts/proof/MPTValidatorV4.sol/MPTValidatorV4.json +414 -0
- package/artifacts-tron/contracts/proof/MPTValidatorV5.sol/IStargate.json +10 -0
- package/artifacts-tron/contracts/proof/MPTValidatorV5.sol/IUltraLightNode.json +108 -0
- package/artifacts-tron/contracts/proof/MPTValidatorV5.sol/MPTValidatorV5.json +432 -0
- package/artifacts-tron/contracts/proof/utility/Buffer.sol/Buffer.json +10 -0
- package/artifacts-tron/contracts/proof/utility/LayerZeroPacket.sol/LayerZeroPacket.json +10 -0
- package/artifacts-tron/contracts/proof/utility/RLPDecode.sol/RLPDecode.json +10 -0
- package/artifacts-tron/contracts/proof/utility/UltraLightNodeEVMDecoder.sol/UltraLightNodeEVMDecoder.json +10 -0
- package/artifacts-zk/contracts/Endpoint.sol/Endpoint.json +959 -0
- package/artifacts-zk/contracts/NonceContract.sol/NonceContract.json +89 -0
- package/artifacts-zk/contracts/PriceFeed.sol/PriceFeed.json +545 -0
- package/artifacts-zk/contracts/RelayerV2.sol/RelayerV2.json +1020 -0
- package/artifacts-zk/contracts/TreasuryV2.sol/TreasuryV2.json +309 -0
- package/artifacts-zk/contracts/UltraLightNodeV2.sol/UltraLightNodeV2.json +1424 -0
- package/artifacts-zk/contracts/interfaces/IContractOne.sol/IContractOne.json +25 -0
- package/artifacts-zk/contracts/interfaces/ILayerZeroEndpoint.sol/ILayerZeroEndpoint.json +448 -0
- package/artifacts-zk/contracts/interfaces/ILayerZeroMessagingLibrary.sol/ILayerZeroMessagingLibrary.json +161 -0
- package/artifacts-zk/contracts/interfaces/ILayerZeroMessagingLibraryV2.sol/ILayerZeroMessagingLibraryV2.json +185 -0
- package/artifacts-zk/contracts/interfaces/ILayerZeroOracleV2.sol/ILayerZeroOracleV2.json +98 -0
- package/artifacts-zk/contracts/interfaces/ILayerZeroPriceFeed.sol/ILayerZeroPriceFeed.json +108 -0
- package/artifacts-zk/contracts/interfaces/ILayerZeroPriceFeedV2.sol/ILayerZeroPriceFeedV2.json +105 -0
- package/artifacts-zk/contracts/interfaces/ILayerZeroReceiver.sol/ILayerZeroReceiver.json +40 -0
- package/artifacts-zk/contracts/interfaces/ILayerZeroRelayerV2.sol/ILayerZeroRelayerV2.json +108 -0
- package/artifacts-zk/contracts/interfaces/ILayerZeroTreasury.sol/ILayerZeroTreasury.json +41 -0
- package/artifacts-zk/contracts/interfaces/ILayerZeroUltraLightNodeV2.sol/ILayerZeroUltraLightNodeV2.json +583 -0
- package/artifacts-zk/contracts/interfaces/ILayerZeroUserApplicationConfig.sol/ILayerZeroUserApplicationConfig.json +84 -0
- package/artifacts-zk/contracts/interfaces/ILayerZeroValidationLibrary.sol/ILayerZeroValidationLibrary.json +78 -0
- package/artifacts-zk/contracts/interfaces/IValidationLibraryHelper.sol/IValidationLibraryHelper.json +147 -0
- package/artifacts-zk/contracts/interfaces/IValidationLibraryHelperV2.sol/IValidationLibraryHelperV2.json +155 -0
- package/artifacts-zk/contracts/oracle/OracleV2.sol/OracleV2.json +1527 -0
- package/artifacts-zk/contracts/precrime/PreCrime.sol/PreCrime.json +354 -0
- package/artifacts-zk/contracts/precrime/PreCrimeBase.sol/PreCrimeBase.json +260 -0
- package/artifacts-zk/contracts/precrime/PreCrimeView.sol/PreCrimeView.json +319 -0
- package/artifacts-zk/contracts/precrime/example/inherit/CounterI.sol/CounterI.json +624 -0
- package/artifacts-zk/contracts/precrime/example/inherit/CounterPrecrime.sol/CounterPrecrime.json +458 -0
- package/artifacts-zk/contracts/precrime/example/view/CounterPrecrimeView.sol/CounterPrecrimeView.json +417 -0
- package/artifacts-zk/contracts/precrime/example/view/CounterV.sol/CounterV.json +178 -0
- package/artifacts-zk/contracts/precrime/example/view/CounterView.sol/CounterView.json +166 -0
- package/artifacts-zk/contracts/precrime/interfaces/IPreCrime.sol/IPreCrime.json +163 -0
- package/artifacts-zk/contracts/precrime/interfaces/IPreCrimeBase.sol/IPreCrimeBase.json +117 -0
- package/artifacts-zk/contracts/precrime/interfaces/IPreCrimeView.sol/IPreCrimeView.json +163 -0
- package/artifacts-zk/contracts/proof/FPValidator.sol/FPValidator.json +327 -0
- package/artifacts-zk/contracts/proof/FPValidator.sol/IStargate.json +11 -0
- package/artifacts-zk/contracts/proof/utility/Buffer.sol/Buffer.json +11 -0
- package/artifacts-zk/contracts/proof/utility/LayerZeroPacket.sol/LayerZeroPacket.json +11 -0
- package/artifacts-zk/contracts/proof/utility/RLPDecode.sol/RLPDecode.json +11 -0
- package/artifacts-zk/contracts/proof/utility/UltraLightNodeEVMDecoder.sol/UltraLightNodeEVMDecoder.json +11 -0
- package/artifacts-zk/contracts/proxy/ProxyAdmin.sol/ProxyAdmin.json +172 -0
- package/artifacts-zk/contracts/proxy/TransparentUpgradeableProxy.sol/TransparentUpgradeableProxy.json +156 -0
- package/deployments/arbitrum-sandbox-local/DefaultProxyAdmin.json +3 -3
- package/deployments/arbitrum-sandbox-local/Endpoint.json +2 -2
- package/deployments/arbitrum-sandbox-local/FPValidator.json +1 -1
- package/deployments/arbitrum-sandbox-local/MPTValidator01.json +1 -1
- package/deployments/arbitrum-sandbox-local/NonceContract.json +1 -1
- package/deployments/arbitrum-sandbox-local/RelayerV2.json +5 -5
- package/deployments/arbitrum-sandbox-local/RelayerV2_Implementation.json +1 -1
- package/deployments/arbitrum-sandbox-local/RelayerV2_Proxy.json +5 -5
- package/deployments/arbitrum-sandbox-local/TreasuryV2.json +2 -2
- package/deployments/arbitrum-sandbox-local/UltraLightNode.json +2 -2
- package/deployments/arbitrum-sandbox-local/UltraLightNodeV2.json +2 -2
- package/deployments/bsc-sandbox-local/DefaultProxyAdmin.json +10 -10
- package/deployments/bsc-sandbox-local/Endpoint.json +7 -7
- package/deployments/bsc-sandbox-local/FPValidator.json +4 -4
- package/deployments/bsc-sandbox-local/MPTValidator01.json +4 -4
- package/deployments/bsc-sandbox-local/NonceContract.json +4 -4
- package/deployments/bsc-sandbox-local/RelayerV2.json +16 -16
- package/deployments/bsc-sandbox-local/RelayerV2_Implementation.json +4 -4
- package/deployments/bsc-sandbox-local/RelayerV2_Proxy.json +16 -16
- package/deployments/bsc-sandbox-local/TreasuryV2.json +7 -7
- package/deployments/bsc-sandbox-local/UltraLightNode.json +7 -7
- package/deployments/bsc-sandbox-local/UltraLightNodeV2.json +7 -7
- package/deployments/ethereum-sandbox-local/DefaultProxyAdmin.json +3 -3
- package/deployments/ethereum-sandbox-local/Endpoint.json +2 -2
- package/deployments/ethereum-sandbox-local/FPValidator.json +1 -1
- package/deployments/ethereum-sandbox-local/MPTValidator01.json +1 -1
- package/deployments/ethereum-sandbox-local/NonceContract.json +1 -1
- package/deployments/ethereum-sandbox-local/RelayerV2.json +5 -5
- package/deployments/ethereum-sandbox-local/RelayerV2_Implementation.json +1 -1
- package/deployments/ethereum-sandbox-local/RelayerV2_Proxy.json +5 -5
- package/deployments/ethereum-sandbox-local/TreasuryV2.json +2 -2
- package/deployments/ethereum-sandbox-local/UltraLightNode.json +2 -2
- package/deployments/ethereum-sandbox-local/UltraLightNodeV2.json +2 -2
- package/deployments/polygon-sandbox-local/DefaultProxyAdmin.json +10 -10
- package/deployments/polygon-sandbox-local/Endpoint.json +7 -7
- package/deployments/polygon-sandbox-local/FPValidator.json +4 -4
- package/deployments/polygon-sandbox-local/MPTValidator01.json +4 -4
- package/deployments/polygon-sandbox-local/NonceContract.json +4 -4
- package/deployments/polygon-sandbox-local/RelayerV2.json +16 -16
- package/deployments/polygon-sandbox-local/RelayerV2_Implementation.json +4 -4
- package/deployments/polygon-sandbox-local/RelayerV2_Proxy.json +16 -16
- package/deployments/polygon-sandbox-local/TreasuryV2.json +7 -7
- package/deployments/polygon-sandbox-local/UltraLightNode.json +7 -7
- package/deployments/polygon-sandbox-local/UltraLightNodeV2.json +7 -7
- package/deployments/tron-sandbox-local/DefaultProxyAdmin.json +14 -14
- package/deployments/tron-sandbox-local/Endpoint.json +10 -10
- package/deployments/tron-sandbox-local/FPValidator.json +6 -6
- package/deployments/tron-sandbox-local/MPTValidator01.json +6 -6
- package/deployments/tron-sandbox-local/NonceContract.json +7 -7
- package/deployments/tron-sandbox-local/RelayerV2.json +31 -31
- package/deployments/tron-sandbox-local/RelayerV2_Implementation.json +6 -6
- package/deployments/tron-sandbox-local/RelayerV2_Proxy.json +28 -28
- package/deployments/tron-sandbox-local/TreasuryV2.json +11 -11
- package/deployments/tron-sandbox-local/UltraLightNode.json +11 -11
- package/deployments/tron-sandbox-local/UltraLightNodeV2.json +12 -12
- package/package.json +23 -7
|
@@ -0,0 +1,178 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_format": "hh-zksolc-artifact-1",
|
|
3
|
+
"contractName": "CounterV",
|
|
4
|
+
"sourceName": "contracts/precrime/example/view/CounterV.sol",
|
|
5
|
+
"abi": [
|
|
6
|
+
{
|
|
7
|
+
"inputs": [
|
|
8
|
+
{
|
|
9
|
+
"internalType": "uint16",
|
|
10
|
+
"name": "_chainId",
|
|
11
|
+
"type": "uint16"
|
|
12
|
+
}
|
|
13
|
+
],
|
|
14
|
+
"stateMutability": "nonpayable",
|
|
15
|
+
"type": "constructor"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"anonymous": false,
|
|
19
|
+
"inputs": [
|
|
20
|
+
{
|
|
21
|
+
"indexed": false,
|
|
22
|
+
"internalType": "uint16",
|
|
23
|
+
"name": "srcChainId",
|
|
24
|
+
"type": "uint16"
|
|
25
|
+
}
|
|
26
|
+
],
|
|
27
|
+
"name": "Receive",
|
|
28
|
+
"type": "event"
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"anonymous": false,
|
|
32
|
+
"inputs": [
|
|
33
|
+
{
|
|
34
|
+
"indexed": false,
|
|
35
|
+
"internalType": "uint16",
|
|
36
|
+
"name": "dstChainId",
|
|
37
|
+
"type": "uint16"
|
|
38
|
+
}
|
|
39
|
+
],
|
|
40
|
+
"name": "Send",
|
|
41
|
+
"type": "event"
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"inputs": [
|
|
45
|
+
{
|
|
46
|
+
"internalType": "uint16",
|
|
47
|
+
"name": "_dstChainId",
|
|
48
|
+
"type": "uint16"
|
|
49
|
+
}
|
|
50
|
+
],
|
|
51
|
+
"name": "brokeIncrement",
|
|
52
|
+
"outputs": [],
|
|
53
|
+
"stateMutability": "nonpayable",
|
|
54
|
+
"type": "function"
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"inputs": [],
|
|
58
|
+
"name": "brokeTotalCount",
|
|
59
|
+
"outputs": [],
|
|
60
|
+
"stateMutability": "nonpayable",
|
|
61
|
+
"type": "function"
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"inputs": [],
|
|
65
|
+
"name": "chainId",
|
|
66
|
+
"outputs": [
|
|
67
|
+
{
|
|
68
|
+
"internalType": "uint16",
|
|
69
|
+
"name": "",
|
|
70
|
+
"type": "uint16"
|
|
71
|
+
}
|
|
72
|
+
],
|
|
73
|
+
"stateMutability": "view",
|
|
74
|
+
"type": "function"
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
"inputs": [
|
|
78
|
+
{
|
|
79
|
+
"internalType": "uint16",
|
|
80
|
+
"name": "_chainId",
|
|
81
|
+
"type": "uint16"
|
|
82
|
+
}
|
|
83
|
+
],
|
|
84
|
+
"name": "getInboundNonce",
|
|
85
|
+
"outputs": [
|
|
86
|
+
{
|
|
87
|
+
"internalType": "uint64",
|
|
88
|
+
"name": "",
|
|
89
|
+
"type": "uint64"
|
|
90
|
+
}
|
|
91
|
+
],
|
|
92
|
+
"stateMutability": "view",
|
|
93
|
+
"type": "function"
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"inputs": [
|
|
97
|
+
{
|
|
98
|
+
"internalType": "uint32",
|
|
99
|
+
"name": "",
|
|
100
|
+
"type": "uint32"
|
|
101
|
+
}
|
|
102
|
+
],
|
|
103
|
+
"name": "inboundCount",
|
|
104
|
+
"outputs": [
|
|
105
|
+
{
|
|
106
|
+
"internalType": "uint256",
|
|
107
|
+
"name": "",
|
|
108
|
+
"type": "uint256"
|
|
109
|
+
}
|
|
110
|
+
],
|
|
111
|
+
"stateMutability": "view",
|
|
112
|
+
"type": "function"
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
"inputs": [
|
|
116
|
+
{
|
|
117
|
+
"internalType": "uint16",
|
|
118
|
+
"name": "_dstChainId",
|
|
119
|
+
"type": "uint16"
|
|
120
|
+
}
|
|
121
|
+
],
|
|
122
|
+
"name": "increment",
|
|
123
|
+
"outputs": [],
|
|
124
|
+
"stateMutability": "nonpayable",
|
|
125
|
+
"type": "function"
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
"inputs": [
|
|
129
|
+
{
|
|
130
|
+
"internalType": "uint16",
|
|
131
|
+
"name": "_srcChainId",
|
|
132
|
+
"type": "uint16"
|
|
133
|
+
}
|
|
134
|
+
],
|
|
135
|
+
"name": "lzReceive",
|
|
136
|
+
"outputs": [],
|
|
137
|
+
"stateMutability": "nonpayable",
|
|
138
|
+
"type": "function"
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
"inputs": [
|
|
142
|
+
{
|
|
143
|
+
"internalType": "uint32",
|
|
144
|
+
"name": "",
|
|
145
|
+
"type": "uint32"
|
|
146
|
+
}
|
|
147
|
+
],
|
|
148
|
+
"name": "outboundCount",
|
|
149
|
+
"outputs": [
|
|
150
|
+
{
|
|
151
|
+
"internalType": "uint256",
|
|
152
|
+
"name": "",
|
|
153
|
+
"type": "uint256"
|
|
154
|
+
}
|
|
155
|
+
],
|
|
156
|
+
"stateMutability": "view",
|
|
157
|
+
"type": "function"
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
"inputs": [],
|
|
161
|
+
"name": "totalCount",
|
|
162
|
+
"outputs": [
|
|
163
|
+
{
|
|
164
|
+
"internalType": "uint256",
|
|
165
|
+
"name": "",
|
|
166
|
+
"type": "uint256"
|
|
167
|
+
}
|
|
168
|
+
],
|
|
169
|
+
"stateMutability": "view",
|
|
170
|
+
"type": "function"
|
|
171
|
+
}
|
|
172
|
+
],
|
|
173
|
+
"bytecode": "0x00020000000000020003000000000002000100000001035500000060011002700000008c0010019d0000000101200190000000460000c13d0000008001000039000000400500003900000000001504350000000002000031000000040220008c000001ad0000413d0000000102000367000000000202043b000000e002200270000000910320009c000000970000613d000000920320009c000001970000613d000000930320009c000000d30000613d000000940320009c000000ee0000613d000000950320009c000001140000613d000000960320009c0000013b0000613d000000970320009c000001610000613d000000980320009c0000017d0000613d000000990220009c000001ad0000c13d0000000002000416000000000220004c000001ad0000c13d000000040200008a00000000022000310000008d03000041000000200420008c000000000400001900000000040340190000008d02200197000000000520004c000000000300a0190000008d0220009c00000000020400190000000002036019000000000220004c000001ad0000c13d00000004020000390000000102200367000000000202043b0000ffff0320008c000001ad0000213d00000000002104350000008c0100004100000000020004140000008c0320009c0000000001024019000000c0011002100000009e011001c70000800d0200003900000001030000390000009b04000041022b021d0000040f0000000101200190000001ad0000613d000001e60000013d0000000001000416000000000110004c000001ad0000c13d00000000010000310000009f02100039000000200300008a000000000232016f0000007f0320008c000000570000213d0000009001000041000000000010043500000041010000390000000402000039000000000012043500000024020000390000000001000019022b02070000040f000000400300003900000000002304350000001f0210018f00000001030003670000000504100270000000000540004c000000670000613d00000000050000190000000506500210000000000763034f000000000707043b000000800660003900000000007604350000000105500039000000000645004b0000005f0000413d000000000520004c000000760000613d0000000504400210000000000343034f00000003022002100000008004400039000000000504043300000000052501cf000000000525022f000000000303043b0000010002200089000000000323022f00000000022301cf000000000252019f00000000002404350000008d02000041000000200310008c000000000300001900000000030240190000008d01100197000000000410004c000000000200a0190000008d0110009c00000000010300190000000001026019000000000110004c000001ad0000c13d000000800100003900000000020104330000ffff0120008c000001ad0000213d0000000301000039000300000001001d000200000002001d022b02290000040f0000008e011001970000000202000029000000000121019f0000000302000029022b02270000040f0000002002000039000001000100003900000000002104390000012002000039000000000002043900000040020000390000008f03000041022b01fd0000040f0000000001000416000000000110004c000001ad0000c13d000000040100008a00000000011000310000008d02000041000000200310008c000000000300001900000000030240190000008d01100197000000000410004c000000000200a0190000008d0110009c00000000010300190000000001026019000000000110004c000001ad0000c13d00000004010000390000000101100367000000000101043b0000ffff0210008c000001ad0000213d000300000005001d0000ffff0110018f000200000001001d00000000001004350000000201000039000000200200003900000000001204350000000001000019022b01ea0000040f000100000001001d022b02290000040f000000010200008a000000000221004b000001c70000613d00000001011000390000000102000029022b02270000040f00000003010000290000000001010433000000020200002900000000002104350000008c0200004100000000030004140000008c0430009c00000000030280190000008c0410009c00000000010280190000004001100210000000c002300210000000000112019f0000009a011001c70000800d0200003900000001030000390000009b04000041022b021d0000040f0000000101200190000001e60000c13d000001ad0000013d0000000001000416000000000110004c000001ad0000c13d000000040100008a00000000011000310000008d02000041000000000310004c000000000300001900000000030240190000008d01100197000000000410004c000000000200a0190000008d0110009c00000000010300190000000001026019000000000110004c000001ad0000c13d0000000001000019000300000005001d022b02290000040f000000030200002900000000030204330000000000130435000000200200003900000000010300190000000003000019022b01fd0000040f0000000001000416000000000110004c000001ad0000c13d000000040100008a00000000011000310000008d02000041000000200310008c000000000300001900000000030240190000008d01100197000000000410004c000000000200a0190000008d0110009c00000000010300190000000001026019000000000110004c000001ad0000c13d00000004010000390000000101100367000000000101043b0000008c0210009c000001ad0000213d000000000010043500000001010000390000002002000039000200000002001d00000000001204350000000001000019000300000005001d022b01ea0000040f022b02290000040f000000030200002900000000020204330000000000120435000000000102001900000002020000290000000003000019022b01fd0000040f0000000001000416000000000110004c000001ad0000c13d000000040100008a00000000011000310000008d02000041000000200310008c000000000300001900000000030240190000008d01100197000000000410004c000000000200a0190000008d0110009c00000000010300190000000001026019000000000110004c000001ad0000c13d00000004010000390000000101100367000000000101043b0000ffff0210008c000001ad0000213d000000000010043500000001010000390000002002000039000200000002001d00000000001204350000000001000019000300000005001d022b01ea0000040f022b02290000040f000000030200002900000000020204330000009c011001970000000000120435000000000102001900000002020000290000000003000019022b01fd0000040f0000000001000416000000000110004c000001ad0000c13d000000040100008a00000000011000310000008d02000041000000200310008c000000000300001900000000030240190000008d01100197000000000410004c000000000200a0190000008d0110009c00000000010300190000000001026019000000000110004c000001ad0000c13d00000004010000390000000101100367000000000101043b0000008c0210009c000001ad0000213d000000000010043500000002010000390000002002000039000200000002001d00000000001204350000000001000019000300000005001d022b01ea0000040f022b02290000040f000000030200002900000000020204330000000000120435000000000102001900000002020000290000000003000019022b01fd0000040f0000000001000416000000000110004c000001ad0000c13d000000040100008a00000000011000310000008d02000041000000000310004c000000000300001900000000030240190000008d01100197000000000410004c000000000200a0190000008d0110009c00000000010300190000000001026019000000000110004c000001ad0000c13d0000000301000039000300000005001d022b02290000040f000000030200002900000000030204330000ffff0110018f0000000000130435000000200200003900000000010300190000000003000019022b01fd0000040f0000000001000416000000000110004c000001ad0000c13d000000040100008a00000000011000310000008d02000041000000000310004c000000000300001900000000030240190000008d01100197000000000410004c000000000200a0190000008d0110009c00000000010300190000000001026019000000000110004c000001ad0000c13d0000000001000019022b02290000040f022b02100000040f0000000002000019022b02270000040f000000000100001900000000020000190000000003000019022b01fd0000040f0000000001000416000000000110004c000001ad0000c13d000000040100008a00000000011000310000008d02000041000000200310008c000000000300001900000000030240190000008d01100197000000000410004c000000000200a0190000008d0110009c00000000010300190000000001026019000000000110004c000001ad0000c13d00000004010000390000000101100367000000000101043b0000ffff0210008c000001b00000a13d00000000010000190000000002000019022b02070000040f000300000005001d0000ffff0110018f000100000001001d00000000001004350000000101000039000000200200003900000000001204350000000001000019022b01ea0000040f000200000001001d022b02290000040f000000010300008a000000000231004b000001c70000613d00000001011000390000000202000029000200000003001d022b02270000040f0000000001000019022b02290000040f0000000202000029000000000221004b000001cf0000c13d0000009001000041000000000010043500000011010000390000000402000039000000000012043500000024020000390000000001000019022b02070000040f00000001011000390000000002000019022b02270000040f00000003010000290000000001010433000000010200002900000000002104350000008c0200004100000000030004140000008c0430009c00000000030280190000008c0410009c00000000010280190000004001100210000000c002300210000000000112019f0000009a011001c70000800d0200003900000001030000390000009d04000041022b021d0000040f0000000101200190000001ad0000613d000000000100001900000000020000190000000003000019022b01fd0000040f0000008c0200004100000000030004140000008c0430009c00000000030280190000008c0410009c00000000010280190000004001100210000000c002300210000000000112019f0000009f011001c70000801002000039022b02220000040f0000000102200190000001fa0000613d000000000101043b000000000001042d00000000010000190000000002000019022b02070000040f0000008c040000410000008c0510009c0000000001048019000000400110021000000000013100190000008c0320009c0000000002048019000000600220021000000000012100190000022c0001042e0000008c030000410000008c0420009c00000000020380190000008c0410009c000000000103801900000040011002100000006002200210000000000112019f0000022d00010430000000010200008a000000000221004b000002150000613d0000000101100039000000000001042d0000009001000041000000000010043500000011010000390000000402000039000000000012043500000024020000390000000001000019022b02070000040f00000220002104210000000102000039000000000001042d0000000002000019000000000001042d00000225002104230000000102000039000000000001042d0000000002000019000000000001042d000000000012041b000000000001042d000000000101041a000000000001042d0000022b000004320000022c0001042e0000022d000104300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff8000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000002000000000000000000000000000000000000000000000000000000004e487b710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d5795de40000000000000000000000000000000000000000000000000000000029e7504d0000000000000000000000000000000000000000000000000000000034eafb110000000000000000000000000000000000000000000000000000000056a472890000000000000000000000000000000000000000000000000000000058b46b3100000000000000000000000000000000000000000000000000000000622f17f6000000000000000000000000000000000000000000000000000000009a8a059200000000000000000000000000000000000000000000000000000000c892b2fc0000000000000000000000000000000000000000000000000000000016fb43250200000000000000000000000000000000000020000000000000000000000000cb0b88af7634dddeb013597e4fe3c505cc18eb1ba8a4f866b2116a8e7c03bc3f000000000000000000000000000000000000000000000000ffffffffffffffff1a60eb2fda5707f4f6d9c8ff94ff294beddf56ed57f62a58fecb430cf4e73416020000000000000000000000000000000000002000000080000000000000000002000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
|
|
174
|
+
"deployedBytecode": "0x00020000000000020003000000000002000100000001035500000060011002700000008c0010019d0000000101200190000000460000c13d0000008001000039000000400500003900000000001504350000000002000031000000040220008c000001ad0000413d0000000102000367000000000202043b000000e002200270000000910320009c000000970000613d000000920320009c000001970000613d000000930320009c000000d30000613d000000940320009c000000ee0000613d000000950320009c000001140000613d000000960320009c0000013b0000613d000000970320009c000001610000613d000000980320009c0000017d0000613d000000990220009c000001ad0000c13d0000000002000416000000000220004c000001ad0000c13d000000040200008a00000000022000310000008d03000041000000200420008c000000000400001900000000040340190000008d02200197000000000520004c000000000300a0190000008d0220009c00000000020400190000000002036019000000000220004c000001ad0000c13d00000004020000390000000102200367000000000202043b0000ffff0320008c000001ad0000213d00000000002104350000008c0100004100000000020004140000008c0320009c0000000001024019000000c0011002100000009e011001c70000800d0200003900000001030000390000009b04000041022b021d0000040f0000000101200190000001ad0000613d000001e60000013d0000000001000416000000000110004c000001ad0000c13d00000000010000310000009f02100039000000200300008a000000000232016f0000007f0320008c000000570000213d0000009001000041000000000010043500000041010000390000000402000039000000000012043500000024020000390000000001000019022b02070000040f000000400300003900000000002304350000001f0210018f00000001030003670000000504100270000000000540004c000000670000613d00000000050000190000000506500210000000000763034f000000000707043b000000800660003900000000007604350000000105500039000000000645004b0000005f0000413d000000000520004c000000760000613d0000000504400210000000000343034f00000003022002100000008004400039000000000504043300000000052501cf000000000525022f000000000303043b0000010002200089000000000323022f00000000022301cf000000000252019f00000000002404350000008d02000041000000200310008c000000000300001900000000030240190000008d01100197000000000410004c000000000200a0190000008d0110009c00000000010300190000000001026019000000000110004c000001ad0000c13d000000800100003900000000020104330000ffff0120008c000001ad0000213d0000000301000039000300000001001d000200000002001d022b02290000040f0000008e011001970000000202000029000000000121019f0000000302000029022b02270000040f0000002002000039000001000100003900000000002104390000012002000039000000000002043900000040020000390000008f03000041022b01fd0000040f0000000001000416000000000110004c000001ad0000c13d000000040100008a00000000011000310000008d02000041000000200310008c000000000300001900000000030240190000008d01100197000000000410004c000000000200a0190000008d0110009c00000000010300190000000001026019000000000110004c000001ad0000c13d00000004010000390000000101100367000000000101043b0000ffff0210008c000001ad0000213d000300000005001d0000ffff0110018f000200000001001d00000000001004350000000201000039000000200200003900000000001204350000000001000019022b01ea0000040f000100000001001d022b02290000040f000000010200008a000000000221004b000001c70000613d00000001011000390000000102000029022b02270000040f00000003010000290000000001010433000000020200002900000000002104350000008c0200004100000000030004140000008c0430009c00000000030280190000008c0410009c00000000010280190000004001100210000000c002300210000000000112019f0000009a011001c70000800d0200003900000001030000390000009b04000041022b021d0000040f0000000101200190000001e60000c13d000001ad0000013d0000000001000416000000000110004c000001ad0000c13d000000040100008a00000000011000310000008d02000041000000000310004c000000000300001900000000030240190000008d01100197000000000410004c000000000200a0190000008d0110009c00000000010300190000000001026019000000000110004c000001ad0000c13d0000000001000019000300000005001d022b02290000040f000000030200002900000000030204330000000000130435000000200200003900000000010300190000000003000019022b01fd0000040f0000000001000416000000000110004c000001ad0000c13d000000040100008a00000000011000310000008d02000041000000200310008c000000000300001900000000030240190000008d01100197000000000410004c000000000200a0190000008d0110009c00000000010300190000000001026019000000000110004c000001ad0000c13d00000004010000390000000101100367000000000101043b0000008c0210009c000001ad0000213d000000000010043500000001010000390000002002000039000200000002001d00000000001204350000000001000019000300000005001d022b01ea0000040f022b02290000040f000000030200002900000000020204330000000000120435000000000102001900000002020000290000000003000019022b01fd0000040f0000000001000416000000000110004c000001ad0000c13d000000040100008a00000000011000310000008d02000041000000200310008c000000000300001900000000030240190000008d01100197000000000410004c000000000200a0190000008d0110009c00000000010300190000000001026019000000000110004c000001ad0000c13d00000004010000390000000101100367000000000101043b0000ffff0210008c000001ad0000213d000000000010043500000001010000390000002002000039000200000002001d00000000001204350000000001000019000300000005001d022b01ea0000040f022b02290000040f000000030200002900000000020204330000009c011001970000000000120435000000000102001900000002020000290000000003000019022b01fd0000040f0000000001000416000000000110004c000001ad0000c13d000000040100008a00000000011000310000008d02000041000000200310008c000000000300001900000000030240190000008d01100197000000000410004c000000000200a0190000008d0110009c00000000010300190000000001026019000000000110004c000001ad0000c13d00000004010000390000000101100367000000000101043b0000008c0210009c000001ad0000213d000000000010043500000002010000390000002002000039000200000002001d00000000001204350000000001000019000300000005001d022b01ea0000040f022b02290000040f000000030200002900000000020204330000000000120435000000000102001900000002020000290000000003000019022b01fd0000040f0000000001000416000000000110004c000001ad0000c13d000000040100008a00000000011000310000008d02000041000000000310004c000000000300001900000000030240190000008d01100197000000000410004c000000000200a0190000008d0110009c00000000010300190000000001026019000000000110004c000001ad0000c13d0000000301000039000300000005001d022b02290000040f000000030200002900000000030204330000ffff0110018f0000000000130435000000200200003900000000010300190000000003000019022b01fd0000040f0000000001000416000000000110004c000001ad0000c13d000000040100008a00000000011000310000008d02000041000000000310004c000000000300001900000000030240190000008d01100197000000000410004c000000000200a0190000008d0110009c00000000010300190000000001026019000000000110004c000001ad0000c13d0000000001000019022b02290000040f022b02100000040f0000000002000019022b02270000040f000000000100001900000000020000190000000003000019022b01fd0000040f0000000001000416000000000110004c000001ad0000c13d000000040100008a00000000011000310000008d02000041000000200310008c000000000300001900000000030240190000008d01100197000000000410004c000000000200a0190000008d0110009c00000000010300190000000001026019000000000110004c000001ad0000c13d00000004010000390000000101100367000000000101043b0000ffff0210008c000001b00000a13d00000000010000190000000002000019022b02070000040f000300000005001d0000ffff0110018f000100000001001d00000000001004350000000101000039000000200200003900000000001204350000000001000019022b01ea0000040f000200000001001d022b02290000040f000000010300008a000000000231004b000001c70000613d00000001011000390000000202000029000200000003001d022b02270000040f0000000001000019022b02290000040f0000000202000029000000000221004b000001cf0000c13d0000009001000041000000000010043500000011010000390000000402000039000000000012043500000024020000390000000001000019022b02070000040f00000001011000390000000002000019022b02270000040f00000003010000290000000001010433000000010200002900000000002104350000008c0200004100000000030004140000008c0430009c00000000030280190000008c0410009c00000000010280190000004001100210000000c002300210000000000112019f0000009a011001c70000800d0200003900000001030000390000009d04000041022b021d0000040f0000000101200190000001ad0000613d000000000100001900000000020000190000000003000019022b01fd0000040f0000008c0200004100000000030004140000008c0430009c00000000030280190000008c0410009c00000000010280190000004001100210000000c002300210000000000112019f0000009f011001c70000801002000039022b02220000040f0000000102200190000001fa0000613d000000000101043b000000000001042d00000000010000190000000002000019022b02070000040f0000008c040000410000008c0510009c0000000001048019000000400110021000000000013100190000008c0320009c0000000002048019000000600220021000000000012100190000022c0001042e0000008c030000410000008c0420009c00000000020380190000008c0410009c000000000103801900000040011002100000006002200210000000000112019f0000022d00010430000000010200008a000000000221004b000002150000613d0000000101100039000000000001042d0000009001000041000000000010043500000011010000390000000402000039000000000012043500000024020000390000000001000019022b02070000040f00000220002104210000000102000039000000000001042d0000000002000019000000000001042d00000225002104230000000102000039000000000001042d0000000002000019000000000001042d000000000012041b000000000001042d000000000101041a000000000001042d0000022b000004320000022c0001042e0000022d000104300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff8000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000002000000000000000000000000000000000000000000000000000000004e487b710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d5795de40000000000000000000000000000000000000000000000000000000029e7504d0000000000000000000000000000000000000000000000000000000034eafb110000000000000000000000000000000000000000000000000000000056a472890000000000000000000000000000000000000000000000000000000058b46b3100000000000000000000000000000000000000000000000000000000622f17f6000000000000000000000000000000000000000000000000000000009a8a059200000000000000000000000000000000000000000000000000000000c892b2fc0000000000000000000000000000000000000000000000000000000016fb43250200000000000000000000000000000000000020000000000000000000000000cb0b88af7634dddeb013597e4fe3c505cc18eb1ba8a4f866b2116a8e7c03bc3f000000000000000000000000000000000000000000000000ffffffffffffffff1a60eb2fda5707f4f6d9c8ff94ff294beddf56ed57f62a58fecb430cf4e73416020000000000000000000000000000000000002000000080000000000000000002000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
|
|
175
|
+
"linkReferences": {},
|
|
176
|
+
"deployedLinkReferences": {},
|
|
177
|
+
"factoryDeps": {}
|
|
178
|
+
}
|
|
@@ -0,0 +1,166 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_format": "hh-zksolc-artifact-1",
|
|
3
|
+
"contractName": "CounterView",
|
|
4
|
+
"sourceName": "contracts/precrime/example/view/CounterView.sol",
|
|
5
|
+
"abi": [
|
|
6
|
+
{
|
|
7
|
+
"inputs": [
|
|
8
|
+
{
|
|
9
|
+
"internalType": "address",
|
|
10
|
+
"name": "_counter",
|
|
11
|
+
"type": "address"
|
|
12
|
+
}
|
|
13
|
+
],
|
|
14
|
+
"stateMutability": "nonpayable",
|
|
15
|
+
"type": "constructor"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"inputs": [],
|
|
19
|
+
"name": "counter",
|
|
20
|
+
"outputs": [
|
|
21
|
+
{
|
|
22
|
+
"internalType": "contract CounterV",
|
|
23
|
+
"name": "",
|
|
24
|
+
"type": "address"
|
|
25
|
+
}
|
|
26
|
+
],
|
|
27
|
+
"stateMutability": "view",
|
|
28
|
+
"type": "function"
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"inputs": [
|
|
32
|
+
{
|
|
33
|
+
"internalType": "uint16[]",
|
|
34
|
+
"name": "peers",
|
|
35
|
+
"type": "uint16[]"
|
|
36
|
+
}
|
|
37
|
+
],
|
|
38
|
+
"name": "getCountState",
|
|
39
|
+
"outputs": [
|
|
40
|
+
{
|
|
41
|
+
"components": [
|
|
42
|
+
{
|
|
43
|
+
"internalType": "uint256",
|
|
44
|
+
"name": "totalCount",
|
|
45
|
+
"type": "uint256"
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"components": [
|
|
49
|
+
{
|
|
50
|
+
"internalType": "uint16",
|
|
51
|
+
"name": "eid",
|
|
52
|
+
"type": "uint16"
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"internalType": "uint256",
|
|
56
|
+
"name": "inboundCount",
|
|
57
|
+
"type": "uint256"
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"internalType": "uint256",
|
|
61
|
+
"name": "outboundCount",
|
|
62
|
+
"type": "uint256"
|
|
63
|
+
}
|
|
64
|
+
],
|
|
65
|
+
"internalType": "struct CounterView.ChainPathCount[]",
|
|
66
|
+
"name": "chainPathCounts",
|
|
67
|
+
"type": "tuple[]"
|
|
68
|
+
}
|
|
69
|
+
],
|
|
70
|
+
"internalType": "struct CounterView.CountState",
|
|
71
|
+
"name": "",
|
|
72
|
+
"type": "tuple"
|
|
73
|
+
}
|
|
74
|
+
],
|
|
75
|
+
"stateMutability": "view",
|
|
76
|
+
"type": "function"
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"inputs": [
|
|
80
|
+
{
|
|
81
|
+
"components": [
|
|
82
|
+
{
|
|
83
|
+
"internalType": "uint256",
|
|
84
|
+
"name": "totalCount",
|
|
85
|
+
"type": "uint256"
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"components": [
|
|
89
|
+
{
|
|
90
|
+
"internalType": "uint16",
|
|
91
|
+
"name": "eid",
|
|
92
|
+
"type": "uint16"
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
"internalType": "uint256",
|
|
96
|
+
"name": "inboundCount",
|
|
97
|
+
"type": "uint256"
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"internalType": "uint256",
|
|
101
|
+
"name": "outboundCount",
|
|
102
|
+
"type": "uint256"
|
|
103
|
+
}
|
|
104
|
+
],
|
|
105
|
+
"internalType": "struct CounterView.ChainPathCount[]",
|
|
106
|
+
"name": "chainPathCounts",
|
|
107
|
+
"type": "tuple[]"
|
|
108
|
+
}
|
|
109
|
+
],
|
|
110
|
+
"internalType": "struct CounterView.CountState",
|
|
111
|
+
"name": "countState",
|
|
112
|
+
"type": "tuple"
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
"internalType": "uint16",
|
|
116
|
+
"name": "_srcChainId",
|
|
117
|
+
"type": "uint16"
|
|
118
|
+
}
|
|
119
|
+
],
|
|
120
|
+
"name": "lzReceive",
|
|
121
|
+
"outputs": [
|
|
122
|
+
{
|
|
123
|
+
"components": [
|
|
124
|
+
{
|
|
125
|
+
"internalType": "uint256",
|
|
126
|
+
"name": "totalCount",
|
|
127
|
+
"type": "uint256"
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
"components": [
|
|
131
|
+
{
|
|
132
|
+
"internalType": "uint16",
|
|
133
|
+
"name": "eid",
|
|
134
|
+
"type": "uint16"
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
"internalType": "uint256",
|
|
138
|
+
"name": "inboundCount",
|
|
139
|
+
"type": "uint256"
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
"internalType": "uint256",
|
|
143
|
+
"name": "outboundCount",
|
|
144
|
+
"type": "uint256"
|
|
145
|
+
}
|
|
146
|
+
],
|
|
147
|
+
"internalType": "struct CounterView.ChainPathCount[]",
|
|
148
|
+
"name": "chainPathCounts",
|
|
149
|
+
"type": "tuple[]"
|
|
150
|
+
}
|
|
151
|
+
],
|
|
152
|
+
"internalType": "struct CounterView.CountState",
|
|
153
|
+
"name": "",
|
|
154
|
+
"type": "tuple"
|
|
155
|
+
}
|
|
156
|
+
],
|
|
157
|
+
"stateMutability": "pure",
|
|
158
|
+
"type": "function"
|
|
159
|
+
}
|
|
160
|
+
],
|
|
161
|
+
"bytecode": "0x0004000000000002000b00000000000200000000030100190000006003300270000000c80430019700030000004103550002000000010355000000c80030019d000100000000001f00000001012001900000009c0000c13d000000800a00003900000040090000390000000000a904350000000001000031000000040110008c000001560000413d0000000201000367000000000101043b000000e001100270000000cd0210009c000800000009001d000000ec0000613d000000ce0210009c000001450000613d000000cf0110009c000001560000c13d0000000001000416000000000110004c000001560000c13d000000040100008a0000000002100031000000c901000041000000400320008c00000000030000190000000003014019000000c904200197000000000540004c000000000100a019000000c90440009c000000000103c019000000000110004c000001560000c13d000000040b0000390000000201b00367000000000101043b000000d00310009c000001560000213d0000000002120049000000c903000041000000400420008c00000000040000190000000004034019000000c902200197000000000520004c000000000300a019000000c90220009c00000000020400190000000002036019000000000220004c000001560000c13d000000c002000039000000000029043500000004021000390000000202200367000000000202043b00000000002a043500000024021000390000000203000367000000000223034f000000000202043b000000d00420009c000001560000213d000000000212001900000023012000390000000004000031000000c905000041000000000641004b00000000060000190000000006058019000000c901100197000000c904400197000000000741004b0000000005008019000000000141013f000000c90110009c00000000010600190000000001056019000000000110004c000001560000c13d0000000401200039000000000113034f000000000301043b000000d00130009c000000a50000213d00000005013002100000003f01100039000000200400008a000000000441016f00000000010904330000000004410019000000000514004b00000000050000190000000105004039000000d00640009c000000a50000213d0000000105500190000000a50000c13d00000000004904350000000000310435000000240220003900000060433000c900000000032300190000000004000031000000000443004b000001560000213d0000000004010019000000000532004b000001e50000813d0000000005200079000000c906000041000000600750008c00000000070000190000000007064019000000c905500197000000000850004c000000000600a019000000c90550009c00000000050700190000000005066019000000000550004c000001560000c13d0000000005090433000000d40650009c000000a50000213d000000600650003900000000006904350000000206200367000000000606043b0000ffff0760008c000001560000213d0000002004400039000000000065043500000020062000390000000206600367000000000606043b0000002007500039000000000067043500000040062000390000000206600367000000000606043b0000004007500039000000000067043500000000005404350000006002200039000000750000013d0000000001000416000000000110004c000001560000c13d00000000010000310000009f02100039000000200300008a000000000232016f0000007f0320008c000000ad0000213d000000d501000041000000000010043500000041010000390000000402000039000000000012043500000024020000390000000001000019031b02c60000040f000000400300003900000000002304350000001f0210018f00000002030003670000000504100270000000000540004c000000bd0000613d00000000050000190000000506500210000000000763034f000000000707043b000000800660003900000000007604350000000105500039000000000645004b000000b50000413d000000000520004c000000cc0000613d0000000504400210000000000343034f00000003022002100000008004400039000000000504043300000000052501cf000000000525022f000000000303043b0000010002200089000000000323022f00000000022301cf000000000252019f0000000000240435000000c902000041000000200310008c00000000030000190000000003024019000000c901100197000000000410004c000000000200a019000000c90110009c00000000010300190000000001026019000000000110004c000001560000c13d00000080010000390000000002010433000000ca0120009c000001560000213d0000000001000019000b00000002001d031b03190000040f000000cb011001970000000b02000029000000000121019f0000000002000019031b03170000040f000000200200003900000100010000390000000000210439000001200200003900000000000204390000004002000039000000cc03000041031b02bc0000040f0000000001000416000000000110004c000001560000c13d0000000001000031000000040210008a000000c903000041000000200420008c00000000040000190000000004034019000000c902200197000000000520004c000000000300a019000000c90220009c00000000020400190000000002036019000000000220004c000001560000c13d00000002030003670000000402300370000000000202043b000000d00420009c000001560000213d0000002304200039000000c905000041000000000614004b00000000060000190000000006058019000000c907100197000000c904400197000000000874004b0000000005008019000000000474013f000000c90440009c00000000040600190000000004056019000000000440004c000001560000c13d0000000404200039000000000343034f000000000303043b000700000003001d000000d00330009c000001560000213d000000240320003900000007020000290000000504200210000600000003001d0000000002340019000000000112004b000001560000213d0000003f01400039000000200200008a000000000121016f000a00000001001d000b00000004001d031b02ff0000040f0000000b07000029000000080400002900000000050404330000000a010000290000000001150019000000000251004b00000000020000190000000102004039000000d00310009c000000a50000213d0000000102200190000000a50000c13d00000000001404350000000701000029000000000015043500000020065000390000000001000019000000000271004b000001630000813d0000000002040433000000d40320009c000000a50000213d0000006003200039000000000034043500000040032000390000000000030435000000200320003900000000000304350000000000020435000000000361001900000000002304350000002001100039000001350000013d0000000001000416000000000110004c000001560000c13d000000040100008a0000000001100031000000c902000041000000000310004c00000000030000190000000003024019000000c901100197000000000410004c000000000200a019000000c90110009c00000000010300190000000001026019000000000110004c000001590000613d00000000010000190000000002000019031b02c60000040f0000000001000019031b03190000040f00000008020000290000000003020433000000ca011001970000000000130435000000200200003900000000010300190000000003000019031b02bc0000040f0000000001000019000500000005001d000400000006001d031b03190000040f000000040600002900000005040000290000000805000029000000ca071001970000000002000019000300000007001d0000000701000029000000000112004b000002030000813d000a00000002001d00000005022002100000000601000029000900000002001d00000000011200190000000201100367000000000101043b0000ffff0210008c000001560000213d0000ffff0810018f000000000a050433000000d20100004100000000001a04350000000401a0003900000000008104350000000001000414000000040270008c000b00000008001d000001920000613d00000024040000390000002006000039000000000207001900000000030a001900000000050a001900020000000a001d031b02870000040f000000020a0000290000000b080000290000000307000029000000040600002900000005040000290000000805000029000000000110004c000002140000613d0000000101000031000000200210008c000000200200003900000000020140190000001f02200039000000600220018f0000000003a20019000000000223004b00000000020000190000000102004039000000d00930009c000000a50000213d0000000102200190000000a50000c13d0000000000350435000000200110008c000001560000413d000000000a0a0433000000d3010000410000000000130435000000040130003900000000008104350000000001000414000000040270008c000001bb0000613d0000002404000039000000200600003900000000020700190000000005030019000200000003001d00010000000a001d031b02870000040f000000010a00002900000002030000290000000b080000290000000307000029000000040600002900000005040000290000000805000029000000000110004c000002140000613d0000000102000031000000200120008c000000200100003900000000010240190000001f01100039000000600110018f0000000001310019000000d00910009c000000a50000213d0000000000150435000000200220008c000001560000413d000000d40210009c000000a50000213d0000000002030433000000600310003900000000003504350000004003100039000000000023043500000020021000390000000000a20435000000000081043500000000020404330000000a03000029000000000232004b000001dd0000a13d00000009020000290000000002620019000000000012043500000001013000390000000002040433000000000232004b00000000020100190000016d0000213d000000d501000041000000000010043500000032010000390000000402000039000000000012043500000024020000390000000001000019031b02c60000040f000000a002000039000b00000002001d000000000012043500000024010000390000000201100367000000000101043b000a00000001001d0000ffff0110008c000001560000213d00070000000b001d00090000000a001d031b02ff0000040f00000008070000290000000b010000290000000004010433000000000504043300000000010000190000000a08000029000000000251004b0000027e0000813d00000005021002100000002002200039000000000342001900000000030304330000000006030433000000000686013f0000ffff066001900000025d0000613d0000000101100039000001f70000013d0000000002050433000000d101000041000b00000002001d00000000001204350000000001000414000000040270008c000002350000613d0000000404000039000000200600003900000000020700190000000b030000290000000005030019031b02870000040f00000005040000290000000805000029000000000110004c000002350000c13d000000030200036700000001040000310000001f0340018f00000000010504330000000504400270000000000540004c000002240000613d000000000500001900000005065002100000000007610019000000000662034f000000000606043b00000000006704350000000105500039000000000645004b0000021c0000413d000000000530004c000002330000613d0000000504400210000000000242034f00000000044100190000000303300210000000000504043300000000053501cf000000000535022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000252019f00000000002404350000000102000031031b02c60000040f0000000101000031000000200210008c000000200200003900000000020140190000001f02200039000000600220018f0000000b0300002900000000060300190000000003320019000000000223004b000000000200001900000001020040390000000007030019000000d00330009c000000a50000213d0000000102200190000000a50000c13d0000000000750435000000200110008c000001560000413d0000000001060433000b00000001001d0000000001070019000a00000001001d031b02cf0000040f0000000a020000290000002001200039000000050300002900000000003104350000000b01000029000000000012043500000008010000290000000001010433000b00000001001d031b02dd0000040f0000000b03000029000000000231004900000000010300190000000003000019031b02bc0000040f00000009040000290000000005040433000000010400008a000000000645004b000002690000613d00000001055000390000000906000029000000000056043500000020053000390000000006050433000000000446004b000002710000c13d000000d501000041000000000010043500000011010000390000000702000029000000000012043500000024020000390000000001000019031b02c60000040f000000010460003900000000004504350000000b0400002900000000040404330000000005040433000000000515004b0000000807000029000001dd0000a13d000000000224001900000000003204350000000002040433000000000112004b000001dd0000a13d0000000001070433000b00000001001d0000008002000039031b02dd0000040f0000000b03000029000000000231004900000000010300190000000003000019031b02bc0000040f0002000000000002000200000006001d000100000005001d000000c805000041000000c80630009c00000000030580190000004003300210000000c80640009c00000000040580190000006004400210000000000334019f000000c80410009c0000000001058019000000c001100210000000000113019f031b03120000040f000000010800002900000002040000290000001f0340018f0000000504400270000000000540004c000002a60000613d000000000500001900000005065002100000000007680019000000000661034f000000000606043b00000000006704350000000105500039000000000645004b0000029e0000413d000000010220018f000000000530004c000002b60000613d0000000504400210000000000541034f00000000044800190000000303300210000000000604043300000000063601cf000000000636022f000000000505043b0000010003300089000000000535022f00000000033501cf000000000363019f000000000034043500030000000103550000006001100270000100c80010019d00000000010200190000000200000005000000000001042d000000c804000041000000c80510009c000000000104801900000040011002100000000001310019000000c80320009c0000000002048019000000600220021000000000012100190000031c0001042e000000c803000041000000c80420009c0000000002038019000000c80410009c000000000103801900000040011002100000006002200210000000000112019f0000031d00010430000000d60210009c000002d50000813d000000400110003900000040020000390000000000120435000000000001042d000000d501000041000000000010043500000041010000390000000402000039000000000012043500000024020000390000000001000019031b02c60000040f000000200300003900000000003104350000002003100039000000000402043300000000004304350000002002200039000000000202043300000040031000390000004004000039000000000043043500000060041000390000000003020433000000000034043500000080011000390000000004000019000000000534004b000002fe0000813d0000002002200039000000000502043300000000060504330000ffff0660018f00000000006104350000002006500039000000000606043300000020071000390000000000670435000000400550003900000000050504330000004006100039000000000056043500000001044000390000006001100039000002ec0000013d000000000001042d00000040020000390000000001020433000000d60310009c0000030a0000813d000000400310003900000000003204350000002002100039000000600300003900000000003204350000000000010435000000000001042d000000d501000041000000000010043500000041010000390000000402000039000000000012043500000024020000390000000001000019031b02c60000040f00000315002104230000000102000039000000000001042d0000000002000019000000000001042d000000000012041b000000000001042d000000000101041a000000000001042d0000031b000004320000031c0001042e0000031d000104300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff8000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ab2b35ec0000000000000000000000000000000000000000000000000000000061bc221a000000000000000000000000000000000000000000000000000000000e0ac9d7000000000000000000000000000000000000000000000000ffffffffffffffff34eafb110000000000000000000000000000000000000000000000000000000056a4728900000000000000000000000000000000000000000000000000000000622f17f600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff9f4e487b7100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffc0",
|
|
162
|
+
"deployedBytecode": "0x0004000000000002000b00000000000200000000030100190000006003300270000000c80430019700030000004103550002000000010355000000c80030019d000100000000001f00000001012001900000009c0000c13d000000800a00003900000040090000390000000000a904350000000001000031000000040110008c000001560000413d0000000201000367000000000101043b000000e001100270000000cd0210009c000800000009001d000000ec0000613d000000ce0210009c000001450000613d000000cf0110009c000001560000c13d0000000001000416000000000110004c000001560000c13d000000040100008a0000000002100031000000c901000041000000400320008c00000000030000190000000003014019000000c904200197000000000540004c000000000100a019000000c90440009c000000000103c019000000000110004c000001560000c13d000000040b0000390000000201b00367000000000101043b000000d00310009c000001560000213d0000000002120049000000c903000041000000400420008c00000000040000190000000004034019000000c902200197000000000520004c000000000300a019000000c90220009c00000000020400190000000002036019000000000220004c000001560000c13d000000c002000039000000000029043500000004021000390000000202200367000000000202043b00000000002a043500000024021000390000000203000367000000000223034f000000000202043b000000d00420009c000001560000213d000000000212001900000023012000390000000004000031000000c905000041000000000641004b00000000060000190000000006058019000000c901100197000000c904400197000000000741004b0000000005008019000000000141013f000000c90110009c00000000010600190000000001056019000000000110004c000001560000c13d0000000401200039000000000113034f000000000301043b000000d00130009c000000a50000213d00000005013002100000003f01100039000000200400008a000000000441016f00000000010904330000000004410019000000000514004b00000000050000190000000105004039000000d00640009c000000a50000213d0000000105500190000000a50000c13d00000000004904350000000000310435000000240220003900000060433000c900000000032300190000000004000031000000000443004b000001560000213d0000000004010019000000000532004b000001e50000813d0000000005200079000000c906000041000000600750008c00000000070000190000000007064019000000c905500197000000000850004c000000000600a019000000c90550009c00000000050700190000000005066019000000000550004c000001560000c13d0000000005090433000000d40650009c000000a50000213d000000600650003900000000006904350000000206200367000000000606043b0000ffff0760008c000001560000213d0000002004400039000000000065043500000020062000390000000206600367000000000606043b0000002007500039000000000067043500000040062000390000000206600367000000000606043b0000004007500039000000000067043500000000005404350000006002200039000000750000013d0000000001000416000000000110004c000001560000c13d00000000010000310000009f02100039000000200300008a000000000232016f0000007f0320008c000000ad0000213d000000d501000041000000000010043500000041010000390000000402000039000000000012043500000024020000390000000001000019031b02c60000040f000000400300003900000000002304350000001f0210018f00000002030003670000000504100270000000000540004c000000bd0000613d00000000050000190000000506500210000000000763034f000000000707043b000000800660003900000000007604350000000105500039000000000645004b000000b50000413d000000000520004c000000cc0000613d0000000504400210000000000343034f00000003022002100000008004400039000000000504043300000000052501cf000000000525022f000000000303043b0000010002200089000000000323022f00000000022301cf000000000252019f0000000000240435000000c902000041000000200310008c00000000030000190000000003024019000000c901100197000000000410004c000000000200a019000000c90110009c00000000010300190000000001026019000000000110004c000001560000c13d00000080010000390000000002010433000000ca0120009c000001560000213d0000000001000019000b00000002001d031b03190000040f000000cb011001970000000b02000029000000000121019f0000000002000019031b03170000040f000000200200003900000100010000390000000000210439000001200200003900000000000204390000004002000039000000cc03000041031b02bc0000040f0000000001000416000000000110004c000001560000c13d0000000001000031000000040210008a000000c903000041000000200420008c00000000040000190000000004034019000000c902200197000000000520004c000000000300a019000000c90220009c00000000020400190000000002036019000000000220004c000001560000c13d00000002030003670000000402300370000000000202043b000000d00420009c000001560000213d0000002304200039000000c905000041000000000614004b00000000060000190000000006058019000000c907100197000000c904400197000000000874004b0000000005008019000000000474013f000000c90440009c00000000040600190000000004056019000000000440004c000001560000c13d0000000404200039000000000343034f000000000303043b000700000003001d000000d00330009c000001560000213d000000240320003900000007020000290000000504200210000600000003001d0000000002340019000000000112004b000001560000213d0000003f01400039000000200200008a000000000121016f000a00000001001d000b00000004001d031b02ff0000040f0000000b07000029000000080400002900000000050404330000000a010000290000000001150019000000000251004b00000000020000190000000102004039000000d00310009c000000a50000213d0000000102200190000000a50000c13d00000000001404350000000701000029000000000015043500000020065000390000000001000019000000000271004b000001630000813d0000000002040433000000d40320009c000000a50000213d0000006003200039000000000034043500000040032000390000000000030435000000200320003900000000000304350000000000020435000000000361001900000000002304350000002001100039000001350000013d0000000001000416000000000110004c000001560000c13d000000040100008a0000000001100031000000c902000041000000000310004c00000000030000190000000003024019000000c901100197000000000410004c000000000200a019000000c90110009c00000000010300190000000001026019000000000110004c000001590000613d00000000010000190000000002000019031b02c60000040f0000000001000019031b03190000040f00000008020000290000000003020433000000ca011001970000000000130435000000200200003900000000010300190000000003000019031b02bc0000040f0000000001000019000500000005001d000400000006001d031b03190000040f000000040600002900000005040000290000000805000029000000ca071001970000000002000019000300000007001d0000000701000029000000000112004b000002030000813d000a00000002001d00000005022002100000000601000029000900000002001d00000000011200190000000201100367000000000101043b0000ffff0210008c000001560000213d0000ffff0810018f000000000a050433000000d20100004100000000001a04350000000401a0003900000000008104350000000001000414000000040270008c000b00000008001d000001920000613d00000024040000390000002006000039000000000207001900000000030a001900000000050a001900020000000a001d031b02870000040f000000020a0000290000000b080000290000000307000029000000040600002900000005040000290000000805000029000000000110004c000002140000613d0000000101000031000000200210008c000000200200003900000000020140190000001f02200039000000600220018f0000000003a20019000000000223004b00000000020000190000000102004039000000d00930009c000000a50000213d0000000102200190000000a50000c13d0000000000350435000000200110008c000001560000413d000000000a0a0433000000d3010000410000000000130435000000040130003900000000008104350000000001000414000000040270008c000001bb0000613d0000002404000039000000200600003900000000020700190000000005030019000200000003001d00010000000a001d031b02870000040f000000010a00002900000002030000290000000b080000290000000307000029000000040600002900000005040000290000000805000029000000000110004c000002140000613d0000000102000031000000200120008c000000200100003900000000010240190000001f01100039000000600110018f0000000001310019000000d00910009c000000a50000213d0000000000150435000000200220008c000001560000413d000000d40210009c000000a50000213d0000000002030433000000600310003900000000003504350000004003100039000000000023043500000020021000390000000000a20435000000000081043500000000020404330000000a03000029000000000232004b000001dd0000a13d00000009020000290000000002620019000000000012043500000001013000390000000002040433000000000232004b00000000020100190000016d0000213d000000d501000041000000000010043500000032010000390000000402000039000000000012043500000024020000390000000001000019031b02c60000040f000000a002000039000b00000002001d000000000012043500000024010000390000000201100367000000000101043b000a00000001001d0000ffff0110008c000001560000213d00070000000b001d00090000000a001d031b02ff0000040f00000008070000290000000b010000290000000004010433000000000504043300000000010000190000000a08000029000000000251004b0000027e0000813d00000005021002100000002002200039000000000342001900000000030304330000000006030433000000000686013f0000ffff066001900000025d0000613d0000000101100039000001f70000013d0000000002050433000000d101000041000b00000002001d00000000001204350000000001000414000000040270008c000002350000613d0000000404000039000000200600003900000000020700190000000b030000290000000005030019031b02870000040f00000005040000290000000805000029000000000110004c000002350000c13d000000030200036700000001040000310000001f0340018f00000000010504330000000504400270000000000540004c000002240000613d000000000500001900000005065002100000000007610019000000000662034f000000000606043b00000000006704350000000105500039000000000645004b0000021c0000413d000000000530004c000002330000613d0000000504400210000000000242034f00000000044100190000000303300210000000000504043300000000053501cf000000000535022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000252019f00000000002404350000000102000031031b02c60000040f0000000101000031000000200210008c000000200200003900000000020140190000001f02200039000000600220018f0000000b0300002900000000060300190000000003320019000000000223004b000000000200001900000001020040390000000007030019000000d00330009c000000a50000213d0000000102200190000000a50000c13d0000000000750435000000200110008c000001560000413d0000000001060433000b00000001001d0000000001070019000a00000001001d031b02cf0000040f0000000a020000290000002001200039000000050300002900000000003104350000000b01000029000000000012043500000008010000290000000001010433000b00000001001d031b02dd0000040f0000000b03000029000000000231004900000000010300190000000003000019031b02bc0000040f00000009040000290000000005040433000000010400008a000000000645004b000002690000613d00000001055000390000000906000029000000000056043500000020053000390000000006050433000000000446004b000002710000c13d000000d501000041000000000010043500000011010000390000000702000029000000000012043500000024020000390000000001000019031b02c60000040f000000010460003900000000004504350000000b0400002900000000040404330000000005040433000000000515004b0000000807000029000001dd0000a13d000000000224001900000000003204350000000002040433000000000112004b000001dd0000a13d0000000001070433000b00000001001d0000008002000039031b02dd0000040f0000000b03000029000000000231004900000000010300190000000003000019031b02bc0000040f0002000000000002000200000006001d000100000005001d000000c805000041000000c80630009c00000000030580190000004003300210000000c80640009c00000000040580190000006004400210000000000334019f000000c80410009c0000000001058019000000c001100210000000000113019f031b03120000040f000000010800002900000002040000290000001f0340018f0000000504400270000000000540004c000002a60000613d000000000500001900000005065002100000000007680019000000000661034f000000000606043b00000000006704350000000105500039000000000645004b0000029e0000413d000000010220018f000000000530004c000002b60000613d0000000504400210000000000541034f00000000044800190000000303300210000000000604043300000000063601cf000000000636022f000000000505043b0000010003300089000000000535022f00000000033501cf000000000363019f000000000034043500030000000103550000006001100270000100c80010019d00000000010200190000000200000005000000000001042d000000c804000041000000c80510009c000000000104801900000040011002100000000001310019000000c80320009c0000000002048019000000600220021000000000012100190000031c0001042e000000c803000041000000c80420009c0000000002038019000000c80410009c000000000103801900000040011002100000006002200210000000000112019f0000031d00010430000000d60210009c000002d50000813d000000400110003900000040020000390000000000120435000000000001042d000000d501000041000000000010043500000041010000390000000402000039000000000012043500000024020000390000000001000019031b02c60000040f000000200300003900000000003104350000002003100039000000000402043300000000004304350000002002200039000000000202043300000040031000390000004004000039000000000043043500000060041000390000000003020433000000000034043500000080011000390000000004000019000000000534004b000002fe0000813d0000002002200039000000000502043300000000060504330000ffff0660018f00000000006104350000002006500039000000000606043300000020071000390000000000670435000000400550003900000000050504330000004006100039000000000056043500000001044000390000006001100039000002ec0000013d000000000001042d00000040020000390000000001020433000000d60310009c0000030a0000813d000000400310003900000000003204350000002002100039000000600300003900000000003204350000000000010435000000000001042d000000d501000041000000000010043500000041010000390000000402000039000000000012043500000024020000390000000001000019031b02c60000040f00000315002104230000000102000039000000000001042d0000000002000019000000000001042d000000000012041b000000000001042d000000000101041a000000000001042d0000031b000004320000031c0001042e0000031d000104300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff8000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ab2b35ec0000000000000000000000000000000000000000000000000000000061bc221a000000000000000000000000000000000000000000000000000000000e0ac9d7000000000000000000000000000000000000000000000000ffffffffffffffff34eafb110000000000000000000000000000000000000000000000000000000056a4728900000000000000000000000000000000000000000000000000000000622f17f600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff9f4e487b7100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffc0",
|
|
163
|
+
"linkReferences": {},
|
|
164
|
+
"deployedLinkReferences": {},
|
|
165
|
+
"factoryDeps": {}
|
|
166
|
+
}
|
|
@@ -0,0 +1,163 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_format": "hh-zksolc-artifact-1",
|
|
3
|
+
"contractName": "IPreCrime",
|
|
4
|
+
"sourceName": "contracts/precrime/interfaces/IPreCrime.sol",
|
|
5
|
+
"abi": [
|
|
6
|
+
{
|
|
7
|
+
"inputs": [
|
|
8
|
+
{
|
|
9
|
+
"components": [
|
|
10
|
+
{
|
|
11
|
+
"internalType": "uint16",
|
|
12
|
+
"name": "srcChainId",
|
|
13
|
+
"type": "uint16"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"internalType": "bytes32",
|
|
17
|
+
"name": "srcAddress",
|
|
18
|
+
"type": "bytes32"
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
"internalType": "uint64",
|
|
22
|
+
"name": "nonce",
|
|
23
|
+
"type": "uint64"
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"internalType": "bytes",
|
|
27
|
+
"name": "payload",
|
|
28
|
+
"type": "bytes"
|
|
29
|
+
}
|
|
30
|
+
],
|
|
31
|
+
"internalType": "struct IPreCrimeBase.Packet[]",
|
|
32
|
+
"name": "_packets",
|
|
33
|
+
"type": "tuple[]"
|
|
34
|
+
}
|
|
35
|
+
],
|
|
36
|
+
"name": "getConfig",
|
|
37
|
+
"outputs": [
|
|
38
|
+
{
|
|
39
|
+
"internalType": "bytes",
|
|
40
|
+
"name": "",
|
|
41
|
+
"type": "bytes"
|
|
42
|
+
}
|
|
43
|
+
],
|
|
44
|
+
"stateMutability": "view",
|
|
45
|
+
"type": "function"
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"inputs": [
|
|
49
|
+
{
|
|
50
|
+
"components": [
|
|
51
|
+
{
|
|
52
|
+
"internalType": "uint16",
|
|
53
|
+
"name": "srcChainId",
|
|
54
|
+
"type": "uint16"
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"internalType": "bytes32",
|
|
58
|
+
"name": "srcAddress",
|
|
59
|
+
"type": "bytes32"
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
"internalType": "uint64",
|
|
63
|
+
"name": "nonce",
|
|
64
|
+
"type": "uint64"
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"internalType": "bytes",
|
|
68
|
+
"name": "payload",
|
|
69
|
+
"type": "bytes"
|
|
70
|
+
}
|
|
71
|
+
],
|
|
72
|
+
"internalType": "struct IPreCrimeBase.Packet[]",
|
|
73
|
+
"name": "_packets",
|
|
74
|
+
"type": "tuple[]"
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
"internalType": "bytes[]",
|
|
78
|
+
"name": "_simulation",
|
|
79
|
+
"type": "bytes[]"
|
|
80
|
+
}
|
|
81
|
+
],
|
|
82
|
+
"name": "precrime",
|
|
83
|
+
"outputs": [
|
|
84
|
+
{
|
|
85
|
+
"internalType": "uint16",
|
|
86
|
+
"name": "code",
|
|
87
|
+
"type": "uint16"
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"internalType": "bytes",
|
|
91
|
+
"name": "reason",
|
|
92
|
+
"type": "bytes"
|
|
93
|
+
}
|
|
94
|
+
],
|
|
95
|
+
"stateMutability": "view",
|
|
96
|
+
"type": "function"
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
"inputs": [
|
|
100
|
+
{
|
|
101
|
+
"components": [
|
|
102
|
+
{
|
|
103
|
+
"internalType": "uint16",
|
|
104
|
+
"name": "srcChainId",
|
|
105
|
+
"type": "uint16"
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"internalType": "bytes32",
|
|
109
|
+
"name": "srcAddress",
|
|
110
|
+
"type": "bytes32"
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
"internalType": "uint64",
|
|
114
|
+
"name": "nonce",
|
|
115
|
+
"type": "uint64"
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
"internalType": "bytes",
|
|
119
|
+
"name": "payload",
|
|
120
|
+
"type": "bytes"
|
|
121
|
+
}
|
|
122
|
+
],
|
|
123
|
+
"internalType": "struct IPreCrimeBase.Packet[]",
|
|
124
|
+
"name": "_packets",
|
|
125
|
+
"type": "tuple[]"
|
|
126
|
+
}
|
|
127
|
+
],
|
|
128
|
+
"name": "simulate",
|
|
129
|
+
"outputs": [
|
|
130
|
+
{
|
|
131
|
+
"internalType": "uint16",
|
|
132
|
+
"name": "code",
|
|
133
|
+
"type": "uint16"
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"internalType": "bytes",
|
|
137
|
+
"name": "result",
|
|
138
|
+
"type": "bytes"
|
|
139
|
+
}
|
|
140
|
+
],
|
|
141
|
+
"stateMutability": "nonpayable",
|
|
142
|
+
"type": "function"
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
"inputs": [],
|
|
146
|
+
"name": "version",
|
|
147
|
+
"outputs": [
|
|
148
|
+
{
|
|
149
|
+
"internalType": "uint16",
|
|
150
|
+
"name": "",
|
|
151
|
+
"type": "uint16"
|
|
152
|
+
}
|
|
153
|
+
],
|
|
154
|
+
"stateMutability": "view",
|
|
155
|
+
"type": "function"
|
|
156
|
+
}
|
|
157
|
+
],
|
|
158
|
+
"bytecode": "0x",
|
|
159
|
+
"deployedBytecode": "0x",
|
|
160
|
+
"linkReferences": {},
|
|
161
|
+
"deployedLinkReferences": {},
|
|
162
|
+
"factoryDeps": {}
|
|
163
|
+
}
|