Transaction Hash:
Block:
15985315 at Nov-16-2022 09:38:47 PM +UTC
Transaction Fee:
0.001860939867267512 ETH
$4.68
Gas Used:
80,138 Gas / 23.221690924 Gwei
Emitted Events:
99 |
ParaWerx.Transfer( from=[Sender] 0xbd690a0b16feed5d84a8fbefce6460be08436ceb, to=0xcf91925Ed4BCAC4A37de0a8722Ae14687cBc1683, value=464184501123810000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x690B9A9E...Db4FaC990
Miner
| (builder0x69) | 2.018304151639123374 Eth | 2.018428365539123374 Eth | 0.0001242139 | |
0xbd690A0b...E08436cEB |
0.005083137728583734 Eth
Nonce: 11
|
0.003222197861316222 Eth
Nonce: 12
| 0.001860939867267512 | ||
0xD16fd95D...59E76EF1E |
Execution Trace
ParaWerx.transfer( recipient=0xcf91925Ed4BCAC4A37de0a8722Ae14687cBc1683, amount=464184501123810000000000 ) => ( True )
transfer[ERC20 (ln:354)]
_transfer[ERC20 (ln:360)]
_beforeTokenTransfer[ERC20 (ln:504)]
Transfer[ERC20 (ln:516)]
_afterTokenTransfer[ERC20 (ln:518)]
_msgSender[ERC20 (ln:360)]
1234567891011121314151617181920212223242526// ** TEST CONTRACT - LIQUIDITY WILL BE REMOVED ** DO NOT BUY **// SPDX-License-Identifier: MITpragma solidity 0.8.10;pragma experimental ABIEncoderV2;////// lib/openzeppelin-contracts/contracts/utils/Context.sol// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)/* pragma solidity ^0.8.0; *//*** @dev Provides information about the current execution context, including the* sender of the transaction and its data. While these are generally available* via msg.sender and msg.data, they should not be accessed in such a direct* manner, since when dealing with meta-transactions the account sending and* paying for execution may not be the actual sender (as far as an application* is concerned).** This contract is only required for intermediate, library-like contracts.*/abstract contract Context {function _msgSender() internal view virtual returns (address) {return msg.sender;}