Skip to main content
PulseScanner.io

Address

0x208dbf3824bbce97bcefca42df136cb0e92d89b2
Current Holdings
$0.00
TXs sent
not counted
First Active
2025-11-07
block 24,963,158
Last Active
312 days ago
block 24,963,271
Funded By
not identified

Net worth historyi

No net-worth snapshots recorded yet
exact matchPulseWalletCosolc 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 PulseWalletCo is ERC20 {
    constructor(address recipient) ERC20("PulseWallet.co", "PLW") {
        _mint(recipient, 555555555 * 10 ** decimals());
    }
}