@layerzerolabs/lz-evm-sdk-v2 3.0.26 → 3.0.28
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 +16 -0
- package/artifacts-zk/contracts/EndpointV2.sol/EndpointV2.json +3 -3
- package/artifacts-zk/contracts/EndpointV2Alt.sol/EndpointV2Alt.json +3 -3
- package/artifacts-zk/contracts/EndpointV2View.sol/EndpointV2View.json +2 -2
- package/artifacts-zk/contracts/EndpointV2ViewUpgradeable.sol/EndpointV2ViewUpgradeable.json +2 -2
- package/artifacts-zk/contracts/Executor.sol/Executor.json +174 -6
- package/artifacts-zk/contracts/Executor.sol/ILayerZeroEndpointV2.json +231 -0
- package/artifacts-zk/contracts/ExecutorFeeLib.sol/ExecutorFeeLib.json +199 -5
- package/artifacts-zk/contracts/PriceFeed.sol/PriceFeed.json +52 -8
- package/artifacts-zk/contracts/SimpleReadExecutor.sol/ILayerZeroEndpointV2.json +140 -0
- package/artifacts-zk/contracts/SimpleReadExecutor.sol/SimpleReadExecutor.json +199 -0
- package/artifacts-zk/contracts/Treasury.sol/Treasury.json +2 -2
- package/artifacts-zk/contracts/decompressor/DVNDecoder.sol/DVNDecoder.json +2 -2
- package/artifacts-zk/contracts/decompressor/DVNDecompressor.sol/DVNDecompressor.json +2 -2
- package/artifacts-zk/contracts/decompressor/ExecutorDecoder.sol/ExecutorDecoder.json +2 -2
- package/artifacts-zk/contracts/decompressor/ExecutorDecompressor.sol/ExecutorDecompressor.json +2 -2
- package/artifacts-zk/contracts/interfaces/IExecutor.sol/IExecutor.json +59 -1
- package/artifacts-zk/contracts/interfaces/IExecutorFeeLib.sol/IExecutorFeeLib.json +186 -2
- package/artifacts-zk/contracts/interfaces/ILayerZeroEndpointV2.sol/ILayerZeroEndpointV2.json +2 -2
- package/artifacts-zk/contracts/interfaces/ILayerZeroPriceFeed.sol/ILayerZeroPriceFeed.json +6 -6
- package/artifacts-zk/contracts/interfaces/ILayerZeroReadExecutor.sol/ILayerZeroReadExecutor.json +60 -0
- package/artifacts-zk/contracts/interfaces/IMessageLibManager.sol/IMessageLibManager.json +2 -2
- package/artifacts-zk/contracts/libs/ExecutorOptions.sol/ExecutorOptions.json +32 -0
- package/artifacts-zk/contracts/lowlat/EssenceDVNWrapper.sol/EssenceDVNWrapper.json +370 -0
- package/artifacts-zk/contracts/lowlat/MultiCall.sol/MultiCall.json +121 -0
- package/artifacts-zk/contracts/messagelib/BlockedMessageLib.sol/BlockedMessageLib.json +2 -2
- package/artifacts-zk/contracts/messagelib/SimpleMessageLib.sol/SimpleMessageLib.json +2 -2
- package/artifacts-zk/contracts/messagelib/libs/PacketV1Codec.sol/PacketV1Codec.json +2 -2
- package/artifacts-zk/contracts/uln/LzExecutor.sol/LzExecutor.json +2 -2
- package/artifacts-zk/contracts/uln/dvn/DVN.sol/DVN.json +145 -6
- package/artifacts-zk/contracts/uln/dvn/DVNFeeLib.sol/DVNFeeLib.json +386 -2
- package/artifacts-zk/contracts/uln/dvn/DeadDVN.sol/DeadDVN.json +165 -0
- package/artifacts-zk/contracts/uln/dvn/MultiSig.sol/MultiSig.json +57 -4
- package/artifacts-zk/contracts/uln/dvn/SimpleReadDVN.sol/SimpleReadDVN.json +232 -0
- package/artifacts-zk/contracts/uln/dvn/adapters/CCIP/CCIPDVNAdapter.sol/CCIPDVNAdapter.json +28 -49
- package/artifacts-zk/contracts/uln/dvn/adapters/CCIP/CCIPDVNAdapterFeeLib.sol/CCIPDVNAdapterFeeLib.json +2 -2
- package/artifacts-zk/contracts/uln/dvn/adapters/arbitrum/ArbitrumDVNAdapterL1.sol/ArbitrumDVNAdapterL1.json +2 -2
- package/artifacts-zk/contracts/uln/dvn/adapters/arbitrum/ArbitrumDVNAdapterL2.sol/ArbitrumDVNAdapterL2.json +2 -2
- package/artifacts-zk/contracts/uln/dvn/adapters/axelar/AxelarDVNAdapter.sol/AxelarDVNAdapter.json +28 -23
- package/artifacts-zk/contracts/uln/dvn/adapters/axelar/AxelarDVNAdapterFeeLib.sol/AxelarDVNAdapterFeeLib.json +3 -3
- package/artifacts-zk/contracts/uln/dvn/adapters/libs/DVNAdapterMessageCodec.sol/DVNAdapterMessageCodec.json +2 -2
- package/artifacts-zk/contracts/uln/dvn/adapters/optimism/OptimismDVNAdapterL1.sol/OptimismDVNAdapterL1.json +2 -2
- package/artifacts-zk/contracts/uln/dvn/adapters/optimism/OptimismDVNAdapterL2.sol/OptimismDVNAdapterL2.json +2 -2
- package/artifacts-zk/contracts/uln/interfaces/IDVN.sol/IDVN.json +68 -0
- package/artifacts-zk/contracts/uln/interfaces/IDVNFeeLib.sol/IDVNFeeLib.json +185 -0
- package/artifacts-zk/contracts/uln/interfaces/ILayerZeroReadDVN.sol/ILayerZeroReadDVN.json +80 -0
- package/artifacts-zk/contracts/uln/interfaces/adapters/IAxelarDVNAdapter.sol/IAxelarDVNAdapter.json +1 -1
- package/artifacts-zk/contracts/uln/interfaces/adapters/ICCIPDVNAdapter.sol/ICCIPDVNAdapter.json +1 -14
- package/artifacts-zk/contracts/uln/libs/ReadCmdCodecV1.sol/ReadCmdCodecV1.json +27 -0
- package/artifacts-zk/contracts/uln/libs/SupportedCmdTypes.sol/SupportedCmdTypesLib.json +17 -0
- package/artifacts-zk/contracts/uln/readlib/ReadLib1002.sol/ReadLib1002.json +1289 -0
- package/artifacts-zk/contracts/uln/readlib/ReadLib1002View.sol/ReadLib1002View.json +286 -0
- package/artifacts-zk/contracts/uln/readlib/ReadLibBase.sol/ReadLibBase.json +388 -0
- package/artifacts-zk/contracts/uln/uln301/ReceiveUln301.sol/ReceiveUln301.json +2 -2
- package/artifacts-zk/contracts/uln/uln301/ReceiveUln301View.sol/ReceiveUln301View.json +2 -2
- package/artifacts-zk/contracts/uln/uln301/SendUln301.sol/SendUln301.json +2 -2
- package/artifacts-zk/contracts/uln/uln302/ReceiveUln302.sol/ReceiveUln302.json +2 -2
- package/artifacts-zk/contracts/uln/uln302/ReceiveUln302View.sol/ReceiveUln302View.json +2 -2
- package/artifacts-zk/contracts/uln/uln302/SendUln302.sol/SendUln302.json +2 -2
- package/deployments/arbitrum-sandbox-local/DVN.json +1 -1
- package/deployments/arbitrum-sandbox-local/DVNDecompressor.json +1 -1
- package/deployments/arbitrum-sandbox-local/DVNFeeLib.json +1 -1
- package/deployments/arbitrum-sandbox-local/DefaultProxyAdmin.json +1 -1
- package/deployments/arbitrum-sandbox-local/EndpointV2.json +1 -1
- package/deployments/arbitrum-sandbox-local/EndpointV2View.json +1 -1
- package/deployments/arbitrum-sandbox-local/EndpointV2View_Implementation.json +1 -1
- package/deployments/arbitrum-sandbox-local/EndpointV2View_Proxy.json +1 -1
- package/deployments/arbitrum-sandbox-local/Executor.json +1 -1
- package/deployments/arbitrum-sandbox-local/ExecutorDecompressor.json +1 -1
- package/deployments/arbitrum-sandbox-local/ExecutorFeeLib.json +1 -1
- package/deployments/arbitrum-sandbox-local/ExecutorProxyAdmin.json +1 -1
- package/deployments/arbitrum-sandbox-local/Executor_Implementation.json +1 -1
- package/deployments/arbitrum-sandbox-local/Executor_Proxy.json +1 -1
- package/deployments/arbitrum-sandbox-local/LzExecutor.json +1 -1
- package/deployments/arbitrum-sandbox-local/LzExecutor_Implementation.json +1 -1
- package/deployments/arbitrum-sandbox-local/LzExecutor_Proxy.json +1 -1
- package/deployments/arbitrum-sandbox-local/MultiCall.json +1 -1
- package/deployments/arbitrum-sandbox-local/NonceContractMock.json +1 -1
- package/deployments/arbitrum-sandbox-local/PriceFeed.json +1 -1
- package/deployments/arbitrum-sandbox-local/PriceFeedProxyAdmin.json +1 -1
- package/deployments/arbitrum-sandbox-local/PriceFeed_Implementation.json +1 -1
- package/deployments/arbitrum-sandbox-local/PriceFeed_Proxy.json +1 -1
- package/deployments/arbitrum-sandbox-local/ReadLib1002.json +1 -1
- package/deployments/arbitrum-sandbox-local/ReadLib1002View.json +1 -1
- package/deployments/arbitrum-sandbox-local/ReadLib1002ViewProxyAdmin.json +1 -1
- package/deployments/arbitrum-sandbox-local/ReadLib1002View_Implementation.json +1 -1
- package/deployments/arbitrum-sandbox-local/ReadLib1002View_Proxy.json +1 -1
- package/deployments/arbitrum-sandbox-local/ReceiveUln301.json +1 -1
- package/deployments/arbitrum-sandbox-local/ReceiveUln301View.json +1 -1
- package/deployments/arbitrum-sandbox-local/ReceiveUln301View_Implementation.json +1 -1
- package/deployments/arbitrum-sandbox-local/ReceiveUln301View_Proxy.json +1 -1
- package/deployments/arbitrum-sandbox-local/ReceiveUln302.json +1 -1
- package/deployments/arbitrum-sandbox-local/ReceiveUln302View.json +1 -1
- package/deployments/arbitrum-sandbox-local/ReceiveUln302View_Implementation.json +1 -1
- package/deployments/arbitrum-sandbox-local/ReceiveUln302View_Proxy.json +1 -1
- package/deployments/arbitrum-sandbox-local/SendUln301.json +1 -1
- package/deployments/arbitrum-sandbox-local/SendUln302.json +1 -1
- package/deployments/arbitrum-sandbox-local/SimpleMessageLib.json +1 -1
- package/deployments/arbitrum-sandbox-local/Treasury.json +1 -1
- package/deployments/arbitrum-sandbox-local/TreasuryFeeHandler.json +1 -1
- package/deployments/bsc-sandbox-local/DVN.json +1 -1
- package/deployments/bsc-sandbox-local/DVNDecompressor.json +1 -1
- package/deployments/bsc-sandbox-local/DVNFeeLib.json +1 -1
- package/deployments/bsc-sandbox-local/DefaultProxyAdmin.json +1 -1
- package/deployments/bsc-sandbox-local/EndpointV2.json +1 -1
- package/deployments/bsc-sandbox-local/EndpointV2View.json +1 -1
- package/deployments/bsc-sandbox-local/EndpointV2View_Implementation.json +1 -1
- package/deployments/bsc-sandbox-local/EndpointV2View_Proxy.json +1 -1
- package/deployments/bsc-sandbox-local/Executor.json +1 -1
- package/deployments/bsc-sandbox-local/ExecutorDecompressor.json +1 -1
- package/deployments/bsc-sandbox-local/ExecutorFeeLib.json +1 -1
- package/deployments/bsc-sandbox-local/ExecutorProxyAdmin.json +1 -1
- package/deployments/bsc-sandbox-local/Executor_Implementation.json +1 -1
- package/deployments/bsc-sandbox-local/Executor_Proxy.json +1 -1
- package/deployments/bsc-sandbox-local/LzExecutor.json +1 -1
- package/deployments/bsc-sandbox-local/LzExecutor_Implementation.json +1 -1
- package/deployments/bsc-sandbox-local/LzExecutor_Proxy.json +1 -1
- package/deployments/bsc-sandbox-local/MultiCall.json +1 -1
- package/deployments/bsc-sandbox-local/NonceContractMock.json +1 -1
- package/deployments/bsc-sandbox-local/PriceFeed.json +1 -1
- package/deployments/bsc-sandbox-local/PriceFeedProxyAdmin.json +1 -1
- package/deployments/bsc-sandbox-local/PriceFeed_Implementation.json +1 -1
- package/deployments/bsc-sandbox-local/PriceFeed_Proxy.json +1 -1
- package/deployments/bsc-sandbox-local/ReadLib1002.json +1 -1
- package/deployments/bsc-sandbox-local/ReadLib1002View.json +1 -1
- package/deployments/bsc-sandbox-local/ReadLib1002ViewProxyAdmin.json +1 -1
- package/deployments/bsc-sandbox-local/ReadLib1002View_Implementation.json +1 -1
- package/deployments/bsc-sandbox-local/ReadLib1002View_Proxy.json +1 -1
- package/deployments/bsc-sandbox-local/ReceiveUln301.json +1 -1
- package/deployments/bsc-sandbox-local/ReceiveUln301View.json +1 -1
- package/deployments/bsc-sandbox-local/ReceiveUln301View_Implementation.json +1 -1
- package/deployments/bsc-sandbox-local/ReceiveUln301View_Proxy.json +1 -1
- package/deployments/bsc-sandbox-local/ReceiveUln302.json +1 -1
- package/deployments/bsc-sandbox-local/ReceiveUln302View.json +1 -1
- package/deployments/bsc-sandbox-local/ReceiveUln302View_Implementation.json +1 -1
- package/deployments/bsc-sandbox-local/ReceiveUln302View_Proxy.json +1 -1
- package/deployments/bsc-sandbox-local/SendUln301.json +1 -1
- package/deployments/bsc-sandbox-local/SendUln302.json +1 -1
- package/deployments/bsc-sandbox-local/SimpleMessageLib.json +1 -1
- package/deployments/bsc-sandbox-local/Treasury.json +1 -1
- package/deployments/bsc-sandbox-local/TreasuryFeeHandler.json +1 -1
- package/deployments/ethereum-sandbox-local/DVN.json +1 -1
- package/deployments/ethereum-sandbox-local/DVNDecompressor.json +1 -1
- package/deployments/ethereum-sandbox-local/DVNFeeLib.json +1 -1
- package/deployments/ethereum-sandbox-local/DefaultProxyAdmin.json +1 -1
- package/deployments/ethereum-sandbox-local/EndpointV2.json +1 -1
- package/deployments/ethereum-sandbox-local/EndpointV2View.json +1 -1
- package/deployments/ethereum-sandbox-local/EndpointV2View_Implementation.json +1 -1
- package/deployments/ethereum-sandbox-local/EndpointV2View_Proxy.json +1 -1
- package/deployments/ethereum-sandbox-local/Executor.json +1 -1
- package/deployments/ethereum-sandbox-local/ExecutorDecompressor.json +1 -1
- package/deployments/ethereum-sandbox-local/ExecutorFeeLib.json +1 -1
- package/deployments/ethereum-sandbox-local/ExecutorProxyAdmin.json +1 -1
- package/deployments/ethereum-sandbox-local/Executor_Implementation.json +1 -1
- package/deployments/ethereum-sandbox-local/Executor_Proxy.json +1 -1
- package/deployments/ethereum-sandbox-local/LzExecutor.json +1 -1
- package/deployments/ethereum-sandbox-local/LzExecutor_Implementation.json +1 -1
- package/deployments/ethereum-sandbox-local/LzExecutor_Proxy.json +1 -1
- package/deployments/ethereum-sandbox-local/MultiCall.json +1 -1
- package/deployments/ethereum-sandbox-local/NonceContractMock.json +1 -1
- package/deployments/ethereum-sandbox-local/PriceFeed.json +1 -1
- package/deployments/ethereum-sandbox-local/PriceFeedProxyAdmin.json +1 -1
- package/deployments/ethereum-sandbox-local/PriceFeed_Implementation.json +1 -1
- package/deployments/ethereum-sandbox-local/PriceFeed_Proxy.json +1 -1
- package/deployments/ethereum-sandbox-local/ReadLib1002.json +1 -1
- package/deployments/ethereum-sandbox-local/ReadLib1002View.json +1 -1
- package/deployments/ethereum-sandbox-local/ReadLib1002ViewProxyAdmin.json +1 -1
- package/deployments/ethereum-sandbox-local/ReadLib1002View_Implementation.json +1 -1
- package/deployments/ethereum-sandbox-local/ReadLib1002View_Proxy.json +1 -1
- package/deployments/ethereum-sandbox-local/ReceiveUln301.json +1 -1
- package/deployments/ethereum-sandbox-local/ReceiveUln301View.json +1 -1
- package/deployments/ethereum-sandbox-local/ReceiveUln301View_Implementation.json +1 -1
- package/deployments/ethereum-sandbox-local/ReceiveUln301View_Proxy.json +1 -1
- package/deployments/ethereum-sandbox-local/ReceiveUln302.json +1 -1
- package/deployments/ethereum-sandbox-local/ReceiveUln302View.json +1 -1
- package/deployments/ethereum-sandbox-local/ReceiveUln302View_Implementation.json +1 -1
- package/deployments/ethereum-sandbox-local/ReceiveUln302View_Proxy.json +1 -1
- package/deployments/ethereum-sandbox-local/SendUln301.json +1 -1
- package/deployments/ethereum-sandbox-local/SendUln302.json +1 -1
- package/deployments/ethereum-sandbox-local/SimpleMessageLib.json +1 -1
- package/deployments/ethereum-sandbox-local/Treasury.json +1 -1
- package/deployments/ethereum-sandbox-local/TreasuryFeeHandler.json +1 -1
- package/deployments/polygon-sandbox-local/DVN.json +1 -1
- package/deployments/polygon-sandbox-local/DVNDecompressor.json +1 -1
- package/deployments/polygon-sandbox-local/DVNFeeLib.json +1 -1
- package/deployments/polygon-sandbox-local/DefaultProxyAdmin.json +1 -1
- package/deployments/polygon-sandbox-local/EndpointV2.json +1 -1
- package/deployments/polygon-sandbox-local/EndpointV2View.json +1 -1
- package/deployments/polygon-sandbox-local/EndpointV2View_Implementation.json +1 -1
- package/deployments/polygon-sandbox-local/EndpointV2View_Proxy.json +1 -1
- package/deployments/polygon-sandbox-local/Executor.json +1 -1
- package/deployments/polygon-sandbox-local/ExecutorDecompressor.json +1 -1
- package/deployments/polygon-sandbox-local/ExecutorFeeLib.json +1 -1
- package/deployments/polygon-sandbox-local/ExecutorProxyAdmin.json +1 -1
- package/deployments/polygon-sandbox-local/Executor_Implementation.json +1 -1
- package/deployments/polygon-sandbox-local/Executor_Proxy.json +1 -1
- package/deployments/polygon-sandbox-local/LzExecutor.json +1 -1
- package/deployments/polygon-sandbox-local/LzExecutor_Implementation.json +1 -1
- package/deployments/polygon-sandbox-local/LzExecutor_Proxy.json +1 -1
- package/deployments/polygon-sandbox-local/MultiCall.json +1 -1
- package/deployments/polygon-sandbox-local/NonceContractMock.json +1 -1
- package/deployments/polygon-sandbox-local/PriceFeed.json +1 -1
- package/deployments/polygon-sandbox-local/PriceFeedProxyAdmin.json +1 -1
- package/deployments/polygon-sandbox-local/PriceFeed_Implementation.json +1 -1
- package/deployments/polygon-sandbox-local/PriceFeed_Proxy.json +1 -1
- package/deployments/polygon-sandbox-local/ReadLib1002.json +1 -1
- package/deployments/polygon-sandbox-local/ReadLib1002View.json +1 -1
- package/deployments/polygon-sandbox-local/ReadLib1002ViewProxyAdmin.json +1 -1
- package/deployments/polygon-sandbox-local/ReadLib1002View_Implementation.json +1 -1
- package/deployments/polygon-sandbox-local/ReadLib1002View_Proxy.json +1 -1
- package/deployments/polygon-sandbox-local/ReceiveUln301.json +1 -1
- package/deployments/polygon-sandbox-local/ReceiveUln301View.json +1 -1
- package/deployments/polygon-sandbox-local/ReceiveUln301View_Implementation.json +1 -1
- package/deployments/polygon-sandbox-local/ReceiveUln301View_Proxy.json +1 -1
- package/deployments/polygon-sandbox-local/ReceiveUln302.json +1 -1
- package/deployments/polygon-sandbox-local/ReceiveUln302View.json +1 -1
- package/deployments/polygon-sandbox-local/ReceiveUln302View_Implementation.json +1 -1
- package/deployments/polygon-sandbox-local/ReceiveUln302View_Proxy.json +1 -1
- package/deployments/polygon-sandbox-local/SendUln301.json +1 -1
- package/deployments/polygon-sandbox-local/SendUln302.json +1 -1
- package/deployments/polygon-sandbox-local/SimpleMessageLib.json +1 -1
- package/deployments/polygon-sandbox-local/Treasury.json +1 -1
- package/deployments/polygon-sandbox-local/TreasuryFeeHandler.json +1 -1
- package/deployments/tron-sandbox-local/DVN.json +2 -2
- package/deployments/tron-sandbox-local/DVNDecompressor.json +2 -2
- package/deployments/tron-sandbox-local/DVNFeeLib.json +2 -2
- package/deployments/tron-sandbox-local/DefaultProxyAdmin.json +2 -2
- package/deployments/tron-sandbox-local/EndpointV2.json +2 -2
- package/deployments/tron-sandbox-local/EndpointV2View.json +2 -2
- package/deployments/tron-sandbox-local/EndpointV2View_Implementation.json +2 -2
- package/deployments/tron-sandbox-local/EndpointV2View_Proxy.json +2 -2
- package/deployments/tron-sandbox-local/Executor.json +2 -2
- package/deployments/tron-sandbox-local/ExecutorDecompressor.json +2 -2
- package/deployments/tron-sandbox-local/ExecutorFeeLib.json +2 -2
- package/deployments/tron-sandbox-local/ExecutorProxyAdmin.json +2 -2
- package/deployments/tron-sandbox-local/Executor_Implementation.json +2 -2
- package/deployments/tron-sandbox-local/Executor_Proxy.json +2 -2
- package/deployments/tron-sandbox-local/LzExecutor.json +2 -2
- package/deployments/tron-sandbox-local/LzExecutor_Implementation.json +2 -2
- package/deployments/tron-sandbox-local/LzExecutor_Proxy.json +2 -2
- package/deployments/tron-sandbox-local/MultiCall.json +2 -2
- package/deployments/tron-sandbox-local/NonceContractMock.json +2 -2
- package/deployments/tron-sandbox-local/PriceFeed.json +2 -2
- package/deployments/tron-sandbox-local/PriceFeedProxyAdmin.json +2 -2
- package/deployments/tron-sandbox-local/PriceFeed_Implementation.json +2 -2
- package/deployments/tron-sandbox-local/PriceFeed_Proxy.json +2 -2
- package/deployments/tron-sandbox-local/ReadLib1002.json +2 -2
- package/deployments/tron-sandbox-local/ReadLib1002View.json +2 -2
- package/deployments/tron-sandbox-local/ReadLib1002ViewProxyAdmin.json +2 -2
- package/deployments/tron-sandbox-local/ReadLib1002View_Implementation.json +2 -2
- package/deployments/tron-sandbox-local/ReadLib1002View_Proxy.json +2 -2
- package/deployments/tron-sandbox-local/ReceiveUln301.json +2 -2
- package/deployments/tron-sandbox-local/ReceiveUln301View.json +2 -2
- package/deployments/tron-sandbox-local/ReceiveUln301View_Implementation.json +2 -2
- package/deployments/tron-sandbox-local/ReceiveUln301View_Proxy.json +2 -2
- package/deployments/tron-sandbox-local/ReceiveUln302.json +2 -2
- package/deployments/tron-sandbox-local/ReceiveUln302View.json +2 -2
- package/deployments/tron-sandbox-local/ReceiveUln302View_Implementation.json +2 -2
- package/deployments/tron-sandbox-local/ReceiveUln302View_Proxy.json +2 -2
- package/deployments/tron-sandbox-local/SendUln301.json +2 -2
- package/deployments/tron-sandbox-local/SendUln302.json +2 -2
- package/deployments/tron-sandbox-local/SimpleMessageLib.json +2 -2
- package/deployments/tron-sandbox-local/Treasury.json +2 -2
- package/deployments/tron-sandbox-local/TreasuryFeeHandler.json +2 -2
- package/package.json +9 -9
|
@@ -0,0 +1,165 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_format": "hh-zksolc-artifact-1",
|
|
3
|
+
"contractName": "DeadDVN",
|
|
4
|
+
"sourceName": "contracts/uln/dvn/DeadDVN.sol",
|
|
5
|
+
"abi": [
|
|
6
|
+
{
|
|
7
|
+
"inputs": [
|
|
8
|
+
{
|
|
9
|
+
"components": [
|
|
10
|
+
{
|
|
11
|
+
"internalType": "uint32",
|
|
12
|
+
"name": "dstEid",
|
|
13
|
+
"type": "uint32"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"internalType": "bytes",
|
|
17
|
+
"name": "packetHeader",
|
|
18
|
+
"type": "bytes"
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
"internalType": "bytes32",
|
|
22
|
+
"name": "payloadHash",
|
|
23
|
+
"type": "bytes32"
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"internalType": "uint64",
|
|
27
|
+
"name": "confirmations",
|
|
28
|
+
"type": "uint64"
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"internalType": "address",
|
|
32
|
+
"name": "sender",
|
|
33
|
+
"type": "address"
|
|
34
|
+
}
|
|
35
|
+
],
|
|
36
|
+
"internalType": "struct ILayerZeroDVN.AssignJobParam",
|
|
37
|
+
"name": "",
|
|
38
|
+
"type": "tuple"
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"internalType": "bytes",
|
|
42
|
+
"name": "",
|
|
43
|
+
"type": "bytes"
|
|
44
|
+
}
|
|
45
|
+
],
|
|
46
|
+
"name": "assignJob",
|
|
47
|
+
"outputs": [
|
|
48
|
+
{
|
|
49
|
+
"internalType": "uint256",
|
|
50
|
+
"name": "",
|
|
51
|
+
"type": "uint256"
|
|
52
|
+
}
|
|
53
|
+
],
|
|
54
|
+
"stateMutability": "payable",
|
|
55
|
+
"type": "function"
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"inputs": [
|
|
59
|
+
{
|
|
60
|
+
"internalType": "uint16",
|
|
61
|
+
"name": "",
|
|
62
|
+
"type": "uint16"
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"internalType": "uint16",
|
|
66
|
+
"name": "",
|
|
67
|
+
"type": "uint16"
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
"internalType": "uint64",
|
|
71
|
+
"name": "",
|
|
72
|
+
"type": "uint64"
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
"internalType": "address",
|
|
76
|
+
"name": "",
|
|
77
|
+
"type": "address"
|
|
78
|
+
}
|
|
79
|
+
],
|
|
80
|
+
"name": "assignJob",
|
|
81
|
+
"outputs": [
|
|
82
|
+
{
|
|
83
|
+
"internalType": "uint256",
|
|
84
|
+
"name": "",
|
|
85
|
+
"type": "uint256"
|
|
86
|
+
}
|
|
87
|
+
],
|
|
88
|
+
"stateMutability": "pure",
|
|
89
|
+
"type": "function"
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"inputs": [
|
|
93
|
+
{
|
|
94
|
+
"internalType": "uint32",
|
|
95
|
+
"name": "",
|
|
96
|
+
"type": "uint32"
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
"internalType": "uint64",
|
|
100
|
+
"name": "",
|
|
101
|
+
"type": "uint64"
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
"internalType": "address",
|
|
105
|
+
"name": "",
|
|
106
|
+
"type": "address"
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
"internalType": "bytes",
|
|
110
|
+
"name": "",
|
|
111
|
+
"type": "bytes"
|
|
112
|
+
}
|
|
113
|
+
],
|
|
114
|
+
"name": "getFee",
|
|
115
|
+
"outputs": [
|
|
116
|
+
{
|
|
117
|
+
"internalType": "uint256",
|
|
118
|
+
"name": "",
|
|
119
|
+
"type": "uint256"
|
|
120
|
+
}
|
|
121
|
+
],
|
|
122
|
+
"stateMutability": "pure",
|
|
123
|
+
"type": "function"
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
"inputs": [
|
|
127
|
+
{
|
|
128
|
+
"internalType": "uint16",
|
|
129
|
+
"name": "",
|
|
130
|
+
"type": "uint16"
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
"internalType": "uint16",
|
|
134
|
+
"name": "",
|
|
135
|
+
"type": "uint16"
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"internalType": "uint64",
|
|
139
|
+
"name": "",
|
|
140
|
+
"type": "uint64"
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
"internalType": "address",
|
|
144
|
+
"name": "",
|
|
145
|
+
"type": "address"
|
|
146
|
+
}
|
|
147
|
+
],
|
|
148
|
+
"name": "getFee",
|
|
149
|
+
"outputs": [
|
|
150
|
+
{
|
|
151
|
+
"internalType": "uint256",
|
|
152
|
+
"name": "",
|
|
153
|
+
"type": "uint256"
|
|
154
|
+
}
|
|
155
|
+
],
|
|
156
|
+
"stateMutability": "pure",
|
|
157
|
+
"type": "function"
|
|
158
|
+
}
|
|
159
|
+
],
|
|
160
|
+
"bytecode": "0x0000008003000039000000400030043f000000000301001900000060033002700000002c033001970000000102200190000000200000c13d000000040230008c000000970000413d000000000201043b000000e0022002700000002e0420009c000000280000213d000000310420009c000000430000613d000000320220009c000000970000c13d0000000002000416000000000202004b000000970000c13d000000040230008a000000800220008c000000970000413d0000000402100370000000000202043b0000ffff0220008c000000970000213d0000002402100370000000000202043b0000ffff0220008c000000970000213d0000003a0000013d0000000001000416000000000101004b000000970000c13d0000002001000039000001000010044300000120000004430000002d01000041000000ac0001042e0000002f0420009c0000006b0000613d000000300220009c000000970000c13d0000000002000416000000000202004b000000970000c13d000000040230008a000000800220008c000000970000413d0000000402100370000000000202043b0000ffff0220008c000000970000213d0000002402100370000000000202043b0000ffff0220008c000000970000213d0000004402100370000000000202043b000000330220009c000000970000213d0000006401100370000000000101043b000000350110009c000000970000213d000000990000013d0000000002000416000000000202004b000000970000c13d000000040230008a000000800220008c000000970000413d0000000402100370000000000202043b0000002c0220009c000000970000213d0000002402100370000000000202043b000000330220009c000000970000213d0000004402100370000000000202043b000000350220009c000000970000213d0000006402100370000000000202043b000000330420009c000000970000213d00000023042000390000003405000041000000000634004b000000000600001900000000060580190000003404400197000000000704004b0000000005008019000000340440009c000000000506c019000000000405004b000000970000c13d0000000404200039000000000141034f000000000101043b000000330410009c000000970000213d000000930000013d000000040230008a000000400420008c000000970000413d0000000404100370000000000404043b000000330540009c000000970000213d00000000024200490000003404000041000000a00520008c000000000500001900000000050440190000003402200197000000000602004b000000000400a019000000340220009c000000000405c019000000000204004b000000970000c13d0000002402100370000000000202043b000000330420009c000000970000213d00000023042000390000003405000041000000000634004b000000000600001900000000060580190000003404400197000000000704004b0000000005008019000000340440009c000000000506c019000000000405004b000000970000c13d0000000404200039000000000141034f000000000101043b000000330410009c000000970000213d00000000011200190000002401100039000000000131004b000000990000a13d0000000001000019000000ad00010430000000e001000039000000400010043f0000002b01000039000000800010043f0000003602000041000000a00020043f0000003703000041000000c00030043f0000003804000041000000e00040043f0000002004000039000000e40040043f000001040010043f000001240020043f000001440030043f0000014f0000043f0000003901000041000000ad00010430000000ab00000432000000ac0001042e000000ad000104300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff00000002000000000000000000000000000000400000010000000000000000000000000000000000000000000000000000000000000000000000000095d376d60000000000000000000000000000000000000000000000000000000095d376d700000000000000000000000000000000000000000000000000000000c5e193cd0000000000000000000000000000000000000000000000000000000030bb3aac000000000000000000000000000000000000000000000000000000005553fb8e000000000000000000000000000000000000000000000000ffffffffffffffff8000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff506c656173652073657420796f7572204f41707027732044564e7320616e642f6f72204578656375746f7200000000000000000000000000000000000000000008c379a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084000000e00000000000000000320c7caea8dc16a697968e879f9c1a3b938839520f743b7c92f5198857f700d0",
|
|
161
|
+
"deployedBytecode": "0x0000008003000039000000400030043f000000000301001900000060033002700000002c033001970000000102200190000000200000c13d000000040230008c000000970000413d000000000201043b000000e0022002700000002e0420009c000000280000213d000000310420009c000000430000613d000000320220009c000000970000c13d0000000002000416000000000202004b000000970000c13d000000040230008a000000800220008c000000970000413d0000000402100370000000000202043b0000ffff0220008c000000970000213d0000002402100370000000000202043b0000ffff0220008c000000970000213d0000003a0000013d0000000001000416000000000101004b000000970000c13d0000002001000039000001000010044300000120000004430000002d01000041000000ac0001042e0000002f0420009c0000006b0000613d000000300220009c000000970000c13d0000000002000416000000000202004b000000970000c13d000000040230008a000000800220008c000000970000413d0000000402100370000000000202043b0000ffff0220008c000000970000213d0000002402100370000000000202043b0000ffff0220008c000000970000213d0000004402100370000000000202043b000000330220009c000000970000213d0000006401100370000000000101043b000000350110009c000000970000213d000000990000013d0000000002000416000000000202004b000000970000c13d000000040230008a000000800220008c000000970000413d0000000402100370000000000202043b0000002c0220009c000000970000213d0000002402100370000000000202043b000000330220009c000000970000213d0000004402100370000000000202043b000000350220009c000000970000213d0000006402100370000000000202043b000000330420009c000000970000213d00000023042000390000003405000041000000000634004b000000000600001900000000060580190000003404400197000000000704004b0000000005008019000000340440009c000000000506c019000000000405004b000000970000c13d0000000404200039000000000141034f000000000101043b000000330410009c000000970000213d000000930000013d000000040230008a000000400420008c000000970000413d0000000404100370000000000404043b000000330540009c000000970000213d00000000024200490000003404000041000000a00520008c000000000500001900000000050440190000003402200197000000000602004b000000000400a019000000340220009c000000000405c019000000000204004b000000970000c13d0000002402100370000000000202043b000000330420009c000000970000213d00000023042000390000003405000041000000000634004b000000000600001900000000060580190000003404400197000000000704004b0000000005008019000000340440009c000000000506c019000000000405004b000000970000c13d0000000404200039000000000141034f000000000101043b000000330410009c000000970000213d00000000011200190000002401100039000000000131004b000000990000a13d0000000001000019000000ad00010430000000e001000039000000400010043f0000002b01000039000000800010043f0000003602000041000000a00020043f0000003703000041000000c00030043f0000003804000041000000e00040043f0000002004000039000000e40040043f000001040010043f000001240020043f000001440030043f0000014f0000043f0000003901000041000000ad00010430000000ab00000432000000ac0001042e000000ad000104300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff00000002000000000000000000000000000000400000010000000000000000000000000000000000000000000000000000000000000000000000000095d376d60000000000000000000000000000000000000000000000000000000095d376d700000000000000000000000000000000000000000000000000000000c5e193cd0000000000000000000000000000000000000000000000000000000030bb3aac000000000000000000000000000000000000000000000000000000005553fb8e000000000000000000000000000000000000000000000000ffffffffffffffff8000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff506c656173652073657420796f7572204f41707027732044564e7320616e642f6f72204578656375746f7200000000000000000000000000000000000000000008c379a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084000000e00000000000000000320c7caea8dc16a697968e879f9c1a3b938839520f743b7c92f5198857f700d0",
|
|
162
|
+
"linkReferences": {},
|
|
163
|
+
"deployedLinkReferences": {},
|
|
164
|
+
"factoryDeps": {}
|
|
165
|
+
}
|
|
@@ -3,6 +3,11 @@
|
|
|
3
3
|
"contractName": "MultiSig",
|
|
4
4
|
"sourceName": "contracts/uln/dvn/MultiSig.sol",
|
|
5
5
|
"abi": [
|
|
6
|
+
{
|
|
7
|
+
"inputs": [],
|
|
8
|
+
"name": "MultiSig_InvalidSigner",
|
|
9
|
+
"type": "error"
|
|
10
|
+
},
|
|
6
11
|
{
|
|
7
12
|
"inputs": [],
|
|
8
13
|
"name": "MultiSig_OnlySigner",
|
|
@@ -45,6 +50,22 @@
|
|
|
45
50
|
"name": "MultiSig_StateAlreadySet",
|
|
46
51
|
"type": "error"
|
|
47
52
|
},
|
|
53
|
+
{
|
|
54
|
+
"inputs": [
|
|
55
|
+
{
|
|
56
|
+
"internalType": "address",
|
|
57
|
+
"name": "signer",
|
|
58
|
+
"type": "address"
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"internalType": "bool",
|
|
62
|
+
"name": "active",
|
|
63
|
+
"type": "bool"
|
|
64
|
+
}
|
|
65
|
+
],
|
|
66
|
+
"name": "MultiSig_StateNotSet",
|
|
67
|
+
"type": "error"
|
|
68
|
+
},
|
|
48
69
|
{
|
|
49
70
|
"inputs": [],
|
|
50
71
|
"name": "MultiSig_UnorderedSigners",
|
|
@@ -82,6 +103,38 @@
|
|
|
82
103
|
"name": "UpdateSigner",
|
|
83
104
|
"type": "event"
|
|
84
105
|
},
|
|
106
|
+
{
|
|
107
|
+
"inputs": [],
|
|
108
|
+
"name": "getSigners",
|
|
109
|
+
"outputs": [
|
|
110
|
+
{
|
|
111
|
+
"internalType": "address[]",
|
|
112
|
+
"name": "",
|
|
113
|
+
"type": "address[]"
|
|
114
|
+
}
|
|
115
|
+
],
|
|
116
|
+
"stateMutability": "view",
|
|
117
|
+
"type": "function"
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
"inputs": [
|
|
121
|
+
{
|
|
122
|
+
"internalType": "address",
|
|
123
|
+
"name": "_signer",
|
|
124
|
+
"type": "address"
|
|
125
|
+
}
|
|
126
|
+
],
|
|
127
|
+
"name": "isSigner",
|
|
128
|
+
"outputs": [
|
|
129
|
+
{
|
|
130
|
+
"internalType": "bool",
|
|
131
|
+
"name": "",
|
|
132
|
+
"type": "bool"
|
|
133
|
+
}
|
|
134
|
+
],
|
|
135
|
+
"stateMutability": "view",
|
|
136
|
+
"type": "function"
|
|
137
|
+
},
|
|
85
138
|
{
|
|
86
139
|
"inputs": [],
|
|
87
140
|
"name": "quorum",
|
|
@@ -100,9 +153,9 @@
|
|
|
100
153
|
"name": "signerSize",
|
|
101
154
|
"outputs": [
|
|
102
155
|
{
|
|
103
|
-
"internalType": "
|
|
156
|
+
"internalType": "uint256",
|
|
104
157
|
"name": "",
|
|
105
|
-
"type": "
|
|
158
|
+
"type": "uint256"
|
|
106
159
|
}
|
|
107
160
|
],
|
|
108
161
|
"stateMutability": "view",
|
|
@@ -112,7 +165,7 @@
|
|
|
112
165
|
"inputs": [
|
|
113
166
|
{
|
|
114
167
|
"internalType": "address",
|
|
115
|
-
"name": "
|
|
168
|
+
"name": "_signer",
|
|
116
169
|
"type": "address"
|
|
117
170
|
}
|
|
118
171
|
],
|
|
@@ -120,7 +173,7 @@
|
|
|
120
173
|
"outputs": [
|
|
121
174
|
{
|
|
122
175
|
"internalType": "bool",
|
|
123
|
-
"name": "
|
|
176
|
+
"name": "",
|
|
124
177
|
"type": "bool"
|
|
125
178
|
}
|
|
126
179
|
],
|
|
@@ -0,0 +1,232 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_format": "hh-zksolc-artifact-1",
|
|
3
|
+
"contractName": "SimpleReadDVN",
|
|
4
|
+
"sourceName": "contracts/uln/dvn/SimpleReadDVN.sol",
|
|
5
|
+
"abi": [
|
|
6
|
+
{
|
|
7
|
+
"inputs": [
|
|
8
|
+
{
|
|
9
|
+
"internalType": "address payable",
|
|
10
|
+
"name": "_readLib",
|
|
11
|
+
"type": "address"
|
|
12
|
+
}
|
|
13
|
+
],
|
|
14
|
+
"stateMutability": "nonpayable",
|
|
15
|
+
"type": "constructor"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"inputs": [],
|
|
19
|
+
"name": "InvalidCmd",
|
|
20
|
+
"type": "error"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"inputs": [],
|
|
24
|
+
"name": "InvalidType",
|
|
25
|
+
"type": "error"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"inputs": [],
|
|
29
|
+
"name": "InvalidVersion",
|
|
30
|
+
"type": "error"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"inputs": [],
|
|
34
|
+
"name": "UnsupportedTargetEid",
|
|
35
|
+
"type": "error"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"inputs": [
|
|
39
|
+
{
|
|
40
|
+
"internalType": "address",
|
|
41
|
+
"name": "",
|
|
42
|
+
"type": "address"
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"internalType": "bytes",
|
|
46
|
+
"name": "",
|
|
47
|
+
"type": "bytes"
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"internalType": "bytes",
|
|
51
|
+
"name": "_cmd",
|
|
52
|
+
"type": "bytes"
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"internalType": "bytes",
|
|
56
|
+
"name": "",
|
|
57
|
+
"type": "bytes"
|
|
58
|
+
}
|
|
59
|
+
],
|
|
60
|
+
"name": "assignJob",
|
|
61
|
+
"outputs": [
|
|
62
|
+
{
|
|
63
|
+
"internalType": "uint256",
|
|
64
|
+
"name": "",
|
|
65
|
+
"type": "uint256"
|
|
66
|
+
}
|
|
67
|
+
],
|
|
68
|
+
"stateMutability": "payable",
|
|
69
|
+
"type": "function"
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
"inputs": [],
|
|
73
|
+
"name": "getCmdFees",
|
|
74
|
+
"outputs": [
|
|
75
|
+
{
|
|
76
|
+
"internalType": "uint128",
|
|
77
|
+
"name": "",
|
|
78
|
+
"type": "uint128"
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"internalType": "uint128",
|
|
82
|
+
"name": "",
|
|
83
|
+
"type": "uint128"
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"internalType": "uint128",
|
|
87
|
+
"name": "",
|
|
88
|
+
"type": "uint128"
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
"internalType": "uint128",
|
|
92
|
+
"name": "",
|
|
93
|
+
"type": "uint128"
|
|
94
|
+
}
|
|
95
|
+
],
|
|
96
|
+
"stateMutability": "view",
|
|
97
|
+
"type": "function"
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"inputs": [
|
|
101
|
+
{
|
|
102
|
+
"internalType": "address",
|
|
103
|
+
"name": "",
|
|
104
|
+
"type": "address"
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
"internalType": "bytes",
|
|
108
|
+
"name": "",
|
|
109
|
+
"type": "bytes"
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
"internalType": "bytes",
|
|
113
|
+
"name": "_cmd",
|
|
114
|
+
"type": "bytes"
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
"internalType": "bytes",
|
|
118
|
+
"name": "",
|
|
119
|
+
"type": "bytes"
|
|
120
|
+
}
|
|
121
|
+
],
|
|
122
|
+
"name": "getFee",
|
|
123
|
+
"outputs": [
|
|
124
|
+
{
|
|
125
|
+
"internalType": "uint256",
|
|
126
|
+
"name": "",
|
|
127
|
+
"type": "uint256"
|
|
128
|
+
}
|
|
129
|
+
],
|
|
130
|
+
"stateMutability": "view",
|
|
131
|
+
"type": "function"
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
"inputs": [],
|
|
135
|
+
"name": "readLib",
|
|
136
|
+
"outputs": [
|
|
137
|
+
{
|
|
138
|
+
"internalType": "address payable",
|
|
139
|
+
"name": "",
|
|
140
|
+
"type": "address"
|
|
141
|
+
}
|
|
142
|
+
],
|
|
143
|
+
"stateMutability": "view",
|
|
144
|
+
"type": "function"
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
"inputs": [
|
|
148
|
+
{
|
|
149
|
+
"internalType": "uint128",
|
|
150
|
+
"name": "_evmCallReqV1FeeUSD",
|
|
151
|
+
"type": "uint128"
|
|
152
|
+
},
|
|
153
|
+
{
|
|
154
|
+
"internalType": "uint128",
|
|
155
|
+
"name": "_evmCallComputeV1MapFeeUSD",
|
|
156
|
+
"type": "uint128"
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
"internalType": "uint128",
|
|
160
|
+
"name": "_evmCallComputeV1ReduceFeeUSD",
|
|
161
|
+
"type": "uint128"
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
"internalType": "uint128",
|
|
165
|
+
"name": "_nativePriceUSD",
|
|
166
|
+
"type": "uint128"
|
|
167
|
+
}
|
|
168
|
+
],
|
|
169
|
+
"name": "setCmdFees",
|
|
170
|
+
"outputs": [],
|
|
171
|
+
"stateMutability": "nonpayable",
|
|
172
|
+
"type": "function"
|
|
173
|
+
},
|
|
174
|
+
{
|
|
175
|
+
"inputs": [
|
|
176
|
+
{
|
|
177
|
+
"components": [
|
|
178
|
+
{
|
|
179
|
+
"internalType": "uint32",
|
|
180
|
+
"name": "targetEid",
|
|
181
|
+
"type": "uint32"
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
"internalType": "BitMap256",
|
|
185
|
+
"name": "types",
|
|
186
|
+
"type": "uint256"
|
|
187
|
+
}
|
|
188
|
+
],
|
|
189
|
+
"internalType": "struct SimpleReadDVN.SetSupportedCmdTypesParam[]",
|
|
190
|
+
"name": "_params",
|
|
191
|
+
"type": "tuple[]"
|
|
192
|
+
}
|
|
193
|
+
],
|
|
194
|
+
"name": "setSupportedCmdTypes",
|
|
195
|
+
"outputs": [],
|
|
196
|
+
"stateMutability": "nonpayable",
|
|
197
|
+
"type": "function"
|
|
198
|
+
},
|
|
199
|
+
{
|
|
200
|
+
"inputs": [
|
|
201
|
+
{
|
|
202
|
+
"internalType": "bytes",
|
|
203
|
+
"name": "_packetHeader",
|
|
204
|
+
"type": "bytes"
|
|
205
|
+
},
|
|
206
|
+
{
|
|
207
|
+
"internalType": "bytes32",
|
|
208
|
+
"name": "_cmdHash",
|
|
209
|
+
"type": "bytes32"
|
|
210
|
+
},
|
|
211
|
+
{
|
|
212
|
+
"internalType": "bytes32",
|
|
213
|
+
"name": "_payloadHash",
|
|
214
|
+
"type": "bytes32"
|
|
215
|
+
}
|
|
216
|
+
],
|
|
217
|
+
"name": "verify",
|
|
218
|
+
"outputs": [],
|
|
219
|
+
"stateMutability": "nonpayable",
|
|
220
|
+
"type": "function"
|
|
221
|
+
},
|
|
222
|
+
{
|
|
223
|
+
"stateMutability": "payable",
|
|
224
|
+
"type": "receive"
|
|
225
|
+
}
|
|
226
|
+
],
|
|
227
|
+
"bytecode": "0x00010000000000020008000000000002000000000301034f000000000003035500000000010300190000006001100270000000d7011001970000000102200190000000180000c13d0000008002000039000000400020043f000000040210008c000000470000413d000000000203043b000000e002200270000000db0420009c0000004b0000a13d000000dc0420009c000000e90000213d000000df0320009c000000fa0000613d000000e00220009c000000f00000613d0000015c0000013d0000000002000416000000000202004b0000015c0000c13d000000bf02100039000000d802200197000000400020043f0000001f0210018f00000005041002720000002a0000613d00000000050000190000000506500210000000000763034f000000000707043b000000a00660003900000000007604350000000105500039000000000645004b000000220000413d000000000502004b000000390000613d0000000504400210000000000343034f0000000302200210000000a004400039000000000504043300000000052501cf000000000525022f000000000303043b0000010002200089000000000323022f00000000022301cf000000000252019f0000000000240435000000200110008c0000015c0000413d000000a00100043d000000d90210009c0000015c0000213d000000800010043f000001400000044300000160001004430000002001000039000001000010044300000001010000390000012000100443000000da01000041000003560001042e000000000101004b0000015c0000c13d0000000001000019000003560001042e000000e10420009c0000010a0000613d000000e20420009c0000011b0000613d000000e30220009c0000015c0000c13d0000000002000416000000000202004b0000015c0000c13d000000040210008a000000600220008c0000015c0000413d0000000402300370000000000202043b000000e40420009c0000015c0000213d0000002304200039000000e505000041000000000614004b00000000060000190000000006058019000000e504400197000000000704004b0000000005008019000000e50440009c000000000506c019000000000405004b0000015c0000c13d0000000405200039000000000353034f000000000403043b000000e40340009c0000015c0000213d00000000024200190000002402200039000000000112004b0000015c0000213d000500000005001d000600000004001d000000ea010000410000000000100439000000000100041200000004001004430000002400000443000000d7030000410000000001000414000000d70210009c0000000001038019000000c001100210000000eb011001c70000800502000039035503500000040f0000000102200190000001820000613d000000000101043b000000ec020000410000000000200439000000d901100197000400000001001d00000004001004430000000001000414000000d70210009c000000d701008041000000c001100210000000ed011001c70000800202000039035503500000040f0000000102200190000001820000613d000000000101043b000000000101004b000000060900002900000005040000290000015c0000613d000000400a00043d000000ee0100004100000000001a04350000000401a00039000000600200003900000000002104350000006401a0003900000000009104350000001f0390018f0000008402a0003900000020044000390000000001000367000000000441034f0000000505900272000000ad0000613d000000000600001900000005076002100000000008720019000000000774034f000000000707043b00000000007804350000000106600039000000000756004b000000a50000413d000000000603004b000000bc0000613d0000000505500210000000000454034f00000000055200190000000303300210000000000605043300000000063601cf000000000636022f000000000404043b0000010003300089000000000434022f00000000033401cf000000000363019f0000000000350435000000000292001900000000000204350000002402100370000000000202043b0000002403a0003900000000002304350000004402a000390000004401100370000000000101043b000000000012043500000000010004140000000402000029000000040320008c000000e10000613d0000001f04900039000000200300008a000000000534016f000000ef03000041000000ef0450009c0000000005038019000000d703000041000000d704a0009c000000000403001900000000040a401900000040044002100000006005500210000000000545019f000000d70410009c0000000001038019000000c001100210000000000115019f000000f00110004100060000000a001d0355034b0000040f000000060a0000290000000102200190000001860000613d000000f101a0009c000001830000413d000000f20100004100000000001004350000004101000039000000040010043f000000f3010000410000035700010430000000dd0420009c0000013a0000613d000000de0220009c0000015c0000c13d0000000002000416000000000202004b0000015c0000c13d035501ac0000040f035502120000040f000000400200043d0000000000120435000000d701000041000000d70320009c00000000020180190000004001200210000000e7011001c7000003560001042e0000000001000416000000000101004b0000015c0000c13d0000000101000039000000000101041a000000000200041a000000e803200197000000800030043f0000008002200270000000a00020043f000000e802100197000000c00020043f0000008001100270000000e00010043f000000e901000041000003560001042e0000000001000416000000000101004b0000015c0000c13d0000000001000412000800000001001d000700000000001d000080050100003900000044030000390000000004000415000000080440008a00000020044000c9000000ea02000041035503310000040f000000d901100197000000800010043f000000f401000041000003560001042e0000000002000416000000000202004b0000015c0000c13d000000040110008a000000800110008c0000015c0000413d0000000401300370000000000101043b000000e80210009c0000015c0000213d0000002402300370000000000202043b000000e80420009c0000015c0000213d0000004404300370000000000404043b000000e80540009c0000015c0000213d0000006403300370000000000303043b000000e80530009c0000015c0000213d0000008002200210000000000112019f000000000010041b0000008001300210000000000141019f0000000102000039000000000012041b0000000001000019000003560001042e0000000002000416000000000202004b0000015c0000c13d000000040210008a000000200220008c0000015c0000413d0000000402300370000000000202043b000000e40420009c0000015c0000213d0000002304200039000000e505000041000000000614004b00000000060000190000000006058019000000e504400197000000000704004b0000000005008019000000e50440009c000000000506c019000000000405004b0000015c0000c13d0000000404200039000000000343034f000000000303043b000400000003001d000000e40330009c0000015c0000213d000300240020003d000000040200002900000006022002100000000302200029000000000112004b0000015e0000a13d00000000010000190000035700010430000000040100006b000000490000613d000200020000003d000180100000003d000000000400001900000006014002100000000301100029000000000310036700000020011000390000000001100367000000000101043b000500000001001d000000000103043b000000d70210009c0000015c0000213d00000000001004350000000201000029000000200010043f0000000001000414000000d70210009c000000d701008041000000c001100210000000e6011001c70000000102000029000600000004001d035503500000040f000000060400002900000001022001900000015c0000613d000000000101043b0000000502000029000000000021041b0000000104400039000000040140006c000001630000413d000000490000013d000000000001042f0000004000a0043f0000000001000019000003560001042e000000400200043d000000000301001900000060033002700000001f0430018f000000d7033001970000000505300272000001960000613d000000000600001900000005076002100000000008720019000000000771034f000000000707043b00000000007804350000000106600039000000000756004b0000018e0000413d000000000604004b000001a50000613d0000000505500210000000000151034f00000000055200190000000304400210000000000605043300000000064601cf000000000646022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000161019f0000000000150435000000d701000041000000d70420009c000000000201801900000040012002100000006002300210000000000121019f0000035700010430000000040210008a000000e5030000410000007f0420008c00000000040000190000000004032019000000e502200197000000000502004b0000000003008019000000e50220009c000000000304c019000000000203004b000002100000613d00000000040003670000000402400370000000000202043b000000d90220009c000002100000213d0000002402400370000000000202043b000000e40320009c000002100000213d0000002303200039000000e505000041000000000613004b00000000060000190000000006058019000000e507100197000000e503300197000000000873004b0000000005008019000000000373013f000000e50330009c000000000506c019000000000305004b000002100000c13d0000000403200039000000000334034f000000000303043b000000e40530009c000002100000213d00000000023200190000002402200039000000000212004b000002100000213d0000004402400370000000000302043b000000e40230009c000002100000213d0000002302300039000000e505000041000000000612004b00000000060000190000000006058019000000e507100197000000e502200197000000000872004b0000000005008019000000000272013f000000e50220009c000000000506c019000000000205004b000002100000c13d0000000402300039000000000224034f000000000202043b000000e40520009c000002100000213d00000024033000390000000005320019000000000515004b000002100000213d0000006405400370000000000505043b000000e40650009c000002100000213d0000002306500039000000e507000041000000000816004b00000000080000190000000008078019000000e509100197000000e506600197000000000a96004b0000000007008019000000000696013f000000e50660009c000000000708c019000000000607004b000002100000c13d0000000406500039000000000464034f000000000404043b000000e40640009c000002100000213d00000000044500190000002404400039000000000114004b000002100000213d0000000001030019000000000001042d00000000010000190000035700010430000a00000000000200000000060200190000000007010019000000400500043d000000f50150009c000003280000813d0000006001500039000000400010043f0000004001500039000100000001001d00000000000104350000000001050436000200000001001d0000000000010435000000010160008c000003110000a13d0000000001000367000000000271034f000000000202043b000000f602200197000000f70220009c0000031c0000c13d000000060260008c000003110000413d0000000402700039000000000121034f000000000101043b000000f80210009c000003190000a13d000000f0011002700000000000150435000000060800003900050003000000920000000009000019000700000005001d000600000006001d000400000007001d000000000168004b000003130000813d00000000027800190000000001000367000000000221034f000000000202043b000000f902200197000000fa0220009c0000031c0000c13d000000050280006c0000030d0000813d00000003038000390000000502800039000000000423004b0000030d0000213d000000000462004b000003110000213d0000000003730019000000000331034f000000000303043b000000f603300197000000f70330009c000002b60000c13d0000000704800039000000000342004b0000030d0000213d000000000364004b000003110000213d0000000002720019000000000221034f000000000a02043b0000000b02800039000000000324004b0000030d0000213d000000000362004b000003110000213d0000000003740019000000000131034f000000000101043b000000000362004b000003130000813d0000000c03800039000000000232004b0000030d0000213d0000001402800039000000000323004b0000030d0000213d000000000262004b000003110000213d000000e00110027000000000001004350000000201000039000300000001001d000000200010043f0000000001000414000000d70210009c000000d701008041000000c001100210000000e6011001c70000801002000039000a00000009001d000900000004001d00080000000a001d035503500000040f000000080800002900000009040000290000000a030000290000000407000029000000060600002900000007050000290000000102200190000003110000613d000000000101043b000000000101041a00000001011001900000031f0000613d000000f0018002700000000008410019000000000118004b0000000001000019000000010100403900000001011001900000030d0000c13d000000000168004b000003190000213d00000001013000390000ffff0910018f00000000010504330000ffff0110018f000000000119004b000002370000413d000000000168004b000002ed0000813d00000000027800190000000001000367000000000321034f000000000303043b000000f903300197000000fa0330009c0000031c0000c13d000000040300008a000000000338004b0000030d0000213d0000000303800039000000000463004b000003110000213d0000000102200039000000000221034f000000000202043b000000f602200197000000f70220009c000002b60000c13d000000000263004b000003130000813d0000000402800039000000000423004b0000030d0000213d0000000003730019000000000331034f000000000303043b000000f803300272000002b90000613d000000020430008c000002bb0000613d000000010330008c0000000103000029000002bf0000613d000000400100043d000000fe02000041000003210000013d0000000203000029000002bf0000013d0000000103000039000000020400002900000000003404350000000103000029000000010400003900000000004304350000000803800039000000000432004b0000030d0000213d000000000463004b000003110000213d0000000002720019000000000121034f000000000101043b000000000263004b000003130000813d0000000902800039000000000323004b0000030d0000213d0000001103800039000000000232004b0000030d0000213d000900000003001d000000000263004b000003110000213d000000e00110027000000000001004350000000301000029000000200010043f000000d7010000410000000002000414000000d70320009c0000000002018019000000c001200210000000e6011001c70000801002000039000a00000008001d035503500000040f0000000a08000029000000060600002900000007050000290000000102200190000003110000613d000000000101043b000000000101041a00000002011001900000031f0000613d0000002708800039000000090180006b0000030d0000213d000000000168004b000003190000c13d000000000200041a000000e80120019700000000030504330000ffff0330018f00000000413100a9000000e80410009c0000030d0000213d00000002040000290000000004040433000000000404004b000002ff0000613d000000800220027000000000323200a9000000e80320009c0000030d0000213d00000000011200190000000102000039000000000202041a000000e80320009c0000032c0000a13d00000001030000290000000003030433000000e804200197000000000303004b00000000040060190000000001410019000000fd311000d1000000800220027000000000212100d9000000000001042d000000f20100004100000000001004350000001101000039000003160000013d00000000010000190000035700010430000000f20100004100000000001004350000003201000039000000040010043f000000f3010000410000035700010430000000400100043d0000010002000041000003210000013d000000400100043d000000fb02000041000003210000013d000000400100043d000000ff020000410000000000210435000000d702000041000000d70310009c00000000010280190000004001100210000000fc011001c70000035700010430000000f20100004100000000001004350000004101000039000003160000013d000000f20100004100000000001004350000001201000039000003160000013d000000000001042f00000000050100190000000000200439000000040100003900000005024002700000000002020031000000000121043a0000002004400039000000000231004b000003340000413d000000d7010000410000000002000414000000d70420009c0000000002018019000000d70430009c00000000030180190000006001300210000000c002200210000000000112019f00000101011001c70000000002050019035503500000040f00000001022001900000034a0000613d000000000101043b000000000001042d000000000001042f0000034e002104210000000102000039000000000001042d0000000002000019000000000001042d00000353002104230000000102000039000000000001042d0000000002000019000000000001042d0000035500000432000003560001042e0000035700010430000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe0000000000000000000000000ffffffffffffffffffffffffffffffffffffffff000000020000000000000000000000000000008000000100000000000000000000000000000000000000000000000000000000000000000000000000de0a93c200000000000000000000000000000000000000000000000000000000f5ff608e00000000000000000000000000000000000000000000000000000000f5ff608f00000000000000000000000000000000000000000000000000000000fdb9b0f100000000000000000000000000000000000000000000000000000000de0a93c300000000000000000000000000000000000000000000000000000000f42ed2ed000000000000000000000000000000000000000000000000000000005ac9e90f00000000000000000000000000000000000000000000000000000000998b1f9700000000000000000000000000000000000000000000000000000000ab750e75000000000000000000000000000000000000000000000000ffffffffffffffff80000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffff0000000000000000000000000000000000000080000000800000000000000000310ab089e4439a4c15d089f94afb7896ff553aecb10793d0ab882de59d99a32e02000002000000000000000000000000000000440000000000000000000000001806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b830200000200000000000000000000000000000024000000000000000000000000ab750e750000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffff7b000000000000000000000000000000000000008400000000000000000000000000000000000000000000000000000000000000000000000100000000000000004e487b710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000020000000800000000000000000000000000000000000000000000000000000000000000000ffffffffffffffa0ffff00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a9146eeb0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000de0b6b3a7640000b96884610000000000000000000000000000000000000000000000000000000050fae9eb0000000000000000000000000000000000000000000000000000000087a7f379000000000000000000000000000000000000000000000000000000000200000200000000000000000000000000000000000000000000000000000000fadd8e68b7a4b39b6a55b9bcf9cc3a2e0ece3ce5b5c3dd4d55c3b63197683cbb",
|
|
228
|
+
"deployedBytecode": "0x00010000000000020008000000000002000000000301034f000000000003035500000000010300190000006001100270000000d7011001970000000102200190000000180000c13d0000008002000039000000400020043f000000040210008c000000470000413d000000000203043b000000e002200270000000db0420009c0000004b0000a13d000000dc0420009c000000e90000213d000000df0320009c000000fa0000613d000000e00220009c000000f00000613d0000015c0000013d0000000002000416000000000202004b0000015c0000c13d000000bf02100039000000d802200197000000400020043f0000001f0210018f00000005041002720000002a0000613d00000000050000190000000506500210000000000763034f000000000707043b000000a00660003900000000007604350000000105500039000000000645004b000000220000413d000000000502004b000000390000613d0000000504400210000000000343034f0000000302200210000000a004400039000000000504043300000000052501cf000000000525022f000000000303043b0000010002200089000000000323022f00000000022301cf000000000252019f0000000000240435000000200110008c0000015c0000413d000000a00100043d000000d90210009c0000015c0000213d000000800010043f000001400000044300000160001004430000002001000039000001000010044300000001010000390000012000100443000000da01000041000003560001042e000000000101004b0000015c0000c13d0000000001000019000003560001042e000000e10420009c0000010a0000613d000000e20420009c0000011b0000613d000000e30220009c0000015c0000c13d0000000002000416000000000202004b0000015c0000c13d000000040210008a000000600220008c0000015c0000413d0000000402300370000000000202043b000000e40420009c0000015c0000213d0000002304200039000000e505000041000000000614004b00000000060000190000000006058019000000e504400197000000000704004b0000000005008019000000e50440009c000000000506c019000000000405004b0000015c0000c13d0000000405200039000000000353034f000000000403043b000000e40340009c0000015c0000213d00000000024200190000002402200039000000000112004b0000015c0000213d000500000005001d000600000004001d000000ea010000410000000000100439000000000100041200000004001004430000002400000443000000d7030000410000000001000414000000d70210009c0000000001038019000000c001100210000000eb011001c70000800502000039035503500000040f0000000102200190000001820000613d000000000101043b000000ec020000410000000000200439000000d901100197000400000001001d00000004001004430000000001000414000000d70210009c000000d701008041000000c001100210000000ed011001c70000800202000039035503500000040f0000000102200190000001820000613d000000000101043b000000000101004b000000060900002900000005040000290000015c0000613d000000400a00043d000000ee0100004100000000001a04350000000401a00039000000600200003900000000002104350000006401a0003900000000009104350000001f0390018f0000008402a0003900000020044000390000000001000367000000000441034f0000000505900272000000ad0000613d000000000600001900000005076002100000000008720019000000000774034f000000000707043b00000000007804350000000106600039000000000756004b000000a50000413d000000000603004b000000bc0000613d0000000505500210000000000454034f00000000055200190000000303300210000000000605043300000000063601cf000000000636022f000000000404043b0000010003300089000000000434022f00000000033401cf000000000363019f0000000000350435000000000292001900000000000204350000002402100370000000000202043b0000002403a0003900000000002304350000004402a000390000004401100370000000000101043b000000000012043500000000010004140000000402000029000000040320008c000000e10000613d0000001f04900039000000200300008a000000000534016f000000ef03000041000000ef0450009c0000000005038019000000d703000041000000d704a0009c000000000403001900000000040a401900000040044002100000006005500210000000000545019f000000d70410009c0000000001038019000000c001100210000000000115019f000000f00110004100060000000a001d0355034b0000040f000000060a0000290000000102200190000001860000613d000000f101a0009c000001830000413d000000f20100004100000000001004350000004101000039000000040010043f000000f3010000410000035700010430000000dd0420009c0000013a0000613d000000de0220009c0000015c0000c13d0000000002000416000000000202004b0000015c0000c13d035501ac0000040f035502120000040f000000400200043d0000000000120435000000d701000041000000d70320009c00000000020180190000004001200210000000e7011001c7000003560001042e0000000001000416000000000101004b0000015c0000c13d0000000101000039000000000101041a000000000200041a000000e803200197000000800030043f0000008002200270000000a00020043f000000e802100197000000c00020043f0000008001100270000000e00010043f000000e901000041000003560001042e0000000001000416000000000101004b0000015c0000c13d0000000001000412000800000001001d000700000000001d000080050100003900000044030000390000000004000415000000080440008a00000020044000c9000000ea02000041035503310000040f000000d901100197000000800010043f000000f401000041000003560001042e0000000002000416000000000202004b0000015c0000c13d000000040110008a000000800110008c0000015c0000413d0000000401300370000000000101043b000000e80210009c0000015c0000213d0000002402300370000000000202043b000000e80420009c0000015c0000213d0000004404300370000000000404043b000000e80540009c0000015c0000213d0000006403300370000000000303043b000000e80530009c0000015c0000213d0000008002200210000000000112019f000000000010041b0000008001300210000000000141019f0000000102000039000000000012041b0000000001000019000003560001042e0000000002000416000000000202004b0000015c0000c13d000000040210008a000000200220008c0000015c0000413d0000000402300370000000000202043b000000e40420009c0000015c0000213d0000002304200039000000e505000041000000000614004b00000000060000190000000006058019000000e504400197000000000704004b0000000005008019000000e50440009c000000000506c019000000000405004b0000015c0000c13d0000000404200039000000000343034f000000000303043b000400000003001d000000e40330009c0000015c0000213d000300240020003d000000040200002900000006022002100000000302200029000000000112004b0000015e0000a13d00000000010000190000035700010430000000040100006b000000490000613d000200020000003d000180100000003d000000000400001900000006014002100000000301100029000000000310036700000020011000390000000001100367000000000101043b000500000001001d000000000103043b000000d70210009c0000015c0000213d00000000001004350000000201000029000000200010043f0000000001000414000000d70210009c000000d701008041000000c001100210000000e6011001c70000000102000029000600000004001d035503500000040f000000060400002900000001022001900000015c0000613d000000000101043b0000000502000029000000000021041b0000000104400039000000040140006c000001630000413d000000490000013d000000000001042f0000004000a0043f0000000001000019000003560001042e000000400200043d000000000301001900000060033002700000001f0430018f000000d7033001970000000505300272000001960000613d000000000600001900000005076002100000000008720019000000000771034f000000000707043b00000000007804350000000106600039000000000756004b0000018e0000413d000000000604004b000001a50000613d0000000505500210000000000151034f00000000055200190000000304400210000000000605043300000000064601cf000000000646022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000161019f0000000000150435000000d701000041000000d70420009c000000000201801900000040012002100000006002300210000000000121019f0000035700010430000000040210008a000000e5030000410000007f0420008c00000000040000190000000004032019000000e502200197000000000502004b0000000003008019000000e50220009c000000000304c019000000000203004b000002100000613d00000000040003670000000402400370000000000202043b000000d90220009c000002100000213d0000002402400370000000000202043b000000e40320009c000002100000213d0000002303200039000000e505000041000000000613004b00000000060000190000000006058019000000e507100197000000e503300197000000000873004b0000000005008019000000000373013f000000e50330009c000000000506c019000000000305004b000002100000c13d0000000403200039000000000334034f000000000303043b000000e40530009c000002100000213d00000000023200190000002402200039000000000212004b000002100000213d0000004402400370000000000302043b000000e40230009c000002100000213d0000002302300039000000e505000041000000000612004b00000000060000190000000006058019000000e507100197000000e502200197000000000872004b0000000005008019000000000272013f000000e50220009c000000000506c019000000000205004b000002100000c13d0000000402300039000000000224034f000000000202043b000000e40520009c000002100000213d00000024033000390000000005320019000000000515004b000002100000213d0000006405400370000000000505043b000000e40650009c000002100000213d0000002306500039000000e507000041000000000816004b00000000080000190000000008078019000000e509100197000000e506600197000000000a96004b0000000007008019000000000696013f000000e50660009c000000000708c019000000000607004b000002100000c13d0000000406500039000000000464034f000000000404043b000000e40640009c000002100000213d00000000044500190000002404400039000000000114004b000002100000213d0000000001030019000000000001042d00000000010000190000035700010430000a00000000000200000000060200190000000007010019000000400500043d000000f50150009c000003280000813d0000006001500039000000400010043f0000004001500039000100000001001d00000000000104350000000001050436000200000001001d0000000000010435000000010160008c000003110000a13d0000000001000367000000000271034f000000000202043b000000f602200197000000f70220009c0000031c0000c13d000000060260008c000003110000413d0000000402700039000000000121034f000000000101043b000000f80210009c000003190000a13d000000f0011002700000000000150435000000060800003900050003000000920000000009000019000700000005001d000600000006001d000400000007001d000000000168004b000003130000813d00000000027800190000000001000367000000000221034f000000000202043b000000f902200197000000fa0220009c0000031c0000c13d000000050280006c0000030d0000813d00000003038000390000000502800039000000000423004b0000030d0000213d000000000462004b000003110000213d0000000003730019000000000331034f000000000303043b000000f603300197000000f70330009c000002b60000c13d0000000704800039000000000342004b0000030d0000213d000000000364004b000003110000213d0000000002720019000000000221034f000000000a02043b0000000b02800039000000000324004b0000030d0000213d000000000362004b000003110000213d0000000003740019000000000131034f000000000101043b000000000362004b000003130000813d0000000c03800039000000000232004b0000030d0000213d0000001402800039000000000323004b0000030d0000213d000000000262004b000003110000213d000000e00110027000000000001004350000000201000039000300000001001d000000200010043f0000000001000414000000d70210009c000000d701008041000000c001100210000000e6011001c70000801002000039000a00000009001d000900000004001d00080000000a001d035503500000040f000000080800002900000009040000290000000a030000290000000407000029000000060600002900000007050000290000000102200190000003110000613d000000000101043b000000000101041a00000001011001900000031f0000613d000000f0018002700000000008410019000000000118004b0000000001000019000000010100403900000001011001900000030d0000c13d000000000168004b000003190000213d00000001013000390000ffff0910018f00000000010504330000ffff0110018f000000000119004b000002370000413d000000000168004b000002ed0000813d00000000027800190000000001000367000000000321034f000000000303043b000000f903300197000000fa0330009c0000031c0000c13d000000040300008a000000000338004b0000030d0000213d0000000303800039000000000463004b000003110000213d0000000102200039000000000221034f000000000202043b000000f602200197000000f70220009c000002b60000c13d000000000263004b000003130000813d0000000402800039000000000423004b0000030d0000213d0000000003730019000000000331034f000000000303043b000000f803300272000002b90000613d000000020430008c000002bb0000613d000000010330008c0000000103000029000002bf0000613d000000400100043d000000fe02000041000003210000013d0000000203000029000002bf0000013d0000000103000039000000020400002900000000003404350000000103000029000000010400003900000000004304350000000803800039000000000432004b0000030d0000213d000000000463004b000003110000213d0000000002720019000000000121034f000000000101043b000000000263004b000003130000813d0000000902800039000000000323004b0000030d0000213d0000001103800039000000000232004b0000030d0000213d000900000003001d000000000263004b000003110000213d000000e00110027000000000001004350000000301000029000000200010043f000000d7010000410000000002000414000000d70320009c0000000002018019000000c001200210000000e6011001c70000801002000039000a00000008001d035503500000040f0000000a08000029000000060600002900000007050000290000000102200190000003110000613d000000000101043b000000000101041a00000002011001900000031f0000613d0000002708800039000000090180006b0000030d0000213d000000000168004b000003190000c13d000000000200041a000000e80120019700000000030504330000ffff0330018f00000000413100a9000000e80410009c0000030d0000213d00000002040000290000000004040433000000000404004b000002ff0000613d000000800220027000000000323200a9000000e80320009c0000030d0000213d00000000011200190000000102000039000000000202041a000000e80320009c0000032c0000a13d00000001030000290000000003030433000000e804200197000000000303004b00000000040060190000000001410019000000fd311000d1000000800220027000000000212100d9000000000001042d000000f20100004100000000001004350000001101000039000003160000013d00000000010000190000035700010430000000f20100004100000000001004350000003201000039000000040010043f000000f3010000410000035700010430000000400100043d0000010002000041000003210000013d000000400100043d000000fb02000041000003210000013d000000400100043d000000ff020000410000000000210435000000d702000041000000d70310009c00000000010280190000004001100210000000fc011001c70000035700010430000000f20100004100000000001004350000004101000039000003160000013d000000f20100004100000000001004350000001201000039000003160000013d000000000001042f00000000050100190000000000200439000000040100003900000005024002700000000002020031000000000121043a0000002004400039000000000231004b000003340000413d000000d7010000410000000002000414000000d70420009c0000000002018019000000d70430009c00000000030180190000006001300210000000c002200210000000000112019f00000101011001c70000000002050019035503500000040f00000001022001900000034a0000613d000000000101043b000000000001042d000000000001042f0000034e002104210000000102000039000000000001042d0000000002000019000000000001042d00000353002104230000000102000039000000000001042d0000000002000019000000000001042d0000035500000432000003560001042e0000035700010430000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe0000000000000000000000000ffffffffffffffffffffffffffffffffffffffff000000020000000000000000000000000000008000000100000000000000000000000000000000000000000000000000000000000000000000000000de0a93c200000000000000000000000000000000000000000000000000000000f5ff608e00000000000000000000000000000000000000000000000000000000f5ff608f00000000000000000000000000000000000000000000000000000000fdb9b0f100000000000000000000000000000000000000000000000000000000de0a93c300000000000000000000000000000000000000000000000000000000f42ed2ed000000000000000000000000000000000000000000000000000000005ac9e90f00000000000000000000000000000000000000000000000000000000998b1f9700000000000000000000000000000000000000000000000000000000ab750e75000000000000000000000000000000000000000000000000ffffffffffffffff80000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffff0000000000000000000000000000000000000080000000800000000000000000310ab089e4439a4c15d089f94afb7896ff553aecb10793d0ab882de59d99a32e02000002000000000000000000000000000000440000000000000000000000001806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b830200000200000000000000000000000000000024000000000000000000000000ab750e750000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffff7b000000000000000000000000000000000000008400000000000000000000000000000000000000000000000000000000000000000000000100000000000000004e487b710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000020000000800000000000000000000000000000000000000000000000000000000000000000ffffffffffffffa0ffff00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a9146eeb0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000de0b6b3a7640000b96884610000000000000000000000000000000000000000000000000000000050fae9eb0000000000000000000000000000000000000000000000000000000087a7f379000000000000000000000000000000000000000000000000000000000200000200000000000000000000000000000000000000000000000000000000fadd8e68b7a4b39b6a55b9bcf9cc3a2e0ece3ce5b5c3dd4d55c3b63197683cbb",
|
|
229
|
+
"linkReferences": {},
|
|
230
|
+
"deployedLinkReferences": {},
|
|
231
|
+
"factoryDeps": {}
|
|
232
|
+
}
|