ETH Price: $2,766.03 (+8.75%)

Transaction Decoder

Block:
22534807 at May-22-2025 12:22:11 AM +UTC
Transaction Fee:
0.0000501256368536 ETH $0.14
Gas Used:
48,596 Gas / 1.0314766 Gwei

Emitted Events:

368 WBTC.Approval( owner=[Sender] 0xfc8cce7fa218e8a1de61f084d8900a98407fd1d8, spender=0x00000000...072C22734, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )

Account State Difference:

  Address   Before After State Difference Code
0x2260FAC5...93bc2C599
(BuilderNet)
219.414893510447377758 Eth219.414897349531377758 Eth0.000003839084
0xfC8cCe7F...8407fd1d8
0.001666881397764218 Eth
Nonce: 2
0.001616755760910618 Eth
Nonce: 3
0.0000501256368536

Execution Trace

WBTC.approve( _spender=0x0000000000001fF3684f28c67538d4D072C22734, _value=115792089237316195423570985008687907853269984665640564039457584007913129639935 ) => ( 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