ETH Price: $2,511.45 (-0.77%)

Transaction Decoder

Block:
12799730 at Jul-10-2021 12:43:02 PM +UTC
Transaction Fee:
0.000535348 ETH $1.34
Gas Used:
48,668 Gas / 11 Gwei

Emitted Events:

166 WBTC.Approval( owner=[Sender] 0xf2948eb21cd5f5c4e332ffc5238be657bffaff65, spender=0xBA122222...d566BF2C8, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )

Account State Difference:

  Address   Before After State Difference Code
0x2260FAC5...93bc2C599
(Ethermine)
1,777.490489058598751215 Eth1,777.491024406598751215 Eth0.000535348
0xF2948Eb2...7bffAFf65
0.011480136 Eth
Nonce: 5
0.010944788 Eth
Nonce: 6
0.000535348

Execution Trace

WBTC.approve( _spender=0xBA12222222228d8Ba445958a75a0704d566BF2C8, _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