@layerzerolabs/lz-evm-sdk-v2 2.3.8 → 2.3.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +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 +28 -28
- package/deployments/arbitrum-sandbox-local/DVNDecompressor.json +11 -11
- package/deployments/arbitrum-sandbox-local/DVNFeeLib.json +8 -8
- package/deployments/arbitrum-sandbox-local/PriceFeed.json +16 -16
- package/deployments/arbitrum-sandbox-local/PriceFeedProxyAdmin.json +11 -11
- package/deployments/arbitrum-sandbox-local/PriceFeed_Implementation.json +28 -28
- package/deployments/arbitrum-sandbox-local/PriceFeed_Proxy.json +16 -16
- package/deployments/bsc-sandbox-local/DVN.json +34 -34
- package/deployments/bsc-sandbox-local/DVNDecompressor.json +11 -11
- package/deployments/bsc-sandbox-local/DVNFeeLib.json +8 -8
- 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 +10 -10
- package/deployments/bsc-sandbox-local/ExecutorFeeLib.json +9 -9
- package/deployments/bsc-sandbox-local/ExecutorProxyAdmin.json +11 -11
- package/deployments/bsc-sandbox-local/Executor_Implementation.json +40 -40
- 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 +8 -8
- package/deployments/bsc-sandbox-local/LzExecutor_Proxy.json +16 -16
- package/deployments/bsc-sandbox-local/NonceContractMock.json +6 -6
- package/deployments/bsc-sandbox-local/PriceFeed.json +16 -16
- package/deployments/bsc-sandbox-local/PriceFeedProxyAdmin.json +11 -11
- package/deployments/bsc-sandbox-local/PriceFeed_Implementation.json +28 -28
- package/deployments/bsc-sandbox-local/PriceFeed_Proxy.json +16 -16
- package/deployments/bsc-sandbox-local/ReceiveUln301.json +35 -35
- package/deployments/bsc-sandbox-local/ReceiveUln301View.json +13 -13
- package/deployments/bsc-sandbox-local/ReceiveUln301View_Implementation.json +10 -10
- package/deployments/bsc-sandbox-local/ReceiveUln301View_Proxy.json +13 -13
- package/deployments/bsc-sandbox-local/ReceiveUln302.json +32 -32
- package/deployments/bsc-sandbox-local/ReceiveUln302View.json +13 -13
- package/deployments/bsc-sandbox-local/ReceiveUln302View_Implementation.json +9 -9
- package/deployments/bsc-sandbox-local/ReceiveUln302View_Proxy.json +13 -13
- package/deployments/bsc-sandbox-local/SendUln301.json +35 -35
- package/deployments/bsc-sandbox-local/SendUln302.json +33 -33
- package/deployments/bsc-sandbox-local/SimpleMessageLib.json +7 -7
- package/deployments/bsc-sandbox-local/Treasury.json +11 -11
- package/deployments/bsc-sandbox-local/TreasuryFeeHandler.json +5 -5
- package/deployments/ethereum-sandbox-local/DVN.json +34 -34
- package/deployments/ethereum-sandbox-local/DVNDecompressor.json +11 -11
- package/deployments/ethereum-sandbox-local/DVNFeeLib.json +8 -8
- 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 +10 -10
- package/deployments/ethereum-sandbox-local/ExecutorFeeLib.json +9 -9
- package/deployments/ethereum-sandbox-local/ExecutorProxyAdmin.json +11 -11
- package/deployments/ethereum-sandbox-local/Executor_Implementation.json +40 -40
- 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 +8 -8
- package/deployments/ethereum-sandbox-local/LzExecutor_Proxy.json +16 -16
- package/deployments/ethereum-sandbox-local/NonceContractMock.json +6 -6
- package/deployments/ethereum-sandbox-local/PriceFeed.json +16 -16
- package/deployments/ethereum-sandbox-local/PriceFeedProxyAdmin.json +11 -11
- package/deployments/ethereum-sandbox-local/PriceFeed_Implementation.json +28 -28
- package/deployments/ethereum-sandbox-local/PriceFeed_Proxy.json +16 -16
- package/deployments/ethereum-sandbox-local/ReceiveUln301.json +35 -35
- package/deployments/ethereum-sandbox-local/ReceiveUln301View.json +13 -13
- package/deployments/ethereum-sandbox-local/ReceiveUln301View_Implementation.json +10 -10
- package/deployments/ethereum-sandbox-local/ReceiveUln301View_Proxy.json +13 -13
- package/deployments/ethereum-sandbox-local/ReceiveUln302.json +32 -32
- package/deployments/ethereum-sandbox-local/ReceiveUln302View.json +13 -13
- package/deployments/ethereum-sandbox-local/ReceiveUln302View_Implementation.json +9 -9
- package/deployments/ethereum-sandbox-local/ReceiveUln302View_Proxy.json +13 -13
- package/deployments/ethereum-sandbox-local/SendUln301.json +35 -35
- package/deployments/ethereum-sandbox-local/SendUln302.json +33 -33
- package/deployments/ethereum-sandbox-local/SimpleMessageLib.json +7 -7
- package/deployments/ethereum-sandbox-local/Treasury.json +11 -11
- package/deployments/ethereum-sandbox-local/TreasuryFeeHandler.json +5 -5
- package/deployments/polygon-sandbox-local/DVN.json +34 -34
- package/deployments/polygon-sandbox-local/DVNDecompressor.json +11 -11
- package/deployments/polygon-sandbox-local/DVNFeeLib.json +8 -8
- package/deployments/polygon-sandbox-local/DefaultProxyAdmin.json +7 -7
- package/deployments/polygon-sandbox-local/EndpointV2.json +13 -13
- package/deployments/polygon-sandbox-local/EndpointV2View.json +13 -13
- package/deployments/polygon-sandbox-local/EndpointV2View_Implementation.json +4 -4
- package/deployments/polygon-sandbox-local/EndpointV2View_Proxy.json +13 -13
- package/deployments/polygon-sandbox-local/Executor.json +43 -43
- package/deployments/polygon-sandbox-local/ExecutorDecompressor.json +10 -10
- package/deployments/polygon-sandbox-local/ExecutorFeeLib.json +9 -9
- package/deployments/polygon-sandbox-local/ExecutorProxyAdmin.json +11 -11
- package/deployments/polygon-sandbox-local/Executor_Implementation.json +40 -40
- package/deployments/polygon-sandbox-local/Executor_Proxy.json +43 -43
- package/deployments/polygon-sandbox-local/LzExecutor.json +16 -16
- package/deployments/polygon-sandbox-local/LzExecutor_Implementation.json +8 -8
- package/deployments/polygon-sandbox-local/LzExecutor_Proxy.json +16 -16
- package/deployments/polygon-sandbox-local/NonceContractMock.json +6 -6
- package/deployments/polygon-sandbox-local/PriceFeed.json +16 -16
- package/deployments/polygon-sandbox-local/PriceFeedProxyAdmin.json +11 -11
- package/deployments/polygon-sandbox-local/PriceFeed_Implementation.json +28 -28
- package/deployments/polygon-sandbox-local/PriceFeed_Proxy.json +16 -16
- package/deployments/polygon-sandbox-local/ReceiveUln301.json +35 -35
- package/deployments/polygon-sandbox-local/ReceiveUln301View.json +13 -13
- package/deployments/polygon-sandbox-local/ReceiveUln301View_Implementation.json +10 -10
- package/deployments/polygon-sandbox-local/ReceiveUln301View_Proxy.json +13 -13
- package/deployments/polygon-sandbox-local/ReceiveUln302.json +32 -32
- package/deployments/polygon-sandbox-local/ReceiveUln302View.json +13 -13
- package/deployments/polygon-sandbox-local/ReceiveUln302View_Implementation.json +9 -9
- package/deployments/polygon-sandbox-local/ReceiveUln302View_Proxy.json +13 -13
- package/deployments/polygon-sandbox-local/SendUln301.json +35 -35
- package/deployments/polygon-sandbox-local/SendUln302.json +33 -33
- package/deployments/polygon-sandbox-local/SimpleMessageLib.json +7 -7
- package/deployments/polygon-sandbox-local/Treasury.json +11 -11
- package/deployments/polygon-sandbox-local/TreasuryFeeHandler.json +5 -5
- package/deployments/tron-sandbox-local/DVN.json +35 -35
- package/deployments/tron-sandbox-local/DVNDecompressor.json +16 -16
- package/deployments/tron-sandbox-local/DVNFeeLib.json +11 -11
- package/deployments/tron-sandbox-local/PriceFeed.json +27 -27
- package/deployments/tron-sandbox-local/PriceFeedProxyAdmin.json +15 -15
- package/deployments/tron-sandbox-local/PriceFeed_Implementation.json +30 -30
- package/deployments/tron-sandbox-local/PriceFeed_Proxy.json +26 -26
- package/package.json +11 -9
|
@@ -0,0 +1,209 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_format": "hh-sol-artifact-1",
|
|
3
|
+
"contractName": "EndpointV2View",
|
|
4
|
+
"sourceName": "contracts/EndpointV2View.sol",
|
|
5
|
+
"abi": [
|
|
6
|
+
{
|
|
7
|
+
"anonymous": false,
|
|
8
|
+
"inputs": [
|
|
9
|
+
{
|
|
10
|
+
"indexed": false,
|
|
11
|
+
"internalType": "uint8",
|
|
12
|
+
"name": "version",
|
|
13
|
+
"type": "uint8"
|
|
14
|
+
}
|
|
15
|
+
],
|
|
16
|
+
"name": "Initialized",
|
|
17
|
+
"type": "event"
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"inputs": [],
|
|
21
|
+
"name": "EMPTY_PAYLOAD_HASH",
|
|
22
|
+
"outputs": [
|
|
23
|
+
{
|
|
24
|
+
"internalType": "bytes32",
|
|
25
|
+
"name": "",
|
|
26
|
+
"type": "bytes32"
|
|
27
|
+
}
|
|
28
|
+
],
|
|
29
|
+
"stateMutability": "view",
|
|
30
|
+
"type": "function"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"inputs": [],
|
|
34
|
+
"name": "NIL_PAYLOAD_HASH",
|
|
35
|
+
"outputs": [
|
|
36
|
+
{
|
|
37
|
+
"internalType": "bytes32",
|
|
38
|
+
"name": "",
|
|
39
|
+
"type": "bytes32"
|
|
40
|
+
}
|
|
41
|
+
],
|
|
42
|
+
"stateMutability": "view",
|
|
43
|
+
"type": "function"
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"inputs": [],
|
|
47
|
+
"name": "endpoint",
|
|
48
|
+
"outputs": [
|
|
49
|
+
{
|
|
50
|
+
"internalType": "contract ILayerZeroEndpointV2",
|
|
51
|
+
"name": "",
|
|
52
|
+
"type": "address"
|
|
53
|
+
}
|
|
54
|
+
],
|
|
55
|
+
"stateMutability": "view",
|
|
56
|
+
"type": "function"
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"inputs": [
|
|
60
|
+
{
|
|
61
|
+
"components": [
|
|
62
|
+
{
|
|
63
|
+
"internalType": "uint32",
|
|
64
|
+
"name": "srcEid",
|
|
65
|
+
"type": "uint32"
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"internalType": "bytes32",
|
|
69
|
+
"name": "sender",
|
|
70
|
+
"type": "bytes32"
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"internalType": "uint64",
|
|
74
|
+
"name": "nonce",
|
|
75
|
+
"type": "uint64"
|
|
76
|
+
}
|
|
77
|
+
],
|
|
78
|
+
"internalType": "struct Origin",
|
|
79
|
+
"name": "_origin",
|
|
80
|
+
"type": "tuple"
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"internalType": "address",
|
|
84
|
+
"name": "_receiver",
|
|
85
|
+
"type": "address"
|
|
86
|
+
}
|
|
87
|
+
],
|
|
88
|
+
"name": "executable",
|
|
89
|
+
"outputs": [
|
|
90
|
+
{
|
|
91
|
+
"internalType": "enum ExecutionState",
|
|
92
|
+
"name": "",
|
|
93
|
+
"type": "uint8"
|
|
94
|
+
}
|
|
95
|
+
],
|
|
96
|
+
"stateMutability": "view",
|
|
97
|
+
"type": "function"
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"inputs": [
|
|
101
|
+
{
|
|
102
|
+
"components": [
|
|
103
|
+
{
|
|
104
|
+
"internalType": "uint32",
|
|
105
|
+
"name": "srcEid",
|
|
106
|
+
"type": "uint32"
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
"internalType": "bytes32",
|
|
110
|
+
"name": "sender",
|
|
111
|
+
"type": "bytes32"
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
"internalType": "uint64",
|
|
115
|
+
"name": "nonce",
|
|
116
|
+
"type": "uint64"
|
|
117
|
+
}
|
|
118
|
+
],
|
|
119
|
+
"internalType": "struct Origin",
|
|
120
|
+
"name": "_origin",
|
|
121
|
+
"type": "tuple"
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
"internalType": "address",
|
|
125
|
+
"name": "_receiver",
|
|
126
|
+
"type": "address"
|
|
127
|
+
}
|
|
128
|
+
],
|
|
129
|
+
"name": "initializable",
|
|
130
|
+
"outputs": [
|
|
131
|
+
{
|
|
132
|
+
"internalType": "bool",
|
|
133
|
+
"name": "",
|
|
134
|
+
"type": "bool"
|
|
135
|
+
}
|
|
136
|
+
],
|
|
137
|
+
"stateMutability": "view",
|
|
138
|
+
"type": "function"
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
"inputs": [
|
|
142
|
+
{
|
|
143
|
+
"internalType": "address",
|
|
144
|
+
"name": "_endpoint",
|
|
145
|
+
"type": "address"
|
|
146
|
+
}
|
|
147
|
+
],
|
|
148
|
+
"name": "initialize",
|
|
149
|
+
"outputs": [],
|
|
150
|
+
"stateMutability": "nonpayable",
|
|
151
|
+
"type": "function"
|
|
152
|
+
},
|
|
153
|
+
{
|
|
154
|
+
"inputs": [
|
|
155
|
+
{
|
|
156
|
+
"components": [
|
|
157
|
+
{
|
|
158
|
+
"internalType": "uint32",
|
|
159
|
+
"name": "srcEid",
|
|
160
|
+
"type": "uint32"
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
"internalType": "bytes32",
|
|
164
|
+
"name": "sender",
|
|
165
|
+
"type": "bytes32"
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
"internalType": "uint64",
|
|
169
|
+
"name": "nonce",
|
|
170
|
+
"type": "uint64"
|
|
171
|
+
}
|
|
172
|
+
],
|
|
173
|
+
"internalType": "struct Origin",
|
|
174
|
+
"name": "_origin",
|
|
175
|
+
"type": "tuple"
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
"internalType": "address",
|
|
179
|
+
"name": "_receiver",
|
|
180
|
+
"type": "address"
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
"internalType": "address",
|
|
184
|
+
"name": "_receiveLib",
|
|
185
|
+
"type": "address"
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
"internalType": "bytes32",
|
|
189
|
+
"name": "_payloadHash",
|
|
190
|
+
"type": "bytes32"
|
|
191
|
+
}
|
|
192
|
+
],
|
|
193
|
+
"name": "verifiable",
|
|
194
|
+
"outputs": [
|
|
195
|
+
{
|
|
196
|
+
"internalType": "bool",
|
|
197
|
+
"name": "",
|
|
198
|
+
"type": "bool"
|
|
199
|
+
}
|
|
200
|
+
],
|
|
201
|
+
"stateMutability": "view",
|
|
202
|
+
"type": "function"
|
|
203
|
+
}
|
|
204
|
+
],
|
|
205
|
+
"bytecode": "0x608060405234801561001057600080fd5b50d3801561001d57600080fd5b50d2801561002a57600080fd5b50610d668061003a6000396000f3fe608060405234801561001057600080fd5b50d3801561001d57600080fd5b50d2801561002a57600080fd5b50600436106100975760003560e01c8063861e1ca511610075578063861e1ca514610141578063c4d66de814610164578063cb5026b914610179578063e1e3a7df1461018157600080fd5b80632baf0be71461009c5780634b4b2efb146100d65780635e280f11146100f6575b600080fd5b6100c37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81565b6040519081526020015b60405180910390f35b6100e96100e4366004610bf5565b610194565b6040516100cd9190610c29565b60005461011c9062010000900473ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016100cd565b61015461014f366004610bf5565b6104a1565b60405190151581526020016100cd565b610177610172366004610c6a565b610591565b005b6100c3600081565b61015461018f366004610c8c565b6107d0565b600080548351602085015160408087015190517fc9fc7bcd00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff878116600483015263ffffffff9094166024820152604481019290925267ffffffffffffffff16606482015283926201000090049091169063c9fc7bcd90608401602060405180830381865afa15801561023d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102619190610cd8565b90508015801561033d5750600054845160208601516040517f5b17bb7000000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff878116600483015263ffffffff90931660248201526044810191909152620100009092041690635b17bb7090606401602060405180830381865afa1580156102fd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103219190610cf1565b67ffffffffffffffff16846040015167ffffffffffffffff1611155b1561034c57600391505061049b565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81148015906104485750600054845160208601516040517fa0dd43fc00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff878116600483015263ffffffff9093166024820152604481019190915262010000909204169063a0dd43fc90606401602060405180830381865afa158015610408573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061042c9190610cf1565b67ffffffffffffffff16846040015167ffffffffffffffff1611155b1561045757600291505061049b565b801580159061048657507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114155b1561049557600191505061049b565b60009150505b92915050565b60008054604080517f861e1ca5000000000000000000000000000000000000000000000000000000008152855163ffffffff166004820152602086015160248201529085015167ffffffffffffffff16604482015273ffffffffffffffffffffffffffffffffffffffff8481166064830152620100009092049091169063861e1ca590608401602060405180830381865afa92505050801561057e575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261057b91810190610d0e565b60015b61058a5750600061049b565b905061049b565b60006105bb7fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61035490565b905073ffffffffffffffffffffffffffffffffffffffff81166106145773ffffffffffffffffffffffffffffffffffffffff7fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d610355610636565b3373ffffffffffffffffffffffffffffffffffffffff82161461063657600080fd5b600054610100900460ff16158080156106565750600054600160ff909116105b806106705750303b158015610670575060005460ff166001145b610701576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a656400000000000000000000000000000000000060648201526084015b60405180910390fd5b600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055801561075f57600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff166101001790555b61076883610978565b80156107cb57600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b505050565b6000805485516040517f9d7f977500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff878116600483015263ffffffff90921660248201528582166044820152620100009092041690639d7f977590606401602060405180830381865afa15801561085d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108819190610d0e565b61088d57506000610970565b600054604080517fc9a54a99000000000000000000000000000000000000000000000000000000008152875163ffffffff166004820152602088015160248201529087015167ffffffffffffffff16604482015273ffffffffffffffffffffffffffffffffffffffff8681166064830152620100009092049091169063c9a54a9990608401602060405180830381865afa15801561092f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109539190610d0e565b61095f57506000610970565b8161096c57506000610970565b5060015b949350505050565b600054610100900460ff16610a0f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e6700000000000000000000000000000000000000000060648201526084016106f8565b610a1881610a1b565b50565b600054610100900460ff16610ab2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e6700000000000000000000000000000000000000000060648201526084016106f8565b6000805473ffffffffffffffffffffffffffffffffffffffff90921662010000027fffffffffffffffffffff0000000000000000000000000000000000000000ffff909216919091179055565b67ffffffffffffffff81168114610a1857600080fd5b600060608284031215610b2757600080fd5b6040516060810181811067ffffffffffffffff82111715610b71577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604052905080823563ffffffff81168114610b8b57600080fd5b8152602083810135908201526040830135610ba581610aff565b6040919091015292915050565b6000813574ffffffffffffffffffffffffffffffffffffffffff81168114610bd957600080fd5b73ffffffffffffffffffffffffffffffffffffffff1692915050565b60008060808385031215610c0857600080fd5b610c128484610b15565b9150610c2060608401610bb2565b90509250929050565b6020810160048310610c64577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b91905290565b600060208284031215610c7c57600080fd5b610c8582610bb2565b9392505050565b60008060008060c08587031215610ca257600080fd5b610cac8686610b15565b9350610cba60608601610bb2565b9250610cc860808601610bb2565b9396929550929360a00135925050565b600060208284031215610cea57600080fd5b5051919050565b600060208284031215610d0357600080fd5b8151610c8581610aff565b600060208284031215610d2057600080fd5b81518015158114610c8557600080fdfea26474726f6e58221220378fa803f259e8bea5eecf738b2aab3ff3c052d588dc34c6b24825858ae4049064736f6c63430008140033",
|
|
206
|
+
"deployedBytecode": "0x608060405234801561001057600080fd5b50d3801561001d57600080fd5b50d2801561002a57600080fd5b50600436106100975760003560e01c8063861e1ca511610075578063861e1ca514610141578063c4d66de814610164578063cb5026b914610179578063e1e3a7df1461018157600080fd5b80632baf0be71461009c5780634b4b2efb146100d65780635e280f11146100f6575b600080fd5b6100c37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81565b6040519081526020015b60405180910390f35b6100e96100e4366004610bf5565b610194565b6040516100cd9190610c29565b60005461011c9062010000900473ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016100cd565b61015461014f366004610bf5565b6104a1565b60405190151581526020016100cd565b610177610172366004610c6a565b610591565b005b6100c3600081565b61015461018f366004610c8c565b6107d0565b600080548351602085015160408087015190517fc9fc7bcd00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff878116600483015263ffffffff9094166024820152604481019290925267ffffffffffffffff16606482015283926201000090049091169063c9fc7bcd90608401602060405180830381865afa15801561023d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102619190610cd8565b90508015801561033d5750600054845160208601516040517f5b17bb7000000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff878116600483015263ffffffff90931660248201526044810191909152620100009092041690635b17bb7090606401602060405180830381865afa1580156102fd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103219190610cf1565b67ffffffffffffffff16846040015167ffffffffffffffff1611155b1561034c57600391505061049b565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81148015906104485750600054845160208601516040517fa0dd43fc00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff878116600483015263ffffffff9093166024820152604481019190915262010000909204169063a0dd43fc90606401602060405180830381865afa158015610408573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061042c9190610cf1565b67ffffffffffffffff16846040015167ffffffffffffffff1611155b1561045757600291505061049b565b801580159061048657507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114155b1561049557600191505061049b565b60009150505b92915050565b60008054604080517f861e1ca5000000000000000000000000000000000000000000000000000000008152855163ffffffff166004820152602086015160248201529085015167ffffffffffffffff16604482015273ffffffffffffffffffffffffffffffffffffffff8481166064830152620100009092049091169063861e1ca590608401602060405180830381865afa92505050801561057e575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261057b91810190610d0e565b60015b61058a5750600061049b565b905061049b565b60006105bb7fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61035490565b905073ffffffffffffffffffffffffffffffffffffffff81166106145773ffffffffffffffffffffffffffffffffffffffff7fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d610355610636565b3373ffffffffffffffffffffffffffffffffffffffff82161461063657600080fd5b600054610100900460ff16158080156106565750600054600160ff909116105b806106705750303b158015610670575060005460ff166001145b610701576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a656400000000000000000000000000000000000060648201526084015b60405180910390fd5b600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055801561075f57600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff166101001790555b61076883610978565b80156107cb57600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b505050565b6000805485516040517f9d7f977500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff878116600483015263ffffffff90921660248201528582166044820152620100009092041690639d7f977590606401602060405180830381865afa15801561085d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108819190610d0e565b61088d57506000610970565b600054604080517fc9a54a99000000000000000000000000000000000000000000000000000000008152875163ffffffff166004820152602088015160248201529087015167ffffffffffffffff16604482015273ffffffffffffffffffffffffffffffffffffffff8681166064830152620100009092049091169063c9a54a9990608401602060405180830381865afa15801561092f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109539190610d0e565b61095f57506000610970565b8161096c57506000610970565b5060015b949350505050565b600054610100900460ff16610a0f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e6700000000000000000000000000000000000000000060648201526084016106f8565b610a1881610a1b565b50565b600054610100900460ff16610ab2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e6700000000000000000000000000000000000000000060648201526084016106f8565b6000805473ffffffffffffffffffffffffffffffffffffffff90921662010000027fffffffffffffffffffff0000000000000000000000000000000000000000ffff909216919091179055565b67ffffffffffffffff81168114610a1857600080fd5b600060608284031215610b2757600080fd5b6040516060810181811067ffffffffffffffff82111715610b71577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604052905080823563ffffffff81168114610b8b57600080fd5b8152602083810135908201526040830135610ba581610aff565b6040919091015292915050565b6000813574ffffffffffffffffffffffffffffffffffffffffff81168114610bd957600080fd5b73ffffffffffffffffffffffffffffffffffffffff1692915050565b60008060808385031215610c0857600080fd5b610c128484610b15565b9150610c2060608401610bb2565b90509250929050565b6020810160048310610c64577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b91905290565b600060208284031215610c7c57600080fd5b610c8582610bb2565b9392505050565b60008060008060c08587031215610ca257600080fd5b610cac8686610b15565b9350610cba60608601610bb2565b9250610cc860808601610bb2565b9396929550929360a00135925050565b600060208284031215610cea57600080fd5b5051919050565b600060208284031215610d0357600080fd5b8151610c8581610aff565b600060208284031215610d2057600080fd5b81518015158114610c8557600080fdfea26474726f6e58221220378fa803f259e8bea5eecf738b2aab3ff3c052d588dc34c6b24825858ae4049064736f6c63430008140033",
|
|
207
|
+
"linkReferences": {},
|
|
208
|
+
"deployedLinkReferences": {}
|
|
209
|
+
}
|
|
@@ -0,0 +1,196 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_format": "hh-sol-artifact-1",
|
|
3
|
+
"contractName": "EndpointV2ViewUpgradeable",
|
|
4
|
+
"sourceName": "contracts/EndpointV2ViewUpgradeable.sol",
|
|
5
|
+
"abi": [
|
|
6
|
+
{
|
|
7
|
+
"anonymous": false,
|
|
8
|
+
"inputs": [
|
|
9
|
+
{
|
|
10
|
+
"indexed": false,
|
|
11
|
+
"internalType": "uint8",
|
|
12
|
+
"name": "version",
|
|
13
|
+
"type": "uint8"
|
|
14
|
+
}
|
|
15
|
+
],
|
|
16
|
+
"name": "Initialized",
|
|
17
|
+
"type": "event"
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"inputs": [],
|
|
21
|
+
"name": "EMPTY_PAYLOAD_HASH",
|
|
22
|
+
"outputs": [
|
|
23
|
+
{
|
|
24
|
+
"internalType": "bytes32",
|
|
25
|
+
"name": "",
|
|
26
|
+
"type": "bytes32"
|
|
27
|
+
}
|
|
28
|
+
],
|
|
29
|
+
"stateMutability": "view",
|
|
30
|
+
"type": "function"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"inputs": [],
|
|
34
|
+
"name": "NIL_PAYLOAD_HASH",
|
|
35
|
+
"outputs": [
|
|
36
|
+
{
|
|
37
|
+
"internalType": "bytes32",
|
|
38
|
+
"name": "",
|
|
39
|
+
"type": "bytes32"
|
|
40
|
+
}
|
|
41
|
+
],
|
|
42
|
+
"stateMutability": "view",
|
|
43
|
+
"type": "function"
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"inputs": [],
|
|
47
|
+
"name": "endpoint",
|
|
48
|
+
"outputs": [
|
|
49
|
+
{
|
|
50
|
+
"internalType": "contract ILayerZeroEndpointV2",
|
|
51
|
+
"name": "",
|
|
52
|
+
"type": "address"
|
|
53
|
+
}
|
|
54
|
+
],
|
|
55
|
+
"stateMutability": "view",
|
|
56
|
+
"type": "function"
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"inputs": [
|
|
60
|
+
{
|
|
61
|
+
"components": [
|
|
62
|
+
{
|
|
63
|
+
"internalType": "uint32",
|
|
64
|
+
"name": "srcEid",
|
|
65
|
+
"type": "uint32"
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"internalType": "bytes32",
|
|
69
|
+
"name": "sender",
|
|
70
|
+
"type": "bytes32"
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"internalType": "uint64",
|
|
74
|
+
"name": "nonce",
|
|
75
|
+
"type": "uint64"
|
|
76
|
+
}
|
|
77
|
+
],
|
|
78
|
+
"internalType": "struct Origin",
|
|
79
|
+
"name": "_origin",
|
|
80
|
+
"type": "tuple"
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"internalType": "address",
|
|
84
|
+
"name": "_receiver",
|
|
85
|
+
"type": "address"
|
|
86
|
+
}
|
|
87
|
+
],
|
|
88
|
+
"name": "executable",
|
|
89
|
+
"outputs": [
|
|
90
|
+
{
|
|
91
|
+
"internalType": "enum ExecutionState",
|
|
92
|
+
"name": "",
|
|
93
|
+
"type": "uint8"
|
|
94
|
+
}
|
|
95
|
+
],
|
|
96
|
+
"stateMutability": "view",
|
|
97
|
+
"type": "function"
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"inputs": [
|
|
101
|
+
{
|
|
102
|
+
"components": [
|
|
103
|
+
{
|
|
104
|
+
"internalType": "uint32",
|
|
105
|
+
"name": "srcEid",
|
|
106
|
+
"type": "uint32"
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
"internalType": "bytes32",
|
|
110
|
+
"name": "sender",
|
|
111
|
+
"type": "bytes32"
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
"internalType": "uint64",
|
|
115
|
+
"name": "nonce",
|
|
116
|
+
"type": "uint64"
|
|
117
|
+
}
|
|
118
|
+
],
|
|
119
|
+
"internalType": "struct Origin",
|
|
120
|
+
"name": "_origin",
|
|
121
|
+
"type": "tuple"
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
"internalType": "address",
|
|
125
|
+
"name": "_receiver",
|
|
126
|
+
"type": "address"
|
|
127
|
+
}
|
|
128
|
+
],
|
|
129
|
+
"name": "initializable",
|
|
130
|
+
"outputs": [
|
|
131
|
+
{
|
|
132
|
+
"internalType": "bool",
|
|
133
|
+
"name": "",
|
|
134
|
+
"type": "bool"
|
|
135
|
+
}
|
|
136
|
+
],
|
|
137
|
+
"stateMutability": "view",
|
|
138
|
+
"type": "function"
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
"inputs": [
|
|
142
|
+
{
|
|
143
|
+
"components": [
|
|
144
|
+
{
|
|
145
|
+
"internalType": "uint32",
|
|
146
|
+
"name": "srcEid",
|
|
147
|
+
"type": "uint32"
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
"internalType": "bytes32",
|
|
151
|
+
"name": "sender",
|
|
152
|
+
"type": "bytes32"
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
"internalType": "uint64",
|
|
156
|
+
"name": "nonce",
|
|
157
|
+
"type": "uint64"
|
|
158
|
+
}
|
|
159
|
+
],
|
|
160
|
+
"internalType": "struct Origin",
|
|
161
|
+
"name": "_origin",
|
|
162
|
+
"type": "tuple"
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
"internalType": "address",
|
|
166
|
+
"name": "_receiver",
|
|
167
|
+
"type": "address"
|
|
168
|
+
},
|
|
169
|
+
{
|
|
170
|
+
"internalType": "address",
|
|
171
|
+
"name": "_receiveLib",
|
|
172
|
+
"type": "address"
|
|
173
|
+
},
|
|
174
|
+
{
|
|
175
|
+
"internalType": "bytes32",
|
|
176
|
+
"name": "_payloadHash",
|
|
177
|
+
"type": "bytes32"
|
|
178
|
+
}
|
|
179
|
+
],
|
|
180
|
+
"name": "verifiable",
|
|
181
|
+
"outputs": [
|
|
182
|
+
{
|
|
183
|
+
"internalType": "bool",
|
|
184
|
+
"name": "",
|
|
185
|
+
"type": "bool"
|
|
186
|
+
}
|
|
187
|
+
],
|
|
188
|
+
"stateMutability": "view",
|
|
189
|
+
"type": "function"
|
|
190
|
+
}
|
|
191
|
+
],
|
|
192
|
+
"bytecode": "0x608060405234801561001057600080fd5b50d3801561001d57600080fd5b50d2801561002a57600080fd5b506109688061003a6000396000f3fe608060405234801561001057600080fd5b50d3801561001d57600080fd5b50d2801561002a57600080fd5b506004361061008c5760003560e01c8063861e1ca51161006a578063861e1ca514610136578063cb5026b914610159578063e1e3a7df1461016157600080fd5b80632baf0be7146100915780634b4b2efb146100cb5780635e280f11146100eb575b600080fd5b6100b87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81565b6040519081526020015b60405180910390f35b6100de6100d9366004610812565b610174565b6040516100c29190610846565b6000546101119062010000900473ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016100c2565b610149610144366004610812565b610481565b60405190151581526020016100c2565b6100b8600081565b61014961016f366004610887565b610571565b600080548351602085015160408087015190517fc9fc7bcd00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff878116600483015263ffffffff9094166024820152604481019290925267ffffffffffffffff16606482015283926201000090049091169063c9fc7bcd90608401602060405180830381865afa15801561021d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061024191906108d3565b90508015801561031d5750600054845160208601516040517f5b17bb7000000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff878116600483015263ffffffff90931660248201526044810191909152620100009092041690635b17bb7090606401602060405180830381865afa1580156102dd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061030191906108ec565b67ffffffffffffffff16846040015167ffffffffffffffff1611155b1561032c57600391505061047b565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81148015906104285750600054845160208601516040517fa0dd43fc00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff878116600483015263ffffffff9093166024820152604481019190915262010000909204169063a0dd43fc90606401602060405180830381865afa1580156103e8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061040c91906108ec565b67ffffffffffffffff16846040015167ffffffffffffffff1611155b1561043757600291505061047b565b801580159061046657507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114155b1561047557600191505061047b565b60009150505b92915050565b60008054604080517f861e1ca5000000000000000000000000000000000000000000000000000000008152855163ffffffff166004820152602086015160248201529085015167ffffffffffffffff16604482015273ffffffffffffffffffffffffffffffffffffffff8481166064830152620100009092049091169063861e1ca590608401602060405180830381865afa92505050801561055e575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261055b91810190610910565b60015b61056a5750600061047b565b905061047b565b6000805485516040517f9d7f977500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff878116600483015263ffffffff90921660248201528582166044820152620100009092041690639d7f977590606401602060405180830381865afa1580156105fe573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106229190610910565b61062e57506000610711565b600054604080517fc9a54a99000000000000000000000000000000000000000000000000000000008152875163ffffffff166004820152602088015160248201529087015167ffffffffffffffff16604482015273ffffffffffffffffffffffffffffffffffffffff8681166064830152620100009092049091169063c9a54a9990608401602060405180830381865afa1580156106d0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106f49190610910565b61070057506000610711565b8161070d57506000610711565b5060015b949350505050565b67ffffffffffffffff8116811461072f57600080fd5b50565b60006060828403121561074457600080fd5b6040516060810181811067ffffffffffffffff8211171561078e577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604052905080823563ffffffff811681146107a857600080fd5b81526020838101359082015260408301356107c281610719565b6040919091015292915050565b6000813574ffffffffffffffffffffffffffffffffffffffffff811681146107f657600080fd5b73ffffffffffffffffffffffffffffffffffffffff1692915050565b6000806080838503121561082557600080fd5b61082f8484610732565b915061083d606084016107cf565b90509250929050565b6020810160048310610881577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b91905290565b60008060008060c0858703121561089d57600080fd5b6108a78686610732565b93506108b5606086016107cf565b92506108c3608086016107cf565b9396929550929360a00135925050565b6000602082840312156108e557600080fd5b5051919050565b6000602082840312156108fe57600080fd5b815161090981610719565b9392505050565b60006020828403121561092257600080fd5b8151801515811461090957600080fdfea26474726f6e582212204a249aa0396053db3a963c843032a1f767615a961466b2920b8cf44c6620913364736f6c63430008140033",
|
|
193
|
+
"deployedBytecode": "0x608060405234801561001057600080fd5b50d3801561001d57600080fd5b50d2801561002a57600080fd5b506004361061008c5760003560e01c8063861e1ca51161006a578063861e1ca514610136578063cb5026b914610159578063e1e3a7df1461016157600080fd5b80632baf0be7146100915780634b4b2efb146100cb5780635e280f11146100eb575b600080fd5b6100b87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81565b6040519081526020015b60405180910390f35b6100de6100d9366004610812565b610174565b6040516100c29190610846565b6000546101119062010000900473ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016100c2565b610149610144366004610812565b610481565b60405190151581526020016100c2565b6100b8600081565b61014961016f366004610887565b610571565b600080548351602085015160408087015190517fc9fc7bcd00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff878116600483015263ffffffff9094166024820152604481019290925267ffffffffffffffff16606482015283926201000090049091169063c9fc7bcd90608401602060405180830381865afa15801561021d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061024191906108d3565b90508015801561031d5750600054845160208601516040517f5b17bb7000000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff878116600483015263ffffffff90931660248201526044810191909152620100009092041690635b17bb7090606401602060405180830381865afa1580156102dd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061030191906108ec565b67ffffffffffffffff16846040015167ffffffffffffffff1611155b1561032c57600391505061047b565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81148015906104285750600054845160208601516040517fa0dd43fc00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff878116600483015263ffffffff9093166024820152604481019190915262010000909204169063a0dd43fc90606401602060405180830381865afa1580156103e8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061040c91906108ec565b67ffffffffffffffff16846040015167ffffffffffffffff1611155b1561043757600291505061047b565b801580159061046657507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114155b1561047557600191505061047b565b60009150505b92915050565b60008054604080517f861e1ca5000000000000000000000000000000000000000000000000000000008152855163ffffffff166004820152602086015160248201529085015167ffffffffffffffff16604482015273ffffffffffffffffffffffffffffffffffffffff8481166064830152620100009092049091169063861e1ca590608401602060405180830381865afa92505050801561055e575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261055b91810190610910565b60015b61056a5750600061047b565b905061047b565b6000805485516040517f9d7f977500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff878116600483015263ffffffff90921660248201528582166044820152620100009092041690639d7f977590606401602060405180830381865afa1580156105fe573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106229190610910565b61062e57506000610711565b600054604080517fc9a54a99000000000000000000000000000000000000000000000000000000008152875163ffffffff166004820152602088015160248201529087015167ffffffffffffffff16604482015273ffffffffffffffffffffffffffffffffffffffff8681166064830152620100009092049091169063c9a54a9990608401602060405180830381865afa1580156106d0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106f49190610910565b61070057506000610711565b8161070d57506000610711565b5060015b949350505050565b67ffffffffffffffff8116811461072f57600080fd5b50565b60006060828403121561074457600080fd5b6040516060810181811067ffffffffffffffff8211171561078e577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604052905080823563ffffffff811681146107a857600080fd5b81526020838101359082015260408301356107c281610719565b6040919091015292915050565b6000813574ffffffffffffffffffffffffffffffffffffffffff811681146107f657600080fd5b73ffffffffffffffffffffffffffffffffffffffff1692915050565b6000806080838503121561082557600080fd5b61082f8484610732565b915061083d606084016107cf565b90509250929050565b6020810160048310610881577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b91905290565b60008060008060c0858703121561089d57600080fd5b6108a78686610732565b93506108b5606086016107cf565b92506108c3608086016107cf565b9396929550929360a00135925050565b6000602082840312156108e557600080fd5b5051919050565b6000602082840312156108fe57600080fd5b815161090981610719565b9392505050565b60006020828403121561092257600080fd5b8151801515811461090957600080fdfea26474726f6e582212204a249aa0396053db3a963c843032a1f767615a961466b2920b8cf44c6620913364736f6c63430008140033",
|
|
194
|
+
"linkReferences": {},
|
|
195
|
+
"deployedLinkReferences": {}
|
|
196
|
+
}
|