For partner data access, endpoint details, authentication, allowlisting, and response contracts, contact contact@superearn.io.
1. Integration surfaces
SuperEarn integrations have two separate surfaces:- Write path via Kaia contracts, primarily through
SuperEarnRouter - Read/data path via SuperEarn-supported data surfaces made available to approved integrations
2. Write path
For deposits and withdrawals, use the Kaia contract flow documented in: At a high level:- Users deposit Kaia USDT through
SuperEarnRouter. - The router mints or redeems EarnUSDT / Super Vault shares.
- Redemptions create a cooldown request before USDT is claimable or delivered.
- Integrations should quote through the router and apply explicit
minSharesOut/minAssetsOutprotection.
3. Read/data path
Most integrations need read-side data such as:- vault discovery and display metadata
- current and historical yield information
- user or wrapper-contract position views
- pending redemption status
- transaction and earnings history
- allocation or reporting data for partner dashboards
4. Token model
Keep these token concepts separate in your product and accounting model:| Concept | Decimals | Builder usage |
|---|---|---|
| USDT | 6 | Asset users deposit and expect to see in portfolio totals. |
| seCDV / CooldownVault shares | 6 | Intermediate vault token used inside the protocol flow. |
| EarnUSDT / Super Vault shares | 6 | Shares representing the user’s Super Vault position. |
| KAIA | 18 | Native gas token for Kaia transactions. |
5. Before launch
Before shipping a production integration:- Confirm current contract addresses and supported write methods.
- Confirm whether your read/data access is approved and which surface you should use.
- Confirm authentication, allowlisting, rate limits, and data freshness expectations.
- Confirm how endpoint changes, deprecations, and incident notices will be communicated.
- Test deposit, redeem, cooldown, and data reconciliation flows with the SuperEarn team.