From 485add3ea0e5619bc6ebe5559d86f7dfc0f4638d Mon Sep 17 00:00:00 2001 From: joeybright53 Date: Wed, 28 May 2025 14:03:43 +0800 Subject: [PATCH] chore: fix typos --- .../thirdweb/src/extensions/prebuilts/deploy-published.ts | 2 +- .../src/extensions/prebuilts/get-required-transactions.ts | 4 ++-- .../src/utils/extensions/drops/process-override-list.ts | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/thirdweb/src/extensions/prebuilts/deploy-published.ts b/packages/thirdweb/src/extensions/prebuilts/deploy-published.ts index 9a714305700..d862311cd8f 100644 --- a/packages/thirdweb/src/extensions/prebuilts/deploy-published.ts +++ b/packages/thirdweb/src/extensions/prebuilts/deploy-published.ts @@ -308,7 +308,7 @@ export async function deployContractfromDeployMetadata( method, params: normalizeFunctionParams(method, initializeParams), }); - // asumption here is that the factory address returns the deployed proxy address + // assumption here is that the factory address returns the deployed proxy address const address = await simulateTransaction({ transaction: deployTx, }); diff --git a/packages/thirdweb/src/extensions/prebuilts/get-required-transactions.ts b/packages/thirdweb/src/extensions/prebuilts/get-required-transactions.ts index 81d2616d750..15036cf662a 100644 --- a/packages/thirdweb/src/extensions/prebuilts/get-required-transactions.ts +++ b/packages/thirdweb/src/extensions/prebuilts/get-required-transactions.ts @@ -140,7 +140,7 @@ async function getTransactionsForImplementation(options: { options; if (deployMetadata.name === "MarketplaceV3") { - return getTransactionsForMaketplaceV3(options); + return getTransactionsForMarketplaceV3(options); } if (deployMetadata.routerType === "dynamic") { @@ -173,7 +173,7 @@ async function getTransactionsForImplementation(options: { return result ? [result] : []; } -async function getTransactionsForMaketplaceV3(options: { +async function getTransactionsForMarketplaceV3(options: { chain: Chain; client: ThirdwebClient; }): Promise { diff --git a/packages/thirdweb/src/utils/extensions/drops/process-override-list.ts b/packages/thirdweb/src/utils/extensions/drops/process-override-list.ts index 04c851a5e34..3c503729137 100644 --- a/packages/thirdweb/src/utils/extensions/drops/process-override-list.ts +++ b/packages/thirdweb/src/utils/extensions/drops/process-override-list.ts @@ -90,7 +90,7 @@ export async function processOverrideList(options: { client: options.client, files: [stringify(options.overrides)], }); - // 7. assmeble the final sharded merkle tree info + // 7. assemble the final sharded merkle tree info const shardedMerkleInfo: ShardedMerkleTreeInfo = { merkleRoot: tree.getHexRoot(), baseUri,