Skip to main content
PulseScanner.io

Address

0x0ee7c00985abbfb6c4fbf0e57f90e0063f2ecc85
Current Holdings
$0.00
TXs sent
not counted
First Active
2025-11-07
block 24,961,030
Last Active
314 days ago
block 24,961,051
Funded By
not identified

Net worth historyi

No net-worth snapshots recorded yet
exact matchPRIVXsolc 0.8.30+commit.73712a01runtime exact · creation exact
// SPDX-License-Identifier: MIT
// Compatible with OpenZeppelin Contracts ^5.5.0
pragma solidity ^0.8.27;

import {ERC20} from "@openzeppelin/contracts@5.5.0/token/ERC20/ERC20.sol";

contract PRIVX is ERC20 {
    constructor(address recipient) ERC20("PRIVX", "PRIVX") {
        _mint(recipient, 555555555 * 10 ** decimals());
    }
}