ETH Price: $2,745.09 (+8.97%)

Transaction Decoder

Block:
22595042 at May-30-2025 10:45:59 AM +UTC
Transaction Fee:
0.000196785908044515 ETH $0.54
Gas Used:
46,485 Gas / 4.233320599 Gwei

Emitted Events:

76 BAToken.Approval( _owner=[Sender] 0xc0fa08c98195812fd0747368b35661375373c7c5, _spender=0x216B4B4B...4278Bfcae, _value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )

Account State Difference:

  Address   Before After State Difference Code
0x0D8775F6...50d2887EF
(beaverbuild)
8.363820706105996894 Eth8.363935042327479334 Eth0.00011433622148244
0xC0Fa08c9...75373c7c5
0.068408129805717391 Eth
Nonce: 150
0.068211343897672876 Eth
Nonce: 151
0.000196785908044515

Execution Trace

BAToken.approve( _spender=0x216B4B4Ba9F3e719726886d34a177484278Bfcae, _value=115792089237316195423570985008687907853269984665640564039457584007913129639935 ) => ( success=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.10;
/* taking ideas from FirstBlood token */
contract SafeMath {
/* function assert(bool assertion) internal { */
/* if (!assertion) { */
/* throw; */
/* } */
/* } // assert no longer needed once solidity is on 0.4.10 */
function safeAdd(uint256 x, uint256 y) internal returns(uint256) {
uint256 z = x + y;
assert((z >= x) && (z >= y));
return z;
}
function safeSubtract(uint256 x, uint256 y) internal returns(uint256) {
assert(x >= y);
uint256 z = x - y;
return z;
}
function safeMult(uint256 x, uint256 y) internal returns(uint256) {
uint256 z = x * y;
assert((x == 0)||(z/x == y));
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX