@coinbase/cdp-sdk 1.48.1 → 1.48.3
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/CHANGELOG.md +12 -0
- package/_cjs/version.js +1 -1
- package/_esm/version.js +1 -1
- package/_types/version.d.ts +1 -1
- package/package.json +2 -1
- package/version.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# CDP SDK Changelog
|
|
2
2
|
|
|
3
|
+
## 1.48.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#691](https://github.com/coinbase/cdp-sdk/pull/691) [`dfba138`](https://github.com/coinbase/cdp-sdk/commit/dfba138cd67a157317ada8831930245a172ff719) Thanks [@sddioulde](https://github.com/sddioulde)! - Added bs58 to dependencies in typescript/src/package.json
|
|
8
|
+
|
|
9
|
+
## 1.48.2
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- e937588: Add getDelegationForEndUser method to EndUserClient for retrieving active delegation details
|
|
14
|
+
|
|
3
15
|
## 1.48.1
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/_cjs/version.js
CHANGED
package/_esm/version.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const version = "1.48.
|
|
1
|
+
export const version = "1.48.3";
|
|
2
2
|
//# sourceMappingURL=version.js.map
|
package/_types/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const version = "1.48.
|
|
1
|
+
export declare const version = "1.48.3";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@coinbase/cdp-sdk",
|
|
3
|
-
"version": "1.48.
|
|
3
|
+
"version": "1.48.3",
|
|
4
4
|
"description": "SDK for interacting with the Coinbase Developer Platform Wallet API",
|
|
5
5
|
"main": "./_cjs/index.js",
|
|
6
6
|
"module": "./_esm/index.js",
|
|
@@ -24,6 +24,7 @@
|
|
|
24
24
|
"abitype": "1.0.6",
|
|
25
25
|
"axios": "1.13.6",
|
|
26
26
|
"axios-retry": "^4.5.0",
|
|
27
|
+
"bs58": "^6.0.0",
|
|
27
28
|
"jose": "^6.2.0",
|
|
28
29
|
"md5": "^2.3.0",
|
|
29
30
|
"uncrypto": "^0.1.3",
|
package/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const version = "1.48.
|
|
1
|
+
export const version = "1.48.3";
|