Transaction Hash:
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:
544 |
AltLayerToken.Transfer( from=[Sender] 0xf99de9b62e1605a080ef633d14671aabdeebc7c2, to=0xfF3F447D8F73a4AB81d672dbFcCf8a78d0166CAf, value=667000000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 13.857129490399500265 Eth | 13.857131947099500265 Eth | 0.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 )
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma 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 featurescontract AltLayerToken isERC20Burnable,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 tokenconstructor(address initialOwner)ERC20("AltLayer Token", "ALT")ERC20Permit("AltLayer Token")ERC20Capped(1e28)Ownable(initialOwner){}