Transaction Hash:
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 | ||
---|---|---|---|---|---|
0x07F5813f...A7F602e50 |
0.029957414460810818 Eth
Nonce: 64
|
0.018543870034211638 Eth
Nonce: 65
| 0.01141354442659918 | ||
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 16.839167535731256657 Eth | 16.839171032131256657 Eth | 0.0000034964 | |
0xE4eDb277...fA700bCE8 | (Orbiter Finance: Bridge 2) | 105.800029432024671423 Eth | 105.811229432024680427 Eth | 0.011200000000009004 |
Execution Trace
ETH 0.011200000000009004
OBSource.transfer( _to=0xE4eDb277e41dc89aB076a1F049f4a3EfA700bCE8, _ext=0x0305256CA956173BA1BDD5D9F6E14CD5C131115BE43BDF087D3323A8CE81D06AD1 )
- ETH 0.011200000000009004
Orbiter Finance: Bridge 2.CALL( )
transfer[OBSource (ln:7)]
1234567891011121314151617181920212223242526//SPDX-License-Identifier: Unlicensepragma 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)publicpayablenonReentrant{(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)