From 24dd35384c8fddd897ebd52d432e6bc5ef4902cf Mon Sep 17 00:00:00 2001 From: gregfromstl Date: Tue, 20 May 2025 10:32:41 -0700 Subject: [PATCH] fix: bridge jsdoc to not mention ox --- .../(bridge)/routes/components/server/routes-table.tsx | 2 +- packages/thirdweb/src/bridge/Buy.ts | 2 +- packages/thirdweb/src/bridge/Sell.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/dashboard/src/app/(app)/(dashboard)/(bridge)/routes/components/server/routes-table.tsx b/apps/dashboard/src/app/(app)/(dashboard)/(bridge)/routes/components/server/routes-table.tsx index fc4efcadbb0..1e8f775edf5 100644 --- a/apps/dashboard/src/app/(app)/(dashboard)/(bridge)/routes/components/server/routes-table.tsx +++ b/apps/dashboard/src/app/(app)/(dashboard)/(bridge)/routes/components/server/routes-table.tsx @@ -57,7 +57,7 @@ async function getRoutesToRender(params: SearchParams) { } } // Temporary, will update this after the /routes endpoint - let routes = await getRoutes({ limit: 100_000 }); + let routes = await getRoutes({ limit: 500_000 }); const totalCount = routes.length; diff --git a/packages/thirdweb/src/bridge/Buy.ts b/packages/thirdweb/src/bridge/Buy.ts index bb13bca02a7..b4e2ffbc5f7 100644 --- a/packages/thirdweb/src/bridge/Buy.ts +++ b/packages/thirdweb/src/bridge/Buy.ts @@ -260,7 +260,7 @@ export declare namespace quote { * ``` * * ## Sending the transactions - * The `transactions` array is a series of [ox](https://oxlib.sh) EIP-1559 transactions that must be executed one after the other in order to fulfill the complete route. There are a few things to keep in mind when executing these transactions: + * The `transactions` array is a series of transactions ready to be executed (with `sendTransaction`) one after the other in order to fulfill the complete route. There are a few things to keep in mind when executing these transactions: * - Approvals will have the `approval` action specified. You can perform approvals with `sendAndConfirmTransaction`, then proceed to the next transaction. * - All transactions are assumed to be executed by the `sender` address, regardless of which chain they are on. The final transaction will use the `receiver` as the recipient address. * - If an `expiration` timestamp is provided, all transactions must be executed before that time to guarantee successful execution at the specified price. diff --git a/packages/thirdweb/src/bridge/Sell.ts b/packages/thirdweb/src/bridge/Sell.ts index a74b0af0b32..4ab038f0379 100644 --- a/packages/thirdweb/src/bridge/Sell.ts +++ b/packages/thirdweb/src/bridge/Sell.ts @@ -251,7 +251,7 @@ export declare namespace quote { * ``` * * ## Sending the transactions - * The `transactions` array is a series of [ox](https://oxlib.sh) EIP-1559 transactions that must be executed one after the other in order to fulfill the complete route. There are a few things to keep in mind when executing these transactions: + * The `transactions` array is a series of transactions ready to be executed (with `sendTransaction`) must be executed one after the other in order to fulfill the complete route. There are a few things to keep in mind when executing these transactions: * - Approvals will have the `approval` action specified. You can perform approvals with `sendAndConfirmTransaction`, then proceed to the next transaction. * - All transactions are assumed to be executed by the `sender` address, regardless of which chain they are on. The final transaction will use the `receiver` as the recipient address. * - If an `expiration` timestamp is provided, all transactions must be executed before that time to guarantee successful execution at the specified price.