Back to Home

Security & Transparency

We prioritize the security of your tokens and the transparency of our platform

Security

Liquidity Locking

Lock your liquidity for a set period to build trust with your community and prevent rug pulls.

  • Lock liquidity for 1 month to 4 years
  • Transparent lock status visible to all users
  • Automatic verification badge for locked tokens
  • Option to extend lock period

Liquidity Lock Status

Status:Locked
Lock Period:365 days
Unlock Date:April 17, 2026
Amount Locked:500,000 RAY
0 days273 days elapsed365 days

Anti-Rug Protection

Max Transaction:2% of total supply
Trading Cooldown:30 seconds
Team Token Vesting:Enabled
Honeypot Check:Passed
Contract Verified:Yes
Protection

Anti-Rug Tools

Set maximum transaction limits, implement trading cooldowns, and create vesting schedules for team tokens.

  • Maximum transaction limits to prevent whale manipulation
  • Trading cooldowns to prevent flash loan attacks
  • Team token vesting with transparent release schedule
  • Automatic honeypot detection and prevention
Transparency

Full Contract Visibility

All token contracts are verified on-chain and fully transparent. View the code before you launch.

  • Automatic contract verification on Solana Explorer
  • Open source contract templates
  • Audit reports available for all contract types
  • Community review system for added trust

Contract Code

// SPDX-License-Identifier: MIT
import { Token } from '@solana/spl-token';

export class RayToken {
  constructor(
    public name: string,
    public symbol: string,
    public decimals: number,
    public totalSupply: number,
    public owner: PublicKey
  ) {}

  async create() {
    // Create mint account
    const mint = await Token.createMint(
      connection,
      owner,
      owner,
      null,
      decimals,
      TOKEN_PROGRAM_ID
    );

    // Create associated token account
    const tokenAccount = await mint.getOrCreateAssociatedAccountInfo(
      owner
    );

    // Mint tokens to owner
    await mint.mintTo(
      tokenAccount.address,
      owner,
      [],
      totalSupply * (10 ** decimals)
    );

    return {
      mint: mint.publicKey,
      tokenAccount: tokenAccount.address
    };
  }
}
Verified on:Solana Explorer