Transaction Hash:
Block:
21233906 at Nov-21-2024 05:05:23 AM +UTC
Transaction Fee:
0.000467021161420975 ETH
$1.38
Gas Used:
30,025 Gas / 15.554410039 Gwei
Emitted Events:
598 |
VIUToken.Transfer( from=[Sender] 0x0825297b93db91efd6cc4e54b092579623247949, to=0x21Ec14622316b3Ed4B424397E3A51c95aACf5e53, value=403395328592000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x0825297B...623247949 |
0.01573356864355053 Eth
Nonce: 19
|
0.015266547482129555 Eth
Nonce: 20
| 0.000467021161420975 | ||
0x519475b3...2BDAcB4f5 | |||||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 13.781714357986097978 Eth | 13.781778176308371828 Eth | 0.00006381832227385 |
Execution Trace
VIUToken.transfer( _to=0x21Ec14622316b3Ed4B424397E3A51c95aACf5e53, _value=403395328592000000000 ) => ( 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);