Skip to content

Commit fd97406

Browse files
authored
chore: fix typos (#7180)
1 parent c336de3 commit fd97406

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

packages/thirdweb/src/extensions/prebuilts/deploy-published.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ export async function deployContractfromDeployMetadata(
308308
method,
309309
params: normalizeFunctionParams(method, initializeParams),
310310
});
311-
// asumption here is that the factory address returns the deployed proxy address
311+
// assumption here is that the factory address returns the deployed proxy address
312312
const address = await simulateTransaction({
313313
transaction: deployTx,
314314
});

packages/thirdweb/src/extensions/prebuilts/get-required-transactions.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ async function getTransactionsForImplementation(options: {
140140
options;
141141

142142
if (deployMetadata.name === "MarketplaceV3") {
143-
return getTransactionsForMaketplaceV3(options);
143+
return getTransactionsForMarketplaceV3(options);
144144
}
145145

146146
if (deployMetadata.routerType === "dynamic") {
@@ -173,7 +173,7 @@ async function getTransactionsForImplementation(options: {
173173
return result ? [result] : [];
174174
}
175175

176-
async function getTransactionsForMaketplaceV3(options: {
176+
async function getTransactionsForMarketplaceV3(options: {
177177
chain: Chain;
178178
client: ThirdwebClient;
179179
}): Promise<DeployTransactionResult[]> {

packages/thirdweb/src/utils/extensions/drops/process-override-list.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ export async function processOverrideList(options: {
9090
client: options.client,
9191
files: [stringify(options.overrides)],
9292
});
93-
// 7. assmeble the final sharded merkle tree info
93+
// 7. assemble the final sharded merkle tree info
9494
const shardedMerkleInfo: ShardedMerkleTreeInfo = {
9595
merkleRoot: tree.getHexRoot(),
9696
baseUri,

0 commit comments

Comments
 (0)