coinbase-api 1.2.4 → 1.2.5
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 +2 -3
- package/package.json +15 -7
package/README.md
CHANGED
|
@@ -19,9 +19,6 @@
|
|
|
19
19
|
|
|
20
20
|
[1]: https://www.npmjs.com/package/coinbase-api
|
|
21
21
|
|
|
22
|
-
> [!TIP]
|
|
23
|
-
> Upcoming change: As part of the [Siebly.io](https://siebly.io/?ref=ghcoinbase) brand, this SDK is now hosted under our [Siebly.io GitHub organisation](https://github.com/sieblyio). The migration is seamless and requires no user changes.
|
|
24
|
-
|
|
25
22
|
Updated & performant JavaScript & Node.js SDK for Coinbase's Advanced Trade, App, Exchange, International, Prime & Commerce REST APIs and WebSockets:
|
|
26
23
|
|
|
27
24
|
- Professional, robust & performant Coinbase SDK with extensive production use in live trading environments.
|
|
@@ -47,6 +44,8 @@ Updated & performant JavaScript & Node.js SDK for Coinbase's Advanced Trade, App
|
|
|
47
44
|
- Heavy automated end-to-end testing with real API calls.
|
|
48
45
|
- Active community support & collaboration in telegram: [Node.js Algo Traders](https://t.me/nodetraders).
|
|
49
46
|
- Extensive examples for interacting with the Coinbase API offering in Node.js/JavaScript/TypeScript: [/examples/](./examples).
|
|
47
|
+
- QuickStart Guide: [Coinbase JavaScript QuickStart Guide](https://siebly.io/sdk/coinbase/javascript)
|
|
48
|
+
- Coinbase JavaScript Tutorial: [Coinbase JavaScript REST API and WebSocket Tutorial](https://siebly.io/sdk/coinbase/javascript/tutorial)
|
|
50
49
|
|
|
51
50
|
## Table of Contents
|
|
52
51
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "coinbase-api",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.5",
|
|
4
4
|
"description": "Node.js SDK for Coinbase's Advanced Trade, App, Exchange, International, Prime & Commerce REST APIs and WebSockets, with TypeScript & strong end to end tests.",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"clean": "rm -rf dist",
|
|
@@ -33,11 +33,11 @@
|
|
|
33
33
|
"Jerko J (https://github.com/JJ-Cro)"
|
|
34
34
|
],
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@types/ws": "
|
|
37
|
-
"axios": "
|
|
38
|
-
"isomorphic-ws": "
|
|
39
|
-
"jose": "
|
|
40
|
-
"nanoid": "
|
|
36
|
+
"@types/ws": "8.18.1",
|
|
37
|
+
"axios": "1.18.1",
|
|
38
|
+
"isomorphic-ws": "4.0.1",
|
|
39
|
+
"jose": "6.1.3",
|
|
40
|
+
"nanoid": "3.3.18",
|
|
41
41
|
"ws": "8.21.1"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
@@ -58,6 +58,14 @@
|
|
|
58
58
|
"webpack": "^5.0.0",
|
|
59
59
|
"webpack-cli": "^4.0.0"
|
|
60
60
|
},
|
|
61
|
+
"overrides": {
|
|
62
|
+
"brace-expansion@<2": "1.1.18",
|
|
63
|
+
"brace-expansion@>=2 <3": "2.1.4",
|
|
64
|
+
"brace-expansion@>=5 <6": "5.0.9",
|
|
65
|
+
"fast-uri@>=3 <4": "3.1.5",
|
|
66
|
+
"js-yaml@>=3 <4": "3.15.1",
|
|
67
|
+
"js-yaml@>=4 <5": "4.3.1"
|
|
68
|
+
},
|
|
61
69
|
"keywords": [
|
|
62
70
|
"coinbase",
|
|
63
71
|
"coinbase api",
|
|
@@ -88,5 +96,5 @@
|
|
|
88
96
|
"bugs": {
|
|
89
97
|
"url": "https://github.com/sieblyio/coinbase-api/issues"
|
|
90
98
|
},
|
|
91
|
-
"homepage": "https://
|
|
99
|
+
"homepage": "https://siebly.io/sdk/coinbase/javascript"
|
|
92
100
|
}
|