@volr/sdk-core 0.1.24 → 0.1.26
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/README.md +1 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1065,6 +1065,8 @@ type RelayResult = {
|
|
|
1065
1065
|
txId: string;
|
|
1066
1066
|
status: 'FAILED';
|
|
1067
1067
|
txHash?: `0x${string}`;
|
|
1068
|
+
/** Optional human-readable failure reason, if available */
|
|
1069
|
+
reason?: string;
|
|
1068
1070
|
};
|
|
1069
1071
|
|
|
1070
1072
|
declare function computeCallsHash(calls: Call[]): `0x${string}`;
|
package/dist/index.d.ts
CHANGED
|
@@ -1065,6 +1065,8 @@ type RelayResult = {
|
|
|
1065
1065
|
txId: string;
|
|
1066
1066
|
status: 'FAILED';
|
|
1067
1067
|
txHash?: `0x${string}`;
|
|
1068
|
+
/** Optional human-readable failure reason, if available */
|
|
1069
|
+
reason?: string;
|
|
1068
1070
|
};
|
|
1069
1071
|
|
|
1070
1072
|
declare function computeCallsHash(calls: Call[]): `0x${string}`;
|