Skip to content

Commit d6d1bc7

Browse files
committed
fix type error
1 parent 36a2de7 commit d6d1bc7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ export async function deployContractfromDeployMetadata(
147147
salt,
148148
} = options;
149149

150-
const processedImplParams: Record<string, string> = {};
150+
const processedImplParams: Record<string, string | string[]> = {};
151151
for (const key in implementationConstructorParams) {
152152
processedImplParams[key] = await processRefDeployments({
153153
client,
@@ -159,7 +159,7 @@ export async function deployContractfromDeployMetadata(
159159
});
160160
}
161161

162-
const processedInitializeParams: Record<string, string> = {};
162+
const processedInitializeParams: Record<string, string | string[]> = {};
163163
for (const key in initializeParams) {
164164
processedInitializeParams[key] = await processRefDeployments({
165165
client,

0 commit comments

Comments
 (0)