ETH Price: $1,872.79 (-6.40%)
Gas: 1.24 Gwei

Transaction Decoder

Block:
20852901 at Sep-29-2024 01:05:59 AM +UTC
Transaction Fee:
0.00035412468065073 ETH $0.66
Gas Used:
62,910 Gas / 5.629068203 Gwei

Emitted Events:

451 WETH9.Deposit( dst=[Receiver] ERC1967Proxy, wad=900000000000000 )
452 ERC1967Proxy.0xa123dc29aebf7d0c3322c8eeb5b999e859f39937950ed31056532713d0de396f( 0xa123dc29aebf7d0c3322c8eeb5b999e859f39937950ed31056532713d0de396f, 0x000000000000000000000000000000000000000000000000000000000000000a, 0x000000000000000000000000000000000000000000000000000000000017b454, 0x000000000000000000000000de8ab3d7aaee649a32ede34b0979d864940575e7, 000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2, 0000000000000000000000004200000000000000000000000000000000000006, 0000000000000000000000000000000000000000000000000003328b944c4000, 0000000000000000000000000000000000000000000000000003308395dea8a9, 0000000000000000000000000000000000000000000000000000000066f8a6fb, 0000000000000000000000000000000000000000000000000000000066f8fbe7, 0000000000000000000000000000000000000000000000000000000066f8a810, 000000000000000000000000de8ab3d7aaee649a32ede34b0979d864940575e7, 00000000000000000000000041ee28ee05341e7fdddc8d433ba66054cd302ca1, 0000000000000000000000000000000000000000000000000000000000000140, 0000000000000000000000000000000000000000000000000000000000000000 )

Account State Difference:

  Address   Before After State Difference Code
(Titan Builder)
14.005938025541281003 Eth14.005938084676681003 Eth0.0000000591354
0x5c7BCd6E...a6ced35C5
(Across Protocol: Ethereum Spoke Pool V2)
0xC02aaA39...83C756Cc2 2,887,302.897840097329609617 Eth2,887,302.898740097329609617 Eth0.0009
0xde8AB3D7...4940575e7
0.010058158757414697 Eth
Nonce: 50
0.008804034076763967 Eth
Nonce: 51
0.00125412468065073

Execution Trace

ETH 0.0009 ERC1967Proxy.add051a3( )
  • ETH 0.0009 Ethereum_SpokePool.depositExclusive( depositor=0xde8AB3D7aaEe649a32eDE34B0979D864940575e7, recipient=0xde8AB3D7aaEe649a32eDE34B0979D864940575e7, inputToken=0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2, outputToken=0x4200000000000000000000000000000000000006, inputAmount=900000000000000, outputAmount=897766643378345, destinationChainId=10, exclusiveRelayer=0x41ee28EE05341E7fdDdc8d433BA66054Cd302cA1, quoteTimestamp=1727571707, fillDeadline=1727593447, exclusivityDeadlineOffset=25, message=0x )
    • ETH 0.0009 WETH9.CALL( )
      File 1 of 3: ERC1967Proxy
      1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      11
      12
      13
      14
      15
      16
      // SPDX-License-Identifier: MIT
      pragma solidity ^0.8.0;
      import "@openzeppelin/contracts/proxy/beacon/BeaconProxy.sol";
      import "@openzeppelin/contracts/proxy/beacon/UpgradeableBeacon.sol";
      import "@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol";
      import "@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol";
      import "@openzeppelin/contracts/proxy/transparent/ProxyAdmin.sol";
      // Kept for backwards compatibility with older versions of Hardhat and Truffle plugins.
      contract AdminUpgradeabilityProxy is TransparentUpgradeableProxy {
      constructor(address logic, address admin, bytes memory data) payable TransparentUpgradeableProxy(logic, admin, data) {}
      }
      // SPDX-License-Identifier: MIT
      pragma solidity ^0.8.0;
      import "./IBeacon.sol";
      import "../Proxy.sol";
      import "../ERC1967/ERC1967Upgrade.sol";
      XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

      File 2 of 3: WETH9
      1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      11
      12
      13
      14
      15
      16
      // Copyright (C) 2015, 2016, 2017 Dapphub
      // This program is free software: you can redistribute it and/or modify
      // it under the terms of the GNU General Public License as published by
      // the Free Software Foundation, either version 3 of the License, or
      // (at your option) any later version.
      // This program is distributed in the hope that it will be useful,
      // but WITHOUT ANY WARRANTY; without even the implied warranty of
      // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
      // GNU General Public License for more details.
      // You should have received a copy of the GNU General Public License
      // along with this program. If not, see <http://www.gnu.org/licenses/>.
      pragma solidity ^0.4.18;
      XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

      File 3 of 3: Ethereum_SpokePool
      1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      11
      12
      13
      14
      15
      16
      // SPDX-License-Identifier: MIT
      // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)
      pragma solidity ^0.8.0;
      import "../utils/ContextUpgradeable.sol";
      import {Initializable} from "../proxy/utils/Initializable.sol";
      /**
      * @dev Contract module which provides a basic access control mechanism, where
      * there is an account (an owner) that can be granted exclusive access to
      * specific functions.
      *
      * By default, the owner account will be the one that deploys the contract. This
      * can later be changed with {transferOwnership}.
      *
      * This module is used through inheritance. It will make available the modifier
      * `onlyOwner`, which can be applied to your functions to restrict their use to
      * the owner.
      XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX