@volr/sdk-core 0.1.23 → 0.1.25

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.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}`;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@volr/sdk-core",
3
- "version": "0.1.23",
3
+ "version": "0.1.25",
4
4
  "description": "Volr SDK Core - Master key management and EVM crypto primitives",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",