Transaction Hash:
Block:
22613779 at Jun-02-2025 01:39:59 AM +UTC
Transaction Fee:
0.000086864667584085 ETH
$0.33
Gas Used:
46,485 Gas / 1.868660161 Gwei
Emitted Events:
385 |
BAToken.Approval( _owner=[Sender] 0xc465ed3cf4e2b0df935f92c37d48ae8b537ce522, _spender=0x69460570...25f0Ca22d, _value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x0D8775F6...50d2887EF | |||||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 8.694509301393494979 Eth | 8.694555786393494979 Eth | 0.000046485 | |
0xC465eD3C...B537Ce522 |
0.000238620111367898 Eth
Nonce: 2
|
0.000151755443783813 Eth
Nonce: 3
| 0.000086864667584085 |
Execution Trace
BAToken.approve( _spender=0x69460570c93f9DE5E2edbC3052bf10125f0Ca22d, _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));