Skip to content

Release the: Upbeat Sumatran Orang-utan! - #1125

Merged
pedromcunha merged 1 commit into
mainfrom
changeset-release/main
Sep 8, 2026
Merged

Release the: Upbeat Sumatran Orang-utan!#1125
pedromcunha merged 1 commit into
mainfrom
changeset-release/main

Conversation

@github-actions

@github-actions github-actions Bot commented Sep 8, 2026

Copy link
Copy Markdown
Contributor

This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.

Releases

@relayprotocol/relay-kit-hooks@5.0.0

Major Changes

  • c7ba781: paths and routes now track the current Relay API. Three endpoints are gone, request
    amount fields are nullable, and deposit addresses, fee sponsorship and route racing gained
    new options.

    Breaking

    • /execute/swap, /requests/{requestId}/signature and /requests/{requestId}/signature/v2
      are removed from paths and from the exported routes array. Quotes come from
      POST /quote/v2. SwapBreakdown and Execute['breakdown'] are unchanged — the SDK now
      declares that shape directly instead of deriving it from /execute/swap.
    • On GET /requests/v2 and GET /requests/v3, amount-bearing fields are now string | null
      rather than string | undefined: appFees[] / paidAppFees[] (recipient, bps,
      amount, amountUsd, amountUsdCurrent), data.fees.* (usd, amount,
      amountFormatted) and data.route.* currency amounts (amount, amountFormatted,
      amountUsd, minimumAmount). This reaches useRequests, queryRequests and
      useDepositAddressStatus. Passing one of these into a string | undefined slot no longer
      compiles — use ?? undefined, or widen the receiving type to accept null.
    • ChainVM gains 'hederavm'. An exhaustive switch over ChainVM with a never
      fallthrough needs the new case.
    • GET /config/v2 no longer accepts currency: "degen" or "usdh", and GET /prices/rates
      no longer returns DEGEN. Remove references to those literals; "ausd" is now accepted.

    Added

    • GET /deposit-addresses/v2 returns a deposit address with its deposits and sweeps
      history, and POST /deposit-addresses/{depositAddressId}/disable/v2 disables one.
      /quote and /quote/v2 responses now carry requestId and, on deposit-address steps,
      depositAddressId.
    • Quote request options: subsidizationBps (share of each sponsored fee component the
      sponsor covers, applied before maxSubsidizationAmount), indicativeQuote,
      referencePrice, useRouteRacing and routeRacingMinUsdSize. subsidizationBps is
      echoed back in feeSponsorship on quotes and requests.
    • GET /requests/v3 accepts a referrer filter (requires apiKey) and returns apiKeyName
      and blockedAddresses to the request's creator integrator. GET /requests/v2 responses
      carry a deprecation block with its sunset and successor.
    • MANUAL_REFUND_REQUIRED joins refundFailReason; GET /intents/status/v3 now reports
      failReason and refundFailReason; GET /withdrawals/status returns txHash;
      hederavm joins the chain VM types.

    Deprecated

    • The strict quote parameter is ignored by /quote/v2; deposit-address creation follows
      the requested trade type.

Patch Changes

  • Updated dependencies [c7ba781]
    • @relayprotocol/relay-sdk@8.0.0

@relayprotocol/relay-sdk@8.0.0

Major Changes

  • c7ba781: paths and routes now track the current Relay API. Three endpoints are gone, request
    amount fields are nullable, and deposit addresses, fee sponsorship and route racing gained
    new options.

    Breaking

    • /execute/swap, /requests/{requestId}/signature and /requests/{requestId}/signature/v2
      are removed from paths and from the exported routes array. Quotes come from
      POST /quote/v2. SwapBreakdown and Execute['breakdown'] are unchanged — the SDK now
      declares that shape directly instead of deriving it from /execute/swap.
    • On GET /requests/v2 and GET /requests/v3, amount-bearing fields are now string | null
      rather than string | undefined: appFees[] / paidAppFees[] (recipient, bps,
      amount, amountUsd, amountUsdCurrent), data.fees.* (usd, amount,
      amountFormatted) and data.route.* currency amounts (amount, amountFormatted,
      amountUsd, minimumAmount). This reaches useRequests, queryRequests and
      useDepositAddressStatus. Passing one of these into a string | undefined slot no longer
      compiles — use ?? undefined, or widen the receiving type to accept null.
    • ChainVM gains 'hederavm'. An exhaustive switch over ChainVM with a never
      fallthrough needs the new case.
    • GET /config/v2 no longer accepts currency: "degen" or "usdh", and GET /prices/rates
      no longer returns DEGEN. Remove references to those literals; "ausd" is now accepted.

    Added

    • GET /deposit-addresses/v2 returns a deposit address with its deposits and sweeps
      history, and POST /deposit-addresses/{depositAddressId}/disable/v2 disables one.
      /quote and /quote/v2 responses now carry requestId and, on deposit-address steps,
      depositAddressId.
    • Quote request options: subsidizationBps (share of each sponsored fee component the
      sponsor covers, applied before maxSubsidizationAmount), indicativeQuote,
      referencePrice, useRouteRacing and routeRacingMinUsdSize. subsidizationBps is
      echoed back in feeSponsorship on quotes and requests.
    • GET /requests/v3 accepts a referrer filter (requires apiKey) and returns apiKeyName
      and blockedAddresses to the request's creator integrator. GET /requests/v2 responses
      carry a deprecation block with its sunset and successor.
    • MANUAL_REFUND_REQUIRED joins refundFailReason; GET /intents/status/v3 now reports
      failReason and refundFailReason; GET /withdrawals/status returns txHash;
      hederavm joins the chain VM types.

    Deprecated

    • The strict quote parameter is ignored by /quote/v2; deposit-address creation follows
      the requested trade type.

@relayprotocol/relay-kit-ui@12.0.0

Major Changes

  • c7ba781: paths and routes now track the current Relay API. Three endpoints are gone, request
    amount fields are nullable, and deposit addresses, fee sponsorship and route racing gained
    new options.

    Breaking

    • /execute/swap, /requests/{requestId}/signature and /requests/{requestId}/signature/v2
      are removed from paths and from the exported routes array. Quotes come from
      POST /quote/v2. SwapBreakdown and Execute['breakdown'] are unchanged — the SDK now
      declares that shape directly instead of deriving it from /execute/swap.
    • On GET /requests/v2 and GET /requests/v3, amount-bearing fields are now string | null
      rather than string | undefined: appFees[] / paidAppFees[] (recipient, bps,
      amount, amountUsd, amountUsdCurrent), data.fees.* (usd, amount,
      amountFormatted) and data.route.* currency amounts (amount, amountFormatted,
      amountUsd, minimumAmount). This reaches useRequests, queryRequests and
      useDepositAddressStatus. Passing one of these into a string | undefined slot no longer
      compiles — use ?? undefined, or widen the receiving type to accept null.
    • ChainVM gains 'hederavm'. An exhaustive switch over ChainVM with a never
      fallthrough needs the new case.
    • GET /config/v2 no longer accepts currency: "degen" or "usdh", and GET /prices/rates
      no longer returns DEGEN. Remove references to those literals; "ausd" is now accepted.

    Added

    • GET /deposit-addresses/v2 returns a deposit address with its deposits and sweeps
      history, and POST /deposit-addresses/{depositAddressId}/disable/v2 disables one.
      /quote and /quote/v2 responses now carry requestId and, on deposit-address steps,
      depositAddressId.
    • Quote request options: subsidizationBps (share of each sponsored fee component the
      sponsor covers, applied before maxSubsidizationAmount), indicativeQuote,
      referencePrice, useRouteRacing and routeRacingMinUsdSize. subsidizationBps is
      echoed back in feeSponsorship on quotes and requests.
    • GET /requests/v3 accepts a referrer filter (requires apiKey) and returns apiKeyName
      and blockedAddresses to the request's creator integrator. GET /requests/v2 responses
      carry a deprecation block with its sunset and successor.
    • MANUAL_REFUND_REQUIRED joins refundFailReason; GET /intents/status/v3 now reports
      failReason and refundFailReason; GET /withdrawals/status returns txHash;
      hederavm joins the chain VM types.

    Deprecated

    • The strict quote parameter is ignored by /quote/v2; deposit-address creation follows
      the requested trade type.

Patch Changes

  • Updated dependencies [c7ba781]
    • @relayprotocol/relay-kit-hooks@5.0.0
    • @relayprotocol/relay-sdk@8.0.0

@relayprotocol/relay-bitcoin-wallet-adapter@21.0.0

Patch Changes

  • Updated dependencies [c7ba781]
    • @relayprotocol/relay-sdk@8.0.0

@relayprotocol/relay-ethers-wallet-adapter@33.0.0

Patch Changes

  • Updated dependencies [c7ba781]
    • @relayprotocol/relay-sdk@8.0.0

@relayprotocol/relay-lighter-wallet-adapter@4.0.0

Patch Changes

  • Updated dependencies [c7ba781]
    • @relayprotocol/relay-sdk@8.0.0

@relayprotocol/relay-svm-wallet-adapter@22.0.0

Patch Changes

  • Updated dependencies [c7ba781]
    • @relayprotocol/relay-sdk@8.0.0

@relayprotocol/relay-ton-wallet-adapter@4.0.0

Patch Changes

  • Updated dependencies [c7ba781]
    • @relayprotocol/relay-sdk@8.0.0

@relayprotocol/relay-tron-wallet-adapter@10.0.0

Patch Changes

  • Updated dependencies [c7ba781]
    • @relayprotocol/relay-sdk@8.0.0

@vercel

vercel Bot commented Sep 8, 2026

Copy link
Copy Markdown
Contributor

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated
relay-sdk-demo Ready Ready Preview Sep 8, 2026 5:42pm UTC

Request Review

@pedromcunha
pedromcunha merged commit e89f53a into main Sep 8, 2026
5 of 7 checks passed
@pedromcunha
pedromcunha deleted the changeset-release/main branch September 8, 2026 17:45
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant