From c434f2c4036dbd4a183c6ef962ec35b6b8632347 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 27 Apr 2026 09:16:23 +0000 Subject: [PATCH] Version Packages --- .changeset/fix-zero-gas-value.md | 5 ----- .changeset/fix-zod-runtime-dep.md | 5 ----- .changeset/old-wolves-bake.md | 5 ----- packages/sdk/CHANGELOG.md | 11 +++++++++++ packages/sdk/package.json | 2 +- 5 files changed, 12 insertions(+), 16 deletions(-) delete mode 100644 .changeset/fix-zero-gas-value.md delete mode 100644 .changeset/fix-zod-runtime-dep.md delete mode 100644 .changeset/old-wolves-bake.md diff --git a/.changeset/fix-zero-gas-value.md b/.changeset/fix-zero-gas-value.md deleted file mode 100644 index a11c48f..0000000 --- a/.changeset/fix-zero-gas-value.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@across-protocol/app-sdk": patch ---- - -Fix `executeSwapQuote` passing `gas: 0n` to the simulation call when `swapTx.gas` is zero. Some RPC providers (e.g. Alchemy on testnets) reject `eth_call` with `gas: "0x0"` as `IntrinsicGasTooLowError`. Zero-ish gas values are now treated as unset. diff --git a/.changeset/fix-zod-runtime-dep.md b/.changeset/fix-zod-runtime-dep.md deleted file mode 100644 index 5da430a..0000000 --- a/.changeset/fix-zod-runtime-dep.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@across-protocol/app-sdk": patch ---- - -Fix unresolved `zod` import at build time by moving it from `devDependencies` to `dependencies`. The SDK imports `zod` at runtime (in `api/` modules), so consumers without `zod` transitively in their tree previously failed to build. diff --git a/.changeset/old-wolves-bake.md b/.changeset/old-wolves-bake.md deleted file mode 100644 index f02b756..0000000 --- a/.changeset/old-wolves-bake.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@across-protocol/app-sdk": minor ---- - -fix: validate solana addresses for actions diff --git a/packages/sdk/CHANGELOG.md b/packages/sdk/CHANGELOG.md index d012b22..a6fb5ae 100644 --- a/packages/sdk/CHANGELOG.md +++ b/packages/sdk/CHANGELOG.md @@ -1,5 +1,16 @@ # @across-protocol/app-sdk +## 0.6.0 + +### Minor Changes + +- 97c815a: fix: validate solana addresses for actions + +### Patch Changes + +- 9c84010: Fix `executeSwapQuote` passing `gas: 0n` to the simulation call when `swapTx.gas` is zero. Some RPC providers (e.g. Alchemy on testnets) reject `eth_call` with `gas: "0x0"` as `IntrinsicGasTooLowError`. Zero-ish gas values are now treated as unset. +- 76a569d: Fix unresolved `zod` import at build time by moving it from `devDependencies` to `dependencies`. The SDK imports `zod` at runtime (in `api/` modules), so consumers without `zod` transitively in their tree previously failed to build. + ## 0.5.0 ### Minor Changes diff --git a/packages/sdk/package.json b/packages/sdk/package.json index 6674291..9d3d8d4 100644 --- a/packages/sdk/package.json +++ b/packages/sdk/package.json @@ -1,6 +1,6 @@ { "name": "@across-protocol/app-sdk", - "version": "0.5.0", + "version": "0.6.0", "main": "./dist/index.js", "type": "module", "description": "The official SDK for integrating Across bridge into your dapp.",