Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,10 @@
# @openzeppelin/relayer-sdk

<<<<<<< HEAD
=======

## 1.8.0 (2025-12-02)

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

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

- feat: introduce rpc client logic and examples ([#225](https://github.com/OpenZeppelin/openzeppelin-relayer-sdk/pull/225))
Expand Down
24 changes: 7 additions & 17 deletions src/models/solana-rpc-result.ts
Original file line number Diff line number Diff line change
@@ -1,29 +1,19 @@
// This file is a workaround to generate the desired output.
// Workaround for https://github.com/OpenAPITools/openapi-generator/issues/13417

// May contain unused imports in some cases
// @ts-ignore
// @ts-expect-error May contain unused imports in some cases
import type { FeeEstimateResult } from './fee-estimate-result';
// May contain unused imports in some cases
// @ts-ignore
// @ts-expect-error May contain unused imports in some cases
import type { GetFeaturesEnabledResult } from './get-features-enabled-result';
// May contain unused imports in some cases
// @ts-ignore
import type { GetSupportedTokensItem } from './get-supported-tokens-item';
// May contain unused imports in some cases
// @ts-ignore
// @ts-expect-error May contain unused imports in some cases
import type { GetSupportedTokensResult } from './get-supported-tokens-result';
// May contain unused imports in some cases
// @ts-ignore
// @ts-expect-error May contain unused imports in some cases
import type { PrepareTransactionResult } from './prepare-transaction-result';
// May contain unused imports in some cases
// @ts-ignore
// @ts-expect-error May contain unused imports in some cases
import type { SignAndSendTransactionResult } from './sign-and-send-transaction-result';
// May contain unused imports in some cases
// @ts-ignore
// @ts-expect-error May contain unused imports in some cases
import type { SignTransactionResult } from './sign-transaction-result';
// May contain unused imports in some cases
// @ts-ignore
// @ts-expect-error May contain unused imports in some cases
import type { TransferTransactionResult } from './transfer-transaction-result';

type TransferTransactionResultWithMethod = TransferTransactionResult & {
Expand Down