All notable changes to the CoinVoyage SDK, API, and platform behavior are documented here. Releases follow Semantic Versioning: major versions for breaking changes, minor for new backward-compatible functionality, and patch for bug fixes.Documentation Index
Fetch the complete documentation index at: https://coinvoyage-3c99945b.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
2.0.0 marks the v2 migration release. If you are upgrading from v1, see the Migration Guide for step-by-step upgrade instructions.2.4.1 — 2026-04-08
AddedPARTIAL_PAYMENTstatus: A new terminal state for PayOrders that receive an insufficient amount. Use this status to detect and handle partial-payment outcomes in your order fulfillment logic.PayOrderPartialPaymentEvent: A new event type so you can explicitly handle partial-payment outcomes in your event flows.
2.4.0 — 2026-04-04
Added- Stripe onramp integration: Full Stripe fiat-to-crypto onramp support, including geo-blocking for restricted regions.
PaymentStepsmodel: Tracks granular payment progress across stages such as onramp, swap, and delivery.- Payment methods endpoint:
GET /pay-orders/{payorder_id}/payment-methodsreturns available payment methods for a given PayOrder. - Organization settings in PayOrder responses:
Organization.settingsis now a JSON field and is returned inGET /pay-ordersandGET /pay-orders/{payorder_id}responses. hosted_urlfield: Added toGET /pay-ordersandGET /pay-orders/{payorder_id}responses so you can link customers directly to the hosted pay page.
- Webhook payload coverage:
payorder_errorandpayorder_refundedevents now include the fullpayment_dataobject. - PayKit payment handling: The widget now consumes
payment_data.steps, supports organization settings, and exposes location-aware payment method options. - SDK request and response models: Added
metadatasupport toClaimFeesRequestandSwapQuoteRequest, updated order event types andClaimFeeResponse, and expandedApiClientto acceptOpts. - EVM prefunding flow: Improved prefunding across CCTP, Direct, Relay, and Uniswap providers with better gas estimation, prefund calculation, and error handling.
- Webhook subscription filtering: Webhook deliveries now correctly respect each subscriber’s registered event types.
- Payment state persistence: Improved handling of
payment_dataso the correct exchange state is always persisted throughout the payment flow. - Refund PayOrder client flow: Fixed
createRefundPayOrderhandling inApiClient. - WalletConnect desktop routing: Desktop WalletConnect flows now route through the QR flow correctly.
- Deprecated
RequestData/requestfield: Removed fromPayOrderResponse. - Legacy transaction hash aliases: Removed
SourceTransactionHashandDestinationTransactionHashalias fields.
2.0.0 — 2026-01-28
Added- List Pay Orders endpoint:
GET /pay-ordersretrieves all pay orders for your organization with pagination and status filtering. - Quote breakdown transparency: Quotes now expose detailed fee breakdowns including
base,fees,gas, andtotal. - Multi-provider execution tracking:
payment.executiontracks execution status across multiple providers. ApiClientconstructor options: AddedsessionIdandversionoptions.- Dedicated PayOrder helpers:
createDepositPayOrder()andcreateSalePayOrder()provide clearer intent for each payment flow.
- API base URL: Updated to
https://api.coinvoyage.io/v2/. - Response structure: Flat fields moved into nested
paymentandfulfillmentobjects. - BigInt handling:
raw_amountfields now return strings instead of numbers to prevent precision loss. - Authorization signature:
generateAuthorizationSignature()now uses HMAC-SHA256 and requiresmethodandpath. - Sale and refund authorization:
createSalePayOrder()andcreateRefundPayOrder()now acceptapiSecretdirectly instead of a pre-generated signature. - Webhook event naming: Webhook subscriptions use uppercase
ORDER_*identifiers; delivered payloads use lowercasepayorder_*values in thetypefield.
- Process endpoint:
/pay-orders/{payorder_id}/processhas been removed. Payment processing now happens automatically when funds are detected.
- Top-level response fields:
source_currency,source_amount,destination_currency,destination_amount,deposit_address,receiving_address,refund_address, andexpires_atare deprecated at the top level. Use the corresponding nested fields inpaymentandfulfillmentinstead.
0.1.25 — 2025-11-04
Added- Phantom wallet (EVM): Users can now connect an EVM wallet through the Phantom browser extension.
0.1.24 — 2025-10-29
Added- German localization: Display the PayKit modal in German by specifying the
de-DElanguage in your widget configuration.
ApiClientresponses: AllApiClientmethods now returnAPIResponse<T>for a consistent response shape.
0.1.23 — 2025-10-21
ChangedWalletProviderprops: Updated property names and nesting structure. Review yourWalletProviderconfiguration if you pass custom props.
0.1.22 — 2025-10-17
Added- Stable Testnet support: Added support for the Stable Testnet network so you can test integrations without using mainnet funds.