Transaction Hash:
Block:
22612878 at Jun-01-2025 10:38:11 PM +UTC
Transaction Fee:
0.00004305097532736 ETH
$0.13
Gas Used:
51,840 Gas / 0.830458629 Gwei
Emitted Events:
142 |
BAToken.Transfer( _from=[Sender] 0x53c3584fb8867ed931917891d037f88af0218cc2, _to=0x0e03f2E848ec373c2f99Fd61d16d8BefD65Fbb10, _value=35000000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x0D8775F6...50d2887EF | |||||
0x39634336...6fb82Aa49
Miner
| (quasarbuilder) | 4.561474229986296507 Eth | 4.561481424591365307 Eth | 0.0000071946050688 | |
0x53c3584F...aF0218cC2 |
0.513424418827982975 Eth
Nonce: 8804
|
0.513381367852655615 Eth
Nonce: 8805
| 0.00004305097532736 |
Execution Trace
BAToken.transfer( _to=0x0e03f2E848ec373c2f99Fd61d16d8BefD65Fbb10, _value=35000000000000000000 ) => ( 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));