Transaction Hash:
Block:
20759536 at Sep-16-2024 12:14:23 AM +UTC
Transaction Fee:
0.000087504128257 ETH
$0.26
Gas Used:
47,125 Gas / 1.856851528 Gwei
Emitted Events:
518 |
VIUToken.Transfer( from=[Sender] 0x1503cad6598a562f92ba1fb07173fb479cb618b6, to=0x74569023C23A48ba2b0D9aEBD8eb334c46Bd108b, value=584581025200000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x1503cAD6...79Cb618b6 |
0.000314199401027803 Eth
Nonce: 8
|
0.000226695272770803 Eth
Nonce: 9
| 0.000087504128257 | ||
0x519475b3...2BDAcB4f5 | |||||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 10.788102686097841278 Eth | 10.788121454431677153 Eth | 0.000018768333835875 |
Execution Trace
VIUToken.transfer( _to=0x74569023C23A48ba2b0D9aEBD8eb334c46Bd108b, _value=584581025200000000000 ) => ( 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);