ETH Price: $1,815.27 (-4.48%)

Transaction Decoder

Block:
21781096 at Feb-05-2025 03:09:59 PM +UTC
Transaction Fee:
0.000140537316509073 ETH $0.26
Gas Used:
47,193 Gas / 2.977927161 Gwei

Emitted Events:

350 CirusToken.Approval( owner=[Sender] 0x90964124d104f027363a6cca577d5414e6900087, spender=0x0bb24C43...602f35972, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )

Account State Difference:

  Address   Before After State Difference Code
(Titan Builder)
11.106478175013336187 Eth11.106523952223336187 Eth0.00004577721
0x90964124...4e6900087
0.030375708857550392 Eth
Nonce: 36
0.030235171541041319 Eth
Nonce: 37
0.000140537316509073
0xA01199c6...9715c8756

Execution Trace

CirusToken.approve( spender=0x0bb24C4302889EA0FB22dfaCBb845e5602f35972, amount=115792089237316195423570985008687907853269984665640564039457584007913129639935 ) => ( True )
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: UNLICENSED
pragma solidity >=0.4.22 <0.9.0;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
contract CirusToken is ERC20 {
constructor(
string memory _name,
string memory _symbol,
uint256 _supply,
address _owner
)
ERC20(_name, _symbol)
{
_mint(_owner, _supply);
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./IERC20.sol";
import "../../utils/Context.sol";
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our guide
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX