IntelliSlots×UCrypto.ai
Your Space Bank balance earned on IntelliSlots.ai now has real cross-platform value. Convert Space Dollars to UCrypto tokens — the universal currency of the UCrypto ecosystem.
A message from UCrypto.ai
To the IntelliSlots Community
Dear IntelliSlots Players and Partners,
We are thrilled to announce the official integration between IntelliSlots.ai and UCrypto.ai — a milestone that gives the Space Dollars you accumulate in your IntelliSlots Space Bank genuine cross-platform value.
IntelliSlots.ai is a skill-based block-matching strategy game where players clear matching groups, build runs, and earn Space Dollars in their Space Bank. Runs of 6 pay $50, runs of 7 pay $100, and runs of 8 pay $500 and up. Until now, those Space Dollars lived entirely within the IntelliSlots ecosystem as fictional space money for gameplay. This integration changes that.
Through this partnership, every Space Dollar in your IntelliSlots Space Bank can be converted to UCrypto tokens at the live market rate — giving your in-game earnings genuine cross-platform value. UCrypto tokens are held in your UCrypto.ai wallet and participate in the broader UCrypto economy.
This is not a one-way bridge. It is the foundation of a connected ecosystem where the skill and strategy you bring to IntelliSlots translates directly into digital assets you own and control.
The conversion is powered by our live exchange engine — a transparent, supply-and-demand formula that rewards early adopters and maintains long-term token health. Every conversion is recorded on an immutable ledger, and your balances update in real time.
We look forward to growing this partnership and expanding the ways IntelliSlots players can benefit from the UCrypto ecosystem.
Warm regards,
The UCrypto.ai Team
How the Token System Works
Two platforms, one unified economy. Here is the full picture.
Earn Space Dollars
Play IntelliSlots — clear matching groups, build runs of 6, 7, or 8+ blocks, and watch your Space Bank grow. Every run pays out Space Dollars automatically.
Convert via API
IntelliSlots calls the UCrypto Partner API with your user ID and Space Dollar amount. The live exchange engine calculates your UCrypto tokens at the current rate.
Hold UCrypto
UCrypto tokens land in your UCrypto.ai wallet instantly. Track your balance, view transaction history, and participate in the broader UCrypto economy.
Step-by-Step Conversion Flow
Player initiates conversion on IntelliSlots.ai
The player selects how many Space Dollars they want to convert from their Space Bank and confirms the action in the IntelliSlots interface.
IntelliSlots calls POST /api/partner/convert
IntelliSlots sends a signed API request with the player's UCrypto user ID, the Space Dollar amount, and sourcePlatform: "intellislots".
UCrypto exchange engine calculates the rate
The live supply-demand formula runs in real time. If the early adopter bonus is active (supply < 10% of float), a 1.25× multiplier applies automatically.
Balances update atomically
The player's Space Bank decreases on IntelliSlots. Their UCrypto wallet balance increases on UCrypto.ai. Both ledger entries are written simultaneously.
Immutable transaction record created
Every conversion is written to the UCrypto ledger with a unique transaction ID, the rate applied, and a timestamp. This record cannot be altered.
Player sees updated balance instantly
The UCrypto.ai dashboard reflects the new balance in real time. The player can view the full transaction history from their wallet.
Setup Instructions for IntelliSlots Developers
Follow these steps to integrate the UCrypto conversion API into IntelliSlots.
Request a partner API key
Email [email protected] or use the partner application form at ucrypto.ai/partners. Specify your platform name as "IntelliSlots" and your allowed origin as intellislots.ai. You will receive a Bearer token within 24 hours.
Add a UCrypto user ID field to your player accounts
Each IntelliSlots player who wants to convert must link their UCrypto.ai account. Add a ucrypto_user_id field to your user table. Provide a UI for players to enter and save their UCrypto user ID (found in their UCrypto.ai dashboard).
Add a "Convert to UCrypto" button in the Space Bank UI
In the Space Bank section of your player dashboard, add a conversion form. Let the player enter the amount of Space Dollars to convert, show the estimated UCrypto they will receive at the live rate, and confirm before submitting.
Call POST /api/partner/convert from your backend
Never call the UCrypto API from the browser — always proxy through your own backend to keep your Bearer token secret. Send userId (the player's UCrypto user ID), spaceDollarsAmount, sourcePlatform: "intellislots", and a unique externalRef (your own transaction ID) for idempotency.
Deduct the Space Dollar balance on your side
On a successful 200 response from UCrypto, deduct the converted Space Dollars from the player's Space Bank. Use the transactionId from the response to link the records. If the UCrypto call fails, do not deduct — let the player retry.
Show the player their new UCrypto balance
The response includes newUcryptoBalance and ucryptoReceived. Display these to the player immediately after conversion. Optionally deep-link to ucrypto.ai/dashboard so they can see their full wallet.
Integration Checklist
Everything that needs to be in place before Space Dollars start converting live.
UCrypto.ai
- Partner API endpoint live (POST /api/partner/convert)
- Exchange engine seeded with base_sd_rate
- Wallet system operational (balances, ledger)
- Partner API key management in admin panel
- Issue IntelliSlots a dedicated partner API key
- Set allowed origin to intellislots.ai in key settings
- Confirm exchange settings are seeded post-publish
IntelliSlots.ai
- Store UCrypto user ID against each IntelliSlots account
- Build "Convert to UCrypto" UI in player Space Bank dashboard
- Implement POST /api/partner/convert API call with Bearer token
- Deduct Space Dollar balance from Space Bank on conversion
- Display conversion confirmation and new UCrypto balance
- Pass externalRef (IntelliSlots TX ID) for idempotency
- Test end-to-end on staging before going live
Developer Quick Reference
Everything IntelliSlots needs to call the conversion API.
Conversion Endpoint
Request Headers
Authorization: Bearer <YOUR_API_KEY>
Content-Type: application/json
Request Body
{
"userId": "ucrypto_user_id",
"spaceDollarsAmount": 500,
"sourcePlatform": "intellislots",
"externalRef": "ils_tx_abc123"
}
Success Response (200)
{
"ok": true,
"ucryptoReceived": 12.5,
"rateApplied": 40.0,
"newUcryptoBalance": 112.5,
"newSpaceDollarsBalance": 1500.0,
"transactionId": 4821,
"earlyAdopterBonus": true
}
SHA-256 hashed Bearer token. Your key is issued from the UCrypto admin panel and scoped to your domain. Never expose it in client-side code.
Pass externalRef with your own transaction ID. Duplicate submissions with the same ref are safely rejected — safe to retry on network failure.
Your API key is locked to the intellislots.ai origin. Always call from your backend, never from the browser.
Ready to start converting?
Create your UCrypto.ai account, link it to your IntelliSlots profile, and your Space Bank balance will be ready to convert the moment the integration goes live.