Appearance
Bridge
Move assets between KriptoNyx and six external networks.
| Interface | bridge.testnet.kriptonyx.com |
| API | https://bridge.testnet.kriptonyx.com/api |
Supported networks
| Chain | Tokens |
|---|---|
| KRIPTONYX | KNYX, KUSD |
| BSC | USDT, WKNYX |
| ETHEREUM | ETH, USDT |
| TRON | TRX, USDT |
| BITCOIN | BTC |
| SOLANA | SOL |
| POLYGON | POL |
Seven chains, eleven assets. Read the live list from the API rather than hard-coding it:
bash
curl -s https://bridge.testnet.kriptonyx.com/api/tokensHow a swap works
POST /api/swap → deposit address issued
↓ (you send funds there)
deposit detected → rate locked
↓
vault lock / gather → payout executedEach swap gets its own deposit address. You send the source asset to that address and the bridge handles everything after — detection, rate locking, gathering into the vault, and the payout on the target chain.
Send only the asset the swap expects
A deposit address belongs to one swap, for one asset, on one chain. Sending something else, or sending after the window expires, is not automatically recoverable.
Components
| Component | Responsibility |
|---|---|
| Routing engine | Chooses the route for a requested pair |
| Wallet service and key manager | Derives deposit wallets; keys encrypted at rest |
| Blockchain monitor | Polls deposit addresses for incoming transfers, every 20 seconds |
| Rate engine | Prices the swap and locks the rate |
| Vault manager and gather service | Locks source funds and gathers them |
| Payout executor | Sends the target asset |
| Webhook dispatcher | Records and delivers lifecycle events |
Routes include direct liquidity-pool swaps, vault-backed routes, internal multi-hop routes, and routes that use SimpleSwap as an external leg.
Fees
The bridge fee is returned by the API rather than fixed in documentation:
bash
curl -s https://bridge.testnet.kriptonyx.com/api/swap/configObserved completed swaps carried a 2.50% fee.
A completed swap
| Route | 10 KUSD → 63.347496084848910 KNYX |
| Fee | 2.50% |
| Payout | 0x3341c2aff0d8409c62f728ea8aef00f77cec5b1c32f91257ee930034876cc075 |
| Elapsed | 68 seconds, deposit to payout |
Where next
- Creating a swap
- Tracking a swap
- Webhooks — the durable way to follow progress