coinbase-api 1.1.7 → 1.1.8
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 +20 -12
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -85,22 +85,23 @@ Refer to the [examples](./examples) folder for implementation examples.
|
|
|
85
85
|
|
|
86
86
|
<!-- template_related_projects -->
|
|
87
87
|
|
|
88
|
-
## Related
|
|
88
|
+
## Related Projects
|
|
89
89
|
|
|
90
90
|
Check out my related JavaScript/TypeScript/Node.js projects:
|
|
91
91
|
|
|
92
|
-
- Try
|
|
93
|
-
- [Bybit
|
|
94
|
-
- [
|
|
95
|
-
- [
|
|
96
|
-
- [
|
|
97
|
-
- [
|
|
98
|
-
- [
|
|
99
|
-
- [
|
|
100
|
-
- [
|
|
92
|
+
- Try our REST API & WebSocket SDKs published on npmjs:
|
|
93
|
+
- [Bybit Node.js SDK: bybit-api](https://www.npmjs.com/package/bybit-api)
|
|
94
|
+
- [Kraken Node.js SDK: @siebly/kraken-api](https://www.npmjs.com/package/coinbase-api)
|
|
95
|
+
- [OKX Node.js SDK: okx-api](https://www.npmjs.com/package/okx-api)
|
|
96
|
+
- [Binance Node.js SDK: binance](https://www.npmjs.com/package/binance)
|
|
97
|
+
- [Gate (gate.com) Node.js SDK: gateio-api](https://www.npmjs.com/package/gateio-api)
|
|
98
|
+
- [Bitget Node.js SDK: bitget-api](https://www.npmjs.com/package/bitget-api)
|
|
99
|
+
- [Kucoin Node.js SDK: kucoin-api](https://www.npmjs.com/package/kucoin-api)
|
|
100
|
+
- [Coinbase Node.js SDK: coinbase-api](https://www.npmjs.com/package/coinbase-api)
|
|
101
|
+
- [Bitmart Node.js SDK: bitmart-api](https://www.npmjs.com/package/bitmart-api)
|
|
101
102
|
- Try my misc utilities:
|
|
102
|
-
- [OrderBooks Node.js](https://www.npmjs.com/package/orderbooks)
|
|
103
|
-
- [Crypto Exchange Account State Cache](https://www.npmjs.com/package/accountstate)
|
|
103
|
+
- [OrderBooks Node.js: orderbooks](https://www.npmjs.com/package/orderbooks)
|
|
104
|
+
- [Crypto Exchange Account State Cache: accountstate](https://www.npmjs.com/package/accountstate)
|
|
104
105
|
- Check out my examples:
|
|
105
106
|
- [awesome-crypto-examples Node.js](https://github.com/tiagosiebler/awesome-crypto-examples)
|
|
106
107
|
<!-- template_related_projects_end -->
|
|
@@ -567,6 +568,11 @@ Have my projects helped you? Share the love, there are many ways you can show yo
|
|
|
567
568
|
- Have an interesting project? Get in touch & invite me to it.
|
|
568
569
|
- Or buy me all the coffee:
|
|
569
570
|
- ETH(ERC20): `0xA3Bda8BecaB4DCdA539Dc16F9C54a592553Be06C` <!-- metamask -->
|
|
571
|
+
- Sign up with my referral links:
|
|
572
|
+
- OKX (receive a 20% fee discount!): https://www.okx.com/join/42013004
|
|
573
|
+
- Binance (receive a 20% fee discount!): https://accounts.binance.com/register?ref=OKFFGIJJ
|
|
574
|
+
- HyperLiquid (receive a 4% fee discount!): https://app.hyperliquid.xyz/join/SDK
|
|
575
|
+
- Gate: https://www.gate.io/signup/NODESDKS?ref_type=103
|
|
570
576
|
|
|
571
577
|
<!---
|
|
572
578
|
old ones:
|
|
@@ -574,6 +580,8 @@ old ones:
|
|
|
574
580
|
- BTC(SegWit): `bc1ql64wr9z3khp2gy7dqlmqw7cp6h0lcusz0zjtls`
|
|
575
581
|
- ETH(ERC20): `0xe0bbbc805e0e83341fadc210d6202f4022e50992`
|
|
576
582
|
- USDT(TRC20): `TA18VUywcNEM9ahh3TTWF3sFpt9rkLnnQa
|
|
583
|
+
- gate: https://www.gate.io/signup/AVNNU1WK?ref_type=103
|
|
584
|
+
|
|
577
585
|
-->
|
|
578
586
|
<!-- template_contributions_end -->
|
|
579
587
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "coinbase-api",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.8",
|
|
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",
|
|
@@ -32,9 +32,9 @@
|
|
|
32
32
|
"Jerko J (https://github.com/JJ-Cro)"
|
|
33
33
|
],
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"axios": "^1.
|
|
35
|
+
"axios": "^1.13.2",
|
|
36
36
|
"isomorphic-ws": "^4.0.1",
|
|
37
|
-
"jose": "^6.0
|
|
37
|
+
"jose": "^6.1.0",
|
|
38
38
|
"nanoid": "^3.3.11",
|
|
39
39
|
"ws": "^7.4.0"
|
|
40
40
|
},
|