B58-Finance / cardano-js-sdk

:construction: Work in progress: JavaScript SDK for interacting with Cardano, providing various key management options including support for popular hardware wallets

Home Page:https://input-output-hk.github.io/cardano-js-sdk/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Cardano JS SDK

CI


Overview

A suite of TypeScript packages suitable for both Node.js and browser-based development.

Cardano Provider Implementations

ℹ️ Looking to use a Cardano service not listed here? Let us know!

Webpack

You may use the following config when bundling this SDK with Webpack:

const { IgnorePlugin, ProvidePlugin } = require('webpack');
{
  resolve: {
    // For browser builds only
    fallback: {
      // May want to install readable-stream as an explicit dependency
      stream: require.resolve('readable-stream'),
    }
  },
  plugins: [
    new HtmlWebpackHarddiskPlugin(),
    // see https://www.npmjs.com/package/isomorphic-bip39 README
    new IgnorePlugin(/^\.\/wordlists\/(?!english)/, /bip39\/src$/),
  ],
  experiments: {
    asyncWebAssembly: true
  }
}

Testing

Development

A Yarn Workspace maintaining a single version across all packages.

System Requirements

  • Docker 17.12.0+
  • Docker Compose

Install and Build

yarn install && \
yarn build

Run Tests

yarn testnet:up

In another terminal

yarn test

or

yarn test:debug

Lint

yarn lint

Cleanup

yarn cleanup

Distribute

Pack

./scripts/pack.sh

Publish to npm.org

./scripts/publish.sh

Generate Docs

yarn docs

Maintenance

Bump Version

yarn bump-version

Then update the sibling dependencies manually.

New package checklist

  1. Extend packageMap in .versionrc.js
  2. Extend pack.sh
  3. Extend publish.sh

📖 Documentation

About

:construction: Work in progress: JavaScript SDK for interacting with Cardano, providing various key management options including support for popular hardware wallets

https://input-output-hk.github.io/cardano-js-sdk/

License:Apache License 2.0


Languages

Language:TypeScript 95.7%Language:JavaScript 3.6%Language:Shell 0.8%