ETH Price: $2,937.91 (+4.56%)

Transaction Decoder

Block:
21268968 at Nov-26-2024 02:33:59 AM +UTC
Transaction Fee:
0.000328234747215042 ETH $0.96
Gas Used:
49,134 Gas / 6.680399463 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
(Titan Builder)
13.857129490399500265 Eth13.857131947099500265 Eth0.0000024567
0x8457CA50...35Bc0fbFB
0xF99De9b6...bDEEBc7c2
0.14088206880992683 Eth
Nonce: 30
0.140553834062711788 Eth
Nonce: 31
0.000328234747215042

Execution Trace

AltLayerToken.transfer( to=0xfF3F447D8F73a4AB81d672dbFcCf8a78d0166CAf, value=667000000000000000000 ) => ( 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: MIT
pragma solidity =0.8.23;
import {ERC20, ERC20Burnable} from "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";
import {ERC20Permit} from "@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol";
import {ERC20Capped} from "@openzeppelin/contracts/token/ERC20/extensions/ERC20Capped.sol";
import {ERC20Pausable} from "@openzeppelin/contracts/token/ERC20/extensions/ERC20Pausable.sol";
import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";
/// @title AltLayer Token Contract
/// @notice Implements an ERC20 token with a cap, burnability, pausability, and ownership features
contract AltLayerToken is
ERC20Burnable,
ERC20Permit,
ERC20Capped,
ERC20Pausable,
Ownable
{
/// @notice Initializes the contract with a name, symbol, cap, and initial owner
/// @param initialOwner The address to be set as the initial owner of the token
constructor(
address initialOwner
)
ERC20("AltLayer Token", "ALT")
ERC20Permit("AltLayer Token")
ERC20Capped(1e28)
Ownable(initialOwner)
{}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX