@layerzerolabs/lz-evm-sdk-v2 2.3.9 → 2.3.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/artifacts-tron/contracts/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 +3 -3
- package/deployments/arbitrum-sandbox-local/DVNDecompressor.json +2 -2
- package/deployments/arbitrum-sandbox-local/DVNFeeLib.json +2 -2
- package/deployments/arbitrum-sandbox-local/PriceFeed.json +5 -5
- package/deployments/arbitrum-sandbox-local/PriceFeedProxyAdmin.json +3 -3
- package/deployments/arbitrum-sandbox-local/PriceFeed_Implementation.json +1 -1
- package/deployments/arbitrum-sandbox-local/PriceFeed_Proxy.json +5 -5
- package/deployments/bsc-sandbox-local/DVN.json +16 -16
- package/deployments/bsc-sandbox-local/DVNDecompressor.json +7 -7
- package/deployments/bsc-sandbox-local/DVNFeeLib.json +7 -7
- package/deployments/bsc-sandbox-local/DefaultProxyAdmin.json +7 -7
- package/deployments/bsc-sandbox-local/EndpointV2.json +13 -13
- package/deployments/bsc-sandbox-local/EndpointV2View.json +13 -13
- package/deployments/bsc-sandbox-local/EndpointV2View_Implementation.json +4 -4
- package/deployments/bsc-sandbox-local/EndpointV2View_Proxy.json +13 -13
- package/deployments/bsc-sandbox-local/Executor.json +43 -43
- package/deployments/bsc-sandbox-local/ExecutorDecompressor.json +7 -7
- package/deployments/bsc-sandbox-local/ExecutorFeeLib.json +7 -7
- package/deployments/bsc-sandbox-local/ExecutorProxyAdmin.json +10 -10
- package/deployments/bsc-sandbox-local/Executor_Implementation.json +4 -4
- package/deployments/bsc-sandbox-local/Executor_Proxy.json +43 -43
- package/deployments/bsc-sandbox-local/LzExecutor.json +16 -16
- package/deployments/bsc-sandbox-local/LzExecutor_Implementation.json +4 -4
- package/deployments/bsc-sandbox-local/LzExecutor_Proxy.json +16 -16
- package/deployments/bsc-sandbox-local/NonceContractMock.json +4 -4
- package/deployments/bsc-sandbox-local/PriceFeed.json +16 -16
- package/deployments/bsc-sandbox-local/PriceFeedProxyAdmin.json +10 -10
- package/deployments/bsc-sandbox-local/PriceFeed_Implementation.json +4 -4
- package/deployments/bsc-sandbox-local/PriceFeed_Proxy.json +16 -16
- package/deployments/bsc-sandbox-local/ReceiveUln301.json +7 -7
- package/deployments/bsc-sandbox-local/ReceiveUln301View.json +13 -13
- package/deployments/bsc-sandbox-local/ReceiveUln301View_Implementation.json +4 -4
- package/deployments/bsc-sandbox-local/ReceiveUln301View_Proxy.json +13 -13
- package/deployments/bsc-sandbox-local/ReceiveUln302.json +7 -7
- package/deployments/bsc-sandbox-local/ReceiveUln302View.json +13 -13
- package/deployments/bsc-sandbox-local/ReceiveUln302View_Implementation.json +4 -4
- package/deployments/bsc-sandbox-local/ReceiveUln302View_Proxy.json +13 -13
- package/deployments/bsc-sandbox-local/SendUln301.json +7 -7
- package/deployments/bsc-sandbox-local/SendUln302.json +7 -7
- package/deployments/bsc-sandbox-local/SimpleMessageLib.json +7 -7
- package/deployments/bsc-sandbox-local/Treasury.json +7 -7
- package/deployments/bsc-sandbox-local/TreasuryFeeHandler.json +4 -4
- package/deployments/ethereum-sandbox-local/DVN.json +5 -5
- package/deployments/ethereum-sandbox-local/DVNDecompressor.json +2 -2
- package/deployments/ethereum-sandbox-local/DVNFeeLib.json +2 -2
- package/deployments/ethereum-sandbox-local/DefaultProxyAdmin.json +2 -2
- package/deployments/ethereum-sandbox-local/EndpointV2.json +4 -4
- package/deployments/ethereum-sandbox-local/EndpointV2View.json +4 -4
- package/deployments/ethereum-sandbox-local/EndpointV2View_Implementation.json +1 -1
- package/deployments/ethereum-sandbox-local/EndpointV2View_Proxy.json +4 -4
- package/deployments/ethereum-sandbox-local/Executor.json +14 -14
- package/deployments/ethereum-sandbox-local/ExecutorDecompressor.json +2 -2
- package/deployments/ethereum-sandbox-local/ExecutorFeeLib.json +2 -2
- package/deployments/ethereum-sandbox-local/ExecutorProxyAdmin.json +3 -3
- package/deployments/ethereum-sandbox-local/Executor_Implementation.json +1 -1
- package/deployments/ethereum-sandbox-local/Executor_Proxy.json +14 -14
- package/deployments/ethereum-sandbox-local/LzExecutor.json +5 -5
- package/deployments/ethereum-sandbox-local/LzExecutor_Implementation.json +1 -1
- package/deployments/ethereum-sandbox-local/LzExecutor_Proxy.json +5 -5
- package/deployments/ethereum-sandbox-local/NonceContractMock.json +1 -1
- package/deployments/ethereum-sandbox-local/PriceFeed.json +5 -5
- package/deployments/ethereum-sandbox-local/PriceFeedProxyAdmin.json +3 -3
- package/deployments/ethereum-sandbox-local/PriceFeed_Implementation.json +1 -1
- package/deployments/ethereum-sandbox-local/PriceFeed_Proxy.json +5 -5
- package/deployments/ethereum-sandbox-local/ReceiveUln301.json +2 -2
- package/deployments/ethereum-sandbox-local/ReceiveUln301View.json +4 -4
- package/deployments/ethereum-sandbox-local/ReceiveUln301View_Implementation.json +1 -1
- package/deployments/ethereum-sandbox-local/ReceiveUln301View_Proxy.json +4 -4
- package/deployments/ethereum-sandbox-local/ReceiveUln302.json +2 -2
- package/deployments/ethereum-sandbox-local/ReceiveUln302View.json +4 -4
- package/deployments/ethereum-sandbox-local/ReceiveUln302View_Implementation.json +1 -1
- package/deployments/ethereum-sandbox-local/ReceiveUln302View_Proxy.json +4 -4
- package/deployments/ethereum-sandbox-local/SendUln301.json +2 -2
- package/deployments/ethereum-sandbox-local/SendUln302.json +2 -2
- package/deployments/ethereum-sandbox-local/SimpleMessageLib.json +2 -2
- package/deployments/ethereum-sandbox-local/Treasury.json +2 -2
- package/deployments/ethereum-sandbox-local/TreasuryFeeHandler.json +1 -1
- package/deployments/polygon-sandbox-local/DVN.json +16 -16
- package/deployments/polygon-sandbox-local/DVNDecompressor.json +7 -7
- package/deployments/polygon-sandbox-local/DVNFeeLib.json +7 -7
- 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 +7 -7
- package/deployments/polygon-sandbox-local/ExecutorFeeLib.json +7 -7
- package/deployments/polygon-sandbox-local/ExecutorProxyAdmin.json +10 -10
- package/deployments/polygon-sandbox-local/Executor_Implementation.json +4 -4
- 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 +4 -4
- package/deployments/polygon-sandbox-local/LzExecutor_Proxy.json +16 -16
- package/deployments/polygon-sandbox-local/NonceContractMock.json +4 -4
- package/deployments/polygon-sandbox-local/PriceFeed.json +16 -16
- package/deployments/polygon-sandbox-local/PriceFeedProxyAdmin.json +10 -10
- package/deployments/polygon-sandbox-local/PriceFeed_Implementation.json +4 -4
- package/deployments/polygon-sandbox-local/PriceFeed_Proxy.json +16 -16
- package/deployments/polygon-sandbox-local/ReceiveUln301.json +7 -7
- package/deployments/polygon-sandbox-local/ReceiveUln301View.json +13 -13
- package/deployments/polygon-sandbox-local/ReceiveUln301View_Implementation.json +4 -4
- package/deployments/polygon-sandbox-local/ReceiveUln301View_Proxy.json +13 -13
- package/deployments/polygon-sandbox-local/ReceiveUln302.json +7 -7
- package/deployments/polygon-sandbox-local/ReceiveUln302View.json +13 -13
- package/deployments/polygon-sandbox-local/ReceiveUln302View_Implementation.json +4 -4
- package/deployments/polygon-sandbox-local/ReceiveUln302View_Proxy.json +13 -13
- package/deployments/polygon-sandbox-local/SendUln301.json +7 -7
- package/deployments/polygon-sandbox-local/SendUln302.json +7 -7
- package/deployments/polygon-sandbox-local/SimpleMessageLib.json +7 -7
- package/deployments/polygon-sandbox-local/Treasury.json +7 -7
- package/deployments/polygon-sandbox-local/TreasuryFeeHandler.json +4 -4
- package/deployments/tron-sandbox-local/DVN.json +17 -17
- package/deployments/tron-sandbox-local/DVNDecompressor.json +12 -12
- package/deployments/tron-sandbox-local/DVNFeeLib.json +10 -10
- package/deployments/tron-sandbox-local/PriceFeed.json +27 -27
- package/deployments/tron-sandbox-local/PriceFeedProxyAdmin.json +14 -14
- package/deployments/tron-sandbox-local/PriceFeed_Implementation.json +6 -6
- package/deployments/tron-sandbox-local/PriceFeed_Proxy.json +26 -26
- package/package.json +11 -9
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_format": "hh-sol-artifact-1",
|
|
3
|
+
"contractName": "IOAppMsgInspector",
|
|
4
|
+
"sourceName": "contracts/oapp/interfaces/IOAppMsgInspector.sol",
|
|
5
|
+
"abi": [
|
|
6
|
+
{
|
|
7
|
+
"inputs": [
|
|
8
|
+
{
|
|
9
|
+
"internalType": "bytes",
|
|
10
|
+
"name": "message",
|
|
11
|
+
"type": "bytes"
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"internalType": "bytes",
|
|
15
|
+
"name": "options",
|
|
16
|
+
"type": "bytes"
|
|
17
|
+
}
|
|
18
|
+
],
|
|
19
|
+
"name": "InspectionFailed",
|
|
20
|
+
"type": "error"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"inputs": [
|
|
24
|
+
{
|
|
25
|
+
"internalType": "bytes",
|
|
26
|
+
"name": "_message",
|
|
27
|
+
"type": "bytes"
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"internalType": "bytes",
|
|
31
|
+
"name": "_options",
|
|
32
|
+
"type": "bytes"
|
|
33
|
+
}
|
|
34
|
+
],
|
|
35
|
+
"name": "inspect",
|
|
36
|
+
"outputs": [
|
|
37
|
+
{
|
|
38
|
+
"internalType": "bool",
|
|
39
|
+
"name": "valid",
|
|
40
|
+
"type": "bool"
|
|
41
|
+
}
|
|
42
|
+
],
|
|
43
|
+
"stateMutability": "view",
|
|
44
|
+
"type": "function"
|
|
45
|
+
}
|
|
46
|
+
],
|
|
47
|
+
"bytecode": "0x",
|
|
48
|
+
"deployedBytecode": "0x",
|
|
49
|
+
"linkReferences": {},
|
|
50
|
+
"deployedLinkReferences": {}
|
|
51
|
+
}
|
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_format": "hh-sol-artifact-1",
|
|
3
|
+
"contractName": "IOAppOptionsType3",
|
|
4
|
+
"sourceName": "contracts/oapp/interfaces/IOAppOptionsType3.sol",
|
|
5
|
+
"abi": [
|
|
6
|
+
{
|
|
7
|
+
"inputs": [
|
|
8
|
+
{
|
|
9
|
+
"internalType": "bytes",
|
|
10
|
+
"name": "options",
|
|
11
|
+
"type": "bytes"
|
|
12
|
+
}
|
|
13
|
+
],
|
|
14
|
+
"name": "InvalidOptions",
|
|
15
|
+
"type": "error"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"anonymous": false,
|
|
19
|
+
"inputs": [
|
|
20
|
+
{
|
|
21
|
+
"components": [
|
|
22
|
+
{
|
|
23
|
+
"internalType": "uint32",
|
|
24
|
+
"name": "eid",
|
|
25
|
+
"type": "uint32"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"internalType": "uint16",
|
|
29
|
+
"name": "msgType",
|
|
30
|
+
"type": "uint16"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"internalType": "bytes",
|
|
34
|
+
"name": "options",
|
|
35
|
+
"type": "bytes"
|
|
36
|
+
}
|
|
37
|
+
],
|
|
38
|
+
"indexed": false,
|
|
39
|
+
"internalType": "struct EnforcedOptionParam[]",
|
|
40
|
+
"name": "_enforcedOptions",
|
|
41
|
+
"type": "tuple[]"
|
|
42
|
+
}
|
|
43
|
+
],
|
|
44
|
+
"name": "EnforcedOptionSet",
|
|
45
|
+
"type": "event"
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"inputs": [
|
|
49
|
+
{
|
|
50
|
+
"internalType": "uint32",
|
|
51
|
+
"name": "_eid",
|
|
52
|
+
"type": "uint32"
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"internalType": "uint16",
|
|
56
|
+
"name": "_msgType",
|
|
57
|
+
"type": "uint16"
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"internalType": "bytes",
|
|
61
|
+
"name": "_extraOptions",
|
|
62
|
+
"type": "bytes"
|
|
63
|
+
}
|
|
64
|
+
],
|
|
65
|
+
"name": "combineOptions",
|
|
66
|
+
"outputs": [
|
|
67
|
+
{
|
|
68
|
+
"internalType": "bytes",
|
|
69
|
+
"name": "options",
|
|
70
|
+
"type": "bytes"
|
|
71
|
+
}
|
|
72
|
+
],
|
|
73
|
+
"stateMutability": "view",
|
|
74
|
+
"type": "function"
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
"inputs": [
|
|
78
|
+
{
|
|
79
|
+
"components": [
|
|
80
|
+
{
|
|
81
|
+
"internalType": "uint32",
|
|
82
|
+
"name": "eid",
|
|
83
|
+
"type": "uint32"
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"internalType": "uint16",
|
|
87
|
+
"name": "msgType",
|
|
88
|
+
"type": "uint16"
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
"internalType": "bytes",
|
|
92
|
+
"name": "options",
|
|
93
|
+
"type": "bytes"
|
|
94
|
+
}
|
|
95
|
+
],
|
|
96
|
+
"internalType": "struct EnforcedOptionParam[]",
|
|
97
|
+
"name": "_enforcedOptions",
|
|
98
|
+
"type": "tuple[]"
|
|
99
|
+
}
|
|
100
|
+
],
|
|
101
|
+
"name": "setEnforcedOptions",
|
|
102
|
+
"outputs": [],
|
|
103
|
+
"stateMutability": "nonpayable",
|
|
104
|
+
"type": "function"
|
|
105
|
+
}
|
|
106
|
+
],
|
|
107
|
+
"bytecode": "0x",
|
|
108
|
+
"deployedBytecode": "0x",
|
|
109
|
+
"linkReferences": {},
|
|
110
|
+
"deployedLinkReferences": {}
|
|
111
|
+
}
|
|
@@ -0,0 +1,167 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_format": "hh-sol-artifact-1",
|
|
3
|
+
"contractName": "IOAppReceiver",
|
|
4
|
+
"sourceName": "contracts/oapp/interfaces/IOAppReceiver.sol",
|
|
5
|
+
"abi": [
|
|
6
|
+
{
|
|
7
|
+
"inputs": [
|
|
8
|
+
{
|
|
9
|
+
"components": [
|
|
10
|
+
{
|
|
11
|
+
"internalType": "uint32",
|
|
12
|
+
"name": "srcEid",
|
|
13
|
+
"type": "uint32"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"internalType": "bytes32",
|
|
17
|
+
"name": "sender",
|
|
18
|
+
"type": "bytes32"
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
"internalType": "uint64",
|
|
22
|
+
"name": "nonce",
|
|
23
|
+
"type": "uint64"
|
|
24
|
+
}
|
|
25
|
+
],
|
|
26
|
+
"internalType": "struct Origin",
|
|
27
|
+
"name": "_origin",
|
|
28
|
+
"type": "tuple"
|
|
29
|
+
}
|
|
30
|
+
],
|
|
31
|
+
"name": "allowInitializePath",
|
|
32
|
+
"outputs": [
|
|
33
|
+
{
|
|
34
|
+
"internalType": "bool",
|
|
35
|
+
"name": "",
|
|
36
|
+
"type": "bool"
|
|
37
|
+
}
|
|
38
|
+
],
|
|
39
|
+
"stateMutability": "view",
|
|
40
|
+
"type": "function"
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"inputs": [
|
|
44
|
+
{
|
|
45
|
+
"components": [
|
|
46
|
+
{
|
|
47
|
+
"internalType": "uint32",
|
|
48
|
+
"name": "srcEid",
|
|
49
|
+
"type": "uint32"
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"internalType": "bytes32",
|
|
53
|
+
"name": "sender",
|
|
54
|
+
"type": "bytes32"
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"internalType": "uint64",
|
|
58
|
+
"name": "nonce",
|
|
59
|
+
"type": "uint64"
|
|
60
|
+
}
|
|
61
|
+
],
|
|
62
|
+
"internalType": "struct Origin",
|
|
63
|
+
"name": "_origin",
|
|
64
|
+
"type": "tuple"
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"internalType": "bytes",
|
|
68
|
+
"name": "_message",
|
|
69
|
+
"type": "bytes"
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
"internalType": "address",
|
|
73
|
+
"name": "_sender",
|
|
74
|
+
"type": "address"
|
|
75
|
+
}
|
|
76
|
+
],
|
|
77
|
+
"name": "isComposeMsgSender",
|
|
78
|
+
"outputs": [
|
|
79
|
+
{
|
|
80
|
+
"internalType": "bool",
|
|
81
|
+
"name": "isSender",
|
|
82
|
+
"type": "bool"
|
|
83
|
+
}
|
|
84
|
+
],
|
|
85
|
+
"stateMutability": "view",
|
|
86
|
+
"type": "function"
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
"inputs": [
|
|
90
|
+
{
|
|
91
|
+
"components": [
|
|
92
|
+
{
|
|
93
|
+
"internalType": "uint32",
|
|
94
|
+
"name": "srcEid",
|
|
95
|
+
"type": "uint32"
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
"internalType": "bytes32",
|
|
99
|
+
"name": "sender",
|
|
100
|
+
"type": "bytes32"
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
"internalType": "uint64",
|
|
104
|
+
"name": "nonce",
|
|
105
|
+
"type": "uint64"
|
|
106
|
+
}
|
|
107
|
+
],
|
|
108
|
+
"internalType": "struct Origin",
|
|
109
|
+
"name": "_origin",
|
|
110
|
+
"type": "tuple"
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
"internalType": "bytes32",
|
|
114
|
+
"name": "_guid",
|
|
115
|
+
"type": "bytes32"
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
"internalType": "bytes",
|
|
119
|
+
"name": "_message",
|
|
120
|
+
"type": "bytes"
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
"internalType": "address",
|
|
124
|
+
"name": "_executor",
|
|
125
|
+
"type": "address"
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
"internalType": "bytes",
|
|
129
|
+
"name": "_extraData",
|
|
130
|
+
"type": "bytes"
|
|
131
|
+
}
|
|
132
|
+
],
|
|
133
|
+
"name": "lzReceive",
|
|
134
|
+
"outputs": [],
|
|
135
|
+
"stateMutability": "payable",
|
|
136
|
+
"type": "function"
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
"inputs": [
|
|
140
|
+
{
|
|
141
|
+
"internalType": "uint32",
|
|
142
|
+
"name": "_eid",
|
|
143
|
+
"type": "uint32"
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
"internalType": "bytes32",
|
|
147
|
+
"name": "_sender",
|
|
148
|
+
"type": "bytes32"
|
|
149
|
+
}
|
|
150
|
+
],
|
|
151
|
+
"name": "nextNonce",
|
|
152
|
+
"outputs": [
|
|
153
|
+
{
|
|
154
|
+
"internalType": "uint64",
|
|
155
|
+
"name": "",
|
|
156
|
+
"type": "uint64"
|
|
157
|
+
}
|
|
158
|
+
],
|
|
159
|
+
"stateMutability": "view",
|
|
160
|
+
"type": "function"
|
|
161
|
+
}
|
|
162
|
+
],
|
|
163
|
+
"bytecode": "0x",
|
|
164
|
+
"deployedBytecode": "0x",
|
|
165
|
+
"linkReferences": {},
|
|
166
|
+
"deployedLinkReferences": {}
|
|
167
|
+
}
|
|
@@ -0,0 +1,187 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_format": "hh-sol-artifact-1",
|
|
3
|
+
"contractName": "OAppOptionsType3",
|
|
4
|
+
"sourceName": "contracts/oapp/libs/OAppOptionsType3.sol",
|
|
5
|
+
"abi": [
|
|
6
|
+
{
|
|
7
|
+
"inputs": [
|
|
8
|
+
{
|
|
9
|
+
"internalType": "bytes",
|
|
10
|
+
"name": "options",
|
|
11
|
+
"type": "bytes"
|
|
12
|
+
}
|
|
13
|
+
],
|
|
14
|
+
"name": "InvalidOptions",
|
|
15
|
+
"type": "error"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"anonymous": false,
|
|
19
|
+
"inputs": [
|
|
20
|
+
{
|
|
21
|
+
"components": [
|
|
22
|
+
{
|
|
23
|
+
"internalType": "uint32",
|
|
24
|
+
"name": "eid",
|
|
25
|
+
"type": "uint32"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"internalType": "uint16",
|
|
29
|
+
"name": "msgType",
|
|
30
|
+
"type": "uint16"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"internalType": "bytes",
|
|
34
|
+
"name": "options",
|
|
35
|
+
"type": "bytes"
|
|
36
|
+
}
|
|
37
|
+
],
|
|
38
|
+
"indexed": false,
|
|
39
|
+
"internalType": "struct EnforcedOptionParam[]",
|
|
40
|
+
"name": "_enforcedOptions",
|
|
41
|
+
"type": "tuple[]"
|
|
42
|
+
}
|
|
43
|
+
],
|
|
44
|
+
"name": "EnforcedOptionSet",
|
|
45
|
+
"type": "event"
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"anonymous": false,
|
|
49
|
+
"inputs": [
|
|
50
|
+
{
|
|
51
|
+
"indexed": true,
|
|
52
|
+
"internalType": "address",
|
|
53
|
+
"name": "previousOwner",
|
|
54
|
+
"type": "address"
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"indexed": true,
|
|
58
|
+
"internalType": "address",
|
|
59
|
+
"name": "newOwner",
|
|
60
|
+
"type": "address"
|
|
61
|
+
}
|
|
62
|
+
],
|
|
63
|
+
"name": "OwnershipTransferred",
|
|
64
|
+
"type": "event"
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"inputs": [
|
|
68
|
+
{
|
|
69
|
+
"internalType": "uint32",
|
|
70
|
+
"name": "_eid",
|
|
71
|
+
"type": "uint32"
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"internalType": "uint16",
|
|
75
|
+
"name": "_msgType",
|
|
76
|
+
"type": "uint16"
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"internalType": "bytes",
|
|
80
|
+
"name": "_extraOptions",
|
|
81
|
+
"type": "bytes"
|
|
82
|
+
}
|
|
83
|
+
],
|
|
84
|
+
"name": "combineOptions",
|
|
85
|
+
"outputs": [
|
|
86
|
+
{
|
|
87
|
+
"internalType": "bytes",
|
|
88
|
+
"name": "",
|
|
89
|
+
"type": "bytes"
|
|
90
|
+
}
|
|
91
|
+
],
|
|
92
|
+
"stateMutability": "view",
|
|
93
|
+
"type": "function"
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"inputs": [
|
|
97
|
+
{
|
|
98
|
+
"internalType": "uint32",
|
|
99
|
+
"name": "eid",
|
|
100
|
+
"type": "uint32"
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
"internalType": "uint16",
|
|
104
|
+
"name": "msgType",
|
|
105
|
+
"type": "uint16"
|
|
106
|
+
}
|
|
107
|
+
],
|
|
108
|
+
"name": "enforcedOptions",
|
|
109
|
+
"outputs": [
|
|
110
|
+
{
|
|
111
|
+
"internalType": "bytes",
|
|
112
|
+
"name": "enforcedOption",
|
|
113
|
+
"type": "bytes"
|
|
114
|
+
}
|
|
115
|
+
],
|
|
116
|
+
"stateMutability": "view",
|
|
117
|
+
"type": "function"
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
"inputs": [],
|
|
121
|
+
"name": "owner",
|
|
122
|
+
"outputs": [
|
|
123
|
+
{
|
|
124
|
+
"internalType": "address",
|
|
125
|
+
"name": "",
|
|
126
|
+
"type": "address"
|
|
127
|
+
}
|
|
128
|
+
],
|
|
129
|
+
"stateMutability": "view",
|
|
130
|
+
"type": "function"
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
"inputs": [],
|
|
134
|
+
"name": "renounceOwnership",
|
|
135
|
+
"outputs": [],
|
|
136
|
+
"stateMutability": "nonpayable",
|
|
137
|
+
"type": "function"
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
"inputs": [
|
|
141
|
+
{
|
|
142
|
+
"components": [
|
|
143
|
+
{
|
|
144
|
+
"internalType": "uint32",
|
|
145
|
+
"name": "eid",
|
|
146
|
+
"type": "uint32"
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
"internalType": "uint16",
|
|
150
|
+
"name": "msgType",
|
|
151
|
+
"type": "uint16"
|
|
152
|
+
},
|
|
153
|
+
{
|
|
154
|
+
"internalType": "bytes",
|
|
155
|
+
"name": "options",
|
|
156
|
+
"type": "bytes"
|
|
157
|
+
}
|
|
158
|
+
],
|
|
159
|
+
"internalType": "struct EnforcedOptionParam[]",
|
|
160
|
+
"name": "_enforcedOptions",
|
|
161
|
+
"type": "tuple[]"
|
|
162
|
+
}
|
|
163
|
+
],
|
|
164
|
+
"name": "setEnforcedOptions",
|
|
165
|
+
"outputs": [],
|
|
166
|
+
"stateMutability": "nonpayable",
|
|
167
|
+
"type": "function"
|
|
168
|
+
},
|
|
169
|
+
{
|
|
170
|
+
"inputs": [
|
|
171
|
+
{
|
|
172
|
+
"internalType": "address",
|
|
173
|
+
"name": "newOwner",
|
|
174
|
+
"type": "address"
|
|
175
|
+
}
|
|
176
|
+
],
|
|
177
|
+
"name": "transferOwnership",
|
|
178
|
+
"outputs": [],
|
|
179
|
+
"stateMutability": "nonpayable",
|
|
180
|
+
"type": "function"
|
|
181
|
+
}
|
|
182
|
+
],
|
|
183
|
+
"bytecode": "0x",
|
|
184
|
+
"deployedBytecode": "0x",
|
|
185
|
+
"linkReferences": {},
|
|
186
|
+
"deployedLinkReferences": {}
|
|
187
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_format": "hh-sol-artifact-1",
|
|
3
|
+
"contractName": "OptionsBuilder",
|
|
4
|
+
"sourceName": "contracts/oapp/libs/OptionsBuilder.sol",
|
|
5
|
+
"abi": [
|
|
6
|
+
{
|
|
7
|
+
"inputs": [
|
|
8
|
+
{
|
|
9
|
+
"internalType": "uint16",
|
|
10
|
+
"name": "optionType",
|
|
11
|
+
"type": "uint16"
|
|
12
|
+
}
|
|
13
|
+
],
|
|
14
|
+
"name": "InvalidOptionType",
|
|
15
|
+
"type": "error"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"inputs": [
|
|
19
|
+
{
|
|
20
|
+
"internalType": "uint256",
|
|
21
|
+
"name": "max",
|
|
22
|
+
"type": "uint256"
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"internalType": "uint256",
|
|
26
|
+
"name": "actual",
|
|
27
|
+
"type": "uint256"
|
|
28
|
+
}
|
|
29
|
+
],
|
|
30
|
+
"name": "InvalidSize",
|
|
31
|
+
"type": "error"
|
|
32
|
+
}
|
|
33
|
+
],
|
|
34
|
+
"bytecode": "0x60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea26474726f6e582212201f3ac2e3eee509593fc63d2cd2e72e95d20e01d27333cdc20158892ac0cbd42264736f6c63430008140033",
|
|
35
|
+
"deployedBytecode": "0x73000000000000000000000000000000000000000030146080604052600080fdfea26474726f6e582212201f3ac2e3eee509593fc63d2cd2e72e95d20e01d27333cdc20158892ac0cbd42264736f6c63430008140033",
|
|
36
|
+
"linkReferences": {},
|
|
37
|
+
"deployedLinkReferences": {}
|
|
38
|
+
}
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_format": "hh-sol-artifact-1",
|
|
3
|
+
"contractName": "RateLimiter",
|
|
4
|
+
"sourceName": "contracts/oapp/utils/RateLimiter.sol",
|
|
5
|
+
"abi": [
|
|
6
|
+
{
|
|
7
|
+
"inputs": [],
|
|
8
|
+
"name": "RateLimitExceeded",
|
|
9
|
+
"type": "error"
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
"anonymous": false,
|
|
13
|
+
"inputs": [
|
|
14
|
+
{
|
|
15
|
+
"components": [
|
|
16
|
+
{
|
|
17
|
+
"internalType": "uint32",
|
|
18
|
+
"name": "dstEid",
|
|
19
|
+
"type": "uint32"
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
"internalType": "uint256",
|
|
23
|
+
"name": "limit",
|
|
24
|
+
"type": "uint256"
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"internalType": "uint256",
|
|
28
|
+
"name": "window",
|
|
29
|
+
"type": "uint256"
|
|
30
|
+
}
|
|
31
|
+
],
|
|
32
|
+
"indexed": false,
|
|
33
|
+
"internalType": "struct RateLimiter.RateLimitConfig[]",
|
|
34
|
+
"name": "rateLimitConfigs",
|
|
35
|
+
"type": "tuple[]"
|
|
36
|
+
}
|
|
37
|
+
],
|
|
38
|
+
"name": "RateLimitsChanged",
|
|
39
|
+
"type": "event"
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"inputs": [
|
|
43
|
+
{
|
|
44
|
+
"internalType": "uint32",
|
|
45
|
+
"name": "_dstEid",
|
|
46
|
+
"type": "uint32"
|
|
47
|
+
}
|
|
48
|
+
],
|
|
49
|
+
"name": "getAmountCanBeSent",
|
|
50
|
+
"outputs": [
|
|
51
|
+
{
|
|
52
|
+
"internalType": "uint256",
|
|
53
|
+
"name": "currentAmountInFlight",
|
|
54
|
+
"type": "uint256"
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"internalType": "uint256",
|
|
58
|
+
"name": "amountCanBeSent",
|
|
59
|
+
"type": "uint256"
|
|
60
|
+
}
|
|
61
|
+
],
|
|
62
|
+
"stateMutability": "view",
|
|
63
|
+
"type": "function"
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"inputs": [
|
|
67
|
+
{
|
|
68
|
+
"internalType": "uint32",
|
|
69
|
+
"name": "dstEid",
|
|
70
|
+
"type": "uint32"
|
|
71
|
+
}
|
|
72
|
+
],
|
|
73
|
+
"name": "rateLimits",
|
|
74
|
+
"outputs": [
|
|
75
|
+
{
|
|
76
|
+
"internalType": "uint256",
|
|
77
|
+
"name": "amountInFlight",
|
|
78
|
+
"type": "uint256"
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"internalType": "uint256",
|
|
82
|
+
"name": "lastUpdated",
|
|
83
|
+
"type": "uint256"
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"internalType": "uint256",
|
|
87
|
+
"name": "limit",
|
|
88
|
+
"type": "uint256"
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
"internalType": "uint256",
|
|
92
|
+
"name": "window",
|
|
93
|
+
"type": "uint256"
|
|
94
|
+
}
|
|
95
|
+
],
|
|
96
|
+
"stateMutability": "view",
|
|
97
|
+
"type": "function"
|
|
98
|
+
}
|
|
99
|
+
],
|
|
100
|
+
"bytecode": "0x",
|
|
101
|
+
"deployedBytecode": "0x",
|
|
102
|
+
"linkReferences": {},
|
|
103
|
+
"deployedLinkReferences": {}
|
|
104
|
+
}
|