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
Original file line number Diff line number Diff line change
Expand Up @@ -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,
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ async function getTransactionsForImplementation(options: {
options;

if (deployMetadata.name === "MarketplaceV3") {
return getTransactionsForMaketplaceV3(options);
return getTransactionsForMarketplaceV3(options);
}

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

async function getTransactionsForMaketplaceV3(options: {
async function getTransactionsForMarketplaceV3(options: {
chain: Chain;
client: ThirdwebClient;
}): Promise<DeployTransactionResult[]> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down