We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 08fe542 commit 842c4d9Copy full SHA for 842c4d9
packages/thirdweb/src/extensions/prebuilts/process-ref-deployments.ts
@@ -42,7 +42,7 @@ export async function processRefDeployments(
42
const salt =
43
contracts[0]?.salt && contracts[0]?.salt.length > 0
44
? contracts[0]?.salt
45
- : undefined;
+ : "thirdweb";
46
47
const addr = await deployPublishedContract({
48
client,
@@ -64,7 +64,7 @@ export async function processRefDeployments(
64
const addressArray = [];
65
66
for (const c of contracts) {
67
- const salt = c?.salt && c?.salt.length > 0 ? c?.salt : undefined;
+ const salt = c?.salt && c?.salt.length > 0 ? c?.salt : "thirdweb";
68
69
addressArray.push(
70
await deployPublishedContract({
0 commit comments