Transaction Hash:
Block:
22622004 at Jun-03-2025 05:19:47 AM +UTC
Transaction Fee:
0.00002082591006843 ETH
$0.07
Gas Used:
46,185 Gas / 0.450923678 Gwei
Emitted Events:
661 |
BAToken.Approval( _owner=[Sender] 0xeca829269a173e329d26e36171e7caaedca6b417, _spender=0x2C6Df0fD...c991f770f, _value=937000000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x0D8775F6...50d2887EF | |||||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 6.050736387931854176 Eth | 6.050736388255149176 Eth | 0.000000000323295 | |
0xEca82926...EDca6b417 |
0.01234222090306 Eth
Nonce: 2
|
0.01232139499299157 Eth
Nonce: 3
| 0.00002082591006843 |
Execution Trace
BAToken.approve( _spender=0x2C6Df0fDbCE9D2Ded2B52A117126F2Dc991f770f, _value=937000000000000000000 ) => ( 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));