Transaction Hash:
Block:
22622059 at Jun-03-2025 05:30:47 AM +UTC
Transaction Fee:
0.000104292 ETH
$0.39
Gas Used:
34,764 Gas / 3 Gwei
Emitted Events:
77 |
BAToken.Transfer( _from=[Sender] 0x465a76ec24f42d861b85db88b62a1d20a2fc18fc, _to=0x2a45907f94df93388801AE72fE810eac75926a1d, _value=99999999999999999999 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x0D8775F6...50d2887EF | |||||
0x465a76EC...0A2fc18fc |
0.005 Eth
Nonce: 3
|
0.004895708 Eth
Nonce: 4
| 0.000104292 | ||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 6.063140603179047176 Eth | 6.063226545879542468 Eth | 0.000085942700495292 |
Execution Trace
BAToken.transfer( _to=0x2a45907f94df93388801AE72fE810eac75926a1d, _value=99999999999999999999 ) => ( success=True )
transfer[Token (ln:35)]
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));