You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: "The function to call on the contract",
29
+
description: `The function to call on the contract. It is highly recommended to provide a full function signature, such as "function mintTo(address to, uint256 amount)", to avoid ambiguity and to skip ABI resolution.`,
30
+
examples: ["function mintTo(address to, uint256 amount)"],
30
31
}),
31
32
args: Type.Array(Type.Any(),{
32
-
description: "The arguments to call on the function",
33
+
description:
34
+
"An array of arguments to provide the function. Supports: numbers, strings, arrays, objects. Do not provide: BigNumber, bigint, Date objects",
35
+
examples: [
36
+
[
37
+
1730380951,
38
+
"0x09530565aC1Ce08C3621f5B24Fca6d9a76574620",
39
+
["a","b","c"],
40
+
],
41
+
],
33
42
}),
34
43
...txOverridesWithValueSchema.properties,
35
44
abi: Type.Optional(abiArraySchema),
@@ -85,7 +94,8 @@ export async function writeToContract(fastify: FastifyInstance) {
0 commit comments