clutch-hub-sdk-js 1.1.0 → 1.2.0
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/.releaserc.json +11 -0
- package/CHANGELOG.md +2 -2
- package/dist/sdk.d.ts +1 -0
- package/dist/sdk.js +1 -0
- package/package.json +1 -1
- package/src/sdk.ts +1 -0
package/.releaserc.json
CHANGED
|
@@ -72,6 +72,17 @@
|
|
|
72
72
|
}
|
|
73
73
|
],
|
|
74
74
|
"@semantic-release/npm",
|
|
75
|
+
[
|
|
76
|
+
"@semantic-release/git",
|
|
77
|
+
{
|
|
78
|
+
"assets": [
|
|
79
|
+
"package.json",
|
|
80
|
+
"package-lock.json",
|
|
81
|
+
"CHANGELOG.md"
|
|
82
|
+
],
|
|
83
|
+
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
|
|
84
|
+
}
|
|
85
|
+
],
|
|
75
86
|
"@semantic-release/github"
|
|
76
87
|
]
|
|
77
88
|
}
|
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
## [1.
|
|
1
|
+
## [1.2.0](https://github.com/clutch-protocol/clutch-hub-sdk-js/compare/v1.1.0...v1.2.0) (2025-08-23)
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
### Features
|
|
5
5
|
|
|
6
|
-
* **
|
|
6
|
+
* **ci:** enable git commits back to repository in semantic-release ([66016ac](https://github.com/clutch-protocol/clutch-hub-sdk-js/commit/66016aceb0418ef0506ab55c024eaa37d6b28bee))
|
package/dist/sdk.d.ts
CHANGED
|
@@ -15,6 +15,7 @@ export interface UnsignedTransaction {
|
|
|
15
15
|
}
|
|
16
16
|
/**
|
|
17
17
|
* SDK for interacting with the Clutch Hub API and signing transactions.
|
|
18
|
+
* Provides client-side transaction signing and blockchain interaction capabilities.
|
|
18
19
|
*/
|
|
19
20
|
export declare class ClutchHubSdk {
|
|
20
21
|
private apiClient;
|
package/dist/sdk.js
CHANGED
|
@@ -8,6 +8,7 @@ if (typeof window !== 'undefined' && !window.Buffer) {
|
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
10
|
* SDK for interacting with the Clutch Hub API and signing transactions.
|
|
11
|
+
* Provides client-side transaction signing and blockchain interaction capabilities.
|
|
11
12
|
*/
|
|
12
13
|
export class ClutchHubSdk {
|
|
13
14
|
constructor(apiUrl, publicKey) {
|
package/package.json
CHANGED
package/src/sdk.ts
CHANGED
|
@@ -24,6 +24,7 @@ export interface UnsignedTransaction {
|
|
|
24
24
|
|
|
25
25
|
/**
|
|
26
26
|
* SDK for interacting with the Clutch Hub API and signing transactions.
|
|
27
|
+
* Provides client-side transaction signing and blockchain interaction capabilities.
|
|
27
28
|
*/
|
|
28
29
|
export class ClutchHubSdk {
|
|
29
30
|
private apiClient: AxiosInstance;
|