Transaction Hash:
Block:
10724175 at Aug-24-2020 04:25:04 PM +UTC
Transaction Fee:
0.004902194 ETH
$22.68
Gas Used:
40,514 Gas / 121 Gwei
Emitted Events:
141 |
ParsiqToken.Transfer( from=[Sender] 0x52d9ac072c5456d9547d73e5138b8395dbcb4614, to=0x2EE00c550420e0CbbCa917e34ad306d42721715D, value=200000000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x04668Ec2...D451c8F7F
Miner
| (zhizhu.top) | 3,328.641635706919050985 Eth | 3,328.646537900919050985 Eth | 0.004902194 | |
0x52D9AC07...5DBCB4614 |
0.047017560198743679 Eth
Nonce: 69
|
0.042115366198743679 Eth
Nonce: 70
| 0.004902194 | ||
0xFE2786D7...778f8d8D7 |
Execution Trace
ParsiqToken.transfer( to=0x2EE00c550420e0CbbCa917e34ad306d42721715D, value=200000000000000000000 ) => ( True )
transfer[ParsiqToken (ln:841)]
transfer[ParsiqToken (ln:847)]
_postTransfer[ParsiqToken (ln:849)]
isContract[ParsiqToken (ln:1125)]
tokensReceived[ParsiqToken (ln:1128)]
1234567891011121314151617181920212223242526// Parsiq Tokenpragma solidity 0.5.11;/*** @dev Wrappers over Solidity's arithmetic operations with added overflow* checks.** Arithmetic operations in Solidity wrap on overflow. This can easily result* in bugs, because programmers usually assume that an overflow raises an* error, which is the standard behavior in high level programming languages.* `SafeMath` restores this intuition by reverting the transaction when an* operation overflows.** Using this library instead of the unchecked operations eliminates an entire* class of bugs, so it's recommended to use it always.*/library SafeMath {/*** @dev Returns the addition of two unsigned integers, reverting on* overflow.** Counterpart to Solidity's `+` operator.** Requirements:* - Addition cannot overflow.*/