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
2 changes: 1 addition & 1 deletion packages/thirdweb/src/rpc/rpc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ export function getRpcClient(
reject = reject_;
});
inflightRequests.set(requestKey, promise);
// @ts-expect-error - they *are* definitely assgined within the promise constructor
// @ts-expect-error - they *are* definitely assigned within the promise constructor
pendingBatch.push({ request, resolve, reject, requestKey });
if (batchSize > 1) {
// if there is no timeout, set one
Expand Down
2 changes: 1 addition & 1 deletion packages/thirdweb/src/wallets/in-app/web/ecosystem.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ import { createInAppWallet } from "../core/wallet/in-app-core.js";
*
* ### Connect to a restricted ecosystem wallet with your designated partner ID
*
* The parnter ID will be provided to you by the ecosystem with which you're integrating.
* The partner ID will be provided to you by the ecosystem with which you're integrating.
*
* ```ts
* import { ecosystemWallet } from "thirdweb/wallets";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ export class IFrameWallet implements IWebWallet {
};

if (tx.maxFeePerGas) {
// ethers (in the iframe) rejects any type 0 trasaction with unknown keys
// ethers (in the iframe) rejects any type 0 transaction with unknown keys
// TODO remove this once iframe is upgraded to v5
transaction.accessList = tx.accessList;
transaction.maxFeePerGas = tx.maxFeePerGas;
Expand Down