anymal-protocol 1.0.152 → 1.0.153
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +7 -0
- package/dist/index.mjs +7 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -483,6 +483,13 @@ function useSendCoinbaseUserOperation() {
|
|
|
483
483
|
);
|
|
484
484
|
const sendOperationFn = (0, import_react10.useCallback)(
|
|
485
485
|
async (evmAddress, contractAddress, abi, functionName, args) => {
|
|
486
|
+
console.log("sendOperationFn called with:", {
|
|
487
|
+
evmAddress,
|
|
488
|
+
contractAddress,
|
|
489
|
+
functionName,
|
|
490
|
+
args,
|
|
491
|
+
argsLength: args.length
|
|
492
|
+
});
|
|
486
493
|
if (!evmAddress || !contractAddress || !abi || !functionName) {
|
|
487
494
|
return { success: false, message: "Missing required information" };
|
|
488
495
|
}
|
package/dist/index.mjs
CHANGED
|
@@ -402,6 +402,13 @@ function useSendCoinbaseUserOperation() {
|
|
|
402
402
|
);
|
|
403
403
|
const sendOperationFn = useCallback10(
|
|
404
404
|
async (evmAddress, contractAddress, abi, functionName, args) => {
|
|
405
|
+
console.log("sendOperationFn called with:", {
|
|
406
|
+
evmAddress,
|
|
407
|
+
contractAddress,
|
|
408
|
+
functionName,
|
|
409
|
+
args,
|
|
410
|
+
argsLength: args.length
|
|
411
|
+
});
|
|
405
412
|
if (!evmAddress || !contractAddress || !abi || !functionName) {
|
|
406
413
|
return { success: false, message: "Missing required information" };
|
|
407
414
|
}
|
package/package.json
CHANGED