@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,591 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_format": "hh-sol-artifact-1",
|
|
3
|
+
"contractName": "SimpleMessageLib",
|
|
4
|
+
"sourceName": "contracts/messagelib/SimpleMessageLib.sol",
|
|
5
|
+
"abi": [
|
|
6
|
+
{
|
|
7
|
+
"inputs": [
|
|
8
|
+
{
|
|
9
|
+
"internalType": "address",
|
|
10
|
+
"name": "_endpoint",
|
|
11
|
+
"type": "address"
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"internalType": "address",
|
|
15
|
+
"name": "_treasury",
|
|
16
|
+
"type": "address"
|
|
17
|
+
}
|
|
18
|
+
],
|
|
19
|
+
"stateMutability": "nonpayable",
|
|
20
|
+
"type": "constructor"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"inputs": [
|
|
24
|
+
{
|
|
25
|
+
"internalType": "address",
|
|
26
|
+
"name": "expected",
|
|
27
|
+
"type": "address"
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"internalType": "address",
|
|
31
|
+
"name": "actual",
|
|
32
|
+
"type": "address"
|
|
33
|
+
}
|
|
34
|
+
],
|
|
35
|
+
"name": "InvalidEndpoint",
|
|
36
|
+
"type": "error"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"inputs": [],
|
|
40
|
+
"name": "LZ_NotImplemented",
|
|
41
|
+
"type": "error"
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"inputs": [],
|
|
45
|
+
"name": "LzTokenIsAddressZero",
|
|
46
|
+
"type": "error"
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"inputs": [],
|
|
50
|
+
"name": "OnlyEndpoint",
|
|
51
|
+
"type": "error"
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"inputs": [],
|
|
55
|
+
"name": "OnlyWhitelistCaller",
|
|
56
|
+
"type": "error"
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"inputs": [],
|
|
60
|
+
"name": "ToIsAddressZero",
|
|
61
|
+
"type": "error"
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"inputs": [],
|
|
65
|
+
"name": "TransferFailed",
|
|
66
|
+
"type": "error"
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"inputs": [
|
|
70
|
+
{
|
|
71
|
+
"internalType": "address",
|
|
72
|
+
"name": "_to",
|
|
73
|
+
"type": "address"
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"internalType": "uint256",
|
|
77
|
+
"name": "_value",
|
|
78
|
+
"type": "uint256"
|
|
79
|
+
}
|
|
80
|
+
],
|
|
81
|
+
"name": "Transfer_NativeFailed",
|
|
82
|
+
"type": "error"
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"inputs": [],
|
|
86
|
+
"name": "Transfer_ToAddressIsZero",
|
|
87
|
+
"type": "error"
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"anonymous": false,
|
|
91
|
+
"inputs": [
|
|
92
|
+
{
|
|
93
|
+
"indexed": true,
|
|
94
|
+
"internalType": "address",
|
|
95
|
+
"name": "previousOwner",
|
|
96
|
+
"type": "address"
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
"indexed": true,
|
|
100
|
+
"internalType": "address",
|
|
101
|
+
"name": "newOwner",
|
|
102
|
+
"type": "address"
|
|
103
|
+
}
|
|
104
|
+
],
|
|
105
|
+
"name": "OwnershipTransferred",
|
|
106
|
+
"type": "event"
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
"stateMutability": "payable",
|
|
110
|
+
"type": "fallback"
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
"inputs": [],
|
|
114
|
+
"name": "PACKET_VERSION",
|
|
115
|
+
"outputs": [
|
|
116
|
+
{
|
|
117
|
+
"internalType": "uint8",
|
|
118
|
+
"name": "",
|
|
119
|
+
"type": "uint8"
|
|
120
|
+
}
|
|
121
|
+
],
|
|
122
|
+
"stateMutability": "view",
|
|
123
|
+
"type": "function"
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
"inputs": [],
|
|
127
|
+
"name": "defaultOption",
|
|
128
|
+
"outputs": [
|
|
129
|
+
{
|
|
130
|
+
"internalType": "bytes",
|
|
131
|
+
"name": "",
|
|
132
|
+
"type": "bytes"
|
|
133
|
+
}
|
|
134
|
+
],
|
|
135
|
+
"stateMutability": "view",
|
|
136
|
+
"type": "function"
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
"inputs": [],
|
|
140
|
+
"name": "endpoint",
|
|
141
|
+
"outputs": [
|
|
142
|
+
{
|
|
143
|
+
"internalType": "address",
|
|
144
|
+
"name": "",
|
|
145
|
+
"type": "address"
|
|
146
|
+
}
|
|
147
|
+
],
|
|
148
|
+
"stateMutability": "view",
|
|
149
|
+
"type": "function"
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
"inputs": [
|
|
153
|
+
{
|
|
154
|
+
"internalType": "uint32",
|
|
155
|
+
"name": "",
|
|
156
|
+
"type": "uint32"
|
|
157
|
+
}
|
|
158
|
+
],
|
|
159
|
+
"name": "isSupportedEid",
|
|
160
|
+
"outputs": [
|
|
161
|
+
{
|
|
162
|
+
"internalType": "bool",
|
|
163
|
+
"name": "",
|
|
164
|
+
"type": "bool"
|
|
165
|
+
}
|
|
166
|
+
],
|
|
167
|
+
"stateMutability": "pure",
|
|
168
|
+
"type": "function"
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
"inputs": [],
|
|
172
|
+
"name": "localEid",
|
|
173
|
+
"outputs": [
|
|
174
|
+
{
|
|
175
|
+
"internalType": "uint32",
|
|
176
|
+
"name": "",
|
|
177
|
+
"type": "uint32"
|
|
178
|
+
}
|
|
179
|
+
],
|
|
180
|
+
"stateMutability": "view",
|
|
181
|
+
"type": "function"
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
"inputs": [],
|
|
185
|
+
"name": "lzTokenFee",
|
|
186
|
+
"outputs": [
|
|
187
|
+
{
|
|
188
|
+
"internalType": "uint256",
|
|
189
|
+
"name": "",
|
|
190
|
+
"type": "uint256"
|
|
191
|
+
}
|
|
192
|
+
],
|
|
193
|
+
"stateMutability": "view",
|
|
194
|
+
"type": "function"
|
|
195
|
+
},
|
|
196
|
+
{
|
|
197
|
+
"inputs": [],
|
|
198
|
+
"name": "messageLibType",
|
|
199
|
+
"outputs": [
|
|
200
|
+
{
|
|
201
|
+
"internalType": "enum MessageLibType",
|
|
202
|
+
"name": "",
|
|
203
|
+
"type": "uint8"
|
|
204
|
+
}
|
|
205
|
+
],
|
|
206
|
+
"stateMutability": "pure",
|
|
207
|
+
"type": "function"
|
|
208
|
+
},
|
|
209
|
+
{
|
|
210
|
+
"inputs": [],
|
|
211
|
+
"name": "nativeFee",
|
|
212
|
+
"outputs": [
|
|
213
|
+
{
|
|
214
|
+
"internalType": "uint256",
|
|
215
|
+
"name": "",
|
|
216
|
+
"type": "uint256"
|
|
217
|
+
}
|
|
218
|
+
],
|
|
219
|
+
"stateMutability": "view",
|
|
220
|
+
"type": "function"
|
|
221
|
+
},
|
|
222
|
+
{
|
|
223
|
+
"inputs": [],
|
|
224
|
+
"name": "owner",
|
|
225
|
+
"outputs": [
|
|
226
|
+
{
|
|
227
|
+
"internalType": "address",
|
|
228
|
+
"name": "",
|
|
229
|
+
"type": "address"
|
|
230
|
+
}
|
|
231
|
+
],
|
|
232
|
+
"stateMutability": "view",
|
|
233
|
+
"type": "function"
|
|
234
|
+
},
|
|
235
|
+
{
|
|
236
|
+
"inputs": [
|
|
237
|
+
{
|
|
238
|
+
"components": [
|
|
239
|
+
{
|
|
240
|
+
"internalType": "uint64",
|
|
241
|
+
"name": "nonce",
|
|
242
|
+
"type": "uint64"
|
|
243
|
+
},
|
|
244
|
+
{
|
|
245
|
+
"internalType": "uint32",
|
|
246
|
+
"name": "srcEid",
|
|
247
|
+
"type": "uint32"
|
|
248
|
+
},
|
|
249
|
+
{
|
|
250
|
+
"internalType": "address",
|
|
251
|
+
"name": "sender",
|
|
252
|
+
"type": "address"
|
|
253
|
+
},
|
|
254
|
+
{
|
|
255
|
+
"internalType": "uint32",
|
|
256
|
+
"name": "dstEid",
|
|
257
|
+
"type": "uint32"
|
|
258
|
+
},
|
|
259
|
+
{
|
|
260
|
+
"internalType": "bytes32",
|
|
261
|
+
"name": "receiver",
|
|
262
|
+
"type": "bytes32"
|
|
263
|
+
},
|
|
264
|
+
{
|
|
265
|
+
"internalType": "bytes32",
|
|
266
|
+
"name": "guid",
|
|
267
|
+
"type": "bytes32"
|
|
268
|
+
},
|
|
269
|
+
{
|
|
270
|
+
"internalType": "bytes",
|
|
271
|
+
"name": "message",
|
|
272
|
+
"type": "bytes"
|
|
273
|
+
}
|
|
274
|
+
],
|
|
275
|
+
"internalType": "struct Packet",
|
|
276
|
+
"name": "",
|
|
277
|
+
"type": "tuple"
|
|
278
|
+
},
|
|
279
|
+
{
|
|
280
|
+
"internalType": "bytes",
|
|
281
|
+
"name": "",
|
|
282
|
+
"type": "bytes"
|
|
283
|
+
},
|
|
284
|
+
{
|
|
285
|
+
"internalType": "bool",
|
|
286
|
+
"name": "_payInLzToken",
|
|
287
|
+
"type": "bool"
|
|
288
|
+
}
|
|
289
|
+
],
|
|
290
|
+
"name": "quote",
|
|
291
|
+
"outputs": [
|
|
292
|
+
{
|
|
293
|
+
"components": [
|
|
294
|
+
{
|
|
295
|
+
"internalType": "uint256",
|
|
296
|
+
"name": "nativeFee",
|
|
297
|
+
"type": "uint256"
|
|
298
|
+
},
|
|
299
|
+
{
|
|
300
|
+
"internalType": "uint256",
|
|
301
|
+
"name": "lzTokenFee",
|
|
302
|
+
"type": "uint256"
|
|
303
|
+
}
|
|
304
|
+
],
|
|
305
|
+
"internalType": "struct MessagingFee",
|
|
306
|
+
"name": "",
|
|
307
|
+
"type": "tuple"
|
|
308
|
+
}
|
|
309
|
+
],
|
|
310
|
+
"stateMutability": "view",
|
|
311
|
+
"type": "function"
|
|
312
|
+
},
|
|
313
|
+
{
|
|
314
|
+
"inputs": [],
|
|
315
|
+
"name": "renounceOwnership",
|
|
316
|
+
"outputs": [],
|
|
317
|
+
"stateMutability": "nonpayable",
|
|
318
|
+
"type": "function"
|
|
319
|
+
},
|
|
320
|
+
{
|
|
321
|
+
"inputs": [
|
|
322
|
+
{
|
|
323
|
+
"components": [
|
|
324
|
+
{
|
|
325
|
+
"internalType": "uint64",
|
|
326
|
+
"name": "nonce",
|
|
327
|
+
"type": "uint64"
|
|
328
|
+
},
|
|
329
|
+
{
|
|
330
|
+
"internalType": "uint32",
|
|
331
|
+
"name": "srcEid",
|
|
332
|
+
"type": "uint32"
|
|
333
|
+
},
|
|
334
|
+
{
|
|
335
|
+
"internalType": "address",
|
|
336
|
+
"name": "sender",
|
|
337
|
+
"type": "address"
|
|
338
|
+
},
|
|
339
|
+
{
|
|
340
|
+
"internalType": "uint32",
|
|
341
|
+
"name": "dstEid",
|
|
342
|
+
"type": "uint32"
|
|
343
|
+
},
|
|
344
|
+
{
|
|
345
|
+
"internalType": "bytes32",
|
|
346
|
+
"name": "receiver",
|
|
347
|
+
"type": "bytes32"
|
|
348
|
+
},
|
|
349
|
+
{
|
|
350
|
+
"internalType": "bytes32",
|
|
351
|
+
"name": "guid",
|
|
352
|
+
"type": "bytes32"
|
|
353
|
+
},
|
|
354
|
+
{
|
|
355
|
+
"internalType": "bytes",
|
|
356
|
+
"name": "message",
|
|
357
|
+
"type": "bytes"
|
|
358
|
+
}
|
|
359
|
+
],
|
|
360
|
+
"internalType": "struct Packet",
|
|
361
|
+
"name": "_packet",
|
|
362
|
+
"type": "tuple"
|
|
363
|
+
},
|
|
364
|
+
{
|
|
365
|
+
"internalType": "bytes",
|
|
366
|
+
"name": "_options",
|
|
367
|
+
"type": "bytes"
|
|
368
|
+
},
|
|
369
|
+
{
|
|
370
|
+
"internalType": "bool",
|
|
371
|
+
"name": "_payInLzToken",
|
|
372
|
+
"type": "bool"
|
|
373
|
+
}
|
|
374
|
+
],
|
|
375
|
+
"name": "send",
|
|
376
|
+
"outputs": [
|
|
377
|
+
{
|
|
378
|
+
"components": [
|
|
379
|
+
{
|
|
380
|
+
"internalType": "uint256",
|
|
381
|
+
"name": "nativeFee",
|
|
382
|
+
"type": "uint256"
|
|
383
|
+
},
|
|
384
|
+
{
|
|
385
|
+
"internalType": "uint256",
|
|
386
|
+
"name": "lzTokenFee",
|
|
387
|
+
"type": "uint256"
|
|
388
|
+
}
|
|
389
|
+
],
|
|
390
|
+
"internalType": "struct MessagingFee",
|
|
391
|
+
"name": "fee",
|
|
392
|
+
"type": "tuple"
|
|
393
|
+
},
|
|
394
|
+
{
|
|
395
|
+
"internalType": "bytes",
|
|
396
|
+
"name": "encodedPacket",
|
|
397
|
+
"type": "bytes"
|
|
398
|
+
},
|
|
399
|
+
{
|
|
400
|
+
"internalType": "bytes",
|
|
401
|
+
"name": "options",
|
|
402
|
+
"type": "bytes"
|
|
403
|
+
}
|
|
404
|
+
],
|
|
405
|
+
"stateMutability": "nonpayable",
|
|
406
|
+
"type": "function"
|
|
407
|
+
},
|
|
408
|
+
{
|
|
409
|
+
"inputs": [
|
|
410
|
+
{
|
|
411
|
+
"internalType": "bytes",
|
|
412
|
+
"name": "_defaultOption",
|
|
413
|
+
"type": "bytes"
|
|
414
|
+
}
|
|
415
|
+
],
|
|
416
|
+
"name": "setDefaultOption",
|
|
417
|
+
"outputs": [],
|
|
418
|
+
"stateMutability": "nonpayable",
|
|
419
|
+
"type": "function"
|
|
420
|
+
},
|
|
421
|
+
{
|
|
422
|
+
"inputs": [
|
|
423
|
+
{
|
|
424
|
+
"internalType": "uint256",
|
|
425
|
+
"name": "_nativeFee",
|
|
426
|
+
"type": "uint256"
|
|
427
|
+
},
|
|
428
|
+
{
|
|
429
|
+
"internalType": "uint256",
|
|
430
|
+
"name": "_lzTokenFee",
|
|
431
|
+
"type": "uint256"
|
|
432
|
+
}
|
|
433
|
+
],
|
|
434
|
+
"name": "setMessagingFee",
|
|
435
|
+
"outputs": [],
|
|
436
|
+
"stateMutability": "nonpayable",
|
|
437
|
+
"type": "function"
|
|
438
|
+
},
|
|
439
|
+
{
|
|
440
|
+
"inputs": [
|
|
441
|
+
{
|
|
442
|
+
"internalType": "address",
|
|
443
|
+
"name": "_whitelistCaller",
|
|
444
|
+
"type": "address"
|
|
445
|
+
}
|
|
446
|
+
],
|
|
447
|
+
"name": "setWhitelistCaller",
|
|
448
|
+
"outputs": [],
|
|
449
|
+
"stateMutability": "nonpayable",
|
|
450
|
+
"type": "function"
|
|
451
|
+
},
|
|
452
|
+
{
|
|
453
|
+
"inputs": [
|
|
454
|
+
{
|
|
455
|
+
"internalType": "bytes4",
|
|
456
|
+
"name": "interfaceId",
|
|
457
|
+
"type": "bytes4"
|
|
458
|
+
}
|
|
459
|
+
],
|
|
460
|
+
"name": "supportsInterface",
|
|
461
|
+
"outputs": [
|
|
462
|
+
{
|
|
463
|
+
"internalType": "bool",
|
|
464
|
+
"name": "",
|
|
465
|
+
"type": "bool"
|
|
466
|
+
}
|
|
467
|
+
],
|
|
468
|
+
"stateMutability": "view",
|
|
469
|
+
"type": "function"
|
|
470
|
+
},
|
|
471
|
+
{
|
|
472
|
+
"inputs": [
|
|
473
|
+
{
|
|
474
|
+
"internalType": "address",
|
|
475
|
+
"name": "newOwner",
|
|
476
|
+
"type": "address"
|
|
477
|
+
}
|
|
478
|
+
],
|
|
479
|
+
"name": "transferOwnership",
|
|
480
|
+
"outputs": [],
|
|
481
|
+
"stateMutability": "nonpayable",
|
|
482
|
+
"type": "function"
|
|
483
|
+
},
|
|
484
|
+
{
|
|
485
|
+
"inputs": [],
|
|
486
|
+
"name": "treasury",
|
|
487
|
+
"outputs": [
|
|
488
|
+
{
|
|
489
|
+
"internalType": "address",
|
|
490
|
+
"name": "",
|
|
491
|
+
"type": "address"
|
|
492
|
+
}
|
|
493
|
+
],
|
|
494
|
+
"stateMutability": "view",
|
|
495
|
+
"type": "function"
|
|
496
|
+
},
|
|
497
|
+
{
|
|
498
|
+
"inputs": [
|
|
499
|
+
{
|
|
500
|
+
"internalType": "bytes",
|
|
501
|
+
"name": "packetBytes",
|
|
502
|
+
"type": "bytes"
|
|
503
|
+
}
|
|
504
|
+
],
|
|
505
|
+
"name": "validatePacket",
|
|
506
|
+
"outputs": [],
|
|
507
|
+
"stateMutability": "nonpayable",
|
|
508
|
+
"type": "function"
|
|
509
|
+
},
|
|
510
|
+
{
|
|
511
|
+
"inputs": [],
|
|
512
|
+
"name": "version",
|
|
513
|
+
"outputs": [
|
|
514
|
+
{
|
|
515
|
+
"internalType": "uint64",
|
|
516
|
+
"name": "major",
|
|
517
|
+
"type": "uint64"
|
|
518
|
+
},
|
|
519
|
+
{
|
|
520
|
+
"internalType": "uint8",
|
|
521
|
+
"name": "minor",
|
|
522
|
+
"type": "uint8"
|
|
523
|
+
},
|
|
524
|
+
{
|
|
525
|
+
"internalType": "uint8",
|
|
526
|
+
"name": "endpointVersion",
|
|
527
|
+
"type": "uint8"
|
|
528
|
+
}
|
|
529
|
+
],
|
|
530
|
+
"stateMutability": "pure",
|
|
531
|
+
"type": "function"
|
|
532
|
+
},
|
|
533
|
+
{
|
|
534
|
+
"inputs": [],
|
|
535
|
+
"name": "whitelistCaller",
|
|
536
|
+
"outputs": [
|
|
537
|
+
{
|
|
538
|
+
"internalType": "address",
|
|
539
|
+
"name": "",
|
|
540
|
+
"type": "address"
|
|
541
|
+
}
|
|
542
|
+
],
|
|
543
|
+
"stateMutability": "view",
|
|
544
|
+
"type": "function"
|
|
545
|
+
},
|
|
546
|
+
{
|
|
547
|
+
"inputs": [
|
|
548
|
+
{
|
|
549
|
+
"internalType": "address",
|
|
550
|
+
"name": "_to",
|
|
551
|
+
"type": "address"
|
|
552
|
+
},
|
|
553
|
+
{
|
|
554
|
+
"internalType": "uint256",
|
|
555
|
+
"name": "_amount",
|
|
556
|
+
"type": "uint256"
|
|
557
|
+
}
|
|
558
|
+
],
|
|
559
|
+
"name": "withdrawFee",
|
|
560
|
+
"outputs": [],
|
|
561
|
+
"stateMutability": "nonpayable",
|
|
562
|
+
"type": "function"
|
|
563
|
+
},
|
|
564
|
+
{
|
|
565
|
+
"inputs": [
|
|
566
|
+
{
|
|
567
|
+
"internalType": "address",
|
|
568
|
+
"name": "_to",
|
|
569
|
+
"type": "address"
|
|
570
|
+
},
|
|
571
|
+
{
|
|
572
|
+
"internalType": "uint256",
|
|
573
|
+
"name": "_amount",
|
|
574
|
+
"type": "uint256"
|
|
575
|
+
}
|
|
576
|
+
],
|
|
577
|
+
"name": "withdrawLzTokenFee",
|
|
578
|
+
"outputs": [],
|
|
579
|
+
"stateMutability": "nonpayable",
|
|
580
|
+
"type": "function"
|
|
581
|
+
},
|
|
582
|
+
{
|
|
583
|
+
"stateMutability": "payable",
|
|
584
|
+
"type": "receive"
|
|
585
|
+
}
|
|
586
|
+
],
|
|
587
|
+
"bytecode": "0x60e06040523480156200001157600080fd5b50d380156200001f57600080fd5b50d280156200002d57600080fd5b50604051620022d2380380620022d2833981016040819052620000509162000168565b6200005b33620000ee565b6001600160a01b03808316608081905290821660a0526040805163416ecebf60e01b8152905163416ecebf916004808201926020929091908290030181865afa158015620000ad573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620000d39190620001a0565b63ffffffff1660c052505060636002556064600355620001cf565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80516000906001600160a81b03811681146200015957600080fd5b6001600160a01b031692915050565b600080604083850312156200017c57600080fd5b62000187836200013e565b915062000197602084016200013e565b90509250929050565b600060208284031215620001b357600080fd5b815163ffffffff81168114620001c857600080fd5b9392505050565b60805160a05160c0516120b76200021b60003960006105260152600061042d0152600081816103df0152818161092401528181610a5301528181610c9b0152610f5d01526120b76000f3fe6080604052600436106101845760003560e01c8063715018a6116100d6578063996f79c01161007f578063dabca06311610059578063dabca06314610707578063f2fde38b14610741578063fd9be5221461077b5761018b565b8063996f79c014610656578063aec336e614610686578063d80e9bd9146106c05761018b565b80638da5cb5b116100b05780638da5cb5b146105995780638f58aa7a146105de57806390953238146106185761018b565b8063715018a6146104cb57806372607537146104fa57806372d713221461055d5761018b565b80634389e58f1161013857806361d027b31161011257806361d027b3146104015780636251b6371461044f5780636750cd4c146104905761018b565b80634389e58f1461032457806354fd4d501461036d5780635e280f11146103b35761018b565b80631881d94d116101695780631881d94d146102485780631c7c294e1461027e578063334993ff146102ea5761018b565b806301ffc9a7146101bd57806312cc947f1461020c5761018b565b3661018b57005b6040517f2657b6c300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3480156101c957600080fd5b50d380156101d657600080fd5b50d280156101e357600080fd5b506101f76101f23660046116a7565b6107b5565b60405190151581526020015b60405180910390f35b34801561021857600080fd5b50d3801561022557600080fd5b50d2801561023257600080fd5b5061024661024136600461172b565b61084e565b005b34801561025457600080fd5b50d3801561026157600080fd5b50d2801561026e57600080fd5b506002604051610203919061176d565b34801561028a57600080fd5b50d3801561029757600080fd5b50d280156102a457600080fd5b506001546102c59073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610203565b3480156102f657600080fd5b50d3801561030357600080fd5b50d2801561031057600080fd5b5061024661031f3660046117ae565b610a27565b34801561033057600080fd5b50d3801561033d57600080fd5b50d2801561034a57600080fd5b5061035e6103593660046118f9565b610a3a565b604051610203939291906119df565b34801561037957600080fd5b50d3801561038657600080fd5b50d2801561039357600080fd5b506040805160008082526020820152600291810191909152606001610203565b3480156103bf57600080fd5b50d380156103cc57600080fd5b50d280156103d957600080fd5b506102c57f000000000000000000000000000000000000000000000000000000000000000081565b34801561040d57600080fd5b50d3801561041a57600080fd5b50d2801561042757600080fd5b506102c57f000000000000000000000000000000000000000000000000000000000000000081565b34801561045b57600080fd5b50d3801561046857600080fd5b50d2801561047557600080fd5b5061047e600181565b60405160ff9091168152602001610203565b34801561049c57600080fd5b50d380156104a957600080fd5b50d280156104b657600080fd5b506101f76104c5366004611a38565b50600190565b3480156104d757600080fd5b50d380156104e457600080fd5b50d280156104f157600080fd5b50610246610ba0565b34801561050657600080fd5b50d3801561051357600080fd5b50d2801561052057600080fd5b506105487f000000000000000000000000000000000000000000000000000000000000000081565b60405163ffffffff9091168152602001610203565b34801561056957600080fd5b50d3801561057657600080fd5b50d2801561058357600080fd5b5061058c610bb4565b6040516102039190611a53565b3480156105a557600080fd5b50d380156105b257600080fd5b50d280156105bf57600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff166102c5565b3480156105ea57600080fd5b50d380156105f757600080fd5b50d2801561060457600080fd5b50610246610613366004611ab2565b610c42565b34801561062457600080fd5b50d3801561063157600080fd5b50d2801561063e57600080fd5b5061064860025481565b604051908152602001610203565b34801561066257600080fd5b50d3801561066f57600080fd5b50d2801561067c57600080fd5b5061064860035481565b34801561069257600080fd5b50d3801561069f57600080fd5b50d280156106ac57600080fd5b506102466106bb366004611af4565b610d9d565b3480156106cc57600080fd5b50d380156106d957600080fd5b50d280156106e657600080fd5b506106fa6106f5366004611b2e565b610dec565b6040516102039190611baa565b34801561071357600080fd5b50d3801561072057600080fd5b50d2801561072d57600080fd5b5061024661073c366004611bc1565b610e30565b34801561074d57600080fd5b50d3801561075a57600080fd5b50d2801561076757600080fd5b50610246610776366004611af4565b610e48565b34801561078757600080fd5b50d3801561079457600080fd5b50d280156107a157600080fd5b506102466107b0366004611ab2565b610f04565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f97f0258400000000000000000000000000000000000000000000000000000000148061084857507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b60015473ffffffffffffffffffffffffffffffffffffffff161580159061088d575060015473ffffffffffffffffffffffffffffffffffffffff163314155b156108c4576040517f70b216ec00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600060405180606001604052806108db8585610ff7565b63ffffffff1681526020016108f0858561101a565b81526020016108ff858561103a565b67ffffffffffffffff169052905073ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000000000000000000000000000000000000000000001663a825d74782610954868661105d565b61095e878761106f565b60405161096c929190611bf6565b6040805191829003822060e086901b7fffffffff00000000000000000000000000000000000000000000000000000000168352845163ffffffff1660048401526020850151602484015293015167ffffffffffffffff16604482015273ffffffffffffffffffffffffffffffffffffffff9091166064820152608481019190915260a401600060405180830381600087803b158015610a0a57600080fd5b505af1158015610a1e573d6000803e3d6000fd5b50505050505050565b610a2f61108b565b600391909155600255565b60408051808201909152600080825260208201526060807f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163314610ac0576040517f7eb966c800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ad1610acc87611c1e565b61110c565b91508451600014610ae25784610b6e565b60048054610aef90611cbc565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1b90611cbc565b8015610b685780601f10610b3d57610100808354040283529160200191610b68565b820191906000526020600020905b815481529060010190602001808311610b4b57829003601f168201915b50505050505b90506040518060400160405280600354815260200185610b8f576000610b93565b6002545b9052969195509350915050565b610ba861108b565b610bb26000611171565b565b60048054610bc190611cbc565b80601f0160208091040260200160405190810160405280929190818152602001828054610bed90611cbc565b8015610c3a5780601f10610c0f57610100808354040283529160200191610c3a565b820191906000526020600020905b815481529060010190602001808311610c1d57829003601f168201915b505050505081565b610c4a61108b565b73ffffffffffffffffffffffffffffffffffffffff8216610c97576040517f3d3496e100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663e4fe1d946040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d04573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d289190611d09565b905073ffffffffffffffffffffffffffffffffffffffff8116610d77576040517f54c1781b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d9873ffffffffffffffffffffffffffffffffffffffff821684846111e6565b505050565b610da561108b565b600180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60408051808201909152600080825260208201526040518060400160405280600354815260200183610e1f576000610e23565b6002545b905290505b949350505050565b610e3861108b565b6004610e448282611d74565b5050565b610e5061108b565b73ffffffffffffffffffffffffffffffffffffffff8116610ef8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b610f0181611171565b50565b610f0c61108b565b73ffffffffffffffffffffffffffffffffffffffff8216610f59576040517f3d3496e100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663e1758bd86040518163ffffffff1660e01b8152600401602060405180830381865afa158015610fc6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fea9190611d09565b9050610d98818484611273565b6000611007600d60098486611e8e565b61101091611eb8565b60e01c9392505050565b600061102a602d600d8486611e8e565b61103391611f00565b9392505050565b600061104a600960018486611e8e565b61105391611f3c565b60c01c9392505050565b600061103361106c84846112a3565b90565b36600061107f8360518187611e8e565b915091505b9250929050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610bb2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610eef565b8051602080830151604080850151606080870151608088015160a089015160c08a01519551939861115b986001989197919673ffffffffffffffffffffffffffffffffffffffff169501611f82565b6040516020818303038152906040529050919050565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6040805173ffffffffffffffffffffffffffffffffffffffff8416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb00000000000000000000000000000000000000000000000000000000179052610d989084906112b3565b73ffffffffffffffffffffffffffffffffffffffff831661129857610d9882826113c2565b610d988383836114c8565b600061102a605160318486611e8e565b6000611315826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166115369092919063ffffffff16565b90508051600014806113365750808060200190518101906113369190612048565b610d98576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401610eef565b73ffffffffffffffffffffffffffffffffffffffff821661140f576040517f6b7a931000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405160006040518083038185875af1925050503d8060008114611469576040519150601f19603f3d011682016040523d82523d6000602084013e61146e565b606091505b5050905080610d98576040517f465bc83400000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8416600482015260248101839052604401610eef565b73ffffffffffffffffffffffffffffffffffffffff8216611515576040517f6b7a931000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d9873ffffffffffffffffffffffffffffffffffffffff841683836111e6565b6060610e288484600085856000808673ffffffffffffffffffffffffffffffffffffffff16858760405161156a9190612065565b60006040518083038185875af1925050503d80600081146115a7576040519150601f19603f3d011682016040523d82523d6000602084013e6115ac565b606091505b50915091506115bd878383876115c8565b979650505050505050565b6060831561165e5782516000036116575773ffffffffffffffffffffffffffffffffffffffff85163b611657576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610eef565b5081610e28565b610e2883838151156116735781518083602001fd5b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eef9190611a53565b6000602082840312156116b957600080fd5b81357fffffffff000000000000000000000000000000000000000000000000000000008116811461103357600080fd5b60008083601f8401126116fb57600080fd5b50813567ffffffffffffffff81111561171357600080fd5b60208301915083602082850101111561108457600080fd5b6000806020838503121561173e57600080fd5b823567ffffffffffffffff81111561175557600080fd5b611761858286016116e9565b90969095509350505050565b60208101600383106117a8577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b91905290565b600080604083850312156117c157600080fd5b50508035926020909101359150565b600060e082840312156117e257600080fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405160e0810167ffffffffffffffff8111828210171561183a5761183a6117e8565b60405290565b600082601f83011261185157600080fd5b813567ffffffffffffffff8082111561186c5761186c6117e8565b604051601f83017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f011681019082821181831017156118b2576118b26117e8565b816040528381528660208588010111156118cb57600080fd5b836020870160208301376000602085830101528094505050505092915050565b8015158114610f0157600080fd5b60008060006060848603121561190e57600080fd5b833567ffffffffffffffff8082111561192657600080fd5b611932878388016117d0565b9450602086013591508082111561194857600080fd5b5061195586828701611840565b9250506040840135611966816118eb565b809150509250925092565b60005b8381101561198c578181015183820152602001611974565b50506000910152565b600081518084526119ad816020860160208601611971565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b8351815260208085015190820152608060408201526000611a036080830185611995565b8281036060840152611a158185611995565b9695505050505050565b803563ffffffff81168114611a3357600080fd5b919050565b600060208284031215611a4a57600080fd5b61103382611a1f565b6020815260006110336020830184611995565b74ffffffffffffffffffffffffffffffffffffffffff81168114610f0157600080fd5b60008135611a9681611a66565b73ffffffffffffffffffffffffffffffffffffffff1692915050565b60008060408385031215611ac557600080fd5b8235611ad081611a66565b73ffffffffffffffffffffffffffffffffffffffff16946020939093013593505050565b600060208284031215611b0657600080fd5b8135611b1181611a66565b73ffffffffffffffffffffffffffffffffffffffff169392505050565b60008060008060608587031215611b4457600080fd5b843567ffffffffffffffff80821115611b5c57600080fd5b611b68888389016117d0565b95506020870135915080821115611b7e57600080fd5b50611b8b878288016116e9565b9094509250506040850135611b9f816118eb565b939692955090935050565b815181526020808301519082015260408101610848565b600060208284031215611bd357600080fd5b813567ffffffffffffffff811115611bea57600080fd5b610e2884828501611840565b8183823760009101908152919050565b803567ffffffffffffffff81168114611a3357600080fd5b600060e08236031215611c3057600080fd5b611c38611817565b611c4183611c06565b8152611c4f60208401611a1f565b6020820152611c6060408401611a89565b6040820152611c7160608401611a1f565b60608201526080830135608082015260a083013560a082015260c083013567ffffffffffffffff811115611ca457600080fd5b611cb036828601611840565b60c08301525092915050565b600181811c90821680611cd057607f821691505b6020821081036117e2577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060208284031215611d1b57600080fd5b8151611b1181611a66565b601f821115610d9857600081815260208120601f850160051c81016020861015611d4d5750805b601f850160051c820191505b81811015611d6c57828155600101611d59565b505050505050565b815167ffffffffffffffff811115611d8e57611d8e6117e8565b611da281611d9c8454611cbc565b84611d26565b602080601f831160018114611df55760008415611dbf5750858301515b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600386901b1c1916600185901b178555611d6c565b6000858152602081207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08616915b82811015611e4257888601518255948401946001909101908401611e23565b5085821015611e7e57878501517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600388901b60f8161c191681555b5050505050600190811b01905550565b60008085851115611e9e57600080fd5b83861115611eab57600080fd5b5050820193919092039150565b7fffffffff000000000000000000000000000000000000000000000000000000008135818116916004851015611ef85780818660040360031b1b83161692505b505092915050565b80356020831015610848577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff602084900360031b1b1692915050565b7fffffffffffffffff0000000000000000000000000000000000000000000000008135818116916008851015611ef85760089490940360031b84901b1690921692915050565b7fff000000000000000000000000000000000000000000000000000000000000008960f81b1681527fffffffffffffffff0000000000000000000000000000000000000000000000008860c01b16600182015260007fffffffff00000000000000000000000000000000000000000000000000000000808960e01b16600984015287600d840152808760e01b16602d840152508460318301528360518301528251612034816071850160208701611971565b919091016071019998505050505050505050565b60006020828403121561205a57600080fd5b8151611033816118eb565b60008251612077818460208701611971565b919091019291505056fea26474726f6e58221220632cd7d36dea9897d56cfd7d6c6796d6ddaf66871e8ff9f08f25912b5da76bbf64736f6c63430008140033",
|
|
588
|
+
"deployedBytecode": "0x6080604052600436106101845760003560e01c8063715018a6116100d6578063996f79c01161007f578063dabca06311610059578063dabca06314610707578063f2fde38b14610741578063fd9be5221461077b5761018b565b8063996f79c014610656578063aec336e614610686578063d80e9bd9146106c05761018b565b80638da5cb5b116100b05780638da5cb5b146105995780638f58aa7a146105de57806390953238146106185761018b565b8063715018a6146104cb57806372607537146104fa57806372d713221461055d5761018b565b80634389e58f1161013857806361d027b31161011257806361d027b3146104015780636251b6371461044f5780636750cd4c146104905761018b565b80634389e58f1461032457806354fd4d501461036d5780635e280f11146103b35761018b565b80631881d94d116101695780631881d94d146102485780631c7c294e1461027e578063334993ff146102ea5761018b565b806301ffc9a7146101bd57806312cc947f1461020c5761018b565b3661018b57005b6040517f2657b6c300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3480156101c957600080fd5b50d380156101d657600080fd5b50d280156101e357600080fd5b506101f76101f23660046116a7565b6107b5565b60405190151581526020015b60405180910390f35b34801561021857600080fd5b50d3801561022557600080fd5b50d2801561023257600080fd5b5061024661024136600461172b565b61084e565b005b34801561025457600080fd5b50d3801561026157600080fd5b50d2801561026e57600080fd5b506002604051610203919061176d565b34801561028a57600080fd5b50d3801561029757600080fd5b50d280156102a457600080fd5b506001546102c59073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610203565b3480156102f657600080fd5b50d3801561030357600080fd5b50d2801561031057600080fd5b5061024661031f3660046117ae565b610a27565b34801561033057600080fd5b50d3801561033d57600080fd5b50d2801561034a57600080fd5b5061035e6103593660046118f9565b610a3a565b604051610203939291906119df565b34801561037957600080fd5b50d3801561038657600080fd5b50d2801561039357600080fd5b506040805160008082526020820152600291810191909152606001610203565b3480156103bf57600080fd5b50d380156103cc57600080fd5b50d280156103d957600080fd5b506102c57f000000000000000000000000000000000000000000000000000000000000000081565b34801561040d57600080fd5b50d3801561041a57600080fd5b50d2801561042757600080fd5b506102c57f000000000000000000000000000000000000000000000000000000000000000081565b34801561045b57600080fd5b50d3801561046857600080fd5b50d2801561047557600080fd5b5061047e600181565b60405160ff9091168152602001610203565b34801561049c57600080fd5b50d380156104a957600080fd5b50d280156104b657600080fd5b506101f76104c5366004611a38565b50600190565b3480156104d757600080fd5b50d380156104e457600080fd5b50d280156104f157600080fd5b50610246610ba0565b34801561050657600080fd5b50d3801561051357600080fd5b50d2801561052057600080fd5b506105487f000000000000000000000000000000000000000000000000000000000000000081565b60405163ffffffff9091168152602001610203565b34801561056957600080fd5b50d3801561057657600080fd5b50d2801561058357600080fd5b5061058c610bb4565b6040516102039190611a53565b3480156105a557600080fd5b50d380156105b257600080fd5b50d280156105bf57600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff166102c5565b3480156105ea57600080fd5b50d380156105f757600080fd5b50d2801561060457600080fd5b50610246610613366004611ab2565b610c42565b34801561062457600080fd5b50d3801561063157600080fd5b50d2801561063e57600080fd5b5061064860025481565b604051908152602001610203565b34801561066257600080fd5b50d3801561066f57600080fd5b50d2801561067c57600080fd5b5061064860035481565b34801561069257600080fd5b50d3801561069f57600080fd5b50d280156106ac57600080fd5b506102466106bb366004611af4565b610d9d565b3480156106cc57600080fd5b50d380156106d957600080fd5b50d280156106e657600080fd5b506106fa6106f5366004611b2e565b610dec565b6040516102039190611baa565b34801561071357600080fd5b50d3801561072057600080fd5b50d2801561072d57600080fd5b5061024661073c366004611bc1565b610e30565b34801561074d57600080fd5b50d3801561075a57600080fd5b50d2801561076757600080fd5b50610246610776366004611af4565b610e48565b34801561078757600080fd5b50d3801561079457600080fd5b50d280156107a157600080fd5b506102466107b0366004611ab2565b610f04565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f97f0258400000000000000000000000000000000000000000000000000000000148061084857507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b60015473ffffffffffffffffffffffffffffffffffffffff161580159061088d575060015473ffffffffffffffffffffffffffffffffffffffff163314155b156108c4576040517f70b216ec00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600060405180606001604052806108db8585610ff7565b63ffffffff1681526020016108f0858561101a565b81526020016108ff858561103a565b67ffffffffffffffff169052905073ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000000000000000000000000000000000000000000001663a825d74782610954868661105d565b61095e878761106f565b60405161096c929190611bf6565b6040805191829003822060e086901b7fffffffff00000000000000000000000000000000000000000000000000000000168352845163ffffffff1660048401526020850151602484015293015167ffffffffffffffff16604482015273ffffffffffffffffffffffffffffffffffffffff9091166064820152608481019190915260a401600060405180830381600087803b158015610a0a57600080fd5b505af1158015610a1e573d6000803e3d6000fd5b50505050505050565b610a2f61108b565b600391909155600255565b60408051808201909152600080825260208201526060807f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163314610ac0576040517f7eb966c800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ad1610acc87611c1e565b61110c565b91508451600014610ae25784610b6e565b60048054610aef90611cbc565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1b90611cbc565b8015610b685780601f10610b3d57610100808354040283529160200191610b68565b820191906000526020600020905b815481529060010190602001808311610b4b57829003601f168201915b50505050505b90506040518060400160405280600354815260200185610b8f576000610b93565b6002545b9052969195509350915050565b610ba861108b565b610bb26000611171565b565b60048054610bc190611cbc565b80601f0160208091040260200160405190810160405280929190818152602001828054610bed90611cbc565b8015610c3a5780601f10610c0f57610100808354040283529160200191610c3a565b820191906000526020600020905b815481529060010190602001808311610c1d57829003601f168201915b505050505081565b610c4a61108b565b73ffffffffffffffffffffffffffffffffffffffff8216610c97576040517f3d3496e100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663e4fe1d946040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d04573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d289190611d09565b905073ffffffffffffffffffffffffffffffffffffffff8116610d77576040517f54c1781b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d9873ffffffffffffffffffffffffffffffffffffffff821684846111e6565b505050565b610da561108b565b600180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60408051808201909152600080825260208201526040518060400160405280600354815260200183610e1f576000610e23565b6002545b905290505b949350505050565b610e3861108b565b6004610e448282611d74565b5050565b610e5061108b565b73ffffffffffffffffffffffffffffffffffffffff8116610ef8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b610f0181611171565b50565b610f0c61108b565b73ffffffffffffffffffffffffffffffffffffffff8216610f59576040517f3d3496e100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663e1758bd86040518163ffffffff1660e01b8152600401602060405180830381865afa158015610fc6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fea9190611d09565b9050610d98818484611273565b6000611007600d60098486611e8e565b61101091611eb8565b60e01c9392505050565b600061102a602d600d8486611e8e565b61103391611f00565b9392505050565b600061104a600960018486611e8e565b61105391611f3c565b60c01c9392505050565b600061103361106c84846112a3565b90565b36600061107f8360518187611e8e565b915091505b9250929050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610bb2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610eef565b8051602080830151604080850151606080870151608088015160a089015160c08a01519551939861115b986001989197919673ffffffffffffffffffffffffffffffffffffffff169501611f82565b6040516020818303038152906040529050919050565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6040805173ffffffffffffffffffffffffffffffffffffffff8416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb00000000000000000000000000000000000000000000000000000000179052610d989084906112b3565b73ffffffffffffffffffffffffffffffffffffffff831661129857610d9882826113c2565b610d988383836114c8565b600061102a605160318486611e8e565b6000611315826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166115369092919063ffffffff16565b90508051600014806113365750808060200190518101906113369190612048565b610d98576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401610eef565b73ffffffffffffffffffffffffffffffffffffffff821661140f576040517f6b7a931000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405160006040518083038185875af1925050503d8060008114611469576040519150601f19603f3d011682016040523d82523d6000602084013e61146e565b606091505b5050905080610d98576040517f465bc83400000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8416600482015260248101839052604401610eef565b73ffffffffffffffffffffffffffffffffffffffff8216611515576040517f6b7a931000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d9873ffffffffffffffffffffffffffffffffffffffff841683836111e6565b6060610e288484600085856000808673ffffffffffffffffffffffffffffffffffffffff16858760405161156a9190612065565b60006040518083038185875af1925050503d80600081146115a7576040519150601f19603f3d011682016040523d82523d6000602084013e6115ac565b606091505b50915091506115bd878383876115c8565b979650505050505050565b6060831561165e5782516000036116575773ffffffffffffffffffffffffffffffffffffffff85163b611657576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610eef565b5081610e28565b610e2883838151156116735781518083602001fd5b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eef9190611a53565b6000602082840312156116b957600080fd5b81357fffffffff000000000000000000000000000000000000000000000000000000008116811461103357600080fd5b60008083601f8401126116fb57600080fd5b50813567ffffffffffffffff81111561171357600080fd5b60208301915083602082850101111561108457600080fd5b6000806020838503121561173e57600080fd5b823567ffffffffffffffff81111561175557600080fd5b611761858286016116e9565b90969095509350505050565b60208101600383106117a8577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b91905290565b600080604083850312156117c157600080fd5b50508035926020909101359150565b600060e082840312156117e257600080fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405160e0810167ffffffffffffffff8111828210171561183a5761183a6117e8565b60405290565b600082601f83011261185157600080fd5b813567ffffffffffffffff8082111561186c5761186c6117e8565b604051601f83017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f011681019082821181831017156118b2576118b26117e8565b816040528381528660208588010111156118cb57600080fd5b836020870160208301376000602085830101528094505050505092915050565b8015158114610f0157600080fd5b60008060006060848603121561190e57600080fd5b833567ffffffffffffffff8082111561192657600080fd5b611932878388016117d0565b9450602086013591508082111561194857600080fd5b5061195586828701611840565b9250506040840135611966816118eb565b809150509250925092565b60005b8381101561198c578181015183820152602001611974565b50506000910152565b600081518084526119ad816020860160208601611971565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b8351815260208085015190820152608060408201526000611a036080830185611995565b8281036060840152611a158185611995565b9695505050505050565b803563ffffffff81168114611a3357600080fd5b919050565b600060208284031215611a4a57600080fd5b61103382611a1f565b6020815260006110336020830184611995565b74ffffffffffffffffffffffffffffffffffffffffff81168114610f0157600080fd5b60008135611a9681611a66565b73ffffffffffffffffffffffffffffffffffffffff1692915050565b60008060408385031215611ac557600080fd5b8235611ad081611a66565b73ffffffffffffffffffffffffffffffffffffffff16946020939093013593505050565b600060208284031215611b0657600080fd5b8135611b1181611a66565b73ffffffffffffffffffffffffffffffffffffffff169392505050565b60008060008060608587031215611b4457600080fd5b843567ffffffffffffffff80821115611b5c57600080fd5b611b68888389016117d0565b95506020870135915080821115611b7e57600080fd5b50611b8b878288016116e9565b9094509250506040850135611b9f816118eb565b939692955090935050565b815181526020808301519082015260408101610848565b600060208284031215611bd357600080fd5b813567ffffffffffffffff811115611bea57600080fd5b610e2884828501611840565b8183823760009101908152919050565b803567ffffffffffffffff81168114611a3357600080fd5b600060e08236031215611c3057600080fd5b611c38611817565b611c4183611c06565b8152611c4f60208401611a1f565b6020820152611c6060408401611a89565b6040820152611c7160608401611a1f565b60608201526080830135608082015260a083013560a082015260c083013567ffffffffffffffff811115611ca457600080fd5b611cb036828601611840565b60c08301525092915050565b600181811c90821680611cd057607f821691505b6020821081036117e2577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060208284031215611d1b57600080fd5b8151611b1181611a66565b601f821115610d9857600081815260208120601f850160051c81016020861015611d4d5750805b601f850160051c820191505b81811015611d6c57828155600101611d59565b505050505050565b815167ffffffffffffffff811115611d8e57611d8e6117e8565b611da281611d9c8454611cbc565b84611d26565b602080601f831160018114611df55760008415611dbf5750858301515b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600386901b1c1916600185901b178555611d6c565b6000858152602081207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08616915b82811015611e4257888601518255948401946001909101908401611e23565b5085821015611e7e57878501517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600388901b60f8161c191681555b5050505050600190811b01905550565b60008085851115611e9e57600080fd5b83861115611eab57600080fd5b5050820193919092039150565b7fffffffff000000000000000000000000000000000000000000000000000000008135818116916004851015611ef85780818660040360031b1b83161692505b505092915050565b80356020831015610848577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff602084900360031b1b1692915050565b7fffffffffffffffff0000000000000000000000000000000000000000000000008135818116916008851015611ef85760089490940360031b84901b1690921692915050565b7fff000000000000000000000000000000000000000000000000000000000000008960f81b1681527fffffffffffffffff0000000000000000000000000000000000000000000000008860c01b16600182015260007fffffffff00000000000000000000000000000000000000000000000000000000808960e01b16600984015287600d840152808760e01b16602d840152508460318301528360518301528251612034816071850160208701611971565b919091016071019998505050505050505050565b60006020828403121561205a57600080fd5b8151611033816118eb565b60008251612077818460208701611971565b919091019291505056fea26474726f6e58221220632cd7d36dea9897d56cfd7d6c6796d6ddaf66871e8ff9f08f25912b5da76bbf64736f6c63430008140033",
|
|
589
|
+
"linkReferences": {},
|
|
590
|
+
"deployedLinkReferences": {}
|
|
591
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_format": "hh-sol-artifact-1",
|
|
3
|
+
"contractName": "BitMaps",
|
|
4
|
+
"sourceName": "contracts/messagelib/libs/BitMaps.sol",
|
|
5
|
+
"abi": [],
|
|
6
|
+
"bytecode": "0x60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea26474726f6e58221220601e504e567c1c6a2fb008022656b4cad98f85fa5f7dea76accc221494981daa64736f6c63430008140033",
|
|
7
|
+
"deployedBytecode": "0x73000000000000000000000000000000000000000030146080604052600080fdfea26474726f6e58221220601e504e567c1c6a2fb008022656b4cad98f85fa5f7dea76accc221494981daa64736f6c63430008140033",
|
|
8
|
+
"linkReferences": {},
|
|
9
|
+
"deployedLinkReferences": {}
|
|
10
|
+
}
|