Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

bitget-node-api

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bitget-node-api - npm Package Compare versions

Comparing version 1.0.4 to 1.0.5

.idea/bitget-api-node-npm.iml

1

build/lib/spot/SpotAccountApi.d.ts

@@ -7,2 +7,3 @@ import { BaseApi } from '../BaseApi';

transferRecords(coinId: string, fromType: string, limit: string, after: string, before: string): Promise<import("axios").AxiosResponse<any>>;
keyInfo(): Promise<import("axios").AxiosResponse<any>>;
}

2

package.json
{
"name": "bitget-node-api",
"version": "1.0.4",
"version": "1.0.5",
"description": "Node.js/typescript connector for Bidget REST APIs and WebSockets",

@@ -5,0 +5,0 @@ "main": "build/index.js",

@@ -6,3 +6,3 @@ # Instructions

```bash
npm i bitget-api-node-npm
npm i bitget-api-node
```

@@ -13,3 +13,3 @@

```javascript
const bitgetApi = require('bitget-api-node-npm')
const bitgetApi = require('bitget-api-node')
const { test, describe, expect } = require('@jest/globals')

@@ -33,3 +33,3 @@

```javascript
var bitgetApi = require('bitget-api-node-npm')
var bitgetApi = require('bitget-api-node')

@@ -36,0 +36,0 @@ const apiKey = ''

@@ -38,2 +38,8 @@ import {BaseApi} from '../BaseApi';

}
keyInfo():Promise<import("axios").AxiosResponse<any>>{
const url = SPOT_URL.SPOT_ACCOUNT + '/getInfo';
const headers = this.signer('GET', url, null)
return this.axiosInstance.get(url, {headers})
}
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc