### Clients Source: https://trondealer.com/docs Endpoints for registering new clients and managing client configurations such as payout methods and webhooks. ```APIDOC ## POST /api/v2/clients/register-open ### Description Register a new client. This is a public endpoint. ### Method POST ### Endpoint /api/v2/clients/register-open ### Schemas RegisterRequest, ClientFull ``` ```APIDOC ## GET /api/v2/clients/me ### Description Get the current client's configuration. ### Method GET ### Endpoint /api/v2/clients/me ### Schemas ClientConfig ``` ```APIDOC ## PATCH /api/v2/clients/me ### Description Update the current client's configuration. ### Method PATCH ### Endpoint /api/v2/clients/me ### Schemas UpdateConfigRequest, ClientConfig ``` -------------------------------- ### Networks Source: https://trondealer.com/docs Discover the chains and assets currently supported by V2. ```APIDOC ## GET /api/v2/networks ### Description List supported networks and assets. ### Method GET ### Endpoint /api/v2/networks ### Schemas NetworkInfo ``` -------------------------------- ### Webhooks Source: https://trondealer.com/docs Endpoints for configuring webhook notifications for transaction events like deposits, confirmations, and sweeps. ```APIDOC ## POST /webhooks/transaction.incoming ### Description Webhook notification for when a deposit is detected. ### Method POST ### Endpoint /webhooks/transaction.incoming ### Schemas WebhookPayload, WebhookTransactionData ``` ```APIDOC ## POST /webhooks/transaction.confirmed ### Description Webhook notification for when a deposit is confirmed. ### Method POST ### Endpoint /webhooks/transaction.confirmed ### Schemas WebhookPayload, WebhookTransactionData ``` ```APIDOC ## POST /webhooks/transaction.swept ### Description Webhook notification for when funds are swept to a destination. ### Method POST ### Endpoint /webhooks/transaction.swept ### Schemas WebhookPayload, WebhookSweptPayload ``` -------------------------------- ### EVM Wallets Source: https://trondealer.com/docs Endpoints for managing EVM wallets (BSC, Ethereum, Polygon, Arbitrum, Base, Optimism, Avalanche), including assigning new wallets, checking balances, and viewing transaction history. ```APIDOC ## POST /api/v2/wallets/assign ### Description Assign a new EVM wallet. ### Method POST ### Endpoint /api/v2/wallets/assign ### Schemas AssignRequest, AssignedWallet ``` ```APIDOC ## POST /api/v2/wallets/balance ### Description Get live EVM wallet balances. ### Method POST ### Endpoint /api/v2/wallets/balance ### Schemas AddressRequest, Balances ``` ```APIDOC ## POST /api/v2/wallets/transactions ### Description Get EVM wallet transaction history. ### Method POST ### Endpoint /api/v2/wallets/transactions ### Schemas TransactionsRequest, Transaction ``` -------------------------------- ### SUI Wallets Source: https://trondealer.com/docs Endpoints for managing SUI wallets, including assigning new wallets, checking balances, and viewing transaction history. ```APIDOC ## POST /api/v2/sui/wallets/assign ### Description Assign a new SUI wallet. ### Method POST ### Endpoint /api/v2/sui/wallets/assign ### Schemas AssignRequest, AssignedSuiWallet ``` ```APIDOC ## POST /api/v2/sui/wallets/balance ### Description Get live SUI wallet balances. ### Method POST ### Endpoint /api/v2/sui/wallets/balance ### Schemas SuiAddressRequest, SuiBalances ``` ```APIDOC ## POST /api/v2/sui/wallets/transactions ### Description Get SUI transaction history. ### Method POST ### Endpoint /api/v2/sui/wallets/transactions ### Schemas SuiTransactionsRequest, SuiTransaction ``` -------------------------------- ### Swap Source: https://trondealer.com/docs Endpoints for the anonymous cross-chain stablecoin swap service. Quote, create, and track USDT/USDC swaps without authentication. ```APIDOC ## GET /api/v2/swap/pairs ### Description List enabled swap pairs. ### Method GET ### Endpoint /api/v2/swap/pairs ### Schemas SwapPair ``` ```APIDOC ## POST /api/v2/swap/quote ### Description Quote a swap. ### Method POST ### Endpoint /api/v2/swap/quote ### Schemas SwapQuoteRequest, SwapQuote ``` ```APIDOC ## POST /api/v2/swap/create ### Description Create a swap from a quote. ### Method POST ### Endpoint /api/v2/swap/create ### Schemas SwapCreateRequest, SwapFull ``` ```APIDOC ## GET /api/v2/swap/{id} ### Description Get the status of a swap. ### Method GET ### Endpoint /api/v2/swap/{id} ### Schemas SwapStatus ``` ```APIDOC ## GET /api/v2/swap/{id}/stream ### Description Stream swap updates using Server-Sent Events. ### Method GET ### Endpoint /api/v2/swap/{id}/stream ``` ```APIDOC ## POST /api/v2/swap/{id}/unlock ### Description Unlock swap access via proof of ownership. ### Method POST ### Endpoint /api/v2/swap/{id}/unlock ### Schemas SwapUnlockRequest ``` -------------------------------- ### SOL Wallets Source: https://trondealer.com/docs Endpoints for managing Solana (Ed25519) wallets, including assigning new wallets, checking SOL/USDT-SPL/USDC-SPL balances, and viewing SPL transaction history. ```APIDOC ## POST /api/v2/sol/wallets/assign ### Description Assign a new Solana wallet. ### Method POST ### Endpoint /api/v2/sol/wallets/assign ### Schemas AssignRequest, AssignedSolWallet ``` ```APIDOC ## POST /api/v2/sol/wallets/balance ### Description Get live Solana wallet balances. ### Method POST ### Endpoint /api/v2/sol/wallets/balance ### Schemas SolAddressRequest, SolBalances ``` ```APIDOC ## POST /api/v2/sol/wallets/transactions ### Description Get Solana transaction history. ### Method POST ### Endpoint /api/v2/sol/wallets/transactions ### Schemas SolTransactionsRequest, SolTransaction ``` -------------------------------- ### TRON Wallets Source: https://trondealer.com/docs Endpoints for managing TRON (TRC20) wallets, including assigning new wallets, checking TRX/USDT balances, and viewing USDT transaction history. ```APIDOC ## POST /api/v2/tron/wallets/assign ### Description Assign a new TRON wallet. ### Method POST ### Endpoint /api/v2/tron/wallets/assign ### Schemas AssignRequest, AssignedTronWallet ``` ```APIDOC ## POST /api/v2/tron/wallets/balance ### Description Get live TRON wallet balances. ### Method POST ### Endpoint /api/v2/tron/wallets/balance ### Schemas TronAddressRequest, TronBalances ``` ```APIDOC ## POST /api/v2/tron/wallets/transactions ### Description Get TRON transaction history. ### Method POST ### Endpoint /api/v2/tron/wallets/transactions ### Schemas TronTransactionsRequest, TronTransaction ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.