anymal-protocol 1.0.158 → 1.0.159
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 +9 -0
- package/dist/index.mjs +9 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -509,6 +509,15 @@ function useSendCoinbaseUserOperation() {
|
|
|
509
509
|
if (!evmAddress || !contractAddress || !abi || !functionName) {
|
|
510
510
|
return { success: false, message: "Missing required information" };
|
|
511
511
|
}
|
|
512
|
+
console.log({
|
|
513
|
+
isProduction,
|
|
514
|
+
evmAddress,
|
|
515
|
+
contractAddress,
|
|
516
|
+
abi,
|
|
517
|
+
functionName,
|
|
518
|
+
args,
|
|
519
|
+
publicClient
|
|
520
|
+
});
|
|
512
521
|
try {
|
|
513
522
|
await publicClient.simulateContract({
|
|
514
523
|
address: contractAddress,
|
package/dist/index.mjs
CHANGED
|
@@ -426,6 +426,15 @@ function useSendCoinbaseUserOperation() {
|
|
|
426
426
|
if (!evmAddress || !contractAddress || !abi || !functionName) {
|
|
427
427
|
return { success: false, message: "Missing required information" };
|
|
428
428
|
}
|
|
429
|
+
console.log({
|
|
430
|
+
isProduction,
|
|
431
|
+
evmAddress,
|
|
432
|
+
contractAddress,
|
|
433
|
+
abi,
|
|
434
|
+
functionName,
|
|
435
|
+
args,
|
|
436
|
+
publicClient
|
|
437
|
+
});
|
|
429
438
|
try {
|
|
430
439
|
await publicClient.simulateContract({
|
|
431
440
|
address: contractAddress,
|
package/package.json
CHANGED