Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
min-release-age=30
save-exact=true
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ Updated & performant JavaScript & Node.js SDK for the Bitget V2 REST APIs and We
- Proxy support via axios integration.
- Active community support & collaboration in telegram: [Node.js Algo Traders](https://t.me/nodetraders).
- QuickStart Guide: https://siebly.io/sdk/bitget/javascript
- Bitget JavaScript Tutorial: https://siebly.io/sdk/bitget/javascript/tutorial

## Table of Contents

Expand Down Expand Up @@ -161,7 +162,7 @@ Each REST API group has a dedicated REST client. To avoid confusion, here are th
Examples for using each client can be found in:

- the [examples](./examples) folder.
- the [awesome-crypto-examples](https://github.com/tiagosiebler/awesome-crypto-examples) repository.
- the [awesome-crypto-examples](https://github.com/sieblyio/awesome-crypto-examples) repository.

If you're missing an example, you're welcome to request one. Priority will be given to [github sponsors](https://github.com/sponsors/tiagosiebler).

Expand Down
8 changes: 4 additions & 4 deletions docs/BITGET_SDK_QUICKSTART_GUIDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ siebly:
href: /examples/Bitget/V3%20-%20UTA/Websocket/ws-private
- heading: Source repository
summary: Browse SDK source, releases, issues, and endpoint coverage from GitHub.
href: https://github.com/tiagosiebler/bitget-api
href: https://github.com/sieblyio/bitget-api
-->
# Bitget API JavaScript Tutorial for Node.js and TypeScript

Expand All @@ -223,7 +223,7 @@ The SDK handles signing, routing, reconnects, and resubscribes so you don't have
**Key links**

- Bitget JavaScript SDK by Siebly: [`bitget-api`](https://www.npmjs.com/package/bitget-api)
- GitHub Repository: [`tiagosiebler/bitget-api`](https://github.com/tiagosiebler/bitget-api)
- GitHub Repository: [`sieblyio/bitget-api`](https://github.com/sieblyio/bitget-api)
- SDK function-endpoint map: [Bitget JavaScript Endpoint Reference](./endpointFunctionList.md)
- SDK examples: [Bitget SDK examples](../examples)
- Bitget UTA docs: [Unified Trading Account](https://www.bitget.com/api-doc/uta/intro)
Expand Down Expand Up @@ -1411,7 +1411,7 @@ Yes. The SDK works in JavaScript and TypeScript. TypeScript users also get reque

### Does the SDK support RSA keys?

Yes. Pass your RSA private key as `apiSecret`; the SDK auto-detects RSA vs HMAC signing. See the [GitHub repository](https://github.com/tiagosiebler/bitget-api).
Yes. Pass your RSA private key as `apiSecret`; the SDK auto-detects RSA vs HMAC signing. See the [GitHub repository](https://github.com/sieblyio/bitget-api).

### What should I do after a WebSocket reconnect?

Expand All @@ -1433,7 +1433,7 @@ More in the repo:

- [Bitget JavaScript SDK page](https://siebly.io/sdk/bitget/javascript)
- [`bitget-api` on npm](https://www.npmjs.com/package/bitget-api)
- [GitHub repo](https://github.com/tiagosiebler/bitget-api)
- [GitHub repo](https://github.com/sieblyio/bitget-api)
- [Endpoint reference](./endpointFunctionList.md)
- Bitget docs: [UTA](https://www.bitget.com/api-doc/uta/intro) · [Classic](https://www.bitget.com/api-doc/classic/quickStart/intro)
- [More exchange SDKs on Siebly.io](https://siebly.io)
96 changes: 48 additions & 48 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 13 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bitget-api",
"version": "3.2.2",
"version": "3.2.3",
"description": "Complete Node.js & JavaScript SDK for Bitget V1-V3 REST APIs & WebSockets, with TypeScript & end-to-end tests.",
"scripts": {
"test": "jest",
Expand Down Expand Up @@ -36,9 +36,9 @@
"author": "Tiago Siebler (https://siebly.io)",
"contributors": [],
"dependencies": {
"@types/ws": "^8.18.1",
"axios": "^1.13.2",
"isomorphic-ws": "^5.0.0",
"@types/ws": "8.18.1",
"axios": "1.18.1",
"isomorphic-ws": "5.0.0",
"ws": "8.21.1"
},
"devDependencies": {
Expand All @@ -60,6 +60,14 @@
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"overrides": {
"brace-expansion@<2": "1.1.18",
"brace-expansion@>=2 <3": "2.1.4",
"brace-expansion@>=5 <6": "5.0.9",
"fast-uri@>=3 <4": "3.1.5",
"js-yaml@>=3 <4": "3.15.1",
"js-yaml@>=4 <5": "4.3.1"
},
"keywords": [
"bitget",
"bitget api",
Expand Down Expand Up @@ -94,5 +102,5 @@
"bugs": {
"url": "https://github.com/sieblyio/bitget-api/issues"
},
"homepage": "https://github.com/sieblyio/bitget-api#readme"
"homepage": "https://siebly.io/sdk/bitget/javascript"
}
Loading