Transaction Hash:
Block:
21607453 at Jan-12-2025 09:16:11 AM +UTC
Transaction Fee:
0.000101938032712128 ETH
$0.37
Gas Used:
27,213 Gas / 3.745931456 Gwei
Emitted Events:
17 |
VIUToken.Transfer( from=[Sender] 0x45516602553b374502276d15291a697462c51f8b, to=[Sender] 0x45516602553b374502276d15291a697462c51f8b, value=8983076000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x45516602...462c51F8b |
0.008543965630159946 Eth
Nonce: 89
|
0.008442027597447818 Eth
Nonce: 90
| 0.000101938032712128 | ||
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 12.87211913246065373 Eth | 12.87217355846065373 Eth | 0.000054426 |
Execution Trace
VIUToken.transfer( _to=0x45516602553B374502276d15291A697462c51F8b, _value=8983076000000000000 ) => ( True )
transfer[ERC20Basic (ln:45)]
1234567891011121314151617181920212223242526pragma solidity ^0.4.18;/*** Welcome to the Telegram chat http://www.devsolidity.io/*//*** @title SafeMath* @dev Math operations with safety checks that throw on error*/library SafeMath {function mul(uint256 a, uint256 b) internal constant returns (uint256) {uint256 c = a * b;assert(a == 0 || c / a == b);return c;}function div(uint256 a, uint256 b) internal constant returns (uint256) {// assert(b > 0); // Solidity automatically throws when dividing by 0uint256 c = a / b;// assert(a == b * c + a % b); // There is no case in which this doesn't holdreturn c;}function sub(uint256 a, uint256 b) internal constant returns (uint256) {assert(b <= a);