Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
tomervil authored Sep 3, 2019
1 parent a154d1a commit 04f6769
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,16 @@ Make sure you have the credentials for Fireblocks API Services. Otherwise, pleas
`npm install fireblocks-sdk --save`
or
`yarn add fireblocks-sdk`

### Importing Fireblocks SDK
JavaScript:
```
const FireblocksSDK = require("fireblocks-sdk").FireblocksSDK;
const sdkClient = new FireblocksSDK(privateKey, apiKey);
```

TypeScript:
```
import { FireblocksSDK } from "fireblocks-sdk";
const sdkClient = new FireblocksSDK(privateKey, apiKey);
```

0 comments on commit 04f6769

Please sign in to comment.