@layerzerolabs/lz-evm-sdk-v2 2.3.9 → 2.3.11
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-tron/contracts/EndpointV2.sol/EndpointV2.json +2361 -0
- package/artifacts-tron/contracts/EndpointV2Alt.sol/EndpointV2Alt.json +2376 -0
- package/artifacts-tron/contracts/EndpointV2View.sol/EndpointV2View.json +209 -0
- package/artifacts-tron/contracts/EndpointV2ViewUpgradeable.sol/EndpointV2ViewUpgradeable.json +196 -0
- package/artifacts-tron/contracts/Executor.sol/Executor.json +1276 -0
- package/artifacts-tron/contracts/Executor.sol/ILayerZeroEndpointV2.json +230 -0
- package/artifacts-tron/contracts/ExecutorFeeLib.sol/ExecutorFeeLib.json +367 -0
- package/artifacts-tron/contracts/MessageLibBase.sol/MessageLibBase.json +16 -0
- package/artifacts-tron/contracts/MessageLibManager.sol/MessageLibManager.json +771 -0
- package/artifacts-tron/contracts/MessagingChannel.sol/MessagingChannel.json +426 -0
- package/artifacts-tron/contracts/MessagingComposer.sol/MessagingComposer.json +320 -0
- package/artifacts-tron/contracts/MessagingContext.sol/MessagingContext.json +42 -0
- package/artifacts-tron/contracts/PriceFeed.sol/PriceFeed.json +694 -0
- package/artifacts-tron/contracts/ReceiveLibBaseE2.sol/ReceiveLibBaseE2.json +154 -0
- package/artifacts-tron/contracts/SendLibBase.sol/SendLibBase.json +381 -0
- package/artifacts-tron/contracts/SendLibBaseE2.sol/SendLibBaseE2.json +819 -0
- package/artifacts-tron/contracts/Treasury.sol/Treasury.json +309 -0
- package/artifacts-tron/contracts/Worker.sol/Worker.json +579 -0
- package/artifacts-tron/contracts/decompressor/DVNDecoder.sol/DVNDecoder.json +10 -0
- package/artifacts-tron/contracts/decompressor/DVNDecompressor.sol/DVNDecompressor.json +329 -0
- package/artifacts-tron/contracts/decompressor/DecompressorExtension.sol/DecompressorExtension.json +92 -0
- package/artifacts-tron/contracts/decompressor/ExecutorDecoder.sol/ExecutorDecoder.json +10 -0
- package/artifacts-tron/contracts/decompressor/ExecutorDecompressor.sol/ExecutorDecompressor.json +220 -0
- package/artifacts-tron/contracts/interfaces/IExecutor.sol/IExecutor.json +439 -0
- package/artifacts-tron/contracts/interfaces/IExecutorFeeLib.sol/IExecutorFeeLib.json +241 -0
- package/artifacts-tron/contracts/interfaces/ILayerZeroComposer.sol/ILayerZeroComposer.json +44 -0
- package/artifacts-tron/contracts/interfaces/ILayerZeroEndpointV2.sol/ILayerZeroEndpointV2.json +1899 -0
- package/artifacts-tron/contracts/interfaces/ILayerZeroExecutor.sol/ILayerZeroExecutor.json +79 -0
- package/artifacts-tron/contracts/interfaces/ILayerZeroPriceFeed.sol/ILayerZeroPriceFeed.json +222 -0
- package/artifacts-tron/contracts/interfaces/ILayerZeroReceiver.sol/ILayerZeroReceiver.json +121 -0
- package/artifacts-tron/contracts/interfaces/ILayerZeroTreasury.sol/ILayerZeroTreasury.json +79 -0
- package/artifacts-tron/contracts/interfaces/IMessageLib.sol/IMessageLib.json +149 -0
- package/artifacts-tron/contracts/interfaces/IMessageLibManager.sol/IMessageLibManager.json +646 -0
- package/artifacts-tron/contracts/interfaces/IMessagingChannel.sol/IMessagingChannel.json +373 -0
- package/artifacts-tron/contracts/interfaces/IMessagingComposer.sol/IMessagingComposer.json +246 -0
- package/artifacts-tron/contracts/interfaces/IMessagingContext.sol/IMessagingContext.json +42 -0
- package/artifacts-tron/contracts/interfaces/ISendLib.sol/ISendLib.json +364 -0
- package/artifacts-tron/contracts/interfaces/IWorker.sol/IWorker.json +221 -0
- package/artifacts-tron/contracts/libs/AddressCast.sol/AddressCast.json +21 -0
- package/artifacts-tron/contracts/libs/CalldataBytesLib.sol/CalldataBytesLib.json +10 -0
- package/artifacts-tron/contracts/libs/Errors.sol/Errors.json +211 -0
- package/artifacts-tron/contracts/libs/GUID.sol/GUID.json +10 -0
- package/artifacts-tron/contracts/libs/SafeCall.sol/SafeCall.json +10 -0
- package/artifacts-tron/contracts/libs/Transfer.sol/Transfer.json +32 -0
- package/artifacts-tron/contracts/messagelib/BlockedMessageLib.sol/BlockedMessageLib.json +94 -0
- package/artifacts-tron/contracts/messagelib/SimpleMessageLib.sol/SimpleMessageLib.json +591 -0
- package/artifacts-tron/contracts/messagelib/libs/BitMaps.sol/BitMaps.json +10 -0
- package/artifacts-tron/contracts/messagelib/libs/ExecutorOptions.sol/ExecutorOptions.json +26 -0
- package/artifacts-tron/contracts/messagelib/libs/PacketV1Codec.sol/PacketV1Codec.json +10 -0
- package/artifacts-tron/contracts/oapp/OApp.sol/OApp.json +383 -0
- package/artifacts-tron/contracts/oapp/OAppCore.sol/OAppCore.json +200 -0
- package/artifacts-tron/contracts/oapp/OAppReceiver.sol/OAppReceiver.json +367 -0
- package/artifacts-tron/contracts/oapp/OAppSender.sol/OAppSender.json +216 -0
- package/artifacts-tron/contracts/oapp/examples/OmniCounter.sol/OmniCounter.json +925 -0
- package/artifacts-tron/contracts/oapp/examples/OmniCounterAbstract.sol/MsgCodec.json +10 -0
- package/artifacts-tron/contracts/oapp/examples/OmniCounterAbstract.sol/OmniCounterAbstract.json +909 -0
- package/artifacts-tron/contracts/oapp/examples/OmniCounterPreCrime.sol/OmniCounterPreCrime.json +368 -0
- package/artifacts-tron/contracts/oapp/interfaces/IOAppComposer.sol/IOAppComposer.json +44 -0
- package/artifacts-tron/contracts/oapp/interfaces/IOAppCore.sol/IOAppCore.json +148 -0
- package/artifacts-tron/contracts/oapp/interfaces/IOAppMsgInspector.sol/IOAppMsgInspector.json +51 -0
- package/artifacts-tron/contracts/oapp/interfaces/IOAppOptionsType3.sol/IOAppOptionsType3.json +111 -0
- package/artifacts-tron/contracts/oapp/interfaces/IOAppReceiver.sol/IOAppReceiver.json +167 -0
- package/artifacts-tron/contracts/oapp/libs/OAppOptionsType3.sol/OAppOptionsType3.json +187 -0
- package/artifacts-tron/contracts/oapp/libs/OptionsBuilder.sol/OptionsBuilder.json +38 -0
- package/artifacts-tron/contracts/oapp/utils/RateLimiter.sol/RateLimiter.json +104 -0
- package/artifacts-tron/contracts/oft/OFT.sol/OFT.json +1514 -0
- package/artifacts-tron/contracts/oft/OFTAdapter.sol/OFTAdapter.json +1244 -0
- package/artifacts-tron/contracts/oft/OFTCore.sol/OFTCore.json +1244 -0
- package/artifacts-tron/contracts/oft/interfaces/IOFT.sol/IOFT.json +456 -0
- package/artifacts-tron/contracts/oft/libs/OFTComposeMsgCodec.sol/OFTComposeMsgCodec.json +10 -0
- package/artifacts-tron/contracts/oft/libs/OFTMsgCodec.sol/OFTMsgCodec.json +10 -0
- package/artifacts-tron/contracts/precrime/OAppPreCrimeSimulator.sol/OAppPreCrimeSimulator.json +277 -0
- package/artifacts-tron/contracts/precrime/PreCrime.sol/PreCrime.json +352 -0
- package/artifacts-tron/contracts/precrime/extensions/PreCrimeE1.sol/PreCrimeE1.json +352 -0
- package/artifacts-tron/contracts/precrime/interfaces/IOAppPreCrimeSimulator.sol/IOAppPreCrimeSimulator.json +175 -0
- package/artifacts-tron/contracts/precrime/interfaces/IPreCrime.sol/IPreCrime.json +188 -0
- package/artifacts-tron/contracts/precrime/libs/Packet.sol/PacketDecoder.json +10 -0
- package/artifacts-tron/contracts/proxy/TransparentUpgradeableProxy.sol/TransparentUpgradeableProxy.json +160 -0
- package/artifacts-tron/contracts/uln/LzExecutor.sol/IReceiveUlnView.json +35 -0
- package/artifacts-tron/contracts/uln/LzExecutor.sol/LzExecutor.json +515 -0
- package/artifacts-tron/contracts/uln/ReceiveUlnBase.sol/ReceiveUlnBase.json +551 -0
- package/artifacts-tron/contracts/uln/SendUlnBase.sol/SendUlnBase.json +412 -0
- package/artifacts-tron/contracts/uln/UlnBase.sol/UlnBase.json +387 -0
- package/artifacts-tron/contracts/uln/dvn/DVN.sol/DVN.json +1370 -0
- package/artifacts-tron/contracts/uln/dvn/DVNFeeLib.sol/DVNFeeLib.json +311 -0
- package/artifacts-tron/contracts/uln/dvn/MultiSig.sol/MultiSig.json +164 -0
- package/artifacts-tron/contracts/uln/dvn/adapters/CCIP/CCIPDVNAdapter.sol/CCIPDVNAdapter.json +1040 -0
- package/artifacts-tron/contracts/uln/dvn/adapters/CCIP/CCIPDVNAdapterFeeLib.sol/CCIPDVNAdapterFeeLib.json +417 -0
- package/artifacts-tron/contracts/uln/dvn/adapters/DVNAdapterBase.sol/DVNAdapterBase.json +789 -0
- package/artifacts-tron/contracts/uln/dvn/adapters/DVNAdapterBase.sol/IReceiveUln.json +34 -0
- package/artifacts-tron/contracts/uln/dvn/adapters/DVNAdapterBase.sol/ISendLibBase.json +30 -0
- package/artifacts-tron/contracts/uln/dvn/adapters/arbitrum/ArbitrumDVNAdapterL1.sol/ArbitrumDVNAdapterL1.json +936 -0
- package/artifacts-tron/contracts/uln/dvn/adapters/arbitrum/ArbitrumDVNAdapterL2.sol/ArbitrumDVNAdapterL2.json +868 -0
- package/artifacts-tron/contracts/uln/dvn/adapters/axelar/AxelarDVNAdapter.sol/AxelarDVNAdapter.json +1171 -0
- package/artifacts-tron/contracts/uln/dvn/adapters/axelar/AxelarDVNAdapter.sol/ISendLibBase.json +30 -0
- package/artifacts-tron/contracts/uln/dvn/adapters/axelar/AxelarDVNAdapterFeeLib.sol/AxelarDVNAdapterFeeLib.json +574 -0
- package/artifacts-tron/contracts/uln/dvn/adapters/libs/DVNAdapterMessageCodec.sol/DVNAdapterMessageCodec.json +16 -0
- package/artifacts-tron/contracts/uln/dvn/adapters/optimism/OptimismDVNAdapterL1.sol/OptimismDVNAdapterL1.json +924 -0
- package/artifacts-tron/contracts/uln/dvn/adapters/optimism/OptimismDVNAdapterL2.sol/OptimismDVNAdapterL2.json +891 -0
- package/artifacts-tron/contracts/uln/interfaces/IDVN.sol/IDVN.json +370 -0
- package/artifacts-tron/contracts/uln/interfaces/IDVNFeeLib.sol/IDVNFeeLib.json +189 -0
- package/artifacts-tron/contracts/uln/interfaces/ILayerZeroDVN.sol/ILayerZeroDVN.json +96 -0
- package/artifacts-tron/contracts/uln/interfaces/IReceiveUlnE2.sol/IReceiveUlnE2.json +52 -0
- package/artifacts-tron/contracts/uln/interfaces/adapters/IAxelarDVNAdapter.sol/IAxelarDVNAdapter.json +160 -0
- package/artifacts-tron/contracts/uln/interfaces/adapters/IAxelarDVNAdapterFeeLib.sol/IAxelarDVNAdapterFeeLib.json +293 -0
- package/artifacts-tron/contracts/uln/interfaces/adapters/ICCIPDVNAdapter.sol/ICCIPDVNAdapter.json +78 -0
- package/artifacts-tron/contracts/uln/interfaces/adapters/ICCIPDVNAdapterFeeLib.sol/ICCIPDVNAdapterFeeLib.json +301 -0
- package/artifacts-tron/contracts/uln/libs/DVNOptions.sol/DVNOptions.json +27 -0
- package/artifacts-tron/contracts/uln/libs/UlnOptions.sol/UlnOptions.json +54 -0
- package/artifacts-tron/contracts/uln/uln301/AddressSizeConfig.sol/AddressSizeConfig.json +129 -0
- package/artifacts-tron/contracts/uln/uln301/ReceiveLibBaseE1.sol/ILayerZeroReceiveLibrary.json +68 -0
- package/artifacts-tron/contracts/uln/uln301/ReceiveLibBaseE1.sol/ReceiveLibBaseE1.json +416 -0
- package/artifacts-tron/contracts/uln/uln301/ReceiveUln301.sol/ReceiveUln301.json +1000 -0
- package/artifacts-tron/contracts/uln/uln301/ReceiveUln301View.sol/IReceiveUln301.json +178 -0
- package/artifacts-tron/contracts/uln/uln301/ReceiveUln301View.sol/ReceiveUln301View.json +126 -0
- package/artifacts-tron/contracts/uln/uln301/SendLibBaseE1.sol/SendLibBaseE1.json +804 -0
- package/artifacts-tron/contracts/uln/uln301/SendUln301.sol/SendUln301.json +1278 -0
- package/artifacts-tron/contracts/uln/uln301/TreasuryFeeHandler.sol/TreasuryFeeHandler.json +94 -0
- package/artifacts-tron/contracts/uln/uln301/interfaces/IMessageLibE1.sol/IMessageLibE1.json +247 -0
- package/artifacts-tron/contracts/uln/uln301/interfaces/INonceContract.sol/INonceContract.json +40 -0
- package/artifacts-tron/contracts/uln/uln301/interfaces/ITreasuryFeeHandler.sol/ITreasuryFeeHandler.json +44 -0
- package/artifacts-tron/contracts/uln/uln301/interfaces/IUltraLightNode301.sol/IUltraLightNode301.json +29 -0
- package/artifacts-tron/contracts/uln/uln301/mocks/NonceContractMock.sol/NonceContractMock.json +93 -0
- package/artifacts-tron/contracts/uln/uln302/ReceiveUln302.sol/ReceiveUln302.json +757 -0
- package/artifacts-tron/contracts/uln/uln302/ReceiveUln302View.sol/IReceiveUln302.json +146 -0
- package/artifacts-tron/contracts/uln/uln302/ReceiveUln302View.sol/ReceiveUln302View.json +251 -0
- package/artifacts-tron/contracts/uln/uln302/SendUln302.sol/SendUln302.json +1259 -0
- package/artifacts-tron/contracts/upgradeable/WorkerUpgradeable.sol/WorkerUpgradeable.json +592 -0
- package/artifacts-tron/contracts/upgradeable/proxy/ProxyAdmin.sol/ProxyAdmin.json +181 -0
- package/artifacts-tron/contracts/upgradeable/proxy/TransparentUpgradeableProxy.sol/TransparentUpgradeableProxy.json +160 -0
- package/artifacts-zk/contracts/EndpointV2.sol/EndpointV2.json +2364 -0
- package/artifacts-zk/contracts/EndpointV2Alt.sol/EndpointV2Alt.json +2379 -0
- package/artifacts-zk/contracts/EndpointV2View.sol/EndpointV2View.json +210 -0
- package/artifacts-zk/contracts/EndpointV2ViewUpgradeable.sol/EndpointV2ViewUpgradeable.json +197 -0
- package/artifacts-zk/contracts/Executor.sol/Executor.json +1157 -0
- package/artifacts-zk/contracts/ExecutorFeeLib.sol/ExecutorFeeLib.json +353 -0
- package/artifacts-zk/contracts/MessageLibBase.sol/MessageLibBase.json +17 -0
- package/artifacts-zk/contracts/MessageLibManager.sol/MessageLibManager.json +772 -0
- package/artifacts-zk/contracts/MessagingChannel.sol/MessagingChannel.json +427 -0
- package/artifacts-zk/contracts/MessagingComposer.sol/MessagingComposer.json +321 -0
- package/artifacts-zk/contracts/MessagingContext.sol/MessagingContext.json +43 -0
- package/artifacts-zk/contracts/PriceFeed.sol/PriceFeed.json +651 -0
- package/artifacts-zk/contracts/ReceiveLibBaseE2.sol/ReceiveLibBaseE2.json +155 -0
- package/artifacts-zk/contracts/SendLibBase.sol/SendLibBase.json +382 -0
- package/artifacts-zk/contracts/SendLibBaseE2.sol/SendLibBaseE2.json +820 -0
- package/artifacts-zk/contracts/Treasury.sol/Treasury.json +310 -0
- package/artifacts-zk/contracts/Worker.sol/Worker.json +580 -0
- package/artifacts-zk/contracts/interfaces/IExecutor.sol/IExecutor.json +430 -0
- package/artifacts-zk/contracts/interfaces/IExecutorFeeLib.sol/IExecutorFeeLib.json +227 -0
- package/artifacts-zk/contracts/interfaces/ILayerZeroComposer.sol/ILayerZeroComposer.json +45 -0
- package/artifacts-zk/contracts/interfaces/ILayerZeroEndpointV2.sol/ILayerZeroEndpointV2.json +1900 -0
- package/artifacts-zk/contracts/interfaces/ILayerZeroExecutor.sol/ILayerZeroExecutor.json +80 -0
- package/artifacts-zk/contracts/interfaces/ILayerZeroPriceFeed.sol/ILayerZeroPriceFeed.json +223 -0
- package/artifacts-zk/contracts/interfaces/ILayerZeroReceiver.sol/ILayerZeroReceiver.json +122 -0
- package/artifacts-zk/contracts/interfaces/ILayerZeroTreasury.sol/ILayerZeroTreasury.json +80 -0
- package/artifacts-zk/contracts/interfaces/IMessageLib.sol/IMessageLib.json +150 -0
- package/artifacts-zk/contracts/interfaces/IMessageLibManager.sol/IMessageLibManager.json +647 -0
- package/artifacts-zk/contracts/interfaces/IMessagingChannel.sol/IMessagingChannel.json +374 -0
- package/artifacts-zk/contracts/interfaces/IMessagingComposer.sol/IMessagingComposer.json +247 -0
- package/artifacts-zk/contracts/interfaces/IMessagingContext.sol/IMessagingContext.json +43 -0
- package/artifacts-zk/contracts/interfaces/ISendLib.sol/ISendLib.json +365 -0
- package/artifacts-zk/contracts/interfaces/IWorker.sol/IWorker.json +222 -0
- package/artifacts-zk/contracts/libs/AddressCast.sol/AddressCast.json +22 -0
- package/artifacts-zk/contracts/libs/CalldataBytesLib.sol/CalldataBytesLib.json +11 -0
- package/artifacts-zk/contracts/libs/Errors.sol/Errors.json +212 -0
- package/artifacts-zk/contracts/libs/GUID.sol/GUID.json +11 -0
- package/artifacts-zk/contracts/libs/SafeCall.sol/SafeCall.json +11 -0
- package/artifacts-zk/contracts/libs/Transfer.sol/Transfer.json +33 -0
- package/artifacts-zk/contracts/messagelib/BlockedMessageLib.sol/BlockedMessageLib.json +95 -0
- package/artifacts-zk/contracts/messagelib/SimpleMessageLib.sol/SimpleMessageLib.json +592 -0
- package/artifacts-zk/contracts/messagelib/libs/BitMaps.sol/BitMaps.json +11 -0
- package/artifacts-zk/contracts/messagelib/libs/ExecutorOptions.sol/ExecutorOptions.json +27 -0
- package/artifacts-zk/contracts/messagelib/libs/PacketV1Codec.sol/PacketV1Codec.json +11 -0
- package/artifacts-zk/contracts/proxy/TransparentUpgradeableProxy.sol/TransparentUpgradeableProxy.json +161 -0
- package/artifacts-zk/contracts/uln/LzExecutor.sol/IReceiveUlnView.json +36 -0
- package/artifacts-zk/contracts/uln/LzExecutor.sol/LzExecutor.json +516 -0
- package/artifacts-zk/contracts/uln/ReceiveUlnBase.sol/ReceiveUlnBase.json +552 -0
- package/artifacts-zk/contracts/uln/SendUlnBase.sol/SendUlnBase.json +413 -0
- package/artifacts-zk/contracts/uln/UlnBase.sol/UlnBase.json +388 -0
- package/artifacts-zk/contracts/uln/dvn/DVN.sol/DVN.json +1371 -0
- package/artifacts-zk/contracts/uln/dvn/DVNFeeLib.sol/DVNFeeLib.json +312 -0
- package/artifacts-zk/contracts/uln/dvn/MultiSig.sol/MultiSig.json +165 -0
- package/artifacts-zk/contracts/uln/dvn/adapters/CCIP/CCIPDVNAdapter.sol/CCIPDVNAdapter.json +1062 -0
- package/artifacts-zk/contracts/uln/dvn/adapters/CCIP/CCIPDVNAdapterFeeLib.sol/CCIPDVNAdapterFeeLib.json +418 -0
- package/artifacts-zk/contracts/uln/dvn/adapters/DVNAdapterBase.sol/DVNAdapterBase.json +790 -0
- package/artifacts-zk/contracts/uln/dvn/adapters/DVNAdapterBase.sol/IReceiveUln.json +35 -0
- package/artifacts-zk/contracts/uln/dvn/adapters/DVNAdapterBase.sol/ISendLibBase.json +31 -0
- package/artifacts-zk/contracts/uln/dvn/adapters/arbitrum/ArbitrumDVNAdapterL1.sol/ArbitrumDVNAdapterL1.json +937 -0
- package/artifacts-zk/contracts/uln/dvn/adapters/arbitrum/ArbitrumDVNAdapterL2.sol/ArbitrumDVNAdapterL2.json +869 -0
- package/artifacts-zk/contracts/uln/dvn/adapters/axelar/AxelarDVNAdapter.sol/AxelarDVNAdapter.json +1167 -0
- package/artifacts-zk/contracts/uln/dvn/adapters/axelar/AxelarDVNAdapter.sol/ISendLibBase.json +31 -0
- package/artifacts-zk/contracts/uln/dvn/adapters/axelar/AxelarDVNAdapterFeeLib.sol/AxelarDVNAdapterFeeLib.json +575 -0
- package/artifacts-zk/contracts/uln/dvn/adapters/libs/DVNAdapterMessageCodec.sol/DVNAdapterMessageCodec.json +17 -0
- package/artifacts-zk/contracts/uln/dvn/adapters/optimism/OptimismDVNAdapterL1.sol/OptimismDVNAdapterL1.json +925 -0
- package/artifacts-zk/contracts/uln/dvn/adapters/optimism/OptimismDVNAdapterL2.sol/OptimismDVNAdapterL2.json +892 -0
- package/artifacts-zk/contracts/uln/interfaces/IDVN.sol/IDVN.json +371 -0
- package/artifacts-zk/contracts/uln/interfaces/IDVNFeeLib.sol/IDVNFeeLib.json +190 -0
- package/artifacts-zk/contracts/uln/interfaces/ILayerZeroDVN.sol/ILayerZeroDVN.json +97 -0
- package/artifacts-zk/contracts/uln/interfaces/IReceiveUlnE2.sol/IReceiveUlnE2.json +53 -0
- package/artifacts-zk/contracts/uln/interfaces/adapters/IAxelarDVNAdapter.sol/IAxelarDVNAdapter.json +161 -0
- package/artifacts-zk/contracts/uln/interfaces/adapters/IAxelarDVNAdapterFeeLib.sol/IAxelarDVNAdapterFeeLib.json +294 -0
- package/artifacts-zk/contracts/uln/interfaces/adapters/ICCIPDVNAdapter.sol/ICCIPDVNAdapter.json +92 -0
- package/artifacts-zk/contracts/uln/interfaces/adapters/ICCIPDVNAdapterFeeLib.sol/ICCIPDVNAdapterFeeLib.json +302 -0
- package/artifacts-zk/contracts/uln/libs/DVNOptions.sol/DVNOptions.json +28 -0
- package/artifacts-zk/contracts/uln/libs/UlnOptions.sol/UlnOptions.json +55 -0
- package/artifacts-zk/contracts/uln/uln301/AddressSizeConfig.sol/AddressSizeConfig.json +130 -0
- package/artifacts-zk/contracts/uln/uln301/ReceiveLibBaseE1.sol/ILayerZeroReceiveLibrary.json +69 -0
- package/artifacts-zk/contracts/uln/uln301/ReceiveLibBaseE1.sol/ReceiveLibBaseE1.json +417 -0
- package/artifacts-zk/contracts/uln/uln301/ReceiveUln301.sol/ReceiveUln301.json +1001 -0
- package/artifacts-zk/contracts/uln/uln301/ReceiveUln301View.sol/IReceiveUln301.json +179 -0
- package/artifacts-zk/contracts/uln/uln301/ReceiveUln301View.sol/ReceiveUln301View.json +127 -0
- package/artifacts-zk/contracts/uln/uln301/SendLibBaseE1.sol/SendLibBaseE1.json +805 -0
- package/artifacts-zk/contracts/uln/uln301/SendUln301.sol/SendUln301.json +1279 -0
- package/artifacts-zk/contracts/uln/uln301/TreasuryFeeHandler.sol/TreasuryFeeHandler.json +95 -0
- package/artifacts-zk/contracts/uln/uln301/interfaces/IMessageLibE1.sol/IMessageLibE1.json +248 -0
- package/artifacts-zk/contracts/uln/uln301/interfaces/INonceContract.sol/INonceContract.json +41 -0
- package/artifacts-zk/contracts/uln/uln301/interfaces/ITreasuryFeeHandler.sol/ITreasuryFeeHandler.json +45 -0
- package/artifacts-zk/contracts/uln/uln301/interfaces/IUltraLightNode301.sol/IUltraLightNode301.json +30 -0
- package/artifacts-zk/contracts/uln/uln301/mocks/NonceContractMock.sol/NonceContractMock.json +94 -0
- package/artifacts-zk/contracts/uln/uln302/ReceiveUln302.sol/ReceiveUln302.json +758 -0
- package/artifacts-zk/contracts/uln/uln302/ReceiveUln302View.sol/IReceiveUln302.json +147 -0
- package/artifacts-zk/contracts/uln/uln302/ReceiveUln302View.sol/ReceiveUln302View.json +252 -0
- package/artifacts-zk/contracts/uln/uln302/SendUln302.sol/SendUln302.json +1260 -0
- package/artifacts-zk/contracts/upgradeable/WorkerUpgradeable.sol/WorkerUpgradeable.json +593 -0
- package/artifacts-zk/contracts/upgradeable/proxy/ProxyAdmin.sol/ProxyAdmin.json +182 -0
- package/artifacts-zk/contracts/upgradeable/proxy/TransparentUpgradeableProxy.sol/TransparentUpgradeableProxy.json +161 -0
- package/deployments/arbitrum-sandbox-local/DVN.json +10 -10
- package/deployments/arbitrum-sandbox-local/DVNDecompressor.json +7 -7
- package/deployments/arbitrum-sandbox-local/DVNFeeLib.json +7 -7
- package/deployments/arbitrum-sandbox-local/PriceFeed.json +16 -16
- package/deployments/arbitrum-sandbox-local/PriceFeedProxyAdmin.json +10 -10
- package/deployments/arbitrum-sandbox-local/PriceFeed_Implementation.json +4 -4
- package/deployments/arbitrum-sandbox-local/PriceFeed_Proxy.json +16 -16
- package/deployments/bsc-sandbox-local/DVN.json +16 -16
- package/deployments/bsc-sandbox-local/DVNDecompressor.json +7 -7
- package/deployments/bsc-sandbox-local/DVNFeeLib.json +7 -7
- package/deployments/bsc-sandbox-local/DefaultProxyAdmin.json +7 -7
- package/deployments/bsc-sandbox-local/EndpointV2.json +13 -13
- package/deployments/bsc-sandbox-local/EndpointV2View.json +13 -13
- package/deployments/bsc-sandbox-local/EndpointV2View_Implementation.json +4 -4
- package/deployments/bsc-sandbox-local/EndpointV2View_Proxy.json +13 -13
- package/deployments/bsc-sandbox-local/Executor.json +43 -43
- package/deployments/bsc-sandbox-local/ExecutorDecompressor.json +7 -7
- package/deployments/bsc-sandbox-local/ExecutorFeeLib.json +7 -7
- package/deployments/bsc-sandbox-local/ExecutorProxyAdmin.json +10 -10
- package/deployments/bsc-sandbox-local/Executor_Implementation.json +4 -4
- package/deployments/bsc-sandbox-local/Executor_Proxy.json +43 -43
- package/deployments/bsc-sandbox-local/LzExecutor.json +16 -16
- package/deployments/bsc-sandbox-local/LzExecutor_Implementation.json +4 -4
- package/deployments/bsc-sandbox-local/LzExecutor_Proxy.json +16 -16
- package/deployments/bsc-sandbox-local/NonceContractMock.json +4 -4
- package/deployments/bsc-sandbox-local/PriceFeed.json +16 -16
- package/deployments/bsc-sandbox-local/PriceFeedProxyAdmin.json +10 -10
- package/deployments/bsc-sandbox-local/PriceFeed_Implementation.json +4 -4
- package/deployments/bsc-sandbox-local/PriceFeed_Proxy.json +16 -16
- package/deployments/bsc-sandbox-local/ReceiveUln301.json +7 -7
- package/deployments/bsc-sandbox-local/ReceiveUln301View.json +13 -13
- package/deployments/bsc-sandbox-local/ReceiveUln301View_Implementation.json +4 -4
- package/deployments/bsc-sandbox-local/ReceiveUln301View_Proxy.json +13 -13
- package/deployments/bsc-sandbox-local/ReceiveUln302.json +7 -7
- package/deployments/bsc-sandbox-local/ReceiveUln302View.json +13 -13
- package/deployments/bsc-sandbox-local/ReceiveUln302View_Implementation.json +4 -4
- package/deployments/bsc-sandbox-local/ReceiveUln302View_Proxy.json +13 -13
- package/deployments/bsc-sandbox-local/SendUln301.json +7 -7
- package/deployments/bsc-sandbox-local/SendUln302.json +7 -7
- package/deployments/bsc-sandbox-local/SimpleMessageLib.json +7 -7
- package/deployments/bsc-sandbox-local/Treasury.json +7 -7
- package/deployments/bsc-sandbox-local/TreasuryFeeHandler.json +4 -4
- package/deployments/cyber-mainnet/DVN.json +1914 -0
- package/deployments/cyber-mainnet/DVNFeeLib.json +399 -0
- package/deployments/cyber-mainnet/DefaultProxyAdmin.json +259 -0
- package/deployments/cyber-mainnet/EndpointV2.json +2989 -0
- package/deployments/cyber-mainnet/EndpointV2View.json +436 -0
- package/deployments/cyber-mainnet/EndpointV2View_Implementation.json +314 -0
- package/deployments/cyber-mainnet/EndpointV2View_Proxy.json +231 -0
- package/deployments/cyber-mainnet/Executor.json +1621 -0
- package/deployments/cyber-mainnet/ExecutorFeeLib.json +439 -0
- package/deployments/cyber-mainnet/ExecutorProxyAdmin.json +284 -0
- package/deployments/cyber-mainnet/Executor_Implementation.json +1720 -0
- package/deployments/cyber-mainnet/Executor_Proxy.json +336 -0
- package/deployments/cyber-mainnet/LzExecutor.json +758 -0
- package/deployments/cyber-mainnet/LzExecutor_Implementation.json +704 -0
- package/deployments/cyber-mainnet/LzExecutor_Proxy.json +245 -0
- package/deployments/cyber-mainnet/PriceFeed.json +935 -0
- package/deployments/cyber-mainnet/PriceFeedProxyAdmin.json +284 -0
- package/deployments/cyber-mainnet/PriceFeed_Implementation.json +977 -0
- package/deployments/cyber-mainnet/PriceFeed_Proxy.json +245 -0
- package/deployments/cyber-mainnet/ReceiveUln301.json +1293 -0
- package/deployments/cyber-mainnet/ReceiveUln301View.json +355 -0
- package/deployments/cyber-mainnet/ReceiveUln301View_Implementation.json +232 -0
- package/deployments/cyber-mainnet/ReceiveUln301View_Proxy.json +231 -0
- package/deployments/cyber-mainnet/ReceiveUln302.json +1007 -0
- package/deployments/cyber-mainnet/ReceiveUln302View.json +479 -0
- package/deployments/cyber-mainnet/ReceiveUln302View_Implementation.json +385 -0
- package/deployments/cyber-mainnet/ReceiveUln302View_Proxy.json +231 -0
- package/deployments/cyber-mainnet/SendUln301.json +1570 -0
- package/deployments/cyber-mainnet/SendUln302.json +1528 -0
- package/deployments/cyber-mainnet/Treasury.json +413 -0
- package/deployments/cyber-mainnet/TreasuryFeeHandler.json +126 -0
- package/deployments/ethereum-sandbox-local/DVN.json +16 -16
- package/deployments/ethereum-sandbox-local/DVNDecompressor.json +7 -7
- package/deployments/ethereum-sandbox-local/DVNFeeLib.json +7 -7
- package/deployments/ethereum-sandbox-local/DefaultProxyAdmin.json +7 -7
- package/deployments/ethereum-sandbox-local/EndpointV2.json +13 -13
- package/deployments/ethereum-sandbox-local/EndpointV2View.json +13 -13
- package/deployments/ethereum-sandbox-local/EndpointV2View_Implementation.json +4 -4
- package/deployments/ethereum-sandbox-local/EndpointV2View_Proxy.json +13 -13
- package/deployments/ethereum-sandbox-local/Executor.json +43 -43
- package/deployments/ethereum-sandbox-local/ExecutorDecompressor.json +7 -7
- package/deployments/ethereum-sandbox-local/ExecutorFeeLib.json +7 -7
- package/deployments/ethereum-sandbox-local/ExecutorProxyAdmin.json +10 -10
- package/deployments/ethereum-sandbox-local/Executor_Implementation.json +4 -4
- package/deployments/ethereum-sandbox-local/Executor_Proxy.json +43 -43
- package/deployments/ethereum-sandbox-local/LzExecutor.json +16 -16
- package/deployments/ethereum-sandbox-local/LzExecutor_Implementation.json +4 -4
- package/deployments/ethereum-sandbox-local/LzExecutor_Proxy.json +16 -16
- package/deployments/ethereum-sandbox-local/NonceContractMock.json +4 -4
- package/deployments/ethereum-sandbox-local/PriceFeed.json +16 -16
- package/deployments/ethereum-sandbox-local/PriceFeedProxyAdmin.json +10 -10
- package/deployments/ethereum-sandbox-local/PriceFeed_Implementation.json +4 -4
- package/deployments/ethereum-sandbox-local/PriceFeed_Proxy.json +16 -16
- package/deployments/ethereum-sandbox-local/ReceiveUln301.json +7 -7
- package/deployments/ethereum-sandbox-local/ReceiveUln301View.json +13 -13
- package/deployments/ethereum-sandbox-local/ReceiveUln301View_Implementation.json +4 -4
- package/deployments/ethereum-sandbox-local/ReceiveUln301View_Proxy.json +13 -13
- package/deployments/ethereum-sandbox-local/ReceiveUln302.json +7 -7
- package/deployments/ethereum-sandbox-local/ReceiveUln302View.json +13 -13
- package/deployments/ethereum-sandbox-local/ReceiveUln302View_Implementation.json +4 -4
- package/deployments/ethereum-sandbox-local/ReceiveUln302View_Proxy.json +13 -13
- package/deployments/ethereum-sandbox-local/SendUln301.json +7 -7
- package/deployments/ethereum-sandbox-local/SendUln302.json +7 -7
- package/deployments/ethereum-sandbox-local/SimpleMessageLib.json +7 -7
- package/deployments/ethereum-sandbox-local/Treasury.json +7 -7
- package/deployments/ethereum-sandbox-local/TreasuryFeeHandler.json +4 -4
- package/deployments/iota-mainnet/DVN.json +1914 -0
- package/deployments/iota-mainnet/DVNFeeLib.json +399 -0
- package/deployments/iota-mainnet/DefaultProxyAdmin.json +259 -0
- package/deployments/iota-mainnet/EndpointV2.json +2989 -0
- package/deployments/iota-mainnet/EndpointV2View.json +436 -0
- package/deployments/iota-mainnet/EndpointV2View_Implementation.json +314 -0
- package/deployments/iota-mainnet/EndpointV2View_Proxy.json +231 -0
- package/deployments/iota-mainnet/Executor.json +1621 -0
- package/deployments/iota-mainnet/ExecutorFeeLib.json +439 -0
- package/deployments/iota-mainnet/ExecutorProxyAdmin.json +284 -0
- package/deployments/iota-mainnet/Executor_Implementation.json +1720 -0
- package/deployments/iota-mainnet/Executor_Proxy.json +336 -0
- package/deployments/iota-mainnet/LzExecutor.json +758 -0
- package/deployments/iota-mainnet/LzExecutor_Implementation.json +704 -0
- package/deployments/iota-mainnet/LzExecutor_Proxy.json +245 -0
- package/deployments/iota-mainnet/PriceFeed.json +935 -0
- package/deployments/iota-mainnet/PriceFeedProxyAdmin.json +284 -0
- package/deployments/iota-mainnet/PriceFeed_Implementation.json +977 -0
- package/deployments/iota-mainnet/PriceFeed_Proxy.json +245 -0
- package/deployments/iota-mainnet/ReceiveUln301.json +1293 -0
- package/deployments/iota-mainnet/ReceiveUln301View.json +355 -0
- package/deployments/iota-mainnet/ReceiveUln301View_Implementation.json +232 -0
- package/deployments/iota-mainnet/ReceiveUln301View_Proxy.json +231 -0
- package/deployments/iota-mainnet/ReceiveUln302.json +1007 -0
- package/deployments/iota-mainnet/ReceiveUln302View.json +479 -0
- package/deployments/iota-mainnet/ReceiveUln302View_Implementation.json +385 -0
- package/deployments/iota-mainnet/ReceiveUln302View_Proxy.json +231 -0
- package/deployments/iota-mainnet/SendUln301.json +1570 -0
- package/deployments/iota-mainnet/SendUln302.json +1528 -0
- package/deployments/iota-mainnet/Treasury.json +413 -0
- package/deployments/iota-mainnet/TreasuryFeeHandler.json +126 -0
- package/deployments/polygon-sandbox-local/DVN.json +5 -5
- package/deployments/polygon-sandbox-local/DVNDecompressor.json +2 -2
- package/deployments/polygon-sandbox-local/DVNFeeLib.json +2 -2
- package/deployments/polygon-sandbox-local/DefaultProxyAdmin.json +2 -2
- package/deployments/polygon-sandbox-local/EndpointV2.json +4 -4
- package/deployments/polygon-sandbox-local/EndpointV2View.json +4 -4
- package/deployments/polygon-sandbox-local/EndpointV2View_Implementation.json +1 -1
- package/deployments/polygon-sandbox-local/EndpointV2View_Proxy.json +4 -4
- package/deployments/polygon-sandbox-local/Executor.json +14 -14
- package/deployments/polygon-sandbox-local/ExecutorDecompressor.json +2 -2
- package/deployments/polygon-sandbox-local/ExecutorFeeLib.json +2 -2
- package/deployments/polygon-sandbox-local/ExecutorProxyAdmin.json +3 -3
- package/deployments/polygon-sandbox-local/Executor_Implementation.json +1 -1
- package/deployments/polygon-sandbox-local/Executor_Proxy.json +14 -14
- package/deployments/polygon-sandbox-local/LzExecutor.json +5 -5
- package/deployments/polygon-sandbox-local/LzExecutor_Implementation.json +1 -1
- package/deployments/polygon-sandbox-local/LzExecutor_Proxy.json +5 -5
- package/deployments/polygon-sandbox-local/NonceContractMock.json +1 -1
- package/deployments/polygon-sandbox-local/PriceFeed.json +5 -5
- package/deployments/polygon-sandbox-local/PriceFeedProxyAdmin.json +3 -3
- package/deployments/polygon-sandbox-local/PriceFeed_Implementation.json +1 -1
- package/deployments/polygon-sandbox-local/PriceFeed_Proxy.json +5 -5
- package/deployments/polygon-sandbox-local/ReceiveUln301.json +2 -2
- package/deployments/polygon-sandbox-local/ReceiveUln301View.json +4 -4
- package/deployments/polygon-sandbox-local/ReceiveUln301View_Implementation.json +1 -1
- package/deployments/polygon-sandbox-local/ReceiveUln301View_Proxy.json +4 -4
- package/deployments/polygon-sandbox-local/ReceiveUln302.json +2 -2
- package/deployments/polygon-sandbox-local/ReceiveUln302View.json +4 -4
- package/deployments/polygon-sandbox-local/ReceiveUln302View_Implementation.json +1 -1
- package/deployments/polygon-sandbox-local/ReceiveUln302View_Proxy.json +4 -4
- package/deployments/polygon-sandbox-local/SendUln301.json +2 -2
- package/deployments/polygon-sandbox-local/SendUln302.json +2 -2
- package/deployments/polygon-sandbox-local/SimpleMessageLib.json +2 -2
- package/deployments/polygon-sandbox-local/Treasury.json +2 -2
- package/deployments/polygon-sandbox-local/TreasuryFeeHandler.json +1 -1
- package/deployments/tron-sandbox-local/DVN.json +17 -17
- package/deployments/tron-sandbox-local/DVNDecompressor.json +12 -12
- package/deployments/tron-sandbox-local/DVNFeeLib.json +10 -10
- package/deployments/tron-sandbox-local/PriceFeed.json +27 -27
- package/deployments/tron-sandbox-local/PriceFeedProxyAdmin.json +14 -14
- package/deployments/tron-sandbox-local/PriceFeed_Implementation.json +6 -6
- package/deployments/tron-sandbox-local/PriceFeed_Proxy.json +26 -26
- package/deployments/zksyncsep-testnet/EndpointV2View.json +3 -9
- package/deployments/zksyncsep-testnet/EndpointV2View_Implementation.json +41 -41
- package/deployments/zksyncsep-testnet/PriceFeed.json +52 -14
- package/deployments/zksyncsep-testnet/PriceFeed_Implementation.json +133 -69
- package/package.json +11 -9
|
@@ -0,0 +1,178 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_format": "hh-sol-artifact-1",
|
|
3
|
+
"contractName": "IReceiveUln301",
|
|
4
|
+
"sourceName": "contracts/uln/uln301/ReceiveUln301View.sol",
|
|
5
|
+
"abi": [
|
|
6
|
+
{
|
|
7
|
+
"inputs": [
|
|
8
|
+
{
|
|
9
|
+
"internalType": "uint32",
|
|
10
|
+
"name": "_dstEid",
|
|
11
|
+
"type": "uint32"
|
|
12
|
+
}
|
|
13
|
+
],
|
|
14
|
+
"name": "addressSizes",
|
|
15
|
+
"outputs": [
|
|
16
|
+
{
|
|
17
|
+
"internalType": "uint256",
|
|
18
|
+
"name": "",
|
|
19
|
+
"type": "uint256"
|
|
20
|
+
}
|
|
21
|
+
],
|
|
22
|
+
"stateMutability": "view",
|
|
23
|
+
"type": "function"
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"inputs": [
|
|
27
|
+
{
|
|
28
|
+
"internalType": "bytes",
|
|
29
|
+
"name": "_packetHeader",
|
|
30
|
+
"type": "bytes"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"internalType": "uint32",
|
|
34
|
+
"name": "_localEid",
|
|
35
|
+
"type": "uint32"
|
|
36
|
+
}
|
|
37
|
+
],
|
|
38
|
+
"name": "assertHeader",
|
|
39
|
+
"outputs": [],
|
|
40
|
+
"stateMutability": "pure",
|
|
41
|
+
"type": "function"
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"inputs": [],
|
|
45
|
+
"name": "endpoint",
|
|
46
|
+
"outputs": [
|
|
47
|
+
{
|
|
48
|
+
"internalType": "address",
|
|
49
|
+
"name": "",
|
|
50
|
+
"type": "address"
|
|
51
|
+
}
|
|
52
|
+
],
|
|
53
|
+
"stateMutability": "view",
|
|
54
|
+
"type": "function"
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"inputs": [
|
|
58
|
+
{
|
|
59
|
+
"internalType": "address",
|
|
60
|
+
"name": "_oapp",
|
|
61
|
+
"type": "address"
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"internalType": "uint32",
|
|
65
|
+
"name": "_remoteEid",
|
|
66
|
+
"type": "uint32"
|
|
67
|
+
}
|
|
68
|
+
],
|
|
69
|
+
"name": "getUlnConfig",
|
|
70
|
+
"outputs": [
|
|
71
|
+
{
|
|
72
|
+
"components": [
|
|
73
|
+
{
|
|
74
|
+
"internalType": "uint64",
|
|
75
|
+
"name": "confirmations",
|
|
76
|
+
"type": "uint64"
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"internalType": "uint8",
|
|
80
|
+
"name": "requiredDVNCount",
|
|
81
|
+
"type": "uint8"
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"internalType": "uint8",
|
|
85
|
+
"name": "optionalDVNCount",
|
|
86
|
+
"type": "uint8"
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
"internalType": "uint8",
|
|
90
|
+
"name": "optionalDVNThreshold",
|
|
91
|
+
"type": "uint8"
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"internalType": "address[]",
|
|
95
|
+
"name": "requiredDVNs",
|
|
96
|
+
"type": "address[]"
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
"internalType": "address[]",
|
|
100
|
+
"name": "optionalDVNs",
|
|
101
|
+
"type": "address[]"
|
|
102
|
+
}
|
|
103
|
+
],
|
|
104
|
+
"internalType": "struct UlnConfig",
|
|
105
|
+
"name": "rtnConfig",
|
|
106
|
+
"type": "tuple"
|
|
107
|
+
}
|
|
108
|
+
],
|
|
109
|
+
"stateMutability": "view",
|
|
110
|
+
"type": "function"
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
"inputs": [
|
|
114
|
+
{
|
|
115
|
+
"components": [
|
|
116
|
+
{
|
|
117
|
+
"internalType": "uint64",
|
|
118
|
+
"name": "confirmations",
|
|
119
|
+
"type": "uint64"
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
"internalType": "uint8",
|
|
123
|
+
"name": "requiredDVNCount",
|
|
124
|
+
"type": "uint8"
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
"internalType": "uint8",
|
|
128
|
+
"name": "optionalDVNCount",
|
|
129
|
+
"type": "uint8"
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
"internalType": "uint8",
|
|
133
|
+
"name": "optionalDVNThreshold",
|
|
134
|
+
"type": "uint8"
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
"internalType": "address[]",
|
|
138
|
+
"name": "requiredDVNs",
|
|
139
|
+
"type": "address[]"
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
"internalType": "address[]",
|
|
143
|
+
"name": "optionalDVNs",
|
|
144
|
+
"type": "address[]"
|
|
145
|
+
}
|
|
146
|
+
],
|
|
147
|
+
"internalType": "struct UlnConfig",
|
|
148
|
+
"name": "_config",
|
|
149
|
+
"type": "tuple"
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
"internalType": "bytes32",
|
|
153
|
+
"name": "_headerHash",
|
|
154
|
+
"type": "bytes32"
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
"internalType": "bytes32",
|
|
158
|
+
"name": "_payloadHash",
|
|
159
|
+
"type": "bytes32"
|
|
160
|
+
}
|
|
161
|
+
],
|
|
162
|
+
"name": "verifiable",
|
|
163
|
+
"outputs": [
|
|
164
|
+
{
|
|
165
|
+
"internalType": "bool",
|
|
166
|
+
"name": "",
|
|
167
|
+
"type": "bool"
|
|
168
|
+
}
|
|
169
|
+
],
|
|
170
|
+
"stateMutability": "view",
|
|
171
|
+
"type": "function"
|
|
172
|
+
}
|
|
173
|
+
],
|
|
174
|
+
"bytecode": "0x",
|
|
175
|
+
"deployedBytecode": "0x",
|
|
176
|
+
"linkReferences": {},
|
|
177
|
+
"deployedLinkReferences": {}
|
|
178
|
+
}
|
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_format": "hh-sol-artifact-1",
|
|
3
|
+
"contractName": "ReceiveUln301View",
|
|
4
|
+
"sourceName": "contracts/uln/uln301/ReceiveUln301View.sol",
|
|
5
|
+
"abi": [
|
|
6
|
+
{
|
|
7
|
+
"inputs": [],
|
|
8
|
+
"name": "AddressCast_InvalidSizeForAddress",
|
|
9
|
+
"type": "error"
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
"anonymous": false,
|
|
13
|
+
"inputs": [
|
|
14
|
+
{
|
|
15
|
+
"indexed": false,
|
|
16
|
+
"internalType": "uint8",
|
|
17
|
+
"name": "version",
|
|
18
|
+
"type": "uint8"
|
|
19
|
+
}
|
|
20
|
+
],
|
|
21
|
+
"name": "Initialized",
|
|
22
|
+
"type": "event"
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"inputs": [],
|
|
26
|
+
"name": "endpoint",
|
|
27
|
+
"outputs": [
|
|
28
|
+
{
|
|
29
|
+
"internalType": "contract ILayerZeroEndpoint",
|
|
30
|
+
"name": "",
|
|
31
|
+
"type": "address"
|
|
32
|
+
}
|
|
33
|
+
],
|
|
34
|
+
"stateMutability": "view",
|
|
35
|
+
"type": "function"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"inputs": [
|
|
39
|
+
{
|
|
40
|
+
"internalType": "bytes",
|
|
41
|
+
"name": "_packetHeader",
|
|
42
|
+
"type": "bytes"
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"internalType": "bytes32",
|
|
46
|
+
"name": "_payloadHash",
|
|
47
|
+
"type": "bytes32"
|
|
48
|
+
}
|
|
49
|
+
],
|
|
50
|
+
"name": "executable",
|
|
51
|
+
"outputs": [
|
|
52
|
+
{
|
|
53
|
+
"internalType": "enum ExecutionState",
|
|
54
|
+
"name": "",
|
|
55
|
+
"type": "uint8"
|
|
56
|
+
}
|
|
57
|
+
],
|
|
58
|
+
"stateMutability": "view",
|
|
59
|
+
"type": "function"
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
"inputs": [
|
|
63
|
+
{
|
|
64
|
+
"internalType": "address",
|
|
65
|
+
"name": "_endpoint",
|
|
66
|
+
"type": "address"
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"internalType": "uint32",
|
|
70
|
+
"name": "_localEid",
|
|
71
|
+
"type": "uint32"
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"internalType": "address",
|
|
75
|
+
"name": "_receiveUln301",
|
|
76
|
+
"type": "address"
|
|
77
|
+
}
|
|
78
|
+
],
|
|
79
|
+
"name": "initialize",
|
|
80
|
+
"outputs": [],
|
|
81
|
+
"stateMutability": "nonpayable",
|
|
82
|
+
"type": "function"
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"inputs": [],
|
|
86
|
+
"name": "receiveUln301",
|
|
87
|
+
"outputs": [
|
|
88
|
+
{
|
|
89
|
+
"internalType": "contract IReceiveUln301",
|
|
90
|
+
"name": "",
|
|
91
|
+
"type": "address"
|
|
92
|
+
}
|
|
93
|
+
],
|
|
94
|
+
"stateMutability": "view",
|
|
95
|
+
"type": "function"
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
"inputs": [
|
|
99
|
+
{
|
|
100
|
+
"internalType": "bytes",
|
|
101
|
+
"name": "_packetHeader",
|
|
102
|
+
"type": "bytes"
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
"internalType": "bytes32",
|
|
106
|
+
"name": "_payloadHash",
|
|
107
|
+
"type": "bytes32"
|
|
108
|
+
}
|
|
109
|
+
],
|
|
110
|
+
"name": "verifiable",
|
|
111
|
+
"outputs": [
|
|
112
|
+
{
|
|
113
|
+
"internalType": "enum VerificationState",
|
|
114
|
+
"name": "",
|
|
115
|
+
"type": "uint8"
|
|
116
|
+
}
|
|
117
|
+
],
|
|
118
|
+
"stateMutability": "view",
|
|
119
|
+
"type": "function"
|
|
120
|
+
}
|
|
121
|
+
],
|
|
122
|
+
"bytecode": "0x608060405234801561001057600080fd5b50d3801561001d57600080fd5b50d2801561002a57600080fd5b506111778061003a6000396000f3fe608060405234801561001057600080fd5b50d3801561001d57600080fd5b50d2801561002a57600080fd5b50600436106100815760003560e01c80637401fccc1161006a5780637401fccc146100fa578063c1554a4b1461011a578063c2803b2c1461012f57600080fd5b806327d12cd9146100865780635e280f11146100af575b600080fd5b610099610094366004610a27565b61014f565b6040516100a69190610ace565b60405180910390f35b6000546100d59062010000900473ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016100a6565b61010d610108366004610a27565b610186565b6040516100a69190610ae8565b61012d610128366004610b22565b610593565b005b6001546100d59073ffffffffffffffffffffffffffffffffffffffff1681565b60008061015d858585610186565b600381111561016e5761016e610a9f565b0361017b5750600061017f565b5060025b9392505050565b6001546040517fc40ff83500000000000000000000000000000000000000000000000000000000815260009173ffffffffffffffffffffffffffffffffffffffff81169163c40ff8359161020091889188917401000000000000000000000000000000000000000090910463ffffffff1690600401610b94565b60006040518083038186803b15801561021857600080fd5b505afa15801561022c573d6000803e3d6000fd5b50505050600061023c8585610864565b9050600061025861024d878761087f565b63ffffffff166108a2565b90506000610266878761093a565b6001546040517f0f8355c000000000000000000000000000000000000000000000000000000000815261ffff851660048201529192506000916103149173ffffffffffffffffffffffffffffffffffffffff1690630f8355c090602401602060405180830381865afa1580156102e0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103049190610bf1565b61030e8a8a61095d565b90610976565b84604051602001610326929190610c2e565b604080518083037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0018152908290526000547ffdc07c7000000000000000000000000000000000000000000000000000000000835290925062010000900473ffffffffffffffffffffffffffffffffffffffff169063fdc07c70906103b19086908590600401610c78565b602060405180830381865afa1580156103ce573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103f29190610cf1565b67ffffffffffffffff168267ffffffffffffffff161161041957600394505050505061017f565b6001546040517f43ea4fa900000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff868116600483015261ffff861660248301529091169063e084d9529082906343ea4fa990604401600060405180830381865afa15801561049b573d6000803e3d6000fd5b505050506040513d6000823e601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682016040526104e19190810190610e4d565b8a8a6040516104f1929190610f22565b6040519081900381207fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16825261053292918b90600401610f83565b602060405180830381865afa15801561054f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610573919061102b565b1561058557600294505050505061017f565b506000979650505050505050565b60006105bd7fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61035490565b905073ffffffffffffffffffffffffffffffffffffffff81166106165773ffffffffffffffffffffffffffffffffffffffff7fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d610355610638565b3373ffffffffffffffffffffffffffffffffffffffff82161461063857600080fd5b600054610100900460ff16158080156106585750600054600160ff909116105b806106725750303b158015610672575060005460ff166001145b610703576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a656400000000000000000000000000000000000060648201526084015b60405180910390fd5b600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055801561076157600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff166101001790555b600180546000805473ffffffffffffffffffffffffffffffffffffffff89811662010000027fffffffffffffffffffff0000000000000000000000000000000000000000ffff9092169190911790915563ffffffff871674010000000000000000000000000000000000000000027fffffffffffffffff00000000000000000000000000000000000000000000000090921690861617179055801561085d57600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b5050505050565b60006108766108738484610a17565b90565b90505b92915050565b600061088f600d6009848661104d565b61089891611077565b60e01c9392505050565b600061ffff821115610936576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f53616665436173743a2076616c756520646f65736e27742066697420696e203160448201527f362062697473000000000000000000000000000000000000000000000000000060648201526084016106fa565b5090565b600061094a60096001848661104d565b610953916110bf565b60c01c9392505050565b600061096d602d600d848661104d565b61087691611105565b60608115806109855750602082115b156109bc576040517f18456c9b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8167ffffffffffffffff8111156109d5576109d5610d0c565b6040519080825280601f01601f1916602001820160405280156109ff576020820181803683370190505b506008909202610100039290921b6020820152919050565b600061096d60516031848661104d565b600080600060408486031215610a3c57600080fd5b833567ffffffffffffffff80821115610a5457600080fd5b818601915086601f830112610a6857600080fd5b813581811115610a7757600080fd5b876020828501011115610a8957600080fd5b6020928301989097509590910135949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6020810160038310610ae257610ae2610a9f565b91905290565b6020810160048310610ae257610ae2610a9f565b74ffffffffffffffffffffffffffffffffffffffffff81168114610b1f57600080fd5b50565b600080600060608486031215610b3757600080fd5b8335610b4281610afc565b73ffffffffffffffffffffffffffffffffffffffff908116935060208501359063ffffffff82168214610b7457600080fd5b909250604085013590610b8682610afc565b808216925050509250925092565b6040815282604082015282846060830137600060608483010152600060607fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f860116830101905063ffffffff83166020830152949350505050565b600060208284031215610c0357600080fd5b5051919050565b60005b83811015610c25578181015183820152602001610c0d565b50506000910152565b60008351610c40818460208801610c0a565b60609390931b7fffffffffffffffffffffffffffffffffffffffff000000000000000000000000169190920190815260140192915050565b61ffff831681526040602082015260008251806040840152610ca1816060850160208701610c0a565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016919091016060019392505050565b805167ffffffffffffffff81168114610cec57600080fd5b919050565b600060208284031215610d0357600080fd5b61087682610cd4565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405160c0810167ffffffffffffffff81118282101715610d5e57610d5e610d0c565b60405290565b805160ff81168114610cec57600080fd5b600082601f830112610d8657600080fd5b8151602067ffffffffffffffff80831115610da357610da3610d0c565b8260051b6040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0603f83011681018181108482111715610de657610de6610d0c565b604052938452858101830193838101925087851115610e0457600080fd5b83870191505b84821015610e42578151610e1d81610afc565b73ffffffffffffffffffffffffffffffffffffffff1683529183019190830190610e0a565b979650505050505050565b600060208284031215610e5f57600080fd5b815167ffffffffffffffff80821115610e7757600080fd5b9083019060c08286031215610e8b57600080fd5b610e93610d3b565b610e9c83610cd4565b8152610eaa60208401610d64565b6020820152610ebb60408401610d64565b6040820152610ecc60608401610d64565b6060820152608083015182811115610ee357600080fd5b610eef87828601610d75565b60808301525060a083015182811115610f0757600080fd5b610f1387828601610d75565b60a08301525095945050505050565b8183823760009101908152919050565b600081518084526020808501945080840160005b83811015610f7857815173ffffffffffffffffffffffffffffffffffffffff1687529582019590820190600101610f46565b509495945050505050565b6060815267ffffffffffffffff845116606082015260ff602085015116608082015260ff60408501511660a082015260ff60608501511660c08201526000608085015160c060e0840152610fdb610120840182610f32565b905060a08601517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffa0848303016101008501526110178282610f32565b602085019690965250505060400152919050565b60006020828403121561103d57600080fd5b8151801515811461017f57600080fd5b6000808585111561105d57600080fd5b8386111561106a57600080fd5b5050820193919092039150565b7fffffffff0000000000000000000000000000000000000000000000000000000081358181169160048510156110b75780818660040360031b1b83161692505b505092915050565b7fffffffffffffffff00000000000000000000000000000000000000000000000081358181169160088510156110b75760089490940360031b84901b1690921692915050565b80356020831015610879577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff602084900360031b1b169291505056fea26474726f6e582212204a093d60db5dc229dbb312840979e048da49efcf76ed4c6bf03be9c56a7c823564736f6c63430008140033",
|
|
123
|
+
"deployedBytecode": "0x608060405234801561001057600080fd5b50d3801561001d57600080fd5b50d2801561002a57600080fd5b50600436106100815760003560e01c80637401fccc1161006a5780637401fccc146100fa578063c1554a4b1461011a578063c2803b2c1461012f57600080fd5b806327d12cd9146100865780635e280f11146100af575b600080fd5b610099610094366004610a27565b61014f565b6040516100a69190610ace565b60405180910390f35b6000546100d59062010000900473ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016100a6565b61010d610108366004610a27565b610186565b6040516100a69190610ae8565b61012d610128366004610b22565b610593565b005b6001546100d59073ffffffffffffffffffffffffffffffffffffffff1681565b60008061015d858585610186565b600381111561016e5761016e610a9f565b0361017b5750600061017f565b5060025b9392505050565b6001546040517fc40ff83500000000000000000000000000000000000000000000000000000000815260009173ffffffffffffffffffffffffffffffffffffffff81169163c40ff8359161020091889188917401000000000000000000000000000000000000000090910463ffffffff1690600401610b94565b60006040518083038186803b15801561021857600080fd5b505afa15801561022c573d6000803e3d6000fd5b50505050600061023c8585610864565b9050600061025861024d878761087f565b63ffffffff166108a2565b90506000610266878761093a565b6001546040517f0f8355c000000000000000000000000000000000000000000000000000000000815261ffff851660048201529192506000916103149173ffffffffffffffffffffffffffffffffffffffff1690630f8355c090602401602060405180830381865afa1580156102e0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103049190610bf1565b61030e8a8a61095d565b90610976565b84604051602001610326929190610c2e565b604080518083037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0018152908290526000547ffdc07c7000000000000000000000000000000000000000000000000000000000835290925062010000900473ffffffffffffffffffffffffffffffffffffffff169063fdc07c70906103b19086908590600401610c78565b602060405180830381865afa1580156103ce573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103f29190610cf1565b67ffffffffffffffff168267ffffffffffffffff161161041957600394505050505061017f565b6001546040517f43ea4fa900000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff868116600483015261ffff861660248301529091169063e084d9529082906343ea4fa990604401600060405180830381865afa15801561049b573d6000803e3d6000fd5b505050506040513d6000823e601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682016040526104e19190810190610e4d565b8a8a6040516104f1929190610f22565b6040519081900381207fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16825261053292918b90600401610f83565b602060405180830381865afa15801561054f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610573919061102b565b1561058557600294505050505061017f565b506000979650505050505050565b60006105bd7fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61035490565b905073ffffffffffffffffffffffffffffffffffffffff81166106165773ffffffffffffffffffffffffffffffffffffffff7fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d610355610638565b3373ffffffffffffffffffffffffffffffffffffffff82161461063857600080fd5b600054610100900460ff16158080156106585750600054600160ff909116105b806106725750303b158015610672575060005460ff166001145b610703576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a656400000000000000000000000000000000000060648201526084015b60405180910390fd5b600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055801561076157600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff166101001790555b600180546000805473ffffffffffffffffffffffffffffffffffffffff89811662010000027fffffffffffffffffffff0000000000000000000000000000000000000000ffff9092169190911790915563ffffffff871674010000000000000000000000000000000000000000027fffffffffffffffff00000000000000000000000000000000000000000000000090921690861617179055801561085d57600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b5050505050565b60006108766108738484610a17565b90565b90505b92915050565b600061088f600d6009848661104d565b61089891611077565b60e01c9392505050565b600061ffff821115610936576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f53616665436173743a2076616c756520646f65736e27742066697420696e203160448201527f362062697473000000000000000000000000000000000000000000000000000060648201526084016106fa565b5090565b600061094a60096001848661104d565b610953916110bf565b60c01c9392505050565b600061096d602d600d848661104d565b61087691611105565b60608115806109855750602082115b156109bc576040517f18456c9b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8167ffffffffffffffff8111156109d5576109d5610d0c565b6040519080825280601f01601f1916602001820160405280156109ff576020820181803683370190505b506008909202610100039290921b6020820152919050565b600061096d60516031848661104d565b600080600060408486031215610a3c57600080fd5b833567ffffffffffffffff80821115610a5457600080fd5b818601915086601f830112610a6857600080fd5b813581811115610a7757600080fd5b876020828501011115610a8957600080fd5b6020928301989097509590910135949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6020810160038310610ae257610ae2610a9f565b91905290565b6020810160048310610ae257610ae2610a9f565b74ffffffffffffffffffffffffffffffffffffffffff81168114610b1f57600080fd5b50565b600080600060608486031215610b3757600080fd5b8335610b4281610afc565b73ffffffffffffffffffffffffffffffffffffffff908116935060208501359063ffffffff82168214610b7457600080fd5b909250604085013590610b8682610afc565b808216925050509250925092565b6040815282604082015282846060830137600060608483010152600060607fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f860116830101905063ffffffff83166020830152949350505050565b600060208284031215610c0357600080fd5b5051919050565b60005b83811015610c25578181015183820152602001610c0d565b50506000910152565b60008351610c40818460208801610c0a565b60609390931b7fffffffffffffffffffffffffffffffffffffffff000000000000000000000000169190920190815260140192915050565b61ffff831681526040602082015260008251806040840152610ca1816060850160208701610c0a565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016919091016060019392505050565b805167ffffffffffffffff81168114610cec57600080fd5b919050565b600060208284031215610d0357600080fd5b61087682610cd4565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405160c0810167ffffffffffffffff81118282101715610d5e57610d5e610d0c565b60405290565b805160ff81168114610cec57600080fd5b600082601f830112610d8657600080fd5b8151602067ffffffffffffffff80831115610da357610da3610d0c565b8260051b6040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0603f83011681018181108482111715610de657610de6610d0c565b604052938452858101830193838101925087851115610e0457600080fd5b83870191505b84821015610e42578151610e1d81610afc565b73ffffffffffffffffffffffffffffffffffffffff1683529183019190830190610e0a565b979650505050505050565b600060208284031215610e5f57600080fd5b815167ffffffffffffffff80821115610e7757600080fd5b9083019060c08286031215610e8b57600080fd5b610e93610d3b565b610e9c83610cd4565b8152610eaa60208401610d64565b6020820152610ebb60408401610d64565b6040820152610ecc60608401610d64565b6060820152608083015182811115610ee357600080fd5b610eef87828601610d75565b60808301525060a083015182811115610f0757600080fd5b610f1387828601610d75565b60a08301525095945050505050565b8183823760009101908152919050565b600081518084526020808501945080840160005b83811015610f7857815173ffffffffffffffffffffffffffffffffffffffff1687529582019590820190600101610f46565b509495945050505050565b6060815267ffffffffffffffff845116606082015260ff602085015116608082015260ff60408501511660a082015260ff60608501511660c08201526000608085015160c060e0840152610fdb610120840182610f32565b905060a08601517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffa0848303016101008501526110178282610f32565b602085019690965250505060400152919050565b60006020828403121561103d57600080fd5b8151801515811461017f57600080fd5b6000808585111561105d57600080fd5b8386111561106a57600080fd5b5050820193919092039150565b7fffffffff0000000000000000000000000000000000000000000000000000000081358181169160048510156110b75780818660040360031b1b83161692505b505092915050565b7fffffffffffffffff00000000000000000000000000000000000000000000000081358181169160088510156110b75760089490940360031b84901b1690921692915050565b80356020831015610879577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff602084900360031b1b169291505056fea26474726f6e582212204a093d60db5dc229dbb312840979e048da49efcf76ed4c6bf03be9c56a7c823564736f6c63430008140033",
|
|
124
|
+
"linkReferences": {},
|
|
125
|
+
"deployedLinkReferences": {}
|
|
126
|
+
}
|