Skip to content

Commit d87fbf7

Browse files
committed
correct contract id
1 parent 2f209f8 commit d87fbf7

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

packages/thirdweb/src/contract/deployment/utils/bootstrap.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ export async function deployMultisig(options: ClientAndChainAndAccount) {
190190

191191
return getOrDeployInfraContract({
192192
...options,
193-
contractId: "Multisig",
193+
contractId: "MultiSig",
194194
constructorParams: { _signers: [TW_SIGNER_1, TW_SIGNER_2, TW_SIGNER_3], _requiredApprovals: MULTISIG_REQUIRED_APPROVALS },
195195
});
196196
}

packages/thirdweb/src/contract/deployment/utils/infra.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export type InfraContractId =
1717
| "ForwarderEOAOnly"
1818
| "TWCloneFactory"
1919
| "MintFeeManagerCore"
20-
| "Multisig"
20+
| "MultiSig"
2121
| (string & {});
2222

2323
type GetDeployedInfraParams = Prettify<

packages/thirdweb/src/contract/deployment/utils/mintfee-manager.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export async function getDeployedMintFeeManagerContract(args: ClientAndChain) {
99
// check if Multisig is deployed
1010
const multisig = await getDeployedInfraContract({
1111
...args,
12-
contractId: "Multisig",
12+
contractId: "MultiSig",
1313
constructorParams: { _signers: [TW_SIGNER_1, TW_SIGNER_2, TW_SIGNER_3], _requiredApprovals: MULTISIG_REQUIRED_APPROVALS },
1414
publisher: "0x6453a486d52e0EB6E79Ec4491038E2522a926936", // TODO: remove before merging
1515
});
@@ -37,7 +37,7 @@ export async function getPredictedMintFeeManagerAddress(args: ClientAndChain) {
3737
// compute multisig address
3838
const multisig = await getPredictedInfraContractAddress({
3939
...args,
40-
contractId: "Multisig",
40+
contractId: "MultiSig",
4141
constructorParams: { _signers: [TW_SIGNER_1, TW_SIGNER_2, TW_SIGNER_3], _requiredApprovals: MULTISIG_REQUIRED_APPROVALS },
4242
publisher: "0x6453a486d52e0EB6E79Ec4491038E2522a926936", // TODO: remove before merging
4343
});
@@ -60,7 +60,7 @@ export async function getPredictedMultisigAddress(args: ClientAndChain) {
6060
// compute multisig address
6161
const multisig = await getPredictedInfraContractAddress({
6262
...args,
63-
contractId: "Multisig",
63+
contractId: "MultiSig",
6464
constructorParams: { _signers: [TW_SIGNER_1, TW_SIGNER_2, TW_SIGNER_3], _requiredApprovals: MULTISIG_REQUIRED_APPROVALS },
6565
publisher: "0x6453a486d52e0EB6E79Ec4491038E2522a926936", // TODO: remove before merging
6666
});

0 commit comments

Comments
 (0)