Rewards Integration

How SLD plugs into every product

SLD is not a separate "rewards program" bolted on the side — it is wired into the core actions users already take across SlideMe Money and Kyvro.Live. Logging in, making an in-app purchase, entering a contest, sending a gift, sharing content — each action either mints, distributes, or spends SLD. The values below are pulled directly from the live reward engine configured in the SlideMe platform.

Earned at sign-upEarned per in-app actionSpent on gifts & unlocksShareable peer-to-peer

SlideMe Money — earn at login & in-app purchases

When a user opens the SlideMe Money app, completes onboarding, or transacts inside the app, the reward engine fires automatically. These rules are live in the platform today:

First Slide (sign-up complete)
Auto-credited to wallet
+5
SLD
Verified user (KYC complete)
Auto-credited to wallet
+5
SLD
Creator referral
Auto-credited to wallet
+10
SLD
Gift sent to another user
Auto-credited to wallet
+5
SLD

Login & Activity Drops

New accounts receive an immediate SLD drop on first slide (sign-up). Verified accounts (KYC via Plaid + Veriff) unlock a larger drop. Daily check-ins, streaks, and qualifying in-app actions continue to accrue SLD to the user's in-app balance.

In-App Purchases & Token Packs

Users can top up SLD directly through the app via token packs ranging from $0.50 to $291.67. Purchases settle instantly to the user's wallet and the SLD becomes spendable inside both SlideMe Money and Kyvro.Live.
PackSLDPrice (USD)Badge
Starter30$0.50
Mini100$1.67
Standard350$5.83
Plus700$11.67
Popular1,400$23.33Popular
Pro3,500$58.33
Power7,000$116.67Best Value
Whale17,500$291.67

Kyvro.Live — contests, gifts, and shareable items

On Kyvro.Live, the creator platform, SLD-backed FAV points flow continuously between fans and creators. Every meaningful action — watching a stream, joining a contest, gifting a creator, unlocking premium content — is a value event. These point values are live in today's platform:

ActivityFAV Points
Referral — bring a new subscriber
+10
Monthly subscription payment
+50
Content unlock
+20
Gift sent (per $1 value)
+10
Poll participation (per 10 polls)
+5
Live stream attendance (per min, capped 60/stream)
+2
Chat message during stream (capped 10/stream)
+1

Contests & Leaderboards

Creators launch contests funded with SLD prize pools. Fans climb leaderboards by chatting, watching, gifting, and referring — top entries split the pool automatically when the contest closes.

Gifts & Tipping

Fans gift creators with SLD-backed items from the gift store. Senders earn FAV points for every dollar of gift value; creators receive instant SLD payouts in their wallet.

Item Store & Unlocks

Spend points and SLD on digital items, badges, premium content unlocks, and exclusive subscriptions. Many items are giftable — buy once, send to a friend, both of you collect.

Built to be shared

Every reward in the system is designed to be passed on. Sending a gift earns the sender 5 SLD on top of FAV points. Referring a creator earns 10 SLD. Items purchased from the gift store can be sent directly to another user's wallet. The more the network shares, the more SLD circulates — and the more value flows back to participants.

Refer

+10 SLD per creator referral, +10 FAV per subscriber referral.

Gift

+5 SLD bonus to sender, full value delivered to recipient.

Compete

Contest pools split among leaderboard winners in real time.

The full earn → spend → share loop

  1. 1
    Earn

    User logs in, completes KYC, makes a purchase, joins a contest, or engages with a creator. SLD and FAV points are credited automatically by the reward engine.

  2. 2
    Hold

    Balances sit in the user's in-app wallet. Verified users can withdraw SLD on-ledger (XRPL today) or convert via supported pairs on XPMarket.

  3. 3
    Spend

    SLD unlocks premium content, gifts, contest entries, and items in the store. Creators receive payouts instantly when their content is unlocked or gifted.

  4. 4
    Share

    Gifting, referring, and sending items pay the sender extra SLD — turning every user into a growth channel and pushing more SLD into circulation.

APIs & SDKs — grow the ecosystem with us

The same engine that powers SlideMe Money and Kyvro.Live is exposed to outside builders. Any small app, indie game, creator tool, e-commerce store, or community platform can drop SLD rewards into their product in an afternoon — no need to build a points system, a wallet, a payout pipeline, or a compliance layer from scratch. Every external integration enlarges the SLD network, deepens liquidity, and earns the partner a share of ecosystem incentives.

REST API

Issue rewards, fetch balances, trigger payouts, and manage rules with simple HTTP endpoints. Authenticated with scoped API keys, rate-limited per partner, fully documented with OpenAPI.

Drop-in SDKs

Official SDKs for JavaScript / TypeScript, React Native, iOS (Swift), Android (Kotlin), and Python. One line to award SLD, one line to spend it, one line to check a balance.

Plugins & Widgets

Pre-built plugins for Shopify, WooCommerce, Discord, Telegram, and OBS — plus embeddable web widgets for leaderboards, gift buttons, and reward popups.

Wallet & Payouts

Issue SLD directly to user wallets on XRPL today, native SlideMe chain in 2029. Partner-managed sub-wallets, batched payouts, and webhook events for every transaction.

Compliance Built-In

KYC gating (Plaid + Veriff), per-user and per-day caps, fraud detection, and audit logs ship with the engine so partners don't carry the compliance burden alone.

Co-Marketing & Grants

Apps that integrate SLD become part of the ecosystem map, qualify for promotion on SlideMe Money and Kyvro.Live, and can apply for SLD grants from the ecosystem treasury.
Node.js / TypeScript SDK — award SLD
Runnable
// npm install @slideme/sdk
import { SlideMe } from "@slideme/sdk";

const sld = new SlideMe({
  apiKey: process.env.SLD_API_KEY!,
  environment: "live", // or "sandbox"
});

async function awardOnLevelComplete(userId: string, level: number) {
  try {
    const tx = await sld.rewards.grant({
      userId,
      ruleId: "level_complete",
      amount: 5,
      metadata: { level, source: "indie_game_v1" },
      idempotencyKey: `level-${userId}-${level}`,
    });
    console.log("Awarded", tx.amount, "SLD — tx:", tx.id);
    return tx;
  } catch (err) {
    console.error("SLD grant failed:", err);
    throw err;
  }
}

awardOnLevelComplete("u_abc123", 7);
REST API — spend SLD on a gift store item
cURL
curl -X POST https://api.slidemeapp.com/v1/spend \
  -H "Authorization: Bearer sld_live_xxx" \
  -H "Content-Type: application/json" \
  -H "Idempotency-Key: spend-u_abc123-1717200000" \
  -d '{
    "user_id": "u_abc123",
    "item_id": "gift_rose",
    "amount": 50,
    "currency": "SLD",
    "metadata": { "channel": "kyvro_live_stream_42" }
  }'

# 200 OK
# {
#   "id": "tx_01HF...",
#   "status": "settled",
#   "balance_after": 1245,
#   "ledger_hash": "A3F2...",
#   "settled_at": "2026-06-01T19:55:00Z"
# }
Indie games

Award SLD for level completion, daily streaks, achievements, and PvP wins.

Creator tools

Tip jars, paid unlocks, subscription perks, contest engines — drop-in.

E-commerce

Loyalty points that are actually liquid: SLD cashback redeemable anywhere in the ecosystem.

Communities

Discord/Telegram bots that reward contribution, moderation, and engagement in SLD.