@layerzerolabs/lz-evm-sdk-v2 2.3.9 → 2.3.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -0
- package/artifacts-tron/contracts/EndpointV2.sol/EndpointV2.json +2361 -0
- package/artifacts-tron/contracts/EndpointV2Alt.sol/EndpointV2Alt.json +2376 -0
- package/artifacts-tron/contracts/EndpointV2View.sol/EndpointV2View.json +209 -0
- package/artifacts-tron/contracts/EndpointV2ViewUpgradeable.sol/EndpointV2ViewUpgradeable.json +196 -0
- package/artifacts-tron/contracts/Executor.sol/Executor.json +1276 -0
- package/artifacts-tron/contracts/Executor.sol/ILayerZeroEndpointV2.json +230 -0
- package/artifacts-tron/contracts/ExecutorFeeLib.sol/ExecutorFeeLib.json +367 -0
- package/artifacts-tron/contracts/MessageLibBase.sol/MessageLibBase.json +16 -0
- package/artifacts-tron/contracts/MessageLibManager.sol/MessageLibManager.json +771 -0
- package/artifacts-tron/contracts/MessagingChannel.sol/MessagingChannel.json +426 -0
- package/artifacts-tron/contracts/MessagingComposer.sol/MessagingComposer.json +320 -0
- package/artifacts-tron/contracts/MessagingContext.sol/MessagingContext.json +42 -0
- package/artifacts-tron/contracts/PriceFeed.sol/PriceFeed.json +694 -0
- package/artifacts-tron/contracts/ReceiveLibBaseE2.sol/ReceiveLibBaseE2.json +154 -0
- package/artifacts-tron/contracts/SendLibBase.sol/SendLibBase.json +381 -0
- package/artifacts-tron/contracts/SendLibBaseE2.sol/SendLibBaseE2.json +819 -0
- package/artifacts-tron/contracts/Treasury.sol/Treasury.json +309 -0
- package/artifacts-tron/contracts/Worker.sol/Worker.json +579 -0
- package/artifacts-tron/contracts/decompressor/DVNDecoder.sol/DVNDecoder.json +10 -0
- package/artifacts-tron/contracts/decompressor/DVNDecompressor.sol/DVNDecompressor.json +329 -0
- package/artifacts-tron/contracts/decompressor/DecompressorExtension.sol/DecompressorExtension.json +92 -0
- package/artifacts-tron/contracts/decompressor/ExecutorDecoder.sol/ExecutorDecoder.json +10 -0
- package/artifacts-tron/contracts/decompressor/ExecutorDecompressor.sol/ExecutorDecompressor.json +220 -0
- package/artifacts-tron/contracts/interfaces/IExecutor.sol/IExecutor.json +439 -0
- package/artifacts-tron/contracts/interfaces/IExecutorFeeLib.sol/IExecutorFeeLib.json +241 -0
- package/artifacts-tron/contracts/interfaces/ILayerZeroComposer.sol/ILayerZeroComposer.json +44 -0
- package/artifacts-tron/contracts/interfaces/ILayerZeroEndpointV2.sol/ILayerZeroEndpointV2.json +1899 -0
- package/artifacts-tron/contracts/interfaces/ILayerZeroExecutor.sol/ILayerZeroExecutor.json +79 -0
- package/artifacts-tron/contracts/interfaces/ILayerZeroPriceFeed.sol/ILayerZeroPriceFeed.json +222 -0
- package/artifacts-tron/contracts/interfaces/ILayerZeroReceiver.sol/ILayerZeroReceiver.json +121 -0
- package/artifacts-tron/contracts/interfaces/ILayerZeroTreasury.sol/ILayerZeroTreasury.json +79 -0
- package/artifacts-tron/contracts/interfaces/IMessageLib.sol/IMessageLib.json +149 -0
- package/artifacts-tron/contracts/interfaces/IMessageLibManager.sol/IMessageLibManager.json +646 -0
- package/artifacts-tron/contracts/interfaces/IMessagingChannel.sol/IMessagingChannel.json +373 -0
- package/artifacts-tron/contracts/interfaces/IMessagingComposer.sol/IMessagingComposer.json +246 -0
- package/artifacts-tron/contracts/interfaces/IMessagingContext.sol/IMessagingContext.json +42 -0
- package/artifacts-tron/contracts/interfaces/ISendLib.sol/ISendLib.json +364 -0
- package/artifacts-tron/contracts/interfaces/IWorker.sol/IWorker.json +221 -0
- package/artifacts-tron/contracts/libs/AddressCast.sol/AddressCast.json +21 -0
- package/artifacts-tron/contracts/libs/CalldataBytesLib.sol/CalldataBytesLib.json +10 -0
- package/artifacts-tron/contracts/libs/Errors.sol/Errors.json +211 -0
- package/artifacts-tron/contracts/libs/GUID.sol/GUID.json +10 -0
- package/artifacts-tron/contracts/libs/SafeCall.sol/SafeCall.json +10 -0
- package/artifacts-tron/contracts/libs/Transfer.sol/Transfer.json +32 -0
- package/artifacts-tron/contracts/messagelib/BlockedMessageLib.sol/BlockedMessageLib.json +94 -0
- package/artifacts-tron/contracts/messagelib/SimpleMessageLib.sol/SimpleMessageLib.json +591 -0
- package/artifacts-tron/contracts/messagelib/libs/BitMaps.sol/BitMaps.json +10 -0
- package/artifacts-tron/contracts/messagelib/libs/ExecutorOptions.sol/ExecutorOptions.json +26 -0
- package/artifacts-tron/contracts/messagelib/libs/PacketV1Codec.sol/PacketV1Codec.json +10 -0
- package/artifacts-tron/contracts/oapp/OApp.sol/OApp.json +383 -0
- package/artifacts-tron/contracts/oapp/OAppCore.sol/OAppCore.json +200 -0
- package/artifacts-tron/contracts/oapp/OAppReceiver.sol/OAppReceiver.json +367 -0
- package/artifacts-tron/contracts/oapp/OAppSender.sol/OAppSender.json +216 -0
- package/artifacts-tron/contracts/oapp/examples/OmniCounter.sol/OmniCounter.json +925 -0
- package/artifacts-tron/contracts/oapp/examples/OmniCounterAbstract.sol/MsgCodec.json +10 -0
- package/artifacts-tron/contracts/oapp/examples/OmniCounterAbstract.sol/OmniCounterAbstract.json +909 -0
- package/artifacts-tron/contracts/oapp/examples/OmniCounterPreCrime.sol/OmniCounterPreCrime.json +368 -0
- package/artifacts-tron/contracts/oapp/interfaces/IOAppComposer.sol/IOAppComposer.json +44 -0
- package/artifacts-tron/contracts/oapp/interfaces/IOAppCore.sol/IOAppCore.json +148 -0
- package/artifacts-tron/contracts/oapp/interfaces/IOAppMsgInspector.sol/IOAppMsgInspector.json +51 -0
- package/artifacts-tron/contracts/oapp/interfaces/IOAppOptionsType3.sol/IOAppOptionsType3.json +111 -0
- package/artifacts-tron/contracts/oapp/interfaces/IOAppReceiver.sol/IOAppReceiver.json +167 -0
- package/artifacts-tron/contracts/oapp/libs/OAppOptionsType3.sol/OAppOptionsType3.json +187 -0
- package/artifacts-tron/contracts/oapp/libs/OptionsBuilder.sol/OptionsBuilder.json +38 -0
- package/artifacts-tron/contracts/oapp/utils/RateLimiter.sol/RateLimiter.json +104 -0
- package/artifacts-tron/contracts/oft/OFT.sol/OFT.json +1514 -0
- package/artifacts-tron/contracts/oft/OFTAdapter.sol/OFTAdapter.json +1244 -0
- package/artifacts-tron/contracts/oft/OFTCore.sol/OFTCore.json +1244 -0
- package/artifacts-tron/contracts/oft/interfaces/IOFT.sol/IOFT.json +456 -0
- package/artifacts-tron/contracts/oft/libs/OFTComposeMsgCodec.sol/OFTComposeMsgCodec.json +10 -0
- package/artifacts-tron/contracts/oft/libs/OFTMsgCodec.sol/OFTMsgCodec.json +10 -0
- package/artifacts-tron/contracts/precrime/OAppPreCrimeSimulator.sol/OAppPreCrimeSimulator.json +277 -0
- package/artifacts-tron/contracts/precrime/PreCrime.sol/PreCrime.json +352 -0
- package/artifacts-tron/contracts/precrime/extensions/PreCrimeE1.sol/PreCrimeE1.json +352 -0
- package/artifacts-tron/contracts/precrime/interfaces/IOAppPreCrimeSimulator.sol/IOAppPreCrimeSimulator.json +175 -0
- package/artifacts-tron/contracts/precrime/interfaces/IPreCrime.sol/IPreCrime.json +188 -0
- package/artifacts-tron/contracts/precrime/libs/Packet.sol/PacketDecoder.json +10 -0
- package/artifacts-tron/contracts/proxy/TransparentUpgradeableProxy.sol/TransparentUpgradeableProxy.json +160 -0
- package/artifacts-tron/contracts/uln/LzExecutor.sol/IReceiveUlnView.json +35 -0
- package/artifacts-tron/contracts/uln/LzExecutor.sol/LzExecutor.json +515 -0
- package/artifacts-tron/contracts/uln/ReceiveUlnBase.sol/ReceiveUlnBase.json +551 -0
- package/artifacts-tron/contracts/uln/SendUlnBase.sol/SendUlnBase.json +412 -0
- package/artifacts-tron/contracts/uln/UlnBase.sol/UlnBase.json +387 -0
- package/artifacts-tron/contracts/uln/dvn/DVN.sol/DVN.json +1370 -0
- package/artifacts-tron/contracts/uln/dvn/DVNFeeLib.sol/DVNFeeLib.json +311 -0
- package/artifacts-tron/contracts/uln/dvn/MultiSig.sol/MultiSig.json +164 -0
- package/artifacts-tron/contracts/uln/dvn/adapters/CCIP/CCIPDVNAdapter.sol/CCIPDVNAdapter.json +1040 -0
- package/artifacts-tron/contracts/uln/dvn/adapters/CCIP/CCIPDVNAdapterFeeLib.sol/CCIPDVNAdapterFeeLib.json +417 -0
- package/artifacts-tron/contracts/uln/dvn/adapters/DVNAdapterBase.sol/DVNAdapterBase.json +789 -0
- package/artifacts-tron/contracts/uln/dvn/adapters/DVNAdapterBase.sol/IReceiveUln.json +34 -0
- package/artifacts-tron/contracts/uln/dvn/adapters/DVNAdapterBase.sol/ISendLibBase.json +30 -0
- package/artifacts-tron/contracts/uln/dvn/adapters/arbitrum/ArbitrumDVNAdapterL1.sol/ArbitrumDVNAdapterL1.json +936 -0
- package/artifacts-tron/contracts/uln/dvn/adapters/arbitrum/ArbitrumDVNAdapterL2.sol/ArbitrumDVNAdapterL2.json +868 -0
- package/artifacts-tron/contracts/uln/dvn/adapters/axelar/AxelarDVNAdapter.sol/AxelarDVNAdapter.json +1171 -0
- package/artifacts-tron/contracts/uln/dvn/adapters/axelar/AxelarDVNAdapter.sol/ISendLibBase.json +30 -0
- package/artifacts-tron/contracts/uln/dvn/adapters/axelar/AxelarDVNAdapterFeeLib.sol/AxelarDVNAdapterFeeLib.json +574 -0
- package/artifacts-tron/contracts/uln/dvn/adapters/libs/DVNAdapterMessageCodec.sol/DVNAdapterMessageCodec.json +16 -0
- package/artifacts-tron/contracts/uln/dvn/adapters/optimism/OptimismDVNAdapterL1.sol/OptimismDVNAdapterL1.json +924 -0
- package/artifacts-tron/contracts/uln/dvn/adapters/optimism/OptimismDVNAdapterL2.sol/OptimismDVNAdapterL2.json +891 -0
- package/artifacts-tron/contracts/uln/interfaces/IDVN.sol/IDVN.json +370 -0
- package/artifacts-tron/contracts/uln/interfaces/IDVNFeeLib.sol/IDVNFeeLib.json +189 -0
- package/artifacts-tron/contracts/uln/interfaces/ILayerZeroDVN.sol/ILayerZeroDVN.json +96 -0
- package/artifacts-tron/contracts/uln/interfaces/IReceiveUlnE2.sol/IReceiveUlnE2.json +52 -0
- package/artifacts-tron/contracts/uln/interfaces/adapters/IAxelarDVNAdapter.sol/IAxelarDVNAdapter.json +160 -0
- package/artifacts-tron/contracts/uln/interfaces/adapters/IAxelarDVNAdapterFeeLib.sol/IAxelarDVNAdapterFeeLib.json +293 -0
- package/artifacts-tron/contracts/uln/interfaces/adapters/ICCIPDVNAdapter.sol/ICCIPDVNAdapter.json +78 -0
- package/artifacts-tron/contracts/uln/interfaces/adapters/ICCIPDVNAdapterFeeLib.sol/ICCIPDVNAdapterFeeLib.json +301 -0
- package/artifacts-tron/contracts/uln/libs/DVNOptions.sol/DVNOptions.json +27 -0
- package/artifacts-tron/contracts/uln/libs/UlnOptions.sol/UlnOptions.json +54 -0
- package/artifacts-tron/contracts/uln/uln301/AddressSizeConfig.sol/AddressSizeConfig.json +129 -0
- package/artifacts-tron/contracts/uln/uln301/ReceiveLibBaseE1.sol/ILayerZeroReceiveLibrary.json +68 -0
- package/artifacts-tron/contracts/uln/uln301/ReceiveLibBaseE1.sol/ReceiveLibBaseE1.json +416 -0
- package/artifacts-tron/contracts/uln/uln301/ReceiveUln301.sol/ReceiveUln301.json +1000 -0
- package/artifacts-tron/contracts/uln/uln301/ReceiveUln301View.sol/IReceiveUln301.json +178 -0
- package/artifacts-tron/contracts/uln/uln301/ReceiveUln301View.sol/ReceiveUln301View.json +126 -0
- package/artifacts-tron/contracts/uln/uln301/SendLibBaseE1.sol/SendLibBaseE1.json +804 -0
- package/artifacts-tron/contracts/uln/uln301/SendUln301.sol/SendUln301.json +1278 -0
- package/artifacts-tron/contracts/uln/uln301/TreasuryFeeHandler.sol/TreasuryFeeHandler.json +94 -0
- package/artifacts-tron/contracts/uln/uln301/interfaces/IMessageLibE1.sol/IMessageLibE1.json +247 -0
- package/artifacts-tron/contracts/uln/uln301/interfaces/INonceContract.sol/INonceContract.json +40 -0
- package/artifacts-tron/contracts/uln/uln301/interfaces/ITreasuryFeeHandler.sol/ITreasuryFeeHandler.json +44 -0
- package/artifacts-tron/contracts/uln/uln301/interfaces/IUltraLightNode301.sol/IUltraLightNode301.json +29 -0
- package/artifacts-tron/contracts/uln/uln301/mocks/NonceContractMock.sol/NonceContractMock.json +93 -0
- package/artifacts-tron/contracts/uln/uln302/ReceiveUln302.sol/ReceiveUln302.json +757 -0
- package/artifacts-tron/contracts/uln/uln302/ReceiveUln302View.sol/IReceiveUln302.json +146 -0
- package/artifacts-tron/contracts/uln/uln302/ReceiveUln302View.sol/ReceiveUln302View.json +251 -0
- package/artifacts-tron/contracts/uln/uln302/SendUln302.sol/SendUln302.json +1259 -0
- package/artifacts-tron/contracts/upgradeable/WorkerUpgradeable.sol/WorkerUpgradeable.json +592 -0
- package/artifacts-tron/contracts/upgradeable/proxy/ProxyAdmin.sol/ProxyAdmin.json +181 -0
- package/artifacts-tron/contracts/upgradeable/proxy/TransparentUpgradeableProxy.sol/TransparentUpgradeableProxy.json +160 -0
- package/artifacts-zk/contracts/EndpointV2.sol/EndpointV2.json +2364 -0
- package/artifacts-zk/contracts/EndpointV2Alt.sol/EndpointV2Alt.json +2379 -0
- package/artifacts-zk/contracts/EndpointV2View.sol/EndpointV2View.json +210 -0
- package/artifacts-zk/contracts/EndpointV2ViewUpgradeable.sol/EndpointV2ViewUpgradeable.json +197 -0
- package/artifacts-zk/contracts/Executor.sol/Executor.json +1157 -0
- package/artifacts-zk/contracts/ExecutorFeeLib.sol/ExecutorFeeLib.json +353 -0
- package/artifacts-zk/contracts/MessageLibBase.sol/MessageLibBase.json +17 -0
- package/artifacts-zk/contracts/MessageLibManager.sol/MessageLibManager.json +772 -0
- package/artifacts-zk/contracts/MessagingChannel.sol/MessagingChannel.json +427 -0
- package/artifacts-zk/contracts/MessagingComposer.sol/MessagingComposer.json +321 -0
- package/artifacts-zk/contracts/MessagingContext.sol/MessagingContext.json +43 -0
- package/artifacts-zk/contracts/PriceFeed.sol/PriceFeed.json +651 -0
- package/artifacts-zk/contracts/ReceiveLibBaseE2.sol/ReceiveLibBaseE2.json +155 -0
- package/artifacts-zk/contracts/SendLibBase.sol/SendLibBase.json +382 -0
- package/artifacts-zk/contracts/SendLibBaseE2.sol/SendLibBaseE2.json +820 -0
- package/artifacts-zk/contracts/Treasury.sol/Treasury.json +310 -0
- package/artifacts-zk/contracts/Worker.sol/Worker.json +580 -0
- package/artifacts-zk/contracts/interfaces/IExecutor.sol/IExecutor.json +430 -0
- package/artifacts-zk/contracts/interfaces/IExecutorFeeLib.sol/IExecutorFeeLib.json +227 -0
- package/artifacts-zk/contracts/interfaces/ILayerZeroComposer.sol/ILayerZeroComposer.json +45 -0
- package/artifacts-zk/contracts/interfaces/ILayerZeroEndpointV2.sol/ILayerZeroEndpointV2.json +1900 -0
- package/artifacts-zk/contracts/interfaces/ILayerZeroExecutor.sol/ILayerZeroExecutor.json +80 -0
- package/artifacts-zk/contracts/interfaces/ILayerZeroPriceFeed.sol/ILayerZeroPriceFeed.json +223 -0
- package/artifacts-zk/contracts/interfaces/ILayerZeroReceiver.sol/ILayerZeroReceiver.json +122 -0
- package/artifacts-zk/contracts/interfaces/ILayerZeroTreasury.sol/ILayerZeroTreasury.json +80 -0
- package/artifacts-zk/contracts/interfaces/IMessageLib.sol/IMessageLib.json +150 -0
- package/artifacts-zk/contracts/interfaces/IMessageLibManager.sol/IMessageLibManager.json +647 -0
- package/artifacts-zk/contracts/interfaces/IMessagingChannel.sol/IMessagingChannel.json +374 -0
- package/artifacts-zk/contracts/interfaces/IMessagingComposer.sol/IMessagingComposer.json +247 -0
- package/artifacts-zk/contracts/interfaces/IMessagingContext.sol/IMessagingContext.json +43 -0
- package/artifacts-zk/contracts/interfaces/ISendLib.sol/ISendLib.json +365 -0
- package/artifacts-zk/contracts/interfaces/IWorker.sol/IWorker.json +222 -0
- package/artifacts-zk/contracts/libs/AddressCast.sol/AddressCast.json +22 -0
- package/artifacts-zk/contracts/libs/CalldataBytesLib.sol/CalldataBytesLib.json +11 -0
- package/artifacts-zk/contracts/libs/Errors.sol/Errors.json +212 -0
- package/artifacts-zk/contracts/libs/GUID.sol/GUID.json +11 -0
- package/artifacts-zk/contracts/libs/SafeCall.sol/SafeCall.json +11 -0
- package/artifacts-zk/contracts/libs/Transfer.sol/Transfer.json +33 -0
- package/artifacts-zk/contracts/messagelib/BlockedMessageLib.sol/BlockedMessageLib.json +95 -0
- package/artifacts-zk/contracts/messagelib/SimpleMessageLib.sol/SimpleMessageLib.json +592 -0
- package/artifacts-zk/contracts/messagelib/libs/BitMaps.sol/BitMaps.json +11 -0
- package/artifacts-zk/contracts/messagelib/libs/ExecutorOptions.sol/ExecutorOptions.json +27 -0
- package/artifacts-zk/contracts/messagelib/libs/PacketV1Codec.sol/PacketV1Codec.json +11 -0
- package/artifacts-zk/contracts/proxy/TransparentUpgradeableProxy.sol/TransparentUpgradeableProxy.json +161 -0
- package/artifacts-zk/contracts/uln/LzExecutor.sol/IReceiveUlnView.json +36 -0
- package/artifacts-zk/contracts/uln/LzExecutor.sol/LzExecutor.json +516 -0
- package/artifacts-zk/contracts/uln/ReceiveUlnBase.sol/ReceiveUlnBase.json +552 -0
- package/artifacts-zk/contracts/uln/SendUlnBase.sol/SendUlnBase.json +413 -0
- package/artifacts-zk/contracts/uln/UlnBase.sol/UlnBase.json +388 -0
- package/artifacts-zk/contracts/uln/dvn/DVN.sol/DVN.json +1371 -0
- package/artifacts-zk/contracts/uln/dvn/DVNFeeLib.sol/DVNFeeLib.json +312 -0
- package/artifacts-zk/contracts/uln/dvn/MultiSig.sol/MultiSig.json +165 -0
- package/artifacts-zk/contracts/uln/dvn/adapters/CCIP/CCIPDVNAdapter.sol/CCIPDVNAdapter.json +1062 -0
- package/artifacts-zk/contracts/uln/dvn/adapters/CCIP/CCIPDVNAdapterFeeLib.sol/CCIPDVNAdapterFeeLib.json +418 -0
- package/artifacts-zk/contracts/uln/dvn/adapters/DVNAdapterBase.sol/DVNAdapterBase.json +790 -0
- package/artifacts-zk/contracts/uln/dvn/adapters/DVNAdapterBase.sol/IReceiveUln.json +35 -0
- package/artifacts-zk/contracts/uln/dvn/adapters/DVNAdapterBase.sol/ISendLibBase.json +31 -0
- package/artifacts-zk/contracts/uln/dvn/adapters/arbitrum/ArbitrumDVNAdapterL1.sol/ArbitrumDVNAdapterL1.json +937 -0
- package/artifacts-zk/contracts/uln/dvn/adapters/arbitrum/ArbitrumDVNAdapterL2.sol/ArbitrumDVNAdapterL2.json +869 -0
- package/artifacts-zk/contracts/uln/dvn/adapters/axelar/AxelarDVNAdapter.sol/AxelarDVNAdapter.json +1167 -0
- package/artifacts-zk/contracts/uln/dvn/adapters/axelar/AxelarDVNAdapter.sol/ISendLibBase.json +31 -0
- package/artifacts-zk/contracts/uln/dvn/adapters/axelar/AxelarDVNAdapterFeeLib.sol/AxelarDVNAdapterFeeLib.json +575 -0
- package/artifacts-zk/contracts/uln/dvn/adapters/libs/DVNAdapterMessageCodec.sol/DVNAdapterMessageCodec.json +17 -0
- package/artifacts-zk/contracts/uln/dvn/adapters/optimism/OptimismDVNAdapterL1.sol/OptimismDVNAdapterL1.json +925 -0
- package/artifacts-zk/contracts/uln/dvn/adapters/optimism/OptimismDVNAdapterL2.sol/OptimismDVNAdapterL2.json +892 -0
- package/artifacts-zk/contracts/uln/interfaces/IDVN.sol/IDVN.json +371 -0
- package/artifacts-zk/contracts/uln/interfaces/IDVNFeeLib.sol/IDVNFeeLib.json +190 -0
- package/artifacts-zk/contracts/uln/interfaces/ILayerZeroDVN.sol/ILayerZeroDVN.json +97 -0
- package/artifacts-zk/contracts/uln/interfaces/IReceiveUlnE2.sol/IReceiveUlnE2.json +53 -0
- package/artifacts-zk/contracts/uln/interfaces/adapters/IAxelarDVNAdapter.sol/IAxelarDVNAdapter.json +161 -0
- package/artifacts-zk/contracts/uln/interfaces/adapters/IAxelarDVNAdapterFeeLib.sol/IAxelarDVNAdapterFeeLib.json +294 -0
- package/artifacts-zk/contracts/uln/interfaces/adapters/ICCIPDVNAdapter.sol/ICCIPDVNAdapter.json +92 -0
- package/artifacts-zk/contracts/uln/interfaces/adapters/ICCIPDVNAdapterFeeLib.sol/ICCIPDVNAdapterFeeLib.json +302 -0
- package/artifacts-zk/contracts/uln/libs/DVNOptions.sol/DVNOptions.json +28 -0
- package/artifacts-zk/contracts/uln/libs/UlnOptions.sol/UlnOptions.json +55 -0
- package/artifacts-zk/contracts/uln/uln301/AddressSizeConfig.sol/AddressSizeConfig.json +130 -0
- package/artifacts-zk/contracts/uln/uln301/ReceiveLibBaseE1.sol/ILayerZeroReceiveLibrary.json +69 -0
- package/artifacts-zk/contracts/uln/uln301/ReceiveLibBaseE1.sol/ReceiveLibBaseE1.json +417 -0
- package/artifacts-zk/contracts/uln/uln301/ReceiveUln301.sol/ReceiveUln301.json +1001 -0
- package/artifacts-zk/contracts/uln/uln301/ReceiveUln301View.sol/IReceiveUln301.json +179 -0
- package/artifacts-zk/contracts/uln/uln301/ReceiveUln301View.sol/ReceiveUln301View.json +127 -0
- package/artifacts-zk/contracts/uln/uln301/SendLibBaseE1.sol/SendLibBaseE1.json +805 -0
- package/artifacts-zk/contracts/uln/uln301/SendUln301.sol/SendUln301.json +1279 -0
- package/artifacts-zk/contracts/uln/uln301/TreasuryFeeHandler.sol/TreasuryFeeHandler.json +95 -0
- package/artifacts-zk/contracts/uln/uln301/interfaces/IMessageLibE1.sol/IMessageLibE1.json +248 -0
- package/artifacts-zk/contracts/uln/uln301/interfaces/INonceContract.sol/INonceContract.json +41 -0
- package/artifacts-zk/contracts/uln/uln301/interfaces/ITreasuryFeeHandler.sol/ITreasuryFeeHandler.json +45 -0
- package/artifacts-zk/contracts/uln/uln301/interfaces/IUltraLightNode301.sol/IUltraLightNode301.json +30 -0
- package/artifacts-zk/contracts/uln/uln301/mocks/NonceContractMock.sol/NonceContractMock.json +94 -0
- package/artifacts-zk/contracts/uln/uln302/ReceiveUln302.sol/ReceiveUln302.json +758 -0
- package/artifacts-zk/contracts/uln/uln302/ReceiveUln302View.sol/IReceiveUln302.json +147 -0
- package/artifacts-zk/contracts/uln/uln302/ReceiveUln302View.sol/ReceiveUln302View.json +252 -0
- package/artifacts-zk/contracts/uln/uln302/SendUln302.sol/SendUln302.json +1260 -0
- package/artifacts-zk/contracts/upgradeable/WorkerUpgradeable.sol/WorkerUpgradeable.json +593 -0
- package/artifacts-zk/contracts/upgradeable/proxy/ProxyAdmin.sol/ProxyAdmin.json +182 -0
- package/artifacts-zk/contracts/upgradeable/proxy/TransparentUpgradeableProxy.sol/TransparentUpgradeableProxy.json +161 -0
- package/deployments/arbitrum-sandbox-local/DVN.json +10 -10
- package/deployments/arbitrum-sandbox-local/DVNDecompressor.json +7 -7
- package/deployments/arbitrum-sandbox-local/DVNFeeLib.json +7 -7
- package/deployments/arbitrum-sandbox-local/PriceFeed.json +16 -16
- package/deployments/arbitrum-sandbox-local/PriceFeedProxyAdmin.json +10 -10
- package/deployments/arbitrum-sandbox-local/PriceFeed_Implementation.json +4 -4
- package/deployments/arbitrum-sandbox-local/PriceFeed_Proxy.json +16 -16
- package/deployments/bsc-sandbox-local/DVN.json +16 -16
- package/deployments/bsc-sandbox-local/DVNDecompressor.json +7 -7
- package/deployments/bsc-sandbox-local/DVNFeeLib.json +7 -7
- package/deployments/bsc-sandbox-local/DefaultProxyAdmin.json +7 -7
- package/deployments/bsc-sandbox-local/EndpointV2.json +13 -13
- package/deployments/bsc-sandbox-local/EndpointV2View.json +13 -13
- package/deployments/bsc-sandbox-local/EndpointV2View_Implementation.json +4 -4
- package/deployments/bsc-sandbox-local/EndpointV2View_Proxy.json +13 -13
- package/deployments/bsc-sandbox-local/Executor.json +43 -43
- package/deployments/bsc-sandbox-local/ExecutorDecompressor.json +7 -7
- package/deployments/bsc-sandbox-local/ExecutorFeeLib.json +7 -7
- package/deployments/bsc-sandbox-local/ExecutorProxyAdmin.json +10 -10
- package/deployments/bsc-sandbox-local/Executor_Implementation.json +4 -4
- package/deployments/bsc-sandbox-local/Executor_Proxy.json +43 -43
- package/deployments/bsc-sandbox-local/LzExecutor.json +16 -16
- package/deployments/bsc-sandbox-local/LzExecutor_Implementation.json +4 -4
- package/deployments/bsc-sandbox-local/LzExecutor_Proxy.json +16 -16
- package/deployments/bsc-sandbox-local/NonceContractMock.json +4 -4
- package/deployments/bsc-sandbox-local/PriceFeed.json +16 -16
- package/deployments/bsc-sandbox-local/PriceFeedProxyAdmin.json +10 -10
- package/deployments/bsc-sandbox-local/PriceFeed_Implementation.json +4 -4
- package/deployments/bsc-sandbox-local/PriceFeed_Proxy.json +16 -16
- package/deployments/bsc-sandbox-local/ReceiveUln301.json +7 -7
- package/deployments/bsc-sandbox-local/ReceiveUln301View.json +13 -13
- package/deployments/bsc-sandbox-local/ReceiveUln301View_Implementation.json +4 -4
- package/deployments/bsc-sandbox-local/ReceiveUln301View_Proxy.json +13 -13
- package/deployments/bsc-sandbox-local/ReceiveUln302.json +7 -7
- package/deployments/bsc-sandbox-local/ReceiveUln302View.json +13 -13
- package/deployments/bsc-sandbox-local/ReceiveUln302View_Implementation.json +4 -4
- package/deployments/bsc-sandbox-local/ReceiveUln302View_Proxy.json +13 -13
- package/deployments/bsc-sandbox-local/SendUln301.json +7 -7
- package/deployments/bsc-sandbox-local/SendUln302.json +7 -7
- package/deployments/bsc-sandbox-local/SimpleMessageLib.json +7 -7
- package/deployments/bsc-sandbox-local/Treasury.json +7 -7
- package/deployments/bsc-sandbox-local/TreasuryFeeHandler.json +4 -4
- package/deployments/cyber-mainnet/DVN.json +1914 -0
- package/deployments/cyber-mainnet/DVNFeeLib.json +399 -0
- package/deployments/cyber-mainnet/DefaultProxyAdmin.json +259 -0
- package/deployments/cyber-mainnet/EndpointV2.json +2989 -0
- package/deployments/cyber-mainnet/EndpointV2View.json +436 -0
- package/deployments/cyber-mainnet/EndpointV2View_Implementation.json +314 -0
- package/deployments/cyber-mainnet/EndpointV2View_Proxy.json +231 -0
- package/deployments/cyber-mainnet/Executor.json +1621 -0
- package/deployments/cyber-mainnet/ExecutorFeeLib.json +439 -0
- package/deployments/cyber-mainnet/ExecutorProxyAdmin.json +284 -0
- package/deployments/cyber-mainnet/Executor_Implementation.json +1720 -0
- package/deployments/cyber-mainnet/Executor_Proxy.json +336 -0
- package/deployments/cyber-mainnet/LzExecutor.json +758 -0
- package/deployments/cyber-mainnet/LzExecutor_Implementation.json +704 -0
- package/deployments/cyber-mainnet/LzExecutor_Proxy.json +245 -0
- package/deployments/cyber-mainnet/PriceFeed.json +935 -0
- package/deployments/cyber-mainnet/PriceFeedProxyAdmin.json +284 -0
- package/deployments/cyber-mainnet/PriceFeed_Implementation.json +977 -0
- package/deployments/cyber-mainnet/PriceFeed_Proxy.json +245 -0
- package/deployments/cyber-mainnet/ReceiveUln301.json +1293 -0
- package/deployments/cyber-mainnet/ReceiveUln301View.json +355 -0
- package/deployments/cyber-mainnet/ReceiveUln301View_Implementation.json +232 -0
- package/deployments/cyber-mainnet/ReceiveUln301View_Proxy.json +231 -0
- package/deployments/cyber-mainnet/ReceiveUln302.json +1007 -0
- package/deployments/cyber-mainnet/ReceiveUln302View.json +479 -0
- package/deployments/cyber-mainnet/ReceiveUln302View_Implementation.json +385 -0
- package/deployments/cyber-mainnet/ReceiveUln302View_Proxy.json +231 -0
- package/deployments/cyber-mainnet/SendUln301.json +1570 -0
- package/deployments/cyber-mainnet/SendUln302.json +1528 -0
- package/deployments/cyber-mainnet/Treasury.json +413 -0
- package/deployments/cyber-mainnet/TreasuryFeeHandler.json +126 -0
- package/deployments/ethereum-sandbox-local/DVN.json +16 -16
- package/deployments/ethereum-sandbox-local/DVNDecompressor.json +7 -7
- package/deployments/ethereum-sandbox-local/DVNFeeLib.json +7 -7
- package/deployments/ethereum-sandbox-local/DefaultProxyAdmin.json +7 -7
- package/deployments/ethereum-sandbox-local/EndpointV2.json +13 -13
- package/deployments/ethereum-sandbox-local/EndpointV2View.json +13 -13
- package/deployments/ethereum-sandbox-local/EndpointV2View_Implementation.json +4 -4
- package/deployments/ethereum-sandbox-local/EndpointV2View_Proxy.json +13 -13
- package/deployments/ethereum-sandbox-local/Executor.json +43 -43
- package/deployments/ethereum-sandbox-local/ExecutorDecompressor.json +7 -7
- package/deployments/ethereum-sandbox-local/ExecutorFeeLib.json +7 -7
- package/deployments/ethereum-sandbox-local/ExecutorProxyAdmin.json +10 -10
- package/deployments/ethereum-sandbox-local/Executor_Implementation.json +4 -4
- package/deployments/ethereum-sandbox-local/Executor_Proxy.json +43 -43
- package/deployments/ethereum-sandbox-local/LzExecutor.json +16 -16
- package/deployments/ethereum-sandbox-local/LzExecutor_Implementation.json +4 -4
- package/deployments/ethereum-sandbox-local/LzExecutor_Proxy.json +16 -16
- package/deployments/ethereum-sandbox-local/NonceContractMock.json +4 -4
- package/deployments/ethereum-sandbox-local/PriceFeed.json +16 -16
- package/deployments/ethereum-sandbox-local/PriceFeedProxyAdmin.json +10 -10
- package/deployments/ethereum-sandbox-local/PriceFeed_Implementation.json +4 -4
- package/deployments/ethereum-sandbox-local/PriceFeed_Proxy.json +16 -16
- package/deployments/ethereum-sandbox-local/ReceiveUln301.json +7 -7
- package/deployments/ethereum-sandbox-local/ReceiveUln301View.json +13 -13
- package/deployments/ethereum-sandbox-local/ReceiveUln301View_Implementation.json +4 -4
- package/deployments/ethereum-sandbox-local/ReceiveUln301View_Proxy.json +13 -13
- package/deployments/ethereum-sandbox-local/ReceiveUln302.json +7 -7
- package/deployments/ethereum-sandbox-local/ReceiveUln302View.json +13 -13
- package/deployments/ethereum-sandbox-local/ReceiveUln302View_Implementation.json +4 -4
- package/deployments/ethereum-sandbox-local/ReceiveUln302View_Proxy.json +13 -13
- package/deployments/ethereum-sandbox-local/SendUln301.json +7 -7
- package/deployments/ethereum-sandbox-local/SendUln302.json +7 -7
- package/deployments/ethereum-sandbox-local/SimpleMessageLib.json +7 -7
- package/deployments/ethereum-sandbox-local/Treasury.json +7 -7
- package/deployments/ethereum-sandbox-local/TreasuryFeeHandler.json +4 -4
- package/deployments/iota-mainnet/DVN.json +1914 -0
- package/deployments/iota-mainnet/DVNFeeLib.json +399 -0
- package/deployments/iota-mainnet/DefaultProxyAdmin.json +259 -0
- package/deployments/iota-mainnet/EndpointV2.json +2989 -0
- package/deployments/iota-mainnet/EndpointV2View.json +436 -0
- package/deployments/iota-mainnet/EndpointV2View_Implementation.json +314 -0
- package/deployments/iota-mainnet/EndpointV2View_Proxy.json +231 -0
- package/deployments/iota-mainnet/Executor.json +1621 -0
- package/deployments/iota-mainnet/ExecutorFeeLib.json +439 -0
- package/deployments/iota-mainnet/ExecutorProxyAdmin.json +284 -0
- package/deployments/iota-mainnet/Executor_Implementation.json +1720 -0
- package/deployments/iota-mainnet/Executor_Proxy.json +336 -0
- package/deployments/iota-mainnet/LzExecutor.json +758 -0
- package/deployments/iota-mainnet/LzExecutor_Implementation.json +704 -0
- package/deployments/iota-mainnet/LzExecutor_Proxy.json +245 -0
- package/deployments/iota-mainnet/PriceFeed.json +935 -0
- package/deployments/iota-mainnet/PriceFeedProxyAdmin.json +284 -0
- package/deployments/iota-mainnet/PriceFeed_Implementation.json +977 -0
- package/deployments/iota-mainnet/PriceFeed_Proxy.json +245 -0
- package/deployments/iota-mainnet/ReceiveUln301.json +1293 -0
- package/deployments/iota-mainnet/ReceiveUln301View.json +355 -0
- package/deployments/iota-mainnet/ReceiveUln301View_Implementation.json +232 -0
- package/deployments/iota-mainnet/ReceiveUln301View_Proxy.json +231 -0
- package/deployments/iota-mainnet/ReceiveUln302.json +1007 -0
- package/deployments/iota-mainnet/ReceiveUln302View.json +479 -0
- package/deployments/iota-mainnet/ReceiveUln302View_Implementation.json +385 -0
- package/deployments/iota-mainnet/ReceiveUln302View_Proxy.json +231 -0
- package/deployments/iota-mainnet/SendUln301.json +1570 -0
- package/deployments/iota-mainnet/SendUln302.json +1528 -0
- package/deployments/iota-mainnet/Treasury.json +413 -0
- package/deployments/iota-mainnet/TreasuryFeeHandler.json +126 -0
- package/deployments/polygon-sandbox-local/DVN.json +5 -5
- package/deployments/polygon-sandbox-local/DVNDecompressor.json +2 -2
- package/deployments/polygon-sandbox-local/DVNFeeLib.json +2 -2
- package/deployments/polygon-sandbox-local/DefaultProxyAdmin.json +2 -2
- package/deployments/polygon-sandbox-local/EndpointV2.json +4 -4
- package/deployments/polygon-sandbox-local/EndpointV2View.json +4 -4
- package/deployments/polygon-sandbox-local/EndpointV2View_Implementation.json +1 -1
- package/deployments/polygon-sandbox-local/EndpointV2View_Proxy.json +4 -4
- package/deployments/polygon-sandbox-local/Executor.json +14 -14
- package/deployments/polygon-sandbox-local/ExecutorDecompressor.json +2 -2
- package/deployments/polygon-sandbox-local/ExecutorFeeLib.json +2 -2
- package/deployments/polygon-sandbox-local/ExecutorProxyAdmin.json +3 -3
- package/deployments/polygon-sandbox-local/Executor_Implementation.json +1 -1
- package/deployments/polygon-sandbox-local/Executor_Proxy.json +14 -14
- package/deployments/polygon-sandbox-local/LzExecutor.json +5 -5
- package/deployments/polygon-sandbox-local/LzExecutor_Implementation.json +1 -1
- package/deployments/polygon-sandbox-local/LzExecutor_Proxy.json +5 -5
- package/deployments/polygon-sandbox-local/NonceContractMock.json +1 -1
- package/deployments/polygon-sandbox-local/PriceFeed.json +5 -5
- package/deployments/polygon-sandbox-local/PriceFeedProxyAdmin.json +3 -3
- package/deployments/polygon-sandbox-local/PriceFeed_Implementation.json +1 -1
- package/deployments/polygon-sandbox-local/PriceFeed_Proxy.json +5 -5
- package/deployments/polygon-sandbox-local/ReceiveUln301.json +2 -2
- package/deployments/polygon-sandbox-local/ReceiveUln301View.json +4 -4
- package/deployments/polygon-sandbox-local/ReceiveUln301View_Implementation.json +1 -1
- package/deployments/polygon-sandbox-local/ReceiveUln301View_Proxy.json +4 -4
- package/deployments/polygon-sandbox-local/ReceiveUln302.json +2 -2
- package/deployments/polygon-sandbox-local/ReceiveUln302View.json +4 -4
- package/deployments/polygon-sandbox-local/ReceiveUln302View_Implementation.json +1 -1
- package/deployments/polygon-sandbox-local/ReceiveUln302View_Proxy.json +4 -4
- package/deployments/polygon-sandbox-local/SendUln301.json +2 -2
- package/deployments/polygon-sandbox-local/SendUln302.json +2 -2
- package/deployments/polygon-sandbox-local/SimpleMessageLib.json +2 -2
- package/deployments/polygon-sandbox-local/Treasury.json +2 -2
- package/deployments/polygon-sandbox-local/TreasuryFeeHandler.json +1 -1
- package/deployments/tron-sandbox-local/DVN.json +17 -17
- package/deployments/tron-sandbox-local/DVNDecompressor.json +12 -12
- package/deployments/tron-sandbox-local/DVNFeeLib.json +10 -10
- package/deployments/tron-sandbox-local/PriceFeed.json +27 -27
- package/deployments/tron-sandbox-local/PriceFeedProxyAdmin.json +14 -14
- package/deployments/tron-sandbox-local/PriceFeed_Implementation.json +6 -6
- package/deployments/tron-sandbox-local/PriceFeed_Proxy.json +26 -26
- package/deployments/zksyncsep-testnet/EndpointV2View.json +3 -9
- package/deployments/zksyncsep-testnet/EndpointV2View_Implementation.json +41 -41
- package/deployments/zksyncsep-testnet/PriceFeed.json +52 -14
- package/deployments/zksyncsep-testnet/PriceFeed_Implementation.json +133 -69
- package/package.json +11 -9
|
@@ -0,0 +1,311 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_format": "hh-sol-artifact-1",
|
|
3
|
+
"contractName": "DVNFeeLib",
|
|
4
|
+
"sourceName": "contracts/uln/dvn/DVNFeeLib.sol",
|
|
5
|
+
"abi": [
|
|
6
|
+
{
|
|
7
|
+
"inputs": [
|
|
8
|
+
{
|
|
9
|
+
"internalType": "uint256",
|
|
10
|
+
"name": "_nativeDecimalsRate",
|
|
11
|
+
"type": "uint256"
|
|
12
|
+
}
|
|
13
|
+
],
|
|
14
|
+
"stateMutability": "nonpayable",
|
|
15
|
+
"type": "constructor"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"inputs": [
|
|
19
|
+
{
|
|
20
|
+
"internalType": "uint32",
|
|
21
|
+
"name": "eid",
|
|
22
|
+
"type": "uint32"
|
|
23
|
+
}
|
|
24
|
+
],
|
|
25
|
+
"name": "DVN_EidNotSupported",
|
|
26
|
+
"type": "error"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"inputs": [
|
|
30
|
+
{
|
|
31
|
+
"internalType": "uint256",
|
|
32
|
+
"name": "cursor",
|
|
33
|
+
"type": "uint256"
|
|
34
|
+
}
|
|
35
|
+
],
|
|
36
|
+
"name": "DVN_InvalidDVNOptions",
|
|
37
|
+
"type": "error"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"inputs": [
|
|
41
|
+
{
|
|
42
|
+
"internalType": "uint8",
|
|
43
|
+
"name": "optionType",
|
|
44
|
+
"type": "uint8"
|
|
45
|
+
}
|
|
46
|
+
],
|
|
47
|
+
"name": "DVN_UnsupportedOptionType",
|
|
48
|
+
"type": "error"
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"inputs": [
|
|
52
|
+
{
|
|
53
|
+
"internalType": "address",
|
|
54
|
+
"name": "_to",
|
|
55
|
+
"type": "address"
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"internalType": "uint256",
|
|
59
|
+
"name": "_value",
|
|
60
|
+
"type": "uint256"
|
|
61
|
+
}
|
|
62
|
+
],
|
|
63
|
+
"name": "Transfer_NativeFailed",
|
|
64
|
+
"type": "error"
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"inputs": [],
|
|
68
|
+
"name": "Transfer_ToAddressIsZero",
|
|
69
|
+
"type": "error"
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
"anonymous": false,
|
|
73
|
+
"inputs": [
|
|
74
|
+
{
|
|
75
|
+
"indexed": true,
|
|
76
|
+
"internalType": "address",
|
|
77
|
+
"name": "previousOwner",
|
|
78
|
+
"type": "address"
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"indexed": true,
|
|
82
|
+
"internalType": "address",
|
|
83
|
+
"name": "newOwner",
|
|
84
|
+
"type": "address"
|
|
85
|
+
}
|
|
86
|
+
],
|
|
87
|
+
"name": "OwnershipTransferred",
|
|
88
|
+
"type": "event"
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
"inputs": [
|
|
92
|
+
{
|
|
93
|
+
"components": [
|
|
94
|
+
{
|
|
95
|
+
"internalType": "address",
|
|
96
|
+
"name": "priceFeed",
|
|
97
|
+
"type": "address"
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"internalType": "uint32",
|
|
101
|
+
"name": "dstEid",
|
|
102
|
+
"type": "uint32"
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
"internalType": "uint64",
|
|
106
|
+
"name": "confirmations",
|
|
107
|
+
"type": "uint64"
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
"internalType": "address",
|
|
111
|
+
"name": "sender",
|
|
112
|
+
"type": "address"
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
"internalType": "uint64",
|
|
116
|
+
"name": "quorum",
|
|
117
|
+
"type": "uint64"
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
"internalType": "uint16",
|
|
121
|
+
"name": "defaultMultiplierBps",
|
|
122
|
+
"type": "uint16"
|
|
123
|
+
}
|
|
124
|
+
],
|
|
125
|
+
"internalType": "struct IDVNFeeLib.FeeParams",
|
|
126
|
+
"name": "_params",
|
|
127
|
+
"type": "tuple"
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
"components": [
|
|
131
|
+
{
|
|
132
|
+
"internalType": "uint64",
|
|
133
|
+
"name": "gas",
|
|
134
|
+
"type": "uint64"
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
"internalType": "uint16",
|
|
138
|
+
"name": "multiplierBps",
|
|
139
|
+
"type": "uint16"
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
"internalType": "uint128",
|
|
143
|
+
"name": "floorMarginUSD",
|
|
144
|
+
"type": "uint128"
|
|
145
|
+
}
|
|
146
|
+
],
|
|
147
|
+
"internalType": "struct IDVN.DstConfig",
|
|
148
|
+
"name": "_dstConfig",
|
|
149
|
+
"type": "tuple"
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
"internalType": "bytes",
|
|
153
|
+
"name": "_options",
|
|
154
|
+
"type": "bytes"
|
|
155
|
+
}
|
|
156
|
+
],
|
|
157
|
+
"name": "getFee",
|
|
158
|
+
"outputs": [
|
|
159
|
+
{
|
|
160
|
+
"internalType": "uint256",
|
|
161
|
+
"name": "",
|
|
162
|
+
"type": "uint256"
|
|
163
|
+
}
|
|
164
|
+
],
|
|
165
|
+
"stateMutability": "view",
|
|
166
|
+
"type": "function"
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
"inputs": [
|
|
170
|
+
{
|
|
171
|
+
"components": [
|
|
172
|
+
{
|
|
173
|
+
"internalType": "address",
|
|
174
|
+
"name": "priceFeed",
|
|
175
|
+
"type": "address"
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
"internalType": "uint32",
|
|
179
|
+
"name": "dstEid",
|
|
180
|
+
"type": "uint32"
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
"internalType": "uint64",
|
|
184
|
+
"name": "confirmations",
|
|
185
|
+
"type": "uint64"
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
"internalType": "address",
|
|
189
|
+
"name": "sender",
|
|
190
|
+
"type": "address"
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
"internalType": "uint64",
|
|
194
|
+
"name": "quorum",
|
|
195
|
+
"type": "uint64"
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
"internalType": "uint16",
|
|
199
|
+
"name": "defaultMultiplierBps",
|
|
200
|
+
"type": "uint16"
|
|
201
|
+
}
|
|
202
|
+
],
|
|
203
|
+
"internalType": "struct IDVNFeeLib.FeeParams",
|
|
204
|
+
"name": "_params",
|
|
205
|
+
"type": "tuple"
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
"components": [
|
|
209
|
+
{
|
|
210
|
+
"internalType": "uint64",
|
|
211
|
+
"name": "gas",
|
|
212
|
+
"type": "uint64"
|
|
213
|
+
},
|
|
214
|
+
{
|
|
215
|
+
"internalType": "uint16",
|
|
216
|
+
"name": "multiplierBps",
|
|
217
|
+
"type": "uint16"
|
|
218
|
+
},
|
|
219
|
+
{
|
|
220
|
+
"internalType": "uint128",
|
|
221
|
+
"name": "floorMarginUSD",
|
|
222
|
+
"type": "uint128"
|
|
223
|
+
}
|
|
224
|
+
],
|
|
225
|
+
"internalType": "struct IDVN.DstConfig",
|
|
226
|
+
"name": "_dstConfig",
|
|
227
|
+
"type": "tuple"
|
|
228
|
+
},
|
|
229
|
+
{
|
|
230
|
+
"internalType": "bytes",
|
|
231
|
+
"name": "_options",
|
|
232
|
+
"type": "bytes"
|
|
233
|
+
}
|
|
234
|
+
],
|
|
235
|
+
"name": "getFeeOnSend",
|
|
236
|
+
"outputs": [
|
|
237
|
+
{
|
|
238
|
+
"internalType": "uint256",
|
|
239
|
+
"name": "",
|
|
240
|
+
"type": "uint256"
|
|
241
|
+
}
|
|
242
|
+
],
|
|
243
|
+
"stateMutability": "payable",
|
|
244
|
+
"type": "function"
|
|
245
|
+
},
|
|
246
|
+
{
|
|
247
|
+
"inputs": [],
|
|
248
|
+
"name": "owner",
|
|
249
|
+
"outputs": [
|
|
250
|
+
{
|
|
251
|
+
"internalType": "address",
|
|
252
|
+
"name": "",
|
|
253
|
+
"type": "address"
|
|
254
|
+
}
|
|
255
|
+
],
|
|
256
|
+
"stateMutability": "view",
|
|
257
|
+
"type": "function"
|
|
258
|
+
},
|
|
259
|
+
{
|
|
260
|
+
"inputs": [],
|
|
261
|
+
"name": "renounceOwnership",
|
|
262
|
+
"outputs": [],
|
|
263
|
+
"stateMutability": "nonpayable",
|
|
264
|
+
"type": "function"
|
|
265
|
+
},
|
|
266
|
+
{
|
|
267
|
+
"inputs": [
|
|
268
|
+
{
|
|
269
|
+
"internalType": "address",
|
|
270
|
+
"name": "newOwner",
|
|
271
|
+
"type": "address"
|
|
272
|
+
}
|
|
273
|
+
],
|
|
274
|
+
"name": "transferOwnership",
|
|
275
|
+
"outputs": [],
|
|
276
|
+
"stateMutability": "nonpayable",
|
|
277
|
+
"type": "function"
|
|
278
|
+
},
|
|
279
|
+
{
|
|
280
|
+
"inputs": [
|
|
281
|
+
{
|
|
282
|
+
"internalType": "address",
|
|
283
|
+
"name": "_token",
|
|
284
|
+
"type": "address"
|
|
285
|
+
},
|
|
286
|
+
{
|
|
287
|
+
"internalType": "address",
|
|
288
|
+
"name": "_to",
|
|
289
|
+
"type": "address"
|
|
290
|
+
},
|
|
291
|
+
{
|
|
292
|
+
"internalType": "uint256",
|
|
293
|
+
"name": "_amount",
|
|
294
|
+
"type": "uint256"
|
|
295
|
+
}
|
|
296
|
+
],
|
|
297
|
+
"name": "withdrawToken",
|
|
298
|
+
"outputs": [],
|
|
299
|
+
"stateMutability": "nonpayable",
|
|
300
|
+
"type": "function"
|
|
301
|
+
},
|
|
302
|
+
{
|
|
303
|
+
"stateMutability": "payable",
|
|
304
|
+
"type": "receive"
|
|
305
|
+
}
|
|
306
|
+
],
|
|
307
|
+
"bytecode": "0x60a060405234801561001057600080fd5b50d3801561001d57600080fd5b50d2801561002a57600080fd5b5060405161136a38038061136a833981016040819052610049916100aa565b6100523361005a565b6080526100c3565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000602082840312156100bc57600080fd5b5051919050565b60805161128c6100de600039600061084a015261128c6000f3fe6080604052600436106100695760003560e01c80638da5cb5b116100435780638da5cb5b1461012d578063df2b057e1461017c578063f2fde38b1461018f57600080fd5b806301e3366714610075578063715018a6146100b15780637bfa20a9146100e057600080fd5b3661007057005b600080fd5b34801561008157600080fd5b50d3801561008e57600080fd5b50d2801561009b57600080fd5b506100af6100aa366004610e24565b6101c9565b005b3480156100bd57600080fd5b50d380156100ca57600080fd5b50d280156100d757600080fd5b506100af6101e1565b3480156100ec57600080fd5b50d380156100f957600080fd5b50d2801561010657600080fd5b5061011a610115366004610e60565b6101f5565b6040519081526020015b60405180910390f35b34801561013957600080fd5b50d3801561014657600080fd5b50d2801561015357600080fd5b5060005460405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610124565b61011a61018a366004610e60565b6103c5565b34801561019b57600080fd5b50d380156101a857600080fd5b50d280156101b557600080fd5b506100af6101c4366004610f20565b6104d3565b6101d161058a565b6101dc83838361060b565b505050565b6101e961058a565b6101f3600061063b565b565b60006102046020850185610f3b565b67ffffffffffffffff16600003610265576102256040860160208701610f65565b6040517fd009138a00000000000000000000000000000000000000000000000000000000815263ffffffff90911660048201526024015b60405180910390fd5b61026f83836106b0565b50600061029461028560a0880160808901610f3b565b67ffffffffffffffff16610754565b90506000806102a66020890189610f20565b73ffffffffffffffffffffffffffffffffffffffff166388a4124c6102d160408b0160208c01610f65565b856102df60208c018c610f3b565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b16815263ffffffff939093166004840152602483019190915267ffffffffffffffff166044820152606401608060405180830381865afa158015610350573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103749190610fa9565b9350505091506103b7828860200160208101906103919190610ffe565b6103a160c08c0160a08d01610ffe565b6103b160608c0160408d01611022565b856107c0565b93505050505b949350505050565b60006103d46020850185610f3b565b67ffffffffffffffff166000036103f5576102256040860160208701610f65565b6103ff83836106b0565b50600061041561028560a0880160808901610f3b565b90506000806104276020890189610f20565b73ffffffffffffffffffffffffffffffffffffffff1663c1723a1d61045260408b0160208c01610f65565b8561046060208c018c610f3b565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b16815263ffffffff939093166004840152602483019190915267ffffffffffffffff1660448201526064016080604051808303816000875af1158015610350573d6000803e3d6000fd5b6104db61058a565b73ffffffffffffffffffffffffffffffffffffffff811661057e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161025c565b6105878161063b565b50565b60005473ffffffffffffffffffffffffffffffffffffffff1633146101f3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161025c565b73ffffffffffffffffffffffffffffffffffffffff8316610630576101dc82826108ba565b6101dc8383836109c0565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600080821561070c576000806106c7868685610a2e565b6040517f7085244b00000000000000000000000000000000000000000000000000000000815260ff85166004820152909650929450859350506024909101905061025c565b808314610748576040517f04eb6e0c0000000000000000000000000000000000000000000000000000000081526004810182905260240161025c565b60009150505b92915050565b60008061076260418461106e565b905061076f6020826110b4565b156107975761077f6020826110b4565b61078990826110c8565b6107949060206110db565b90505b806107a460e060446110db565b6107ae91906110db565b6107b99060406110db565b9392505050565b60008061ffff8616156107d357856107d5565b845b905060006127106107ea61ffff84168a61106e565b6107f491906110ee565b90506fffffffffffffffffffffffffffffffff8416158061082557506fffffffffffffffffffffffffffffffff8516155b156108335791506108b19050565b6000846fffffffffffffffffffffffffffffffff167f0000000000000000000000000000000000000000000000000000000000000000876fffffffffffffffffffffffffffffffff16610886919061106e565b61089091906110ee565b61089a908a6110db565b90508181116108a957816108ab565b805b93505050505b95945050505050565b73ffffffffffffffffffffffffffffffffffffffff8216610907576040517f6b7a931000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405160006040518083038185875af1925050503d8060008114610961576040519150601f19603f3d011682016040523d82523d6000602084013e610966565b606091505b50509050806101dc576040517f465bc83400000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff841660048201526024810183905260440161025c565b73ffffffffffffffffffffffffffffffffffffffff8216610a0d576040517f6b7a931000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6101dc73ffffffffffffffffffffffffffffffffffffffff84168383610a88565b600036816001840181610a42888884610b15565b6002830192909150610a5a9089908990600301610b3c565b94506002820161ffff82168301610a7381838b8d611102565b979b909a50969850505061ffff160193505050565b6040805173ffffffffffffffffffffffffffffffffffffffff8416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb000000000000000000000000000000000000000000000000000000001790526101dc908490610b61565b600060028201610b2781848688611102565b610b309161112c565b60f01c95945050505050565b6000838383818110610b5057610b50611174565b919091013560f81c95945050505050565b6000610bc3826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16610c709092919063ffffffff16565b9050805160001480610be4575080806020019051810190610be491906111a3565b6101dc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f74207375636365656400000000000000000000000000000000000000000000606482015260840161025c565b60606103bd8484600085856000808673ffffffffffffffffffffffffffffffffffffffff168587604051610ca491906111e9565b60006040518083038185875af1925050503d8060008114610ce1576040519150601f19603f3d011682016040523d82523d6000602084013e610ce6565b606091505b5091509150610cf787838387610d02565b979650505050505050565b60608315610d98578251600003610d915773ffffffffffffffffffffffffffffffffffffffff85163b610d91576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161025c565b50816103bd565b6103bd8383815115610dad5781518083602001fd5b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161025c9190611205565b6000813574ffffffffffffffffffffffffffffffffffffffffff81168114610e0857600080fd5b73ffffffffffffffffffffffffffffffffffffffff1692915050565b600080600060608486031215610e3957600080fd5b610e4284610de1565b9250610e5060208501610de1565b9150604084013590509250925092565b600080600080848603610140811215610e7857600080fd5b60c0811215610e8657600080fd5b85945060607fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff4082011215610eb957600080fd5b5060c08501925061012085013567ffffffffffffffff80821115610edc57600080fd5b818701915087601f830112610ef057600080fd5b813581811115610eff57600080fd5b886020828501011115610f1157600080fd5b95989497505060200194505050565b600060208284031215610f3257600080fd5b6107b982610de1565b600060208284031215610f4d57600080fd5b813567ffffffffffffffff811681146107b957600080fd5b600060208284031215610f7757600080fd5b813563ffffffff811681146107b957600080fd5b6fffffffffffffffffffffffffffffffff8116811461058757600080fd5b60008060008060808587031215610fbf57600080fd5b845193506020850151610fd181610f8b565b6040860151909350610fe281610f8b565b6060860151909250610ff381610f8b565b939692955090935050565b60006020828403121561101057600080fd5b813561ffff811681146107b957600080fd5b60006020828403121561103457600080fd5b81356107b981610f8b565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b808202811582820484141761074e5761074e61103f565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000826110c3576110c3611085565b500690565b8181038181111561074e5761074e61103f565b8082018082111561074e5761074e61103f565b6000826110fd576110fd611085565b500490565b6000808585111561111257600080fd5b8386111561111f57600080fd5b5050820193919092039150565b7fffff000000000000000000000000000000000000000000000000000000000000813581811691600285101561116c5780818660020360031b1b83161692505b505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000602082840312156111b557600080fd5b815180151581146107b957600080fd5b60005b838110156111e05781810151838201526020016111c8565b50506000910152565b600082516111fb8184602087016111c5565b9190910192915050565b60208152600082518060208401526112248160408501602087016111c5565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016919091016040019291505056fea26474726f6e58221220a35b55ecc774e03c69800e8db1c347b555a5ad1758b42ab8e22d9f9bf952a54264736f6c63430008140033",
|
|
308
|
+
"deployedBytecode": "0x6080604052600436106100695760003560e01c80638da5cb5b116100435780638da5cb5b1461012d578063df2b057e1461017c578063f2fde38b1461018f57600080fd5b806301e3366714610075578063715018a6146100b15780637bfa20a9146100e057600080fd5b3661007057005b600080fd5b34801561008157600080fd5b50d3801561008e57600080fd5b50d2801561009b57600080fd5b506100af6100aa366004610e24565b6101c9565b005b3480156100bd57600080fd5b50d380156100ca57600080fd5b50d280156100d757600080fd5b506100af6101e1565b3480156100ec57600080fd5b50d380156100f957600080fd5b50d2801561010657600080fd5b5061011a610115366004610e60565b6101f5565b6040519081526020015b60405180910390f35b34801561013957600080fd5b50d3801561014657600080fd5b50d2801561015357600080fd5b5060005460405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610124565b61011a61018a366004610e60565b6103c5565b34801561019b57600080fd5b50d380156101a857600080fd5b50d280156101b557600080fd5b506100af6101c4366004610f20565b6104d3565b6101d161058a565b6101dc83838361060b565b505050565b6101e961058a565b6101f3600061063b565b565b60006102046020850185610f3b565b67ffffffffffffffff16600003610265576102256040860160208701610f65565b6040517fd009138a00000000000000000000000000000000000000000000000000000000815263ffffffff90911660048201526024015b60405180910390fd5b61026f83836106b0565b50600061029461028560a0880160808901610f3b565b67ffffffffffffffff16610754565b90506000806102a66020890189610f20565b73ffffffffffffffffffffffffffffffffffffffff166388a4124c6102d160408b0160208c01610f65565b856102df60208c018c610f3b565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b16815263ffffffff939093166004840152602483019190915267ffffffffffffffff166044820152606401608060405180830381865afa158015610350573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103749190610fa9565b9350505091506103b7828860200160208101906103919190610ffe565b6103a160c08c0160a08d01610ffe565b6103b160608c0160408d01611022565b856107c0565b93505050505b949350505050565b60006103d46020850185610f3b565b67ffffffffffffffff166000036103f5576102256040860160208701610f65565b6103ff83836106b0565b50600061041561028560a0880160808901610f3b565b90506000806104276020890189610f20565b73ffffffffffffffffffffffffffffffffffffffff1663c1723a1d61045260408b0160208c01610f65565b8561046060208c018c610f3b565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b16815263ffffffff939093166004840152602483019190915267ffffffffffffffff1660448201526064016080604051808303816000875af1158015610350573d6000803e3d6000fd5b6104db61058a565b73ffffffffffffffffffffffffffffffffffffffff811661057e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161025c565b6105878161063b565b50565b60005473ffffffffffffffffffffffffffffffffffffffff1633146101f3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161025c565b73ffffffffffffffffffffffffffffffffffffffff8316610630576101dc82826108ba565b6101dc8383836109c0565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600080821561070c576000806106c7868685610a2e565b6040517f7085244b00000000000000000000000000000000000000000000000000000000815260ff85166004820152909650929450859350506024909101905061025c565b808314610748576040517f04eb6e0c0000000000000000000000000000000000000000000000000000000081526004810182905260240161025c565b60009150505b92915050565b60008061076260418461106e565b905061076f6020826110b4565b156107975761077f6020826110b4565b61078990826110c8565b6107949060206110db565b90505b806107a460e060446110db565b6107ae91906110db565b6107b99060406110db565b9392505050565b60008061ffff8616156107d357856107d5565b845b905060006127106107ea61ffff84168a61106e565b6107f491906110ee565b90506fffffffffffffffffffffffffffffffff8416158061082557506fffffffffffffffffffffffffffffffff8516155b156108335791506108b19050565b6000846fffffffffffffffffffffffffffffffff167f0000000000000000000000000000000000000000000000000000000000000000876fffffffffffffffffffffffffffffffff16610886919061106e565b61089091906110ee565b61089a908a6110db565b90508181116108a957816108ab565b805b93505050505b95945050505050565b73ffffffffffffffffffffffffffffffffffffffff8216610907576040517f6b7a931000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405160006040518083038185875af1925050503d8060008114610961576040519150601f19603f3d011682016040523d82523d6000602084013e610966565b606091505b50509050806101dc576040517f465bc83400000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff841660048201526024810183905260440161025c565b73ffffffffffffffffffffffffffffffffffffffff8216610a0d576040517f6b7a931000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6101dc73ffffffffffffffffffffffffffffffffffffffff84168383610a88565b600036816001840181610a42888884610b15565b6002830192909150610a5a9089908990600301610b3c565b94506002820161ffff82168301610a7381838b8d611102565b979b909a50969850505061ffff160193505050565b6040805173ffffffffffffffffffffffffffffffffffffffff8416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb000000000000000000000000000000000000000000000000000000001790526101dc908490610b61565b600060028201610b2781848688611102565b610b309161112c565b60f01c95945050505050565b6000838383818110610b5057610b50611174565b919091013560f81c95945050505050565b6000610bc3826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16610c709092919063ffffffff16565b9050805160001480610be4575080806020019051810190610be491906111a3565b6101dc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f74207375636365656400000000000000000000000000000000000000000000606482015260840161025c565b60606103bd8484600085856000808673ffffffffffffffffffffffffffffffffffffffff168587604051610ca491906111e9565b60006040518083038185875af1925050503d8060008114610ce1576040519150601f19603f3d011682016040523d82523d6000602084013e610ce6565b606091505b5091509150610cf787838387610d02565b979650505050505050565b60608315610d98578251600003610d915773ffffffffffffffffffffffffffffffffffffffff85163b610d91576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161025c565b50816103bd565b6103bd8383815115610dad5781518083602001fd5b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161025c9190611205565b6000813574ffffffffffffffffffffffffffffffffffffffffff81168114610e0857600080fd5b73ffffffffffffffffffffffffffffffffffffffff1692915050565b600080600060608486031215610e3957600080fd5b610e4284610de1565b9250610e5060208501610de1565b9150604084013590509250925092565b600080600080848603610140811215610e7857600080fd5b60c0811215610e8657600080fd5b85945060607fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff4082011215610eb957600080fd5b5060c08501925061012085013567ffffffffffffffff80821115610edc57600080fd5b818701915087601f830112610ef057600080fd5b813581811115610eff57600080fd5b886020828501011115610f1157600080fd5b95989497505060200194505050565b600060208284031215610f3257600080fd5b6107b982610de1565b600060208284031215610f4d57600080fd5b813567ffffffffffffffff811681146107b957600080fd5b600060208284031215610f7757600080fd5b813563ffffffff811681146107b957600080fd5b6fffffffffffffffffffffffffffffffff8116811461058757600080fd5b60008060008060808587031215610fbf57600080fd5b845193506020850151610fd181610f8b565b6040860151909350610fe281610f8b565b6060860151909250610ff381610f8b565b939692955090935050565b60006020828403121561101057600080fd5b813561ffff811681146107b957600080fd5b60006020828403121561103457600080fd5b81356107b981610f8b565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b808202811582820484141761074e5761074e61103f565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000826110c3576110c3611085565b500690565b8181038181111561074e5761074e61103f565b8082018082111561074e5761074e61103f565b6000826110fd576110fd611085565b500490565b6000808585111561111257600080fd5b8386111561111f57600080fd5b5050820193919092039150565b7fffff000000000000000000000000000000000000000000000000000000000000813581811691600285101561116c5780818660020360031b1b83161692505b505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000602082840312156111b557600080fd5b815180151581146107b957600080fd5b60005b838110156111e05781810151838201526020016111c8565b50506000910152565b600082516111fb8184602087016111c5565b9190910192915050565b60208152600082518060208401526112248160408501602087016111c5565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016919091016040019291505056fea26474726f6e58221220a35b55ecc774e03c69800e8db1c347b555a5ad1758b42ab8e22d9f9bf952a54264736f6c63430008140033",
|
|
309
|
+
"linkReferences": {},
|
|
310
|
+
"deployedLinkReferences": {}
|
|
311
|
+
}
|
|
@@ -0,0 +1,164 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_format": "hh-sol-artifact-1",
|
|
3
|
+
"contractName": "MultiSig",
|
|
4
|
+
"sourceName": "contracts/uln/dvn/MultiSig.sol",
|
|
5
|
+
"abi": [
|
|
6
|
+
{
|
|
7
|
+
"inputs": [],
|
|
8
|
+
"name": "MultiSig_OnlySigner",
|
|
9
|
+
"type": "error"
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
"inputs": [],
|
|
13
|
+
"name": "MultiSig_QuorumIsZero",
|
|
14
|
+
"type": "error"
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"inputs": [
|
|
18
|
+
{
|
|
19
|
+
"internalType": "uint64",
|
|
20
|
+
"name": "signersSize",
|
|
21
|
+
"type": "uint64"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"internalType": "uint64",
|
|
25
|
+
"name": "quorum",
|
|
26
|
+
"type": "uint64"
|
|
27
|
+
}
|
|
28
|
+
],
|
|
29
|
+
"name": "MultiSig_SignersSizeIsLessThanQuorum",
|
|
30
|
+
"type": "error"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"inputs": [
|
|
34
|
+
{
|
|
35
|
+
"internalType": "address",
|
|
36
|
+
"name": "signer",
|
|
37
|
+
"type": "address"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"internalType": "bool",
|
|
41
|
+
"name": "active",
|
|
42
|
+
"type": "bool"
|
|
43
|
+
}
|
|
44
|
+
],
|
|
45
|
+
"name": "MultiSig_StateAlreadySet",
|
|
46
|
+
"type": "error"
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"inputs": [],
|
|
50
|
+
"name": "MultiSig_UnorderedSigners",
|
|
51
|
+
"type": "error"
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"anonymous": false,
|
|
55
|
+
"inputs": [
|
|
56
|
+
{
|
|
57
|
+
"indexed": false,
|
|
58
|
+
"internalType": "uint64",
|
|
59
|
+
"name": "_quorum",
|
|
60
|
+
"type": "uint64"
|
|
61
|
+
}
|
|
62
|
+
],
|
|
63
|
+
"name": "UpdateQuorum",
|
|
64
|
+
"type": "event"
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"anonymous": false,
|
|
68
|
+
"inputs": [
|
|
69
|
+
{
|
|
70
|
+
"indexed": false,
|
|
71
|
+
"internalType": "address",
|
|
72
|
+
"name": "_signer",
|
|
73
|
+
"type": "address"
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"indexed": false,
|
|
77
|
+
"internalType": "bool",
|
|
78
|
+
"name": "_active",
|
|
79
|
+
"type": "bool"
|
|
80
|
+
}
|
|
81
|
+
],
|
|
82
|
+
"name": "UpdateSigner",
|
|
83
|
+
"type": "event"
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"inputs": [],
|
|
87
|
+
"name": "quorum",
|
|
88
|
+
"outputs": [
|
|
89
|
+
{
|
|
90
|
+
"internalType": "uint64",
|
|
91
|
+
"name": "",
|
|
92
|
+
"type": "uint64"
|
|
93
|
+
}
|
|
94
|
+
],
|
|
95
|
+
"stateMutability": "view",
|
|
96
|
+
"type": "function"
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
"inputs": [],
|
|
100
|
+
"name": "signerSize",
|
|
101
|
+
"outputs": [
|
|
102
|
+
{
|
|
103
|
+
"internalType": "uint64",
|
|
104
|
+
"name": "",
|
|
105
|
+
"type": "uint64"
|
|
106
|
+
}
|
|
107
|
+
],
|
|
108
|
+
"stateMutability": "view",
|
|
109
|
+
"type": "function"
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
"inputs": [
|
|
113
|
+
{
|
|
114
|
+
"internalType": "address",
|
|
115
|
+
"name": "signer",
|
|
116
|
+
"type": "address"
|
|
117
|
+
}
|
|
118
|
+
],
|
|
119
|
+
"name": "signers",
|
|
120
|
+
"outputs": [
|
|
121
|
+
{
|
|
122
|
+
"internalType": "bool",
|
|
123
|
+
"name": "active",
|
|
124
|
+
"type": "bool"
|
|
125
|
+
}
|
|
126
|
+
],
|
|
127
|
+
"stateMutability": "view",
|
|
128
|
+
"type": "function"
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
"inputs": [
|
|
132
|
+
{
|
|
133
|
+
"internalType": "bytes32",
|
|
134
|
+
"name": "_hash",
|
|
135
|
+
"type": "bytes32"
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"internalType": "bytes",
|
|
139
|
+
"name": "_signatures",
|
|
140
|
+
"type": "bytes"
|
|
141
|
+
}
|
|
142
|
+
],
|
|
143
|
+
"name": "verifySignatures",
|
|
144
|
+
"outputs": [
|
|
145
|
+
{
|
|
146
|
+
"internalType": "bool",
|
|
147
|
+
"name": "",
|
|
148
|
+
"type": "bool"
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
"internalType": "enum MultiSig.Errors",
|
|
152
|
+
"name": "",
|
|
153
|
+
"type": "uint8"
|
|
154
|
+
}
|
|
155
|
+
],
|
|
156
|
+
"stateMutability": "view",
|
|
157
|
+
"type": "function"
|
|
158
|
+
}
|
|
159
|
+
],
|
|
160
|
+
"bytecode": "0x",
|
|
161
|
+
"deployedBytecode": "0x",
|
|
162
|
+
"linkReferences": {},
|
|
163
|
+
"deployedLinkReferences": {}
|
|
164
|
+
}
|