Dopelganga logo
DOPELGANGA
DopelgangaChain Docs

Staking $DOPE

Stake $DOPE to participate as a validator. Choose a lock duration to boost rewards, or use the no‑lock tier for flexibility (no rewards).

1) Requirements

  • A wallet with $DOPE
  • RPC set to https://dopel-rpc.dopelganga.workers.dev
  • Optional: Solana CLI for advanced flows

2) Stake in the app

  1. Open Staking and connect your wallet.
  2. Enter the amount of $DOPE to stake.
  3. Select a lock duration:
    • No Lock: instant unstake, no rewards
    • 7 days: 1.0× rewards
    • 30 days: 1.2× rewards
    • 90 days: 1.5× rewards
  4. Click Stake and approve the transaction.

Note: Unstaking a locked position becomes available once the lock ends (cool‑down may apply). No‑lock can be unstaked anytime.

3) Rewards

  • Rewards accrue continuously and are based on effective stake (amount × lock multiplier) and validator activity.
  • Claim rewards in‑app from the Validators page.
  • APR and emissions are governed; final parameters will be published in Token Strategy.

4) Advanced (CLI)

Developers can stake via CLI using the public IDL once published.

# Set environment
RPC_URL=https://dopel-rpc.dopelganga.workers.dev
PROGRAM_ID=$NEXT_PUBLIC_PROGRAM_ID
DOP_MINT=$NEXT_PUBLIC_DOP_MINT
IDL_URL=https://www.dopelganga.com/idl/dopelgangachain.json

# Then use your Anchor client to call stake_dopel(amount, lock_tier)
# (Exact method signature will be confirmed with the IDL release)