Skip to main content
PulseScanner.io

Address

0x6b9ef26ee86ea1d9986d36caaabce057207986a4
Current Holdings
$0.00
TXs sent
not counted
First Active
2026-02-27
block 25,899,691
Last Active
203 days ago
block 25,899,691
Funded By
not identified

Net worth historyi

No net-worth snapshots recorded yet
exact matchROSEsolc 0.8.29+commit.ab55807cruntime exact · creation exact
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";

contract ROSE is ERC20 {
    uint256 public constant INITIAL_SUPPLY = 1_000_000_000 * 1e18;

    constructor() ERC20("ROSE", "ROSE") {
        _mint(msg.sender, INITIAL_SUPPLY);
    }
}