Transaction Hash:
Block:
19207302 at Feb-11-2024 08:50:47 PM +UTC
Transaction Fee:
0.002312154587458628 ETH
$8.81
Gas Used:
73,006 Gas / 31.670747438 Gwei
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x1f9090aa...8e676c326
Miner
| 2.613569321896685206 Eth | 2.613569390588030606 Eth | 0.0000000686913454 | ||
0xB557d81c...3195e33F5 |
0.071632302986688984 Eth
Nonce: 13
|
0.069320148399230356 Eth
Nonce: 14
| 0.002312154587458628 |
Execution Trace
Tadpole.transferFrom( from=0xB557d81c8047690F3E8483B296fCb693195e33F5, to=0x2B965dC311c06dC101f6212abc6990A6b0D8b767, amountOrId=10900 )
transferFrom[ERC404 (ln:306)]
InvalidSender[ERC404 (ln:313)]
InvalidRecipient[ERC404 (ln:316)]
Unauthorized[ERC404 (ln:319)]
_getUnit[ERC404 (ln:321)]
_getUnit[ERC404 (ln:323)]
pop[ERC404 (ln:331)]
push[ERC404 (ln:335)]
Transfer[ERC404 (ln:338)]
ERC20Transfer[ERC404 (ln:339)]
_getUnit[ERC404 (ln:339)]
type[ERC404 (ln:342)]
_transfer[ERC404 (ln:343)]
_getUnit[ERC404 (ln:385)]
_burn[ERC404 (ln:396)]
InvalidSender[ERC404 (ln:431)]
pop[ERC404 (ln:434)]
Transfer[ERC404 (ln:438)]
_mint[ERC404 (ln:403)]
InvalidRecipient[ERC404 (ln:415)]
AlreadyExists[ERC404 (ln:422)]
push[ERC404 (ln:425)]
Transfer[ERC404 (ln:427)]
ERC20Transfer[ERC404 (ln:406)]
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)pragma solidity ^0.8.0;import "../utils/Context.sol";/*** @dev Contract module which allows children to implement an emergency stop* mechanism that can be triggered by an authorized account.** This module is used through inheritance. It will make available the* modifiers `whenNotPaused` and `whenPaused`, which can be applied to* the functions of your contract. Note that they will not be pausable by* simply including this module, only once the modifiers are put in place.*/abstract contract Pausable is Context {/*** @dev Emitted when the pause is triggered by `account`.*/event Paused(address account);/*** @dev Emitted when the pause is lifted by `account`.*/event Unpaused(address account);bool private _paused;/*** @dev Initializes the contract in unpaused state.*/