ETH Price: $2,792.92 (+3.84%)

Transaction Decoder

Block:
18303269 at Oct-08-2023 04:06:11 AM +UTC
Transaction Fee:
0.000213544426590176 ETH $0.60
Gas Used:
34,964 Gas / 6.107551384 Gwei

Account State Difference:

  Address   Before After State Difference Code
0x07F5813f...A7F602e50
0.029957414460810818 Eth
Nonce: 64
0.018543870034211638 Eth
Nonce: 65
0.01141354442659918
(Titan Builder)
16.839167535731256657 Eth16.839171032131256657 Eth0.0000034964
0xE4eDb277...fA700bCE8
(Orbiter Finance: Bridge 2)
105.800029432024671423 Eth105.811229432024680427 Eth0.011200000000009004

Execution Trace

ETH 0.011200000000009004 OBSource.transfer( _to=0xE4eDb277e41dc89aB076a1F049f4a3EfA700bCE8, _ext=0x0305256CA956173BA1BDD5D9F6E14CD5C131115BE43BDF087D3323A8CE81D06AD1 )
  • ETH 0.011200000000009004 Orbiter Finance: Bridge 2.CALL( )
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    //SPDX-License-Identifier: Unlicense
    pragma solidity ^0.8.0;
    import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
    import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
    import "@openzeppelin/contracts/utils/Context.sol";
    contract OBSource is ReentrancyGuard, Context {
    function transfer(address payable _to, bytes calldata _ext)
    public
    payable
    nonReentrant
    {
    (bool sent, ) = _to.call{value: msg.value}("");
    require(sent, "ERROR");
    }
    function transferERC20(
    IERC20 _token,
    address _to,
    uint256 _amount,
    bytes calldata _ext
    ) external nonReentrant {
    bool sent = _token.transferFrom(msg.sender, _to, _amount);
    require(sent, "ERROR");
    }
    }
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX