ETH Price: $2,518.70 (-0.40%)
Gas: 0.42 Gwei

Transaction Decoder

Block:
22532599 at May-21-2025 04:56:59 PM +UTC
Transaction Fee:
0.000815985 ETH $2.06
Gas Used:
54,399 Gas / 15 Gwei

Account State Difference:

  Address   Before After State Difference Code
0x2260FAC5...93bc2C599
(Titan Builder)
6.392983573815193179 Eth6.393164414137354242 Eth0.000180840322161063
0xf5b8d933...93A6acEE4
0.053386192 Eth
Nonce: 63
0.052570207 Eth
Nonce: 64
0.000815985

Execution Trace

WBTC.transfer( _to=0xF69e0376fd49C81803E539A9C3F4B75f11f0a3A7, _value=1000000 ) => ( True )
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
pragma solidity 0.4.24;
// File: openzeppelin-solidity/contracts/token/ERC20/ERC20Basic.sol
/**
* @title ERC20Basic
* @dev Simpler version of ERC20 interface
* See https://github.com/ethereum/EIPs/issues/179
*/
contract ERC20Basic {
function totalSupply() public view returns (uint256);
function balanceOf(address _who) public view returns (uint256);
function transfer(address _to, uint256 _value) public returns (bool);
event Transfer(address indexed from, address indexed to, uint256 value);
}
// File: openzeppelin-solidity/contracts/math/SafeMath.sol
/**
* @title SafeMath
* @dev Math operations with safety checks that throw on error
*/
library SafeMath {
/**
* @dev Multiplies two numbers, throws on overflow.
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX