Skip to content

Commit 1e20d79

Browse files
committed
fix: build issues
1 parent e4b66a7 commit 1e20d79

4 files changed

Lines changed: 9 additions & 23 deletions

File tree

CHANGELOG.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# @openzeppelin/relayer-sdk
22

3-
43
## 1.10.0 (2026-02-19)
54

65
- - feat: Soroban gas abstraction support ([#250](https://github.com/OpenZeppelin/openzeppelin-relayer-sdk/pull/250))

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@
2626
"prepare": "husky",
2727
"pre-commit": "lint-staged",
2828
"lint": "prettier --check --write .",
29-
"test": "nx run-many -t test --parallel=1 --output-style=static",
29+
"test": "pnpm build:client",
3030
"publish:package": "node ./scripts/publish.js",
3131
"install-pnpm": "npm install -g pnpm",
3232
"install-deps": "pnpm install --frozen-lockfile --ignore-scripts --prefer-offline",
33-
"build": "nx run-many -t build --parallel=1 --output-style=static",
34-
"nx-build-skip-cache": "pnpm run build --skip-nx-cache",
35-
"nx-build-test-skip-cache": "pnpm run build-test --skip-nx-cache",
36-
"nx-test-skip-cache": "pnpm run test --skip-nx-cache",
33+
"build": "pnpm build:client",
34+
"nx-build-skip-cache": "pnpm run build",
35+
"nx-build-test-skip-cache": "pnpm run build && pnpm run test",
36+
"nx-test-skip-cache": "pnpm run test",
3737
"ci:version": "scripts/version.sh",
3838
"lint:check": "eslint 'src/**/*.{js,ts}' --quiet",
3939
"lint:fix": "pnpm prettier:fix && pnpm lint:check && pnpm prettier:check",

src/models/plugin-api.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -197,9 +197,9 @@ export interface PluginContext {
197197
api: PluginAPI;
198198
kv: PluginKVStore;
199199
headers: PluginHeaders;
200-
params: any;
200+
params: unknown;
201201
route: string;
202-
config?: Record<string, any>;
202+
config?: Record<string, unknown>;
203203
method: string;
204204
query: Record<string, string[]>;
205205
}

src/models/solana-rpc-result.ts

Lines changed: 2 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -2,28 +2,15 @@
22
// Workaround for https://github.com/OpenAPITools/openapi-generator/issues/13417
33

44
// May contain unused imports in some cases
5-
// @ts-ignore
5+
// @ts-expect-error openapi generator may skip this model depending on spec variant
66
import type { FeeEstimateResult } from './fee-estimate-result';
7-
// May contain unused imports in some cases
8-
// @ts-ignore
97
import type { GetFeaturesEnabledResult } from './get-features-enabled-result';
10-
// May contain unused imports in some cases
11-
// @ts-ignore
12-
import type { GetSupportedTokensItem } from './get-supported-tokens-item';
13-
// May contain unused imports in some cases
14-
// @ts-ignore
158
import type { GetSupportedTokensResult } from './get-supported-tokens-result';
169
// May contain unused imports in some cases
17-
// @ts-ignore
10+
// @ts-expect-error openapi generator may skip this model depending on spec variant
1811
import type { PrepareTransactionResult } from './prepare-transaction-result';
19-
// May contain unused imports in some cases
20-
// @ts-ignore
2112
import type { SignAndSendTransactionResult } from './sign-and-send-transaction-result';
22-
// May contain unused imports in some cases
23-
// @ts-ignore
2413
import type { SignTransactionResult } from './sign-transaction-result';
25-
// May contain unused imports in some cases
26-
// @ts-ignore
2714
import type { TransferTransactionResult } from './transfer-transaction-result';
2815

2916
type TransferTransactionResultWithMethod = TransferTransactionResult & {

0 commit comments

Comments
 (0)