Transaction Hash:
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 | ||
---|---|---|---|---|---|
0x0D8775F6...50d2887EF | |||||
0x3e0Ed68E...Cdd9fEdc6 |
0.000529257725126317 Eth
Nonce: 2
|
0.000494216055015622 Eth
Nonce: 3
| 0.000035041670110695 | ||
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 8.399368754265177272 Eth | 8.399368754727027272 Eth | 0.00000000046185 |
Execution Trace
BAToken.approve( _spender=0x881D40237659C251811CEC9c364ef91dC08D300C, _value=644000000000000000000 ) => ( success=True )
approve[Token (ln:37)]
1234567891011121314151617181920212223242526pragma 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));