Transaction Hash:
Block:
20247435 at Jul-06-2024 12:22:35 PM +UTC
Transaction Fee:
0.000186210709348725 ETH
$0.88
Gas Used:
46,485 Gas / 4.005823585 Gwei
Emitted Events:
320 |
BAToken.Approval( _owner=[Sender] 0xb1ea3e60ee7373dc24189d0c73a546429f9d314f, _spender=0x29728D0e...C2CfC2612, _value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x0D8775F6...50d2887EF | |||||
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 10.945525431537937 Eth | 10.945618401537937 Eth | 0.00009297 | |
0xb1eA3E60...29F9D314f |
0.000287034395165778 Eth
Nonce: 0
|
0.000100823685817053 Eth
Nonce: 1
| 0.000186210709348725 |
Execution Trace
BAToken.approve( _spender=0x29728D0efd284D85187362fAA2d4d76C2CfC2612, _value=115792089237316195423570985008687907853269984665640564039457584007913129639935 ) => ( 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));