anymal-protocol 1.0.157 → 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 +10 -0
- package/dist/index.mjs +10 -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,
|
|
@@ -3119,6 +3128,7 @@ function useCoinbaseMintOrgAnymalNFT() {
|
|
|
3119
3128
|
functionName: "submitMetadataByCampaignName",
|
|
3120
3129
|
args
|
|
3121
3130
|
});
|
|
3131
|
+
console.log({ args });
|
|
3122
3132
|
const executeArgs = [validationContractAddress, callData];
|
|
3123
3133
|
const result = await sendOperationFn(
|
|
3124
3134
|
evmAddress,
|
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,
|
|
@@ -3036,6 +3045,7 @@ function useCoinbaseMintOrgAnymalNFT() {
|
|
|
3036
3045
|
functionName: "submitMetadataByCampaignName",
|
|
3037
3046
|
args
|
|
3038
3047
|
});
|
|
3048
|
+
console.log({ args });
|
|
3039
3049
|
const executeArgs = [validationContractAddress, callData];
|
|
3040
3050
|
const result = await sendOperationFn(
|
|
3041
3051
|
evmAddress,
|
package/package.json
CHANGED