qortal-ui-crypto

`yarn add qortal-ui-crypto`


Keywords
qortal, crypto
License
MIT
Install
npm install qortal-ui-crypto@2.1.0

Documentation

Installation

yarn add qortal-crypto

Usage

import Qortal from 'qortal-crypto'


Since kdf function was reworked (not using default store workers anymore), we need to use worker-plugin package in our webpack project.

yarn add worker-plugin

Webpack config example:

const WorkerPlugin = require('worker-plugin')
//..
configureWebpack: {
  plugins: [
    new WorkerPlugin(), // example from https://stackoverflow.com/a/60789889/1981247
  ]
},