ETH Price: $3,695.22 (-3.87%)
Gas: 0.34 Gwei

Transaction Decoder

Block:
22647729 at Jun-06-2025 07:47:47 PM +UTC
Transaction Fee:
0.000550042677584424 ETH $2.03
Gas Used:
55,987 Gas / 9.824471352 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x5283D291...121208b44
(Fee Recipient: 0x73f7...d58)
223.842632614465784585 Eth223.843080510465784585 Eth0.000447896
0xdE2fACa4...6325bf82A
(BtcTurk 11)
164.918703024836792817 Eth
Nonce: 316703
164.918152982159208393 Eth
Nonce: 316704
0.000550042677584424

Execution Trace

BlurToken.transfer( to=0xC4600a4175f17Dc7c458e961AbE73176209F9ccF, amount=83564641500000000000000 ) => ( 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.17;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Votes.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/draft-ERC20Permit.sol";
import "./interfaces/ITokenLockup.sol";
contract BlurToken is ERC20Votes, Ownable {
uint256 private constant INITIAL_SUPPLY = 3_000_000_000;
address[] public lockups;
constructor() ERC20Permit("Blur") ERC20("Blur", "BLUR") {
_mint(msg.sender, INITIAL_SUPPLY * 10 ** 18);
}
/**
* @notice Adds token lockup addresses
* @param _lockups Lockup addresses to add
*/
function addLockups(address[] calldata _lockups) external onlyOwner {
require(lockups.length == 0);
uint256 lockupsLength = _lockups.length;
for (uint256 i = 0; i < lockupsLength; i++) {
require(ITokenLockup(_lockups[i]).token() == address(this));
lockups.push(_lockups[i]);
}
}
/**
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX