@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,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_format": "hh-sol-artifact-1",
|
|
3
|
+
"contractName": "PacketDecoder",
|
|
4
|
+
"sourceName": "contracts/precrime/libs/Packet.sol",
|
|
5
|
+
"abi": [],
|
|
6
|
+
"bytecode": "0x60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea26474726f6e5822122030c3d48529737172b333a699ed05c71ae7a5450d65a1a34d97c3fa2ebc8ce0e064736f6c63430008140033",
|
|
7
|
+
"deployedBytecode": "0x73000000000000000000000000000000000000000030146080604052600080fdfea26474726f6e5822122030c3d48529737172b333a699ed05c71ae7a5450d65a1a34d97c3fa2ebc8ce0e064736f6c63430008140033",
|
|
8
|
+
"linkReferences": {},
|
|
9
|
+
"deployedLinkReferences": {}
|
|
10
|
+
}
|
|
@@ -0,0 +1,160 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_format": "hh-sol-artifact-1",
|
|
3
|
+
"contractName": "TransparentUpgradeableProxy",
|
|
4
|
+
"sourceName": "contracts/proxy/TransparentUpgradeableProxy.sol",
|
|
5
|
+
"abi": [
|
|
6
|
+
{
|
|
7
|
+
"inputs": [
|
|
8
|
+
{
|
|
9
|
+
"internalType": "address",
|
|
10
|
+
"name": "_logic",
|
|
11
|
+
"type": "address"
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"internalType": "address",
|
|
15
|
+
"name": "admin_",
|
|
16
|
+
"type": "address"
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"internalType": "bytes",
|
|
20
|
+
"name": "_data",
|
|
21
|
+
"type": "bytes"
|
|
22
|
+
}
|
|
23
|
+
],
|
|
24
|
+
"stateMutability": "payable",
|
|
25
|
+
"type": "constructor"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"inputs": [],
|
|
29
|
+
"name": "AdminAccessDenied",
|
|
30
|
+
"type": "error"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"anonymous": false,
|
|
34
|
+
"inputs": [
|
|
35
|
+
{
|
|
36
|
+
"indexed": false,
|
|
37
|
+
"internalType": "address",
|
|
38
|
+
"name": "previousAdmin",
|
|
39
|
+
"type": "address"
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"indexed": false,
|
|
43
|
+
"internalType": "address",
|
|
44
|
+
"name": "newAdmin",
|
|
45
|
+
"type": "address"
|
|
46
|
+
}
|
|
47
|
+
],
|
|
48
|
+
"name": "AdminChanged",
|
|
49
|
+
"type": "event"
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"anonymous": false,
|
|
53
|
+
"inputs": [
|
|
54
|
+
{
|
|
55
|
+
"indexed": true,
|
|
56
|
+
"internalType": "address",
|
|
57
|
+
"name": "beacon",
|
|
58
|
+
"type": "address"
|
|
59
|
+
}
|
|
60
|
+
],
|
|
61
|
+
"name": "BeaconUpgraded",
|
|
62
|
+
"type": "event"
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"anonymous": false,
|
|
66
|
+
"inputs": [
|
|
67
|
+
{
|
|
68
|
+
"indexed": true,
|
|
69
|
+
"internalType": "address",
|
|
70
|
+
"name": "implementation",
|
|
71
|
+
"type": "address"
|
|
72
|
+
}
|
|
73
|
+
],
|
|
74
|
+
"name": "Upgraded",
|
|
75
|
+
"type": "event"
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"stateMutability": "payable",
|
|
79
|
+
"type": "fallback"
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
"inputs": [],
|
|
83
|
+
"name": "admin",
|
|
84
|
+
"outputs": [
|
|
85
|
+
{
|
|
86
|
+
"internalType": "address",
|
|
87
|
+
"name": "admin_",
|
|
88
|
+
"type": "address"
|
|
89
|
+
}
|
|
90
|
+
],
|
|
91
|
+
"stateMutability": "nonpayable",
|
|
92
|
+
"type": "function"
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
"inputs": [
|
|
96
|
+
{
|
|
97
|
+
"internalType": "address",
|
|
98
|
+
"name": "newAdmin",
|
|
99
|
+
"type": "address"
|
|
100
|
+
}
|
|
101
|
+
],
|
|
102
|
+
"name": "changeAdmin",
|
|
103
|
+
"outputs": [],
|
|
104
|
+
"stateMutability": "nonpayable",
|
|
105
|
+
"type": "function"
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"inputs": [],
|
|
109
|
+
"name": "implementation",
|
|
110
|
+
"outputs": [
|
|
111
|
+
{
|
|
112
|
+
"internalType": "address",
|
|
113
|
+
"name": "implementation_",
|
|
114
|
+
"type": "address"
|
|
115
|
+
}
|
|
116
|
+
],
|
|
117
|
+
"stateMutability": "nonpayable",
|
|
118
|
+
"type": "function"
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
"inputs": [
|
|
122
|
+
{
|
|
123
|
+
"internalType": "address",
|
|
124
|
+
"name": "newImplementation",
|
|
125
|
+
"type": "address"
|
|
126
|
+
}
|
|
127
|
+
],
|
|
128
|
+
"name": "upgradeTo",
|
|
129
|
+
"outputs": [],
|
|
130
|
+
"stateMutability": "nonpayable",
|
|
131
|
+
"type": "function"
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
"inputs": [
|
|
135
|
+
{
|
|
136
|
+
"internalType": "address",
|
|
137
|
+
"name": "newImplementation",
|
|
138
|
+
"type": "address"
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
"internalType": "bytes",
|
|
142
|
+
"name": "data",
|
|
143
|
+
"type": "bytes"
|
|
144
|
+
}
|
|
145
|
+
],
|
|
146
|
+
"name": "upgradeToAndCall",
|
|
147
|
+
"outputs": [],
|
|
148
|
+
"stateMutability": "payable",
|
|
149
|
+
"type": "function"
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
"stateMutability": "payable",
|
|
153
|
+
"type": "receive"
|
|
154
|
+
}
|
|
155
|
+
],
|
|
156
|
+
"bytecode": "0x60806040526040516200104338038062001043833981016040819052620000269162000480565b828162000036828260006200009a565b5062000066905060017fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d610462000560565b60008051602062000ffc8339815191521462000086576200008662000582565b6200009182620000cc565b505050620005eb565b620000a5836200013e565b600082511180620000b35750805b15620000c757620000c5838362000180565b505b505050565b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f6200010e60008051602062000ffc833981519152546001600160a01b031690565b604080516001600160a01b03928316815291841660208301520160405180910390a16200013b81620001b1565b50565b62000149816200024f565b6040516001600160a01b038216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a250565b6060620001a883836040518060600160405280602781526020016200101c60279139620002e6565b90505b92915050565b6001600160a01b0381166200021c5760405162461bcd60e51b815260206004820152602660248201527f455243313936373a206e65772061646d696e20697320746865207a65726f206160448201526564647265737360d01b60648201526084015b60405180910390fd5b8060008051602062000ffc8339815191525b80546001600160a01b0319166001600160a01b039290921691909117905550565b6001600160a01b0381163b620002be5760405162461bcd60e51b815260206004820152602d60248201527f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60448201526c1bdd08184818dbdb9d1c9858dd609a1b606482015260840162000213565b807f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc6200022e565b6060600080856001600160a01b03168560405162000305919062000598565b600060405180830381855af49150503d806000811462000342576040519150601f19603f3d011682016040523d82523d6000602084013e62000347565b606091505b5090925090506200035b8683838762000365565b9695505050505050565b60608315620003d9578251600003620003d1576001600160a01b0385163b620003d15760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640162000213565b5081620003e5565b620003e58383620003ed565b949350505050565b815115620003fe5781518083602001fd5b8060405162461bcd60e51b8152600401620002139190620005b6565b80516000906001600160a81b03811681146200043557600080fd5b6001600160a01b031692915050565b634e487b7160e01b600052604160045260246000fd5b60005b83811015620004775781810151838201526020016200045d565b50506000910152565b6000806000606084860312156200049657600080fd5b620004a1846200041a565b9250620004b1602085016200041a565b60408501519092506001600160401b0380821115620004cf57600080fd5b818601915086601f830112620004e457600080fd5b815181811115620004f957620004f962000444565b604051601f8201601f19908116603f0116810190838211818310171562000524576200052462000444565b816040528281528960208487010111156200053e57600080fd5b620005518360208301602088016200045a565b80955050505050509250925092565b81810381811115620001ab57634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052600160045260246000fd5b60008251620005ac8184602087016200045a565b9190910192915050565b6020815260008251806020840152620005d78160408501602087016200045a565b601f01601f19169190910160400192915050565b610a0180620005fb6000396000f3fe60806040526004361061005e5760003560e01c80635c60da1b116100435780635c60da1b146100c25780638f2839701461011a578063f851a440146101545761006d565b80633659cfe6146100755780634f1ef286146100af5761006d565b3661006d5761006b610183565b005b61006b610183565b34801561008157600080fd5b50d3801561008e57600080fd5b50d2801561009b57600080fd5b5061006b6100aa366004610875565b61019d565b61006b6100bd366004610890565b6101e7565b3480156100ce57600080fd5b50d380156100db57600080fd5b50d280156100e857600080fd5b506100f161025b565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390f35b34801561012657600080fd5b50d3801561013357600080fd5b50d2801561014057600080fd5b5061006b61014f366004610875565b610299565b34801561016057600080fd5b50d3801561016d57600080fd5b50d2801561017a57600080fd5b506100f16102c6565b61018b6102f4565b61019b61019661034a565b610354565b565b6101a5610378565b73ffffffffffffffffffffffffffffffffffffffff1633036101df576101dc816040518060200160405280600081525060006103b8565b50565b6101dc610183565b6101ef610378565b73ffffffffffffffffffffffffffffffffffffffff1633036102535761024e8383838080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250600192506103b8915050565b505050565b61024e610183565b6000610265610378565b73ffffffffffffffffffffffffffffffffffffffff16330361028e5761028961034a565b905090565b610296610183565b90565b6102a1610378565b73ffffffffffffffffffffffffffffffffffffffff1633036101df576101dc816103e3565b60006102d0610378565b73ffffffffffffffffffffffffffffffffffffffff16330361028e57610289610378565b6102fc610378565b73ffffffffffffffffffffffffffffffffffffffff16330361019b576040517ff0d4b23e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610289610444565b3660008037600080366000845af43d6000803e808015610373573d6000f35b3d6000fd5b60007fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61035b5473ffffffffffffffffffffffffffffffffffffffff16919050565b6103c18361046c565b6000825111806103ce5750805b1561024e576103dd83836104b9565b50505050565b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f61040c610378565b6040805173ffffffffffffffffffffffffffffffffffffffff928316815291841660208301520160405180910390a16101dc816104e5565b60007f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc61039c565b610475816105f6565b60405173ffffffffffffffffffffffffffffffffffffffff8216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a250565b60606104de83836040518060600160405280602781526020016109a5602791396106c1565b9392505050565b73ffffffffffffffffffffffffffffffffffffffff811661058d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f455243313936373a206e65772061646d696e20697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b807fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61035b80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff9290921691909117905550565b73ffffffffffffffffffffffffffffffffffffffff81163b61069a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602d60248201527f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60448201527f6f74206120636f6e7472616374000000000000000000000000000000000000006064820152608401610584565b807f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc6105b0565b60606000808573ffffffffffffffffffffffffffffffffffffffff16856040516106eb9190610937565b600060405180830381855af49150503d8060008114610726576040519150601f19603f3d011682016040523d82523d6000602084013e61072b565b606091505b509150915061073c86838387610746565b9695505050505050565b606083156107dc5782516000036107d55773ffffffffffffffffffffffffffffffffffffffff85163b6107d5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610584565b50816107e6565b6107e683836107ee565b949350505050565b8151156107fe5781518083602001fd5b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105849190610953565b6000813574ffffffffffffffffffffffffffffffffffffffffff8116811461085957600080fd5b73ffffffffffffffffffffffffffffffffffffffff1692915050565b60006020828403121561088757600080fd5b6104de82610832565b6000806000604084860312156108a557600080fd5b6108ae84610832565b9250602084013567ffffffffffffffff808211156108cb57600080fd5b818601915086601f8301126108df57600080fd5b8135818111156108ee57600080fd5b87602082850101111561090057600080fd5b6020830194508093505050509250925092565b60005b8381101561092e578181015183820152602001610916565b50506000910152565b60008251610949818460208701610913565b9190910192915050565b6020815260008251806020840152610972816040850160208701610913565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016919091016040019291505056fe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a26474726f6e58221220ab00620c08109cc306aa69380d0018ea9d2add3fae6be949d9e968eece7f0b7064736f6c63430008140033b53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564",
|
|
157
|
+
"deployedBytecode": "0x60806040526004361061005e5760003560e01c80635c60da1b116100435780635c60da1b146100c25780638f2839701461011a578063f851a440146101545761006d565b80633659cfe6146100755780634f1ef286146100af5761006d565b3661006d5761006b610183565b005b61006b610183565b34801561008157600080fd5b50d3801561008e57600080fd5b50d2801561009b57600080fd5b5061006b6100aa366004610875565b61019d565b61006b6100bd366004610890565b6101e7565b3480156100ce57600080fd5b50d380156100db57600080fd5b50d280156100e857600080fd5b506100f161025b565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390f35b34801561012657600080fd5b50d3801561013357600080fd5b50d2801561014057600080fd5b5061006b61014f366004610875565b610299565b34801561016057600080fd5b50d3801561016d57600080fd5b50d2801561017a57600080fd5b506100f16102c6565b61018b6102f4565b61019b61019661034a565b610354565b565b6101a5610378565b73ffffffffffffffffffffffffffffffffffffffff1633036101df576101dc816040518060200160405280600081525060006103b8565b50565b6101dc610183565b6101ef610378565b73ffffffffffffffffffffffffffffffffffffffff1633036102535761024e8383838080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250600192506103b8915050565b505050565b61024e610183565b6000610265610378565b73ffffffffffffffffffffffffffffffffffffffff16330361028e5761028961034a565b905090565b610296610183565b90565b6102a1610378565b73ffffffffffffffffffffffffffffffffffffffff1633036101df576101dc816103e3565b60006102d0610378565b73ffffffffffffffffffffffffffffffffffffffff16330361028e57610289610378565b6102fc610378565b73ffffffffffffffffffffffffffffffffffffffff16330361019b576040517ff0d4b23e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610289610444565b3660008037600080366000845af43d6000803e808015610373573d6000f35b3d6000fd5b60007fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61035b5473ffffffffffffffffffffffffffffffffffffffff16919050565b6103c18361046c565b6000825111806103ce5750805b1561024e576103dd83836104b9565b50505050565b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f61040c610378565b6040805173ffffffffffffffffffffffffffffffffffffffff928316815291841660208301520160405180910390a16101dc816104e5565b60007f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc61039c565b610475816105f6565b60405173ffffffffffffffffffffffffffffffffffffffff8216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a250565b60606104de83836040518060600160405280602781526020016109a5602791396106c1565b9392505050565b73ffffffffffffffffffffffffffffffffffffffff811661058d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f455243313936373a206e65772061646d696e20697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b807fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61035b80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff9290921691909117905550565b73ffffffffffffffffffffffffffffffffffffffff81163b61069a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602d60248201527f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60448201527f6f74206120636f6e7472616374000000000000000000000000000000000000006064820152608401610584565b807f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc6105b0565b60606000808573ffffffffffffffffffffffffffffffffffffffff16856040516106eb9190610937565b600060405180830381855af49150503d8060008114610726576040519150601f19603f3d011682016040523d82523d6000602084013e61072b565b606091505b509150915061073c86838387610746565b9695505050505050565b606083156107dc5782516000036107d55773ffffffffffffffffffffffffffffffffffffffff85163b6107d5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610584565b50816107e6565b6107e683836107ee565b949350505050565b8151156107fe5781518083602001fd5b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105849190610953565b6000813574ffffffffffffffffffffffffffffffffffffffffff8116811461085957600080fd5b73ffffffffffffffffffffffffffffffffffffffff1692915050565b60006020828403121561088757600080fd5b6104de82610832565b6000806000604084860312156108a557600080fd5b6108ae84610832565b9250602084013567ffffffffffffffff808211156108cb57600080fd5b818601915086601f8301126108df57600080fd5b8135818111156108ee57600080fd5b87602082850101111561090057600080fd5b6020830194508093505050509250925092565b60005b8381101561092e578181015183820152602001610916565b50506000910152565b60008251610949818460208701610913565b9190910192915050565b6020815260008251806020840152610972816040850160208701610913565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016919091016040019291505056fe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a26474726f6e58221220ab00620c08109cc306aa69380d0018ea9d2add3fae6be949d9e968eece7f0b7064736f6c63430008140033",
|
|
158
|
+
"linkReferences": {},
|
|
159
|
+
"deployedLinkReferences": {}
|
|
160
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_format": "hh-sol-artifact-1",
|
|
3
|
+
"contractName": "IReceiveUlnView",
|
|
4
|
+
"sourceName": "contracts/uln/LzExecutor.sol",
|
|
5
|
+
"abi": [
|
|
6
|
+
{
|
|
7
|
+
"inputs": [
|
|
8
|
+
{
|
|
9
|
+
"internalType": "bytes",
|
|
10
|
+
"name": "_packetHeader",
|
|
11
|
+
"type": "bytes"
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"internalType": "bytes32",
|
|
15
|
+
"name": "_payloadHash",
|
|
16
|
+
"type": "bytes32"
|
|
17
|
+
}
|
|
18
|
+
],
|
|
19
|
+
"name": "verifiable",
|
|
20
|
+
"outputs": [
|
|
21
|
+
{
|
|
22
|
+
"internalType": "enum VerificationState",
|
|
23
|
+
"name": "",
|
|
24
|
+
"type": "uint8"
|
|
25
|
+
}
|
|
26
|
+
],
|
|
27
|
+
"stateMutability": "view",
|
|
28
|
+
"type": "function"
|
|
29
|
+
}
|
|
30
|
+
],
|
|
31
|
+
"bytecode": "0x",
|
|
32
|
+
"deployedBytecode": "0x",
|
|
33
|
+
"linkReferences": {},
|
|
34
|
+
"deployedLinkReferences": {}
|
|
35
|
+
}
|