ETH Price: $3,812.24 (+1.90%)

Transaction Decoder

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 Code
2.613569321896685206 Eth2.613569390588030606 Eth0.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 )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// 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.
*/
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX