@layerzerolabs/lz-evm-sdk-v2 3.0.26 → 3.0.28
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-zk/contracts/EndpointV2.sol/EndpointV2.json +3 -3
- package/artifacts-zk/contracts/EndpointV2Alt.sol/EndpointV2Alt.json +3 -3
- package/artifacts-zk/contracts/EndpointV2View.sol/EndpointV2View.json +2 -2
- package/artifacts-zk/contracts/EndpointV2ViewUpgradeable.sol/EndpointV2ViewUpgradeable.json +2 -2
- package/artifacts-zk/contracts/Executor.sol/Executor.json +174 -6
- package/artifacts-zk/contracts/Executor.sol/ILayerZeroEndpointV2.json +231 -0
- package/artifacts-zk/contracts/ExecutorFeeLib.sol/ExecutorFeeLib.json +199 -5
- package/artifacts-zk/contracts/PriceFeed.sol/PriceFeed.json +52 -8
- package/artifacts-zk/contracts/SimpleReadExecutor.sol/ILayerZeroEndpointV2.json +140 -0
- package/artifacts-zk/contracts/SimpleReadExecutor.sol/SimpleReadExecutor.json +199 -0
- package/artifacts-zk/contracts/Treasury.sol/Treasury.json +2 -2
- package/artifacts-zk/contracts/decompressor/DVNDecoder.sol/DVNDecoder.json +2 -2
- package/artifacts-zk/contracts/decompressor/DVNDecompressor.sol/DVNDecompressor.json +2 -2
- package/artifacts-zk/contracts/decompressor/ExecutorDecoder.sol/ExecutorDecoder.json +2 -2
- package/artifacts-zk/contracts/decompressor/ExecutorDecompressor.sol/ExecutorDecompressor.json +2 -2
- package/artifacts-zk/contracts/interfaces/IExecutor.sol/IExecutor.json +59 -1
- package/artifacts-zk/contracts/interfaces/IExecutorFeeLib.sol/IExecutorFeeLib.json +186 -2
- package/artifacts-zk/contracts/interfaces/ILayerZeroEndpointV2.sol/ILayerZeroEndpointV2.json +2 -2
- package/artifacts-zk/contracts/interfaces/ILayerZeroPriceFeed.sol/ILayerZeroPriceFeed.json +6 -6
- package/artifacts-zk/contracts/interfaces/ILayerZeroReadExecutor.sol/ILayerZeroReadExecutor.json +60 -0
- package/artifacts-zk/contracts/interfaces/IMessageLibManager.sol/IMessageLibManager.json +2 -2
- package/artifacts-zk/contracts/libs/ExecutorOptions.sol/ExecutorOptions.json +32 -0
- package/artifacts-zk/contracts/lowlat/EssenceDVNWrapper.sol/EssenceDVNWrapper.json +370 -0
- package/artifacts-zk/contracts/lowlat/MultiCall.sol/MultiCall.json +121 -0
- package/artifacts-zk/contracts/messagelib/BlockedMessageLib.sol/BlockedMessageLib.json +2 -2
- package/artifacts-zk/contracts/messagelib/SimpleMessageLib.sol/SimpleMessageLib.json +2 -2
- package/artifacts-zk/contracts/messagelib/libs/PacketV1Codec.sol/PacketV1Codec.json +2 -2
- package/artifacts-zk/contracts/uln/LzExecutor.sol/LzExecutor.json +2 -2
- package/artifacts-zk/contracts/uln/dvn/DVN.sol/DVN.json +145 -6
- package/artifacts-zk/contracts/uln/dvn/DVNFeeLib.sol/DVNFeeLib.json +386 -2
- package/artifacts-zk/contracts/uln/dvn/DeadDVN.sol/DeadDVN.json +165 -0
- package/artifacts-zk/contracts/uln/dvn/MultiSig.sol/MultiSig.json +57 -4
- package/artifacts-zk/contracts/uln/dvn/SimpleReadDVN.sol/SimpleReadDVN.json +232 -0
- package/artifacts-zk/contracts/uln/dvn/adapters/CCIP/CCIPDVNAdapter.sol/CCIPDVNAdapter.json +28 -49
- package/artifacts-zk/contracts/uln/dvn/adapters/CCIP/CCIPDVNAdapterFeeLib.sol/CCIPDVNAdapterFeeLib.json +2 -2
- package/artifacts-zk/contracts/uln/dvn/adapters/arbitrum/ArbitrumDVNAdapterL1.sol/ArbitrumDVNAdapterL1.json +2 -2
- package/artifacts-zk/contracts/uln/dvn/adapters/arbitrum/ArbitrumDVNAdapterL2.sol/ArbitrumDVNAdapterL2.json +2 -2
- package/artifacts-zk/contracts/uln/dvn/adapters/axelar/AxelarDVNAdapter.sol/AxelarDVNAdapter.json +28 -23
- package/artifacts-zk/contracts/uln/dvn/adapters/axelar/AxelarDVNAdapterFeeLib.sol/AxelarDVNAdapterFeeLib.json +3 -3
- package/artifacts-zk/contracts/uln/dvn/adapters/libs/DVNAdapterMessageCodec.sol/DVNAdapterMessageCodec.json +2 -2
- package/artifacts-zk/contracts/uln/dvn/adapters/optimism/OptimismDVNAdapterL1.sol/OptimismDVNAdapterL1.json +2 -2
- package/artifacts-zk/contracts/uln/dvn/adapters/optimism/OptimismDVNAdapterL2.sol/OptimismDVNAdapterL2.json +2 -2
- package/artifacts-zk/contracts/uln/interfaces/IDVN.sol/IDVN.json +68 -0
- package/artifacts-zk/contracts/uln/interfaces/IDVNFeeLib.sol/IDVNFeeLib.json +185 -0
- package/artifacts-zk/contracts/uln/interfaces/ILayerZeroReadDVN.sol/ILayerZeroReadDVN.json +80 -0
- package/artifacts-zk/contracts/uln/interfaces/adapters/IAxelarDVNAdapter.sol/IAxelarDVNAdapter.json +1 -1
- package/artifacts-zk/contracts/uln/interfaces/adapters/ICCIPDVNAdapter.sol/ICCIPDVNAdapter.json +1 -14
- package/artifacts-zk/contracts/uln/libs/ReadCmdCodecV1.sol/ReadCmdCodecV1.json +27 -0
- package/artifacts-zk/contracts/uln/libs/SupportedCmdTypes.sol/SupportedCmdTypesLib.json +17 -0
- package/artifacts-zk/contracts/uln/readlib/ReadLib1002.sol/ReadLib1002.json +1289 -0
- package/artifacts-zk/contracts/uln/readlib/ReadLib1002View.sol/ReadLib1002View.json +286 -0
- package/artifacts-zk/contracts/uln/readlib/ReadLibBase.sol/ReadLibBase.json +388 -0
- package/artifacts-zk/contracts/uln/uln301/ReceiveUln301.sol/ReceiveUln301.json +2 -2
- package/artifacts-zk/contracts/uln/uln301/ReceiveUln301View.sol/ReceiveUln301View.json +2 -2
- package/artifacts-zk/contracts/uln/uln301/SendUln301.sol/SendUln301.json +2 -2
- package/artifacts-zk/contracts/uln/uln302/ReceiveUln302.sol/ReceiveUln302.json +2 -2
- package/artifacts-zk/contracts/uln/uln302/ReceiveUln302View.sol/ReceiveUln302View.json +2 -2
- package/artifacts-zk/contracts/uln/uln302/SendUln302.sol/SendUln302.json +2 -2
- package/deployments/arbitrum-sandbox-local/DVN.json +1 -1
- package/deployments/arbitrum-sandbox-local/DVNDecompressor.json +1 -1
- package/deployments/arbitrum-sandbox-local/DVNFeeLib.json +1 -1
- package/deployments/arbitrum-sandbox-local/DefaultProxyAdmin.json +1 -1
- package/deployments/arbitrum-sandbox-local/EndpointV2.json +1 -1
- package/deployments/arbitrum-sandbox-local/EndpointV2View.json +1 -1
- package/deployments/arbitrum-sandbox-local/EndpointV2View_Implementation.json +1 -1
- package/deployments/arbitrum-sandbox-local/EndpointV2View_Proxy.json +1 -1
- package/deployments/arbitrum-sandbox-local/Executor.json +1 -1
- package/deployments/arbitrum-sandbox-local/ExecutorDecompressor.json +1 -1
- package/deployments/arbitrum-sandbox-local/ExecutorFeeLib.json +1 -1
- package/deployments/arbitrum-sandbox-local/ExecutorProxyAdmin.json +1 -1
- package/deployments/arbitrum-sandbox-local/Executor_Implementation.json +1 -1
- package/deployments/arbitrum-sandbox-local/Executor_Proxy.json +1 -1
- package/deployments/arbitrum-sandbox-local/LzExecutor.json +1 -1
- package/deployments/arbitrum-sandbox-local/LzExecutor_Implementation.json +1 -1
- package/deployments/arbitrum-sandbox-local/LzExecutor_Proxy.json +1 -1
- package/deployments/arbitrum-sandbox-local/MultiCall.json +1 -1
- package/deployments/arbitrum-sandbox-local/NonceContractMock.json +1 -1
- package/deployments/arbitrum-sandbox-local/PriceFeed.json +1 -1
- package/deployments/arbitrum-sandbox-local/PriceFeedProxyAdmin.json +1 -1
- package/deployments/arbitrum-sandbox-local/PriceFeed_Implementation.json +1 -1
- package/deployments/arbitrum-sandbox-local/PriceFeed_Proxy.json +1 -1
- package/deployments/arbitrum-sandbox-local/ReadLib1002.json +1 -1
- package/deployments/arbitrum-sandbox-local/ReadLib1002View.json +1 -1
- package/deployments/arbitrum-sandbox-local/ReadLib1002ViewProxyAdmin.json +1 -1
- package/deployments/arbitrum-sandbox-local/ReadLib1002View_Implementation.json +1 -1
- package/deployments/arbitrum-sandbox-local/ReadLib1002View_Proxy.json +1 -1
- package/deployments/arbitrum-sandbox-local/ReceiveUln301.json +1 -1
- package/deployments/arbitrum-sandbox-local/ReceiveUln301View.json +1 -1
- package/deployments/arbitrum-sandbox-local/ReceiveUln301View_Implementation.json +1 -1
- package/deployments/arbitrum-sandbox-local/ReceiveUln301View_Proxy.json +1 -1
- package/deployments/arbitrum-sandbox-local/ReceiveUln302.json +1 -1
- package/deployments/arbitrum-sandbox-local/ReceiveUln302View.json +1 -1
- package/deployments/arbitrum-sandbox-local/ReceiveUln302View_Implementation.json +1 -1
- package/deployments/arbitrum-sandbox-local/ReceiveUln302View_Proxy.json +1 -1
- package/deployments/arbitrum-sandbox-local/SendUln301.json +1 -1
- package/deployments/arbitrum-sandbox-local/SendUln302.json +1 -1
- package/deployments/arbitrum-sandbox-local/SimpleMessageLib.json +1 -1
- package/deployments/arbitrum-sandbox-local/Treasury.json +1 -1
- package/deployments/arbitrum-sandbox-local/TreasuryFeeHandler.json +1 -1
- package/deployments/bsc-sandbox-local/DVN.json +1 -1
- package/deployments/bsc-sandbox-local/DVNDecompressor.json +1 -1
- package/deployments/bsc-sandbox-local/DVNFeeLib.json +1 -1
- package/deployments/bsc-sandbox-local/DefaultProxyAdmin.json +1 -1
- package/deployments/bsc-sandbox-local/EndpointV2.json +1 -1
- package/deployments/bsc-sandbox-local/EndpointV2View.json +1 -1
- package/deployments/bsc-sandbox-local/EndpointV2View_Implementation.json +1 -1
- package/deployments/bsc-sandbox-local/EndpointV2View_Proxy.json +1 -1
- package/deployments/bsc-sandbox-local/Executor.json +1 -1
- package/deployments/bsc-sandbox-local/ExecutorDecompressor.json +1 -1
- package/deployments/bsc-sandbox-local/ExecutorFeeLib.json +1 -1
- package/deployments/bsc-sandbox-local/ExecutorProxyAdmin.json +1 -1
- package/deployments/bsc-sandbox-local/Executor_Implementation.json +1 -1
- package/deployments/bsc-sandbox-local/Executor_Proxy.json +1 -1
- package/deployments/bsc-sandbox-local/LzExecutor.json +1 -1
- package/deployments/bsc-sandbox-local/LzExecutor_Implementation.json +1 -1
- package/deployments/bsc-sandbox-local/LzExecutor_Proxy.json +1 -1
- package/deployments/bsc-sandbox-local/MultiCall.json +1 -1
- package/deployments/bsc-sandbox-local/NonceContractMock.json +1 -1
- package/deployments/bsc-sandbox-local/PriceFeed.json +1 -1
- package/deployments/bsc-sandbox-local/PriceFeedProxyAdmin.json +1 -1
- package/deployments/bsc-sandbox-local/PriceFeed_Implementation.json +1 -1
- package/deployments/bsc-sandbox-local/PriceFeed_Proxy.json +1 -1
- package/deployments/bsc-sandbox-local/ReadLib1002.json +1 -1
- package/deployments/bsc-sandbox-local/ReadLib1002View.json +1 -1
- package/deployments/bsc-sandbox-local/ReadLib1002ViewProxyAdmin.json +1 -1
- package/deployments/bsc-sandbox-local/ReadLib1002View_Implementation.json +1 -1
- package/deployments/bsc-sandbox-local/ReadLib1002View_Proxy.json +1 -1
- package/deployments/bsc-sandbox-local/ReceiveUln301.json +1 -1
- package/deployments/bsc-sandbox-local/ReceiveUln301View.json +1 -1
- package/deployments/bsc-sandbox-local/ReceiveUln301View_Implementation.json +1 -1
- package/deployments/bsc-sandbox-local/ReceiveUln301View_Proxy.json +1 -1
- package/deployments/bsc-sandbox-local/ReceiveUln302.json +1 -1
- package/deployments/bsc-sandbox-local/ReceiveUln302View.json +1 -1
- package/deployments/bsc-sandbox-local/ReceiveUln302View_Implementation.json +1 -1
- package/deployments/bsc-sandbox-local/ReceiveUln302View_Proxy.json +1 -1
- package/deployments/bsc-sandbox-local/SendUln301.json +1 -1
- package/deployments/bsc-sandbox-local/SendUln302.json +1 -1
- package/deployments/bsc-sandbox-local/SimpleMessageLib.json +1 -1
- package/deployments/bsc-sandbox-local/Treasury.json +1 -1
- package/deployments/bsc-sandbox-local/TreasuryFeeHandler.json +1 -1
- package/deployments/ethereum-sandbox-local/DVN.json +1 -1
- package/deployments/ethereum-sandbox-local/DVNDecompressor.json +1 -1
- package/deployments/ethereum-sandbox-local/DVNFeeLib.json +1 -1
- package/deployments/ethereum-sandbox-local/DefaultProxyAdmin.json +1 -1
- package/deployments/ethereum-sandbox-local/EndpointV2.json +1 -1
- package/deployments/ethereum-sandbox-local/EndpointV2View.json +1 -1
- package/deployments/ethereum-sandbox-local/EndpointV2View_Implementation.json +1 -1
- package/deployments/ethereum-sandbox-local/EndpointV2View_Proxy.json +1 -1
- package/deployments/ethereum-sandbox-local/Executor.json +1 -1
- package/deployments/ethereum-sandbox-local/ExecutorDecompressor.json +1 -1
- package/deployments/ethereum-sandbox-local/ExecutorFeeLib.json +1 -1
- package/deployments/ethereum-sandbox-local/ExecutorProxyAdmin.json +1 -1
- package/deployments/ethereum-sandbox-local/Executor_Implementation.json +1 -1
- package/deployments/ethereum-sandbox-local/Executor_Proxy.json +1 -1
- package/deployments/ethereum-sandbox-local/LzExecutor.json +1 -1
- package/deployments/ethereum-sandbox-local/LzExecutor_Implementation.json +1 -1
- package/deployments/ethereum-sandbox-local/LzExecutor_Proxy.json +1 -1
- package/deployments/ethereum-sandbox-local/MultiCall.json +1 -1
- package/deployments/ethereum-sandbox-local/NonceContractMock.json +1 -1
- package/deployments/ethereum-sandbox-local/PriceFeed.json +1 -1
- package/deployments/ethereum-sandbox-local/PriceFeedProxyAdmin.json +1 -1
- package/deployments/ethereum-sandbox-local/PriceFeed_Implementation.json +1 -1
- package/deployments/ethereum-sandbox-local/PriceFeed_Proxy.json +1 -1
- package/deployments/ethereum-sandbox-local/ReadLib1002.json +1 -1
- package/deployments/ethereum-sandbox-local/ReadLib1002View.json +1 -1
- package/deployments/ethereum-sandbox-local/ReadLib1002ViewProxyAdmin.json +1 -1
- package/deployments/ethereum-sandbox-local/ReadLib1002View_Implementation.json +1 -1
- package/deployments/ethereum-sandbox-local/ReadLib1002View_Proxy.json +1 -1
- package/deployments/ethereum-sandbox-local/ReceiveUln301.json +1 -1
- package/deployments/ethereum-sandbox-local/ReceiveUln301View.json +1 -1
- package/deployments/ethereum-sandbox-local/ReceiveUln301View_Implementation.json +1 -1
- package/deployments/ethereum-sandbox-local/ReceiveUln301View_Proxy.json +1 -1
- package/deployments/ethereum-sandbox-local/ReceiveUln302.json +1 -1
- package/deployments/ethereum-sandbox-local/ReceiveUln302View.json +1 -1
- package/deployments/ethereum-sandbox-local/ReceiveUln302View_Implementation.json +1 -1
- package/deployments/ethereum-sandbox-local/ReceiveUln302View_Proxy.json +1 -1
- package/deployments/ethereum-sandbox-local/SendUln301.json +1 -1
- package/deployments/ethereum-sandbox-local/SendUln302.json +1 -1
- package/deployments/ethereum-sandbox-local/SimpleMessageLib.json +1 -1
- package/deployments/ethereum-sandbox-local/Treasury.json +1 -1
- package/deployments/ethereum-sandbox-local/TreasuryFeeHandler.json +1 -1
- package/deployments/polygon-sandbox-local/DVN.json +1 -1
- package/deployments/polygon-sandbox-local/DVNDecompressor.json +1 -1
- package/deployments/polygon-sandbox-local/DVNFeeLib.json +1 -1
- package/deployments/polygon-sandbox-local/DefaultProxyAdmin.json +1 -1
- package/deployments/polygon-sandbox-local/EndpointV2.json +1 -1
- package/deployments/polygon-sandbox-local/EndpointV2View.json +1 -1
- package/deployments/polygon-sandbox-local/EndpointV2View_Implementation.json +1 -1
- package/deployments/polygon-sandbox-local/EndpointV2View_Proxy.json +1 -1
- package/deployments/polygon-sandbox-local/Executor.json +1 -1
- package/deployments/polygon-sandbox-local/ExecutorDecompressor.json +1 -1
- package/deployments/polygon-sandbox-local/ExecutorFeeLib.json +1 -1
- package/deployments/polygon-sandbox-local/ExecutorProxyAdmin.json +1 -1
- package/deployments/polygon-sandbox-local/Executor_Implementation.json +1 -1
- package/deployments/polygon-sandbox-local/Executor_Proxy.json +1 -1
- package/deployments/polygon-sandbox-local/LzExecutor.json +1 -1
- package/deployments/polygon-sandbox-local/LzExecutor_Implementation.json +1 -1
- package/deployments/polygon-sandbox-local/LzExecutor_Proxy.json +1 -1
- package/deployments/polygon-sandbox-local/MultiCall.json +1 -1
- package/deployments/polygon-sandbox-local/NonceContractMock.json +1 -1
- package/deployments/polygon-sandbox-local/PriceFeed.json +1 -1
- package/deployments/polygon-sandbox-local/PriceFeedProxyAdmin.json +1 -1
- package/deployments/polygon-sandbox-local/PriceFeed_Implementation.json +1 -1
- package/deployments/polygon-sandbox-local/PriceFeed_Proxy.json +1 -1
- package/deployments/polygon-sandbox-local/ReadLib1002.json +1 -1
- package/deployments/polygon-sandbox-local/ReadLib1002View.json +1 -1
- package/deployments/polygon-sandbox-local/ReadLib1002ViewProxyAdmin.json +1 -1
- package/deployments/polygon-sandbox-local/ReadLib1002View_Implementation.json +1 -1
- package/deployments/polygon-sandbox-local/ReadLib1002View_Proxy.json +1 -1
- package/deployments/polygon-sandbox-local/ReceiveUln301.json +1 -1
- package/deployments/polygon-sandbox-local/ReceiveUln301View.json +1 -1
- package/deployments/polygon-sandbox-local/ReceiveUln301View_Implementation.json +1 -1
- package/deployments/polygon-sandbox-local/ReceiveUln301View_Proxy.json +1 -1
- package/deployments/polygon-sandbox-local/ReceiveUln302.json +1 -1
- package/deployments/polygon-sandbox-local/ReceiveUln302View.json +1 -1
- package/deployments/polygon-sandbox-local/ReceiveUln302View_Implementation.json +1 -1
- package/deployments/polygon-sandbox-local/ReceiveUln302View_Proxy.json +1 -1
- package/deployments/polygon-sandbox-local/SendUln301.json +1 -1
- package/deployments/polygon-sandbox-local/SendUln302.json +1 -1
- package/deployments/polygon-sandbox-local/SimpleMessageLib.json +1 -1
- package/deployments/polygon-sandbox-local/Treasury.json +1 -1
- package/deployments/polygon-sandbox-local/TreasuryFeeHandler.json +1 -1
- package/deployments/tron-sandbox-local/DVN.json +2 -2
- package/deployments/tron-sandbox-local/DVNDecompressor.json +2 -2
- package/deployments/tron-sandbox-local/DVNFeeLib.json +2 -2
- package/deployments/tron-sandbox-local/DefaultProxyAdmin.json +2 -2
- package/deployments/tron-sandbox-local/EndpointV2.json +2 -2
- package/deployments/tron-sandbox-local/EndpointV2View.json +2 -2
- package/deployments/tron-sandbox-local/EndpointV2View_Implementation.json +2 -2
- package/deployments/tron-sandbox-local/EndpointV2View_Proxy.json +2 -2
- package/deployments/tron-sandbox-local/Executor.json +2 -2
- package/deployments/tron-sandbox-local/ExecutorDecompressor.json +2 -2
- package/deployments/tron-sandbox-local/ExecutorFeeLib.json +2 -2
- package/deployments/tron-sandbox-local/ExecutorProxyAdmin.json +2 -2
- package/deployments/tron-sandbox-local/Executor_Implementation.json +2 -2
- package/deployments/tron-sandbox-local/Executor_Proxy.json +2 -2
- package/deployments/tron-sandbox-local/LzExecutor.json +2 -2
- package/deployments/tron-sandbox-local/LzExecutor_Implementation.json +2 -2
- package/deployments/tron-sandbox-local/LzExecutor_Proxy.json +2 -2
- package/deployments/tron-sandbox-local/MultiCall.json +2 -2
- package/deployments/tron-sandbox-local/NonceContractMock.json +2 -2
- package/deployments/tron-sandbox-local/PriceFeed.json +2 -2
- package/deployments/tron-sandbox-local/PriceFeedProxyAdmin.json +2 -2
- package/deployments/tron-sandbox-local/PriceFeed_Implementation.json +2 -2
- package/deployments/tron-sandbox-local/PriceFeed_Proxy.json +2 -2
- package/deployments/tron-sandbox-local/ReadLib1002.json +2 -2
- package/deployments/tron-sandbox-local/ReadLib1002View.json +2 -2
- package/deployments/tron-sandbox-local/ReadLib1002ViewProxyAdmin.json +2 -2
- package/deployments/tron-sandbox-local/ReadLib1002View_Implementation.json +2 -2
- package/deployments/tron-sandbox-local/ReadLib1002View_Proxy.json +2 -2
- package/deployments/tron-sandbox-local/ReceiveUln301.json +2 -2
- package/deployments/tron-sandbox-local/ReceiveUln301View.json +2 -2
- package/deployments/tron-sandbox-local/ReceiveUln301View_Implementation.json +2 -2
- package/deployments/tron-sandbox-local/ReceiveUln301View_Proxy.json +2 -2
- package/deployments/tron-sandbox-local/ReceiveUln302.json +2 -2
- package/deployments/tron-sandbox-local/ReceiveUln302View.json +2 -2
- package/deployments/tron-sandbox-local/ReceiveUln302View_Implementation.json +2 -2
- package/deployments/tron-sandbox-local/ReceiveUln302View_Proxy.json +2 -2
- package/deployments/tron-sandbox-local/SendUln301.json +2 -2
- package/deployments/tron-sandbox-local/SendUln302.json +2 -2
- package/deployments/tron-sandbox-local/SimpleMessageLib.json +2 -2
- package/deployments/tron-sandbox-local/Treasury.json +2 -2
- package/deployments/tron-sandbox-local/TreasuryFeeHandler.json +2 -2
- package/package.json +9 -9
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"address": "0x5F1e91d509cFEB544809B0749284DEB25C3a113a",
|
|
3
|
-
"transactionHash": "
|
|
3
|
+
"transactionHash": "0x98e86953962df25448abe5cbde5a59b3131c664d8c187d3d4f751f0e1e2ef8ca",
|
|
4
4
|
"abi": [
|
|
5
5
|
{
|
|
6
6
|
"inputs": [
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"address": "0x558785b76e29e5b9f8Bf428936480B49d71F3d76",
|
|
3
|
-
"transactionHash": "
|
|
3
|
+
"transactionHash": "0x8c8f084c06bd4c9f414e1d0a21ca7d0c17b37df7753a492768b8d03afaaec0ee",
|
|
4
4
|
"abi": [
|
|
5
5
|
{
|
|
6
6
|
"inputs": [
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"address": "0xE7C2a73131dd48D8AC46dCD7Ab80C8cbeE5b410A",
|
|
3
|
-
"transactionHash": "
|
|
3
|
+
"transactionHash": "0xb168ab6316ba4d3527f66e2dcb3896bbe8883907d536be8ea6c08f82f13173eb",
|
|
4
4
|
"abi": [
|
|
5
5
|
{
|
|
6
6
|
"inputs": [
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"address": "0x71550ac84Ba7599220eAEf5C756b847cB4486606",
|
|
3
|
-
"transactionHash": "
|
|
3
|
+
"transactionHash": "0xd86682af053bbb1d482169ec7b79d7dc121e96296b99981d4da8f7fbbb32cec4",
|
|
4
4
|
"abi": [
|
|
5
5
|
{
|
|
6
6
|
"inputs": [
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"address": "0x36B22905A1211A55E0d62eF46720172e2b0f24BD",
|
|
3
|
-
"transactionHash": "
|
|
3
|
+
"transactionHash": "0x939e75cfe2c9012a70b889824bc78e87b77c270f614d53d1352fb56ee8668f4f",
|
|
4
4
|
"abi": [
|
|
5
5
|
{
|
|
6
6
|
"inputs": [
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"address": "0x050499eBdbBBc1216011dE07A48b5182c983Ae74",
|
|
3
|
-
"transactionHash": "
|
|
3
|
+
"transactionHash": "0x42bcc60a828f6c5e1ddd37728fc82ba505f0cd50210cdf3791efacc8b0257490",
|
|
4
4
|
"abi": [
|
|
5
5
|
{
|
|
6
6
|
"anonymous": false,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"address": "0xE8BBb5F22E6b3d6CD9157B8FD2b59C076e57a9Fc",
|
|
3
|
-
"transactionHash": "
|
|
3
|
+
"transactionHash": "0x7649c6c8bd6e3993002dbd6b6f505ff8856b0de2f08d6e5bd537ded12fe10f39",
|
|
4
4
|
"abi": [
|
|
5
5
|
{
|
|
6
6
|
"inputs": [],
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"address": "0x050499eBdbBBc1216011dE07A48b5182c983Ae74",
|
|
3
|
-
"transactionHash": "
|
|
3
|
+
"transactionHash": "0x42bcc60a828f6c5e1ddd37728fc82ba505f0cd50210cdf3791efacc8b0257490",
|
|
4
4
|
"abi": [
|
|
5
5
|
{
|
|
6
6
|
"inputs": [
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"address": "0x9E7088C23e5C0B2D02cD7886A1BDbC7FE8b71016",
|
|
3
|
-
"transactionHash": "
|
|
3
|
+
"transactionHash": "0x277068c5a063562cfd3433e7732360f2e0f2911d7168af717192f2e05b77dc16",
|
|
4
4
|
"abi": [
|
|
5
5
|
{
|
|
6
6
|
"inputs": [
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"address": "0x2dE080e97B0caE9825375D31f5D0eD5751fDf16D",
|
|
3
|
-
"transactionHash": "
|
|
3
|
+
"transactionHash": "0x1d5a5d6cf5134f9527f102c530add1839d8e55227c4d6731b07bbcc92f0627c2",
|
|
4
4
|
"abi": [
|
|
5
5
|
{
|
|
6
6
|
"inputs": [
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"address": "0x8438Ad1C834623CfF278AB6829a248E37C2D7E3f",
|
|
3
|
-
"transactionHash": "
|
|
3
|
+
"transactionHash": "0x966e29cd2fec259aaae30aaf9ca736f204d91c3f12bc5028a4b53e099ebd6c7e",
|
|
4
4
|
"abi": [
|
|
5
5
|
{
|
|
6
6
|
"anonymous": false,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"address": "0x663F3ad617193148711d28f5334eE4Ed07016602",
|
|
3
|
-
"transactionHash": "
|
|
3
|
+
"transactionHash": "0xe7f58b324099b7825c7f48ffacf607c7c7844f54bf3ae818aa42b8e5a0ee0d5c",
|
|
4
4
|
"abi": [
|
|
5
5
|
{
|
|
6
6
|
"inputs": [
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"address": "0x2E983A1Ba5e8b38AAAeC4B440B9dDcFBf72E15d1",
|
|
3
|
-
"transactionHash": "
|
|
3
|
+
"transactionHash": "0xd0e8e76c8ab40ec34ba62379f3493a74a5c3e13d1df3c7304b7afec0025f399a",
|
|
4
4
|
"abi": [
|
|
5
5
|
{
|
|
6
6
|
"inputs": [
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"address": "0x8438Ad1C834623CfF278AB6829a248E37C2D7E3f",
|
|
3
|
-
"transactionHash": "
|
|
3
|
+
"transactionHash": "0x966e29cd2fec259aaae30aaf9ca736f204d91c3f12bc5028a4b53e099ebd6c7e",
|
|
4
4
|
"abi": [
|
|
5
5
|
{
|
|
6
6
|
"inputs": [
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"address": "0x0D4ff719551E23185Aeb16FFbF2ABEbB90635942",
|
|
3
|
-
"transactionHash": "
|
|
3
|
+
"transactionHash": "0x991a32999d3efbef1dd17a59ad8536a5a68f0d7b13d85e709d75106d56d7b75e",
|
|
4
4
|
"abi": [
|
|
5
5
|
{
|
|
6
6
|
"inputs": [
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"address": "0x2fc631e4B3018258759C52AF169200213e84ABab",
|
|
3
|
-
"transactionHash": "
|
|
3
|
+
"transactionHash": "0xaee7a8a2966f316c8f9ae4d877b1e973ce7446afa0d983c85d84cac833103796",
|
|
4
4
|
"abi": [
|
|
5
5
|
{
|
|
6
6
|
"anonymous": false,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"address": "0xfbAb4aa40C202E4e80390171E82379824f7372dd",
|
|
3
|
-
"transactionHash": "
|
|
3
|
+
"transactionHash": "0x9f0d2203d73843d946541d4271122f53fca9a177b368565dd50d3b1f963bc435",
|
|
4
4
|
"abi": [
|
|
5
5
|
{
|
|
6
6
|
"inputs": [
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"address": "0xAfe1b5bdEbD4ae65AF2024738bf0735fbb65d44b",
|
|
3
|
-
"transactionHash": "
|
|
3
|
+
"transactionHash": "0xaa3124670046b790e63a6de8890faecb194d0c9c6ed8aca43630d73657e800b7",
|
|
4
4
|
"abi": [
|
|
5
5
|
{
|
|
6
6
|
"anonymous": false,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"address": "0x2fc631e4B3018258759C52AF169200213e84ABab",
|
|
3
|
-
"transactionHash": "
|
|
3
|
+
"transactionHash": "0xaee7a8a2966f316c8f9ae4d877b1e973ce7446afa0d983c85d84cac833103796",
|
|
4
4
|
"abi": [
|
|
5
5
|
{
|
|
6
6
|
"inputs": [
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"address": "0x381445710b5e73d34aF196c53A3D5cDa58EDBf7A",
|
|
3
|
-
"transactionHash": "
|
|
3
|
+
"transactionHash": "0xdda1d115c9fa9814d47e7d1c0de04eab00112f90a76947dd602944842f9dd2e9",
|
|
4
4
|
"abi": [
|
|
5
5
|
{
|
|
6
6
|
"inputs": [
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"address": "0x0124189Fc71496f8660dB5189F296055ED757632",
|
|
3
|
-
"transactionHash": "
|
|
3
|
+
"transactionHash": "0xc8d2abf9eeeab7f2ae988e5843a7cfd4c8fc78f55dc6c75bb6c3fa9690c11c03",
|
|
4
4
|
"abi": [
|
|
5
5
|
{
|
|
6
6
|
"anonymous": false,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"address": "0x6cffa31dd31cF649fb24AC7cEfE87579324bD89c",
|
|
3
|
-
"transactionHash": "
|
|
3
|
+
"transactionHash": "0x9642c27278b2e12549c747a1cdf19b6ec907ac3207c2d1c5ce952ea01261733a",
|
|
4
4
|
"abi": [
|
|
5
5
|
{
|
|
6
6
|
"inputs": [],
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"address": "0x0124189Fc71496f8660dB5189F296055ED757632",
|
|
3
|
-
"transactionHash": "
|
|
3
|
+
"transactionHash": "0xc8d2abf9eeeab7f2ae988e5843a7cfd4c8fc78f55dc6c75bb6c3fa9690c11c03",
|
|
4
4
|
"abi": [
|
|
5
5
|
{
|
|
6
6
|
"inputs": [
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"address": "0x5C7c905B505f0Cf40Ab6600d05e677F717916F6B",
|
|
3
|
-
"transactionHash": "
|
|
3
|
+
"transactionHash": "0xbe7c778988fc0eee639d0f462df659bceeddc228d4ac9c32aad79ba4ced90fe0",
|
|
4
4
|
"abi": [
|
|
5
5
|
{
|
|
6
6
|
"inputs": [
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"address": "0x544eAe853EA3774A8857573C6423E6Db95b79258",
|
|
3
|
-
"transactionHash": "
|
|
3
|
+
"transactionHash": "0x6dfe9179850e0e0ecc9fb4c43f7ea467947b3d28a8a8c7053698e3daa2d5c3d3",
|
|
4
4
|
"abi": [
|
|
5
5
|
{
|
|
6
6
|
"anonymous": false,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"address": "0x4F41b941940005aE25D5ecB0F01BaDbc7065E2dD",
|
|
3
|
-
"transactionHash": "
|
|
3
|
+
"transactionHash": "0x9719ca8f67d66244f6d65546a2ba85039c55cb3de0bf303fde35d4a93a34d9d9",
|
|
4
4
|
"abi": [
|
|
5
5
|
{
|
|
6
6
|
"anonymous": false,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"address": "0x544eAe853EA3774A8857573C6423E6Db95b79258",
|
|
3
|
-
"transactionHash": "
|
|
3
|
+
"transactionHash": "0x6dfe9179850e0e0ecc9fb4c43f7ea467947b3d28a8a8c7053698e3daa2d5c3d3",
|
|
4
4
|
"abi": [
|
|
5
5
|
{
|
|
6
6
|
"inputs": [
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"address": "0x73eccD6288e117cAcA738BDAD4FEC51312166C1A",
|
|
3
|
-
"transactionHash": "
|
|
3
|
+
"transactionHash": "0x2c1dcd35cdcc9d69ace03c0449905eced21cb14ba1c48099b4e05aa20e29de07",
|
|
4
4
|
"abi": [
|
|
5
5
|
{
|
|
6
6
|
"inputs": [
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"address": "0xe6b98F104c1BEf218F3893ADab4160Dc73Eb8367",
|
|
3
|
-
"transactionHash": "
|
|
3
|
+
"transactionHash": "0x0582cefc4bcc7a5f6aa9403acd9fa9c56bc70ae98c54732fe8b66085d0dc8166",
|
|
4
4
|
"abi": [
|
|
5
5
|
{
|
|
6
6
|
"inputs": [
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"address": "0x0f5D1ef48f12b6f691401bfe88c2037c690a6afe",
|
|
3
|
-
"transactionHash": "
|
|
3
|
+
"transactionHash": "0x8982eb5ad34e458cf3e98d720ec7db6d71605157bdf4e60f0775d68addf7ed08",
|
|
4
4
|
"abi": [
|
|
5
5
|
{
|
|
6
6
|
"inputs": [
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"address": "0x90118d110B07ABB82Ba8980D1c5cC96EeA810d2C",
|
|
3
|
-
"transactionHash": "
|
|
3
|
+
"transactionHash": "0x2a0d2e8c5fdddb711b3b954b89d6f32f884582303871062123617672b439ff82",
|
|
4
4
|
"abi": [
|
|
5
5
|
{
|
|
6
6
|
"inputs": [],
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"address": "0xcA03Dc4665A8C3603cb4Fd5Ce71Af9649dC00d44",
|
|
3
|
-
"transactionHash": "
|
|
3
|
+
"transactionHash": "0x0215c506fedca19aa17a0625c70e0fc14fa92e8106f5285fc389f9a379102fbd",
|
|
4
4
|
"abi": [
|
|
5
5
|
{
|
|
6
6
|
"inputs": [
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"address": "
|
|
3
|
-
"transactionHash": "
|
|
2
|
+
"address": "0x07EbE2FADbFd38F3D190d13C3775AaDa1237bB87",
|
|
3
|
+
"transactionHash": "0x2dd457710d77590089106a0edb18712b6cea2b4e21105db33a9a8c48afa9dafc",
|
|
4
4
|
"abi": [
|
|
5
5
|
{
|
|
6
6
|
"inputs": [
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"address": "
|
|
3
|
-
"transactionHash": "
|
|
2
|
+
"address": "0x5dA2c9a1b240ACc978fe9b78165ceD16eB50Cb98",
|
|
3
|
+
"transactionHash": "0x086f3441c4d2e982a6ca8d878b1ee129283dea1f35f172f7d45ae08f06c83a35",
|
|
4
4
|
"abi": [
|
|
5
5
|
{
|
|
6
6
|
"inputs": [
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"address": "
|
|
3
|
-
"transactionHash": "
|
|
2
|
+
"address": "0x7e13bFd2c16344e76BC1652fed7B6D94b5742815",
|
|
3
|
+
"transactionHash": "0xfed8602cd63ea7cc479f774a35b6465aa233ba5ecf52f9a763f4529c824b2921",
|
|
4
4
|
"abi": [
|
|
5
5
|
{
|
|
6
6
|
"inputs": [
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"address": "
|
|
3
|
-
"transactionHash": "
|
|
2
|
+
"address": "0x372250782A94C5Ec17d2D71cb86c256E9F953efa",
|
|
3
|
+
"transactionHash": "0x27f742d3539ee8a394241964f296763f7b8ebd515db448f3f63b19d774c68f9f",
|
|
4
4
|
"abi": [
|
|
5
5
|
{
|
|
6
6
|
"inputs": [
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"address": "
|
|
3
|
-
"transactionHash": "
|
|
2
|
+
"address": "0x45A157dde91B73F565d638dd38bf7734f1cf71c3",
|
|
3
|
+
"transactionHash": "0x1772cb76a4efb290c6b84e26b37edbc7158b3485d8471a2b82018b3d7c1dbb12",
|
|
4
4
|
"abi": [
|
|
5
5
|
{
|
|
6
6
|
"inputs": [
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"address": "
|
|
3
|
-
"transactionHash": "
|
|
2
|
+
"address": "0x74769bBd9a49e7EC70679D92aa7296f9D40588f8",
|
|
3
|
+
"transactionHash": "0xb69f280a6dae308a976b1126b0be2347bc14abaef75ebcb639b45f18691456b2",
|
|
4
4
|
"abi": [
|
|
5
5
|
{
|
|
6
6
|
"anonymous": false,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"address": "
|
|
3
|
-
"transactionHash": "
|
|
2
|
+
"address": "0xC9a1580cF75DA504fbc5284a5b9Dbb44734f053A",
|
|
3
|
+
"transactionHash": "0x26af44045c24fe17d94b7aada6328c32c9a16c768170986a8cd82f04bf04dd30",
|
|
4
4
|
"abi": [
|
|
5
5
|
{
|
|
6
6
|
"anonymous": false,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"address": "
|
|
3
|
-
"transactionHash": "
|
|
2
|
+
"address": "0x74769bBd9a49e7EC70679D92aa7296f9D40588f8",
|
|
3
|
+
"transactionHash": "0xb69f280a6dae308a976b1126b0be2347bc14abaef75ebcb639b45f18691456b2",
|
|
4
4
|
"abi": [
|
|
5
5
|
{
|
|
6
6
|
"inputs": [
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"address": "
|
|
3
|
-
"transactionHash": "
|
|
2
|
+
"address": "0xa1d0BaE039C0372fB4b06bD02fE717E597E6B3B7",
|
|
3
|
+
"transactionHash": "0x6b6c1a5b4e882395d664b12a71f793e2ab980e74a5e21604202b483fd2475a10",
|
|
4
4
|
"abi": [
|
|
5
5
|
{
|
|
6
6
|
"anonymous": false,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"address": "
|
|
3
|
-
"transactionHash": "
|
|
2
|
+
"address": "0x39E9976682eAC4d0e86F0A05C8cd28FD1517E591",
|
|
3
|
+
"transactionHash": "0x371291d8efae9fcf752e410a25e8ca998e2e07d43555b9f17fe6af889e99134a",
|
|
4
4
|
"abi": [
|
|
5
5
|
{
|
|
6
6
|
"inputs": [
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"address": "
|
|
3
|
-
"transactionHash": "
|
|
2
|
+
"address": "0x88d5c395c9518938b5c964a09aF88508cF28F7eB",
|
|
3
|
+
"transactionHash": "0x487c05348a3871497bfe2e20cc1f2255ffacdbf2b628e89c1e43a8489f6f1f6a",
|
|
4
4
|
"abi": [
|
|
5
5
|
{
|
|
6
6
|
"inputs": [
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"address": "
|
|
3
|
-
"transactionHash": "
|
|
2
|
+
"address": "0xbAe992A67B45F6543b1A028ea91449Bf19B636D8",
|
|
3
|
+
"transactionHash": "0x29be80221623c4b413430e4c038affc86aff94b34d813f1e5b624a8529e4e117",
|
|
4
4
|
"abi": [
|
|
5
5
|
{
|
|
6
6
|
"inputs": [
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"address": "
|
|
3
|
-
"transactionHash": "
|
|
2
|
+
"address": "0xE735C5a9ABD7709b6694da48b342F9af9F96419A",
|
|
3
|
+
"transactionHash": "0x9f723b43dae80e2a4ba590b97da53804235a94f6574f3850d895d92474ee44a0",
|
|
4
4
|
"abi": [
|
|
5
5
|
{
|
|
6
6
|
"inputs": [
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"address": "
|
|
3
|
-
"transactionHash": "
|
|
2
|
+
"address": "0xa1d0BaE039C0372fB4b06bD02fE717E597E6B3B7",
|
|
3
|
+
"transactionHash": "0x6b6c1a5b4e882395d664b12a71f793e2ab980e74a5e21604202b483fd2475a10",
|
|
4
4
|
"abi": [
|
|
5
5
|
{
|
|
6
6
|
"inputs": [
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"address": "
|
|
3
|
-
"transactionHash": "
|
|
2
|
+
"address": "0x5df5a0D00f018a9f361B744C0d8455cdf2d00F11",
|
|
3
|
+
"transactionHash": "0x42e037b982ddc1a30ebd9938332f83bf2f544c740f2e65d74b889967f5cec343",
|
|
4
4
|
"abi": [
|
|
5
5
|
{
|
|
6
6
|
"anonymous": false,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"address": "
|
|
3
|
-
"transactionHash": "
|
|
2
|
+
"address": "0x20Db5d91E60717676a22b06a48d8bF8A42679615",
|
|
3
|
+
"transactionHash": "0x3e527d32052fc37680bb70a5008ffcfe67f7c9f1c656debabe0b749145411ceb",
|
|
4
4
|
"abi": [
|
|
5
5
|
{
|
|
6
6
|
"inputs": [],
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"address": "
|
|
3
|
-
"transactionHash": "
|
|
2
|
+
"address": "0x5df5a0D00f018a9f361B744C0d8455cdf2d00F11",
|
|
3
|
+
"transactionHash": "0x42e037b982ddc1a30ebd9938332f83bf2f544c740f2e65d74b889967f5cec343",
|
|
4
4
|
"abi": [
|
|
5
5
|
{
|
|
6
6
|
"inputs": [
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"address": "
|
|
3
|
-
"transactionHash": "
|
|
2
|
+
"address": "0x1C29CC89e5db52BfF160a2a751FDB421956f3B2E",
|
|
3
|
+
"transactionHash": "0x22d555073a215ea8a567c020fa21187c9f24391653450c8bc5e2295b2dc2bf1f",
|
|
4
4
|
"abi": [
|
|
5
5
|
{
|
|
6
6
|
"inputs": [
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"address": "
|
|
3
|
-
"transactionHash": "
|
|
2
|
+
"address": "0xb00E96Eb2C471a6aE622ac3b9d4D36564d2f93ec",
|
|
3
|
+
"transactionHash": "0xaf9aac61e74228abb96349094dd1b2488e2371c9ea484f6882545481e7c99ec3",
|
|
4
4
|
"abi": [
|
|
5
5
|
{
|
|
6
6
|
"inputs": [
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"address": "
|
|
3
|
-
"transactionHash": "
|
|
2
|
+
"address": "0xdeDa263a7aC6de100eD31Fc3eE7d258c8F88DF8A",
|
|
3
|
+
"transactionHash": "0x13a34ed2b309956a291340380173adf50718d88a6312513378881cbf20eb4efa",
|
|
4
4
|
"abi": [
|
|
5
5
|
{
|
|
6
6
|
"anonymous": false,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"address": "
|
|
3
|
-
"transactionHash": "
|
|
2
|
+
"address": "0x540C96D72586c3CCe2870b7bEa18C31FC7652d97",
|
|
3
|
+
"transactionHash": "0x24147f084c12095e9203df5c0bf1bff0fbfcad312dbeea10a8ff9a81ee3eab23",
|
|
4
4
|
"abi": [
|
|
5
5
|
{
|
|
6
6
|
"inputs": [
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"address": "
|
|
3
|
-
"transactionHash": "
|
|
2
|
+
"address": "0xfb1757f16Bb1DEE6fcA3f6af64CD27A62FE6fFE4",
|
|
3
|
+
"transactionHash": "0x8331d6a7abfa496d624e7a3803468d89217dd623fa840a04875ae92a5d4492be",
|
|
4
4
|
"abi": [
|
|
5
5
|
{
|
|
6
6
|
"inputs": [
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"address": "
|
|
3
|
-
"transactionHash": "
|
|
2
|
+
"address": "0xdeDa263a7aC6de100eD31Fc3eE7d258c8F88DF8A",
|
|
3
|
+
"transactionHash": "0x13a34ed2b309956a291340380173adf50718d88a6312513378881cbf20eb4efa",
|
|
4
4
|
"abi": [
|
|
5
5
|
{
|
|
6
6
|
"inputs": [
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"address": "
|
|
3
|
-
"transactionHash": "
|
|
2
|
+
"address": "0x292F177232eebdBC0939cef2467A1a1aF80a78f1",
|
|
3
|
+
"transactionHash": "0x352c8fee98b49ac9f3f2f298fd03810216e923609c0d514b9867046bd3286d51",
|
|
4
4
|
"abi": [
|
|
5
5
|
{
|
|
6
6
|
"inputs": [
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"address": "
|
|
3
|
-
"transactionHash": "
|
|
2
|
+
"address": "0x8C2b86738E789b497279f1a050949089b382Fd8A",
|
|
3
|
+
"transactionHash": "0xe91787d2c614f7e6185320f19c69fe75ef0dee775a8f02306f516e36cbf1f6ad",
|
|
4
4
|
"abi": [
|
|
5
5
|
{
|
|
6
6
|
"anonymous": false,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"address": "
|
|
3
|
-
"transactionHash": "
|
|
2
|
+
"address": "0x9e6F4361da647C86eFBB322218f56307b58d49A1",
|
|
3
|
+
"transactionHash": "0xb4dc220d4bcce39c28318e514af7e452ce2b86d13ae5a54fb087c61ccf30b4b5",
|
|
4
4
|
"abi": [
|
|
5
5
|
{
|
|
6
6
|
"inputs": [
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"address": "
|
|
3
|
-
"transactionHash": "
|
|
2
|
+
"address": "0x6Dcc989133c69028601CdD8eb52daD402077357b",
|
|
3
|
+
"transactionHash": "0xcb16aca5ffdae1377f084087e780d83f7a4e28b1a05d3da3d3f5f42538cb6757",
|
|
4
4
|
"abi": [
|
|
5
5
|
{
|
|
6
6
|
"anonymous": false,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"address": "
|
|
3
|
-
"transactionHash": "
|
|
2
|
+
"address": "0x8C2b86738E789b497279f1a050949089b382Fd8A",
|
|
3
|
+
"transactionHash": "0xe91787d2c614f7e6185320f19c69fe75ef0dee775a8f02306f516e36cbf1f6ad",
|
|
4
4
|
"abi": [
|
|
5
5
|
{
|
|
6
6
|
"inputs": [
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"address": "
|
|
3
|
-
"transactionHash": "
|
|
2
|
+
"address": "0x02187e75463b9FE079bF4342E2E5DF4753E6387D",
|
|
3
|
+
"transactionHash": "0x58bf8e88be9bee2c11bedbccbcd2b692e3e432621e4218e782692e50f6442c62",
|
|
4
4
|
"abi": [
|
|
5
5
|
{
|
|
6
6
|
"inputs": [
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"address": "
|
|
3
|
-
"transactionHash": "
|
|
2
|
+
"address": "0xf15917B5eBEf6896Da5c82B0CaAdBc804A1A003F",
|
|
3
|
+
"transactionHash": "0x9916692d3dc66bf858db65ca134f97b5f26e82622fcb661f3506c78e509e2370",
|
|
4
4
|
"abi": [
|
|
5
5
|
{
|
|
6
6
|
"anonymous": false,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"address": "
|
|
3
|
-
"transactionHash": "
|
|
2
|
+
"address": "0xbfb8577194EC7f8E24950F5013A9CD63ce1a7052",
|
|
3
|
+
"transactionHash": "0x8d492b9fc674d4aac84349d6b2e1e914704c13a68a808549e4b293c54ee48008",
|
|
4
4
|
"abi": [
|
|
5
5
|
{
|
|
6
6
|
"inputs": [],
|