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,