We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4af43cc commit 623aebdCopy full SHA for 623aebd
sdk/src/gateway/cross-chain-swap.ts
@@ -10,6 +10,7 @@ import {
10
OnrampWithSwapsExecuteQuoteParams,
11
OfframpWithSwapsExecuteQuoteParams,
12
ActionsParams,
13
+ TransactionParams,
14
} from './types';
15
import { SwapsClient } from './swaps';
16
import { getTokenAddress } from './tokens';
@@ -161,6 +162,10 @@ export class CrossChainSwapGatewayClient extends LayerZeroGatewayClient {
161
162
}
163
164
165
+ getTransactions(params: TransactionParams) {
166
+ return this.swapsClient.getTransactions(params);
167
+ }
168
+
169
private async getSwapsOnrampQuote(
170
params: GetQuoteParams<CrossChainSwapQuoteParamsExt>
171
): Promise<OnrampWithSwapsExecuteQuoteParams> {
0 commit comments