Skip to content

Latest commit

 

History

History
70 lines (47 loc) · 1.07 KB

CONTRIBUTING.md

File metadata and controls

70 lines (47 loc) · 1.07 KB

Contributing Guide

Development

Node.js Version

Developing in this repository requires Node.js 18 or higher.

Set-up

Clone the repo by running:

git clone [email protected]:coinbase/coinbase-sdk-nodejs.git

To install all dependencies, run:

npm install

Linting

To autocorrect all lint errors, run:

npm run lint-fix

To detect all lint errors, run:

npm run lint

Testing

To run all tests, run:

npm test

To run a specific test, run (for example):

npx jest ./src/coinbase/tests/wallet_test.ts

To run e2e tests, run:

In the root directory, create a .env file with the following configuration. Ensure to update the placeholders with your actual data:

NAME=API_KEY_NAME
PRIVATE_KEY=API_PRIVATE_KEY
WALLET_DATA={ "WALLET_ID": { "seed": "", "encrypted": false, "authTag": "", "iv": "" } }

Then run the following commands:

npm run test:dry-run && npm run test:e2e

Generating Documentation

To generate documentation from the TypeDoc comments, run:

npm run docs