Skip to content

Commit e7f2f8e

Browse files
authored
fix: fixes build errors (#246)
fix: fixe build errors
1 parent eadabed commit e7f2f8e

File tree

2 files changed

+7
-21
lines changed

2 files changed

+7
-21
lines changed

CHANGELOG.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,10 @@
11
# @openzeppelin/relayer-sdk
22

3-
<<<<<<< HEAD
4-
=======
5-
63
## 1.8.0 (2025-12-02)
74

85
- feat: add headers to plugin context type ([#233](https://github.com/OpenZeppelin/openzeppelin-relayer-sdk/pull/233))
96
- fix: fix the failing build ([#236](https://github.com/OpenZeppelin/openzeppelin-relayer-sdk/pull/236))
107

11-
>>>>>>> main
128
## 1.7.0 (2025-11-10)
139

1410
- feat: introduce rpc client logic and examples ([#225](https://github.com/OpenZeppelin/openzeppelin-relayer-sdk/pull/225))

src/models/solana-rpc-result.ts

Lines changed: 7 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,19 @@
11
// This file is a workaround to generate the desired output.
22
// Workaround for https://github.com/OpenAPITools/openapi-generator/issues/13417
33

4-
// May contain unused imports in some cases
5-
// @ts-ignore
4+
// @ts-expect-error May contain unused imports in some cases
65
import type { FeeEstimateResult } from './fee-estimate-result';
7-
// May contain unused imports in some cases
8-
// @ts-ignore
6+
// @ts-expect-error May contain unused imports in some cases
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
8+
// @ts-expect-error May contain unused imports in some cases
159
import type { GetSupportedTokensResult } from './get-supported-tokens-result';
16-
// May contain unused imports in some cases
17-
// @ts-ignore
10+
// @ts-expect-error May contain unused imports in some cases
1811
import type { PrepareTransactionResult } from './prepare-transaction-result';
19-
// May contain unused imports in some cases
20-
// @ts-ignore
12+
// @ts-expect-error May contain unused imports in some cases
2113
import type { SignAndSendTransactionResult } from './sign-and-send-transaction-result';
22-
// May contain unused imports in some cases
23-
// @ts-ignore
14+
// @ts-expect-error May contain unused imports in some cases
2415
import type { SignTransactionResult } from './sign-transaction-result';
25-
// May contain unused imports in some cases
26-
// @ts-ignore
16+
// @ts-expect-error May contain unused imports in some cases
2717
import type { TransferTransactionResult } from './transfer-transaction-result';
2818

2919
type TransferTransactionResultWithMethod = TransferTransactionResult & {

0 commit comments

Comments
 (0)