Skip to content

Commit 38f6467

Browse files
committed
feat: final
1 parent 5c0d3a0 commit 38f6467

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

sdk/src/gateway/layerzero.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,7 @@ export class LayerZeroGatewayClient extends GatewayApiClient {
384384
args: [sendParam, false],
385385
});
386386

387-
const gasFee = await this.getL0CreateOrderGasCost(params, sendParam, sendFees, fromChain);
387+
// const gasFee = await this.getL0CreateOrderGasCost(params, sendParam, sendFees, fromChain);
388388

389389
return {
390390
type: GatewayOrderType.CrossChainSwap,
@@ -398,7 +398,7 @@ export class LayerZeroGatewayClient extends GatewayApiClient {
398398
feeBreakdown: {
399399
nativeFee: sendFees.nativeFee,
400400
lzTokenFee: sendFees.lzTokenFee,
401-
gasFee: gasFee,
401+
// gasFee: gasFee,
402402
},
403403
},
404404
};

sdk/src/gateway/types/crosschain-swap.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ export type CrossChainSwapQuoteParams<T = {}> = BaseExecuteQuoteParams<T> & {
3636
export type CrossChainFeeBreakdown = {
3737
nativeFee: bigint;
3838
lzTokenFee: bigint;
39-
gasFee: bigint;
39+
// gasFee: bigint;
4040
};
4141

4242
export interface CrossChainSwapQuote {

0 commit comments

Comments
 (0)