Skip to main content
PulseScanner.io

Address

0x31a28b4e35e35f0594a9cfbdee2aaf5f4bdff7d2
Current Holdings
$0.00
TXs sent
not counted
First Active
2025-10-18
block 24,792,249
Last Active
332 days ago
block 24,792,357
Funded By
not identified

Net worth historyi

No net-worth snapshots recorded yet
exact matchRestTokensolc 0.8.30+commit.73712a01runtime exact · creation exact
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

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

contract RestToken is ERC20 {
    constructor(address rcipContract, address distributionWallet) ERC20("Restake Token", "REST") {
        _mint(rcipContract, 9_000_000_000 * 10**decimals()); // 90% for staking
        _mint(distributionWallet, 1_000_000_000 * 10**decimals()); // 10% for distribution
    }
}