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 df3c30b commit c541070Copy full SHA for c541070
packages/thirdweb/src/utils/abi/normalizeFunctionParams.ts
@@ -14,6 +14,7 @@ export function normalizeFunctionParams(
14
abiFunction.inputs.map((input, index) => {
15
const value = input.name;
16
if (value === undefined || value.length === 0) {
17
+ // TODO: Handle multiple unnamed params
18
if (!params["*"]) {
19
throw new Error(
20
`Missing named parameter for ${"name" in abiFunction ? abiFunction.name : "constructor"} at index ${index}`,
0 commit comments