Skip to content
Open
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
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ A Node.js API Wrapper for the [Bitso REST API](https://bitso.com/api_info). Plea
```javascript
var BitsoNode = require('bitso-node-api');
// Key and Secret are only necessary if you use the Private REST API
var bitsoClient = new BitsoNode({
var bitsoClient = BitsoNode.BitsoClient({
key: '1234',
secret: 'secret',
});
Expand All @@ -26,7 +26,7 @@ bitsoClient
```javascript
const BitsoNode = require('bitso-node-api');

const client = new BitsoNode({
const client = BitsoNode.BitsoClient({
key: "KEY",
secret: "SECRET",
});
Expand All @@ -51,7 +51,7 @@ information you need to create the API client with the `authorizeMovements` para
```javascript
const BitsoNode = require('bitso-node-api');

const client = new BitsoNode({
const client = BitsoNode.BitsoClient({
key: "KEY",
secret: "SECRET",
authorizeMovements: true
Expand Down