Rewards Integration
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.
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:
| Pack | SLD | Price (USD) | Badge |
|---|---|---|---|
| Starter | 30 | $0.50 | — |
| Mini | 100 | $1.67 | — |
| Standard | 350 | $5.83 | — |
| Plus | 700 | $11.67 | — |
| Popular | 1,400 | $23.33 | Popular |
| Pro | 3,500 | $58.33 | — |
| Power | 7,000 | $116.67 | Best Value |
| Whale | 17,500 | $291.67 | — |
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:
| Activity | FAV 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 |
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.
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.
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.
SLD unlocks premium content, gifts, contest entries, and items in the store. Creators receive payouts instantly when their content is unlocked or gifted.
Gifting, referring, and sending items pay the sender extra SLD — turning every user into a growth channel and pushing more SLD into circulation.
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.
// 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);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"
# }Award SLD for level completion, daily streaks, achievements, and PvP wins.
Tip jars, paid unlocks, subscription perks, contest engines — drop-in.
Loyalty points that are actually liquid: SLD cashback redeemable anywhere in the ecosystem.
Discord/Telegram bots that reward contribution, moderation, and engagement in SLD.