Skip to content

Commit 0fd6902

Browse files
committed
lint
1 parent 26df50c commit 0fd6902

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

packages/thirdweb/src/bridge/Buy.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ import type { Address as ox__Address } from "ox";
22
import { defineChain } from "../chains/utils.js";
33
import type { ThirdwebClient } from "../client/client.js";
44
import { getClientFetch } from "../utils/fetch.js";
5+
import { stringify } from "../utils/json.js";
56
import { UNIVERSAL_BRIDGE_URL } from "./constants.js";
67
import type { PreparedQuote, Quote } from "./types/Quote.js";
7-
import { stringify } from "../utils/json.js";
88

99
/**
1010
* Retrieves a Universal Bridge quote for the provided buy intent. The quote will specify the necessary `originAmount` to receive the desired `destinationAmount`, which is specified with the `buyAmountWei` option.
@@ -158,13 +158,13 @@ export declare namespace quote {
158158
client: ThirdwebClient;
159159
maxSteps?: number;
160160
} & (
161-
| {
161+
| {
162162
buyAmountWei: bigint;
163163
}
164-
| {
164+
| {
165165
amount: bigint;
166166
}
167-
);
167+
);
168168

169169
type Result = Quote & {
170170
intent: {

packages/thirdweb/src/bridge/Sell.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ import type { Address as ox__Address } from "ox";
22
import { defineChain } from "../chains/utils.js";
33
import type { ThirdwebClient } from "../client/client.js";
44
import { getClientFetch } from "../utils/fetch.js";
5+
import { stringify } from "../utils/json.js";
56
import { UNIVERSAL_BRIDGE_URL } from "./constants.js";
67
import type { PreparedQuote, Quote } from "./types/Quote.js";
7-
import { stringify } from "../utils/json.js";
88

99
/**
1010
* Retrieves a Universal Bridge quote for the provided sell intent. The quote will specify the expected `destinationAmount` that will be received in exchange for the specified `originAmount`, which is specified with the `sellAmountWei` option.

0 commit comments

Comments
 (0)