ETH Price: $3,756.44 (+5.68%)

Transaction Decoder

Block:
22602479 at May-31-2025 11:41:47 AM +UTC
Transaction Fee:
0.000035041670110695 ETH $0.13
Gas Used:
46,185 Gas / 0.758724047 Gwei

Emitted Events:

298 BAToken.Approval( _owner=[Sender] 0x3e0ed68ed36499a18db8c14c0a73eeacdd9fedc6, _spender=0x881D4023...dC08D300C, _value=644000000000000000000 )

Account State Difference:

  Address   Before After State Difference Code
0x0D8775F6...50d2887EF
0x3e0Ed68E...Cdd9fEdc6
0.000529257725126317 Eth
Nonce: 2
0.000494216055015622 Eth
Nonce: 3
0.000035041670110695
(Titan Builder)
8.399368754265177272 Eth8.399368754727027272 Eth0.00000000046185

Execution Trace

BAToken.approve( _spender=0x881D40237659C251811CEC9c364ef91dC08D300C, _value=644000000000000000000 ) => ( 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