anymal-protocol 1.0.87 → 1.0.88
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 +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1739,7 +1739,7 @@ function useProcessPartialKibblePayment() {
|
|
|
1739
1739
|
timeout: 3e4,
|
|
1740
1740
|
retryCount: 10
|
|
1741
1741
|
});
|
|
1742
|
-
return { success: true, message: receipt };
|
|
1742
|
+
return { success: true, message: receipt.userOpHash };
|
|
1743
1743
|
} catch (error) {
|
|
1744
1744
|
const errorMessage = error instanceof Error ? error.message : "An unknown error occurred";
|
|
1745
1745
|
return {
|
package/dist/index.mjs
CHANGED
|
@@ -1676,7 +1676,7 @@ function useProcessPartialKibblePayment() {
|
|
|
1676
1676
|
timeout: 3e4,
|
|
1677
1677
|
retryCount: 10
|
|
1678
1678
|
});
|
|
1679
|
-
return { success: true, message: receipt };
|
|
1679
|
+
return { success: true, message: receipt.userOpHash };
|
|
1680
1680
|
} catch (error) {
|
|
1681
1681
|
const errorMessage = error instanceof Error ? error.message : "An unknown error occurred";
|
|
1682
1682
|
return {
|
package/package.json
CHANGED