Rewards System

Overview

X804's reward system is fully automated and transparent. Every holder receives rewards based on trading activity without any manual actions required.

How Rewards Work

1. Real-Time Trade Monitoring

// PumpPortal WebSocket connection
const ws = new WebSocket('wss://pumpportal.fun/api/data');

ws.onmessage = (event) => {
  const trade = JSON.parse(event.data);

  if (trade.mint === X804_CONTRACT_ADDRESS) {
    processTradeForRewards(trade);
  }
};

The system continuously monitors:

  • Buy transactions

  • Sell transactions

  • Transfer operations

  • Trading volume

  • Holder balances

2. Reward Calculation

Rewards are calculated using the following formula:

Holder Reward = (Holder Balance / Total Supply) × Reward Pool

Example:

  • Total supply: 1,000,000 tokens

  • Your balance: 10,000 tokens (1%)

  • Reward pool: 10 SOL

  • Your reward: 0.1 SOL

3. Distribution Process

  1. Trade Detected: PumpPortal identifies X804 trade

  2. Pool Calculated: Reward pool determined from trading fees

  3. Holders Identified: All token holders retrieved from blockchain

  4. Rewards Calculated: Proportional distribution computed

  5. Transactions Sent: SOL sent to holder wallets

  6. Verification: All transactions recorded on Solana

Reward Eligibility

Who Gets Rewards?

Eligible:

  • All X804 token holders

  • Any wallet holding X804

  • Regardless of purchase time

  • No minimum holding period

Not Eligible:

  • Wallets with 0 balance

  • Smart contracts (DEX pools, etc.)

  • Burned tokens

Reward Frequency

  • Trigger: Based on trading activity

  • Distribution: Automatic upon sufficient pool

  • Timing: Real-time when trades occur

  • No Schedule: Rewards distributed as trading happens

Transparency Features

Live Dashboard

Track all rewards at: View Live Rewards

Features:

  • Transaction hash (linked to Solscan)

  • Recipient wallet address

  • Reward amount in SOL

  • Timestamp

  • Real-time updates

On-Chain Verification

Every reward distribution is verifiable:

# View transaction on Solscan
https://solscan.io/tx/[TRANSACTION_HASH]

Reward Statistics

Monitor your rewards:

  • Total rewards distributed

  • Number of recipients

  • 24-hour reward volume

  • Average reward per holder

FAQ

Do I need to claim rewards?

No, rewards are sent automatically to your wallet.

When do I receive rewards?

Rewards are distributed based on trading activity. More trades = more frequent rewards.

How much will I earn?

Earnings depend on:

  • Your token holding percentage

  • Trading volume

  • Number of trades

Are rewards guaranteed?

Rewards are automatic but depend on trading activity. No trading = no rewards to distribute.


Want to maximize rewards? Hold more X804 and encourage trading activity!

Last updated