@trezor/blockchain-link
API for communication with blockchain backends.
Every type of a backed is isolated inside own worker file.
Currently supported:
Development:
Compile and run with simple ui for the API methods.
yarn
yarn dev
Build
yarn lint
yarn test
yarn build
Integration
yarn add @trezor/blockchain-link
import BlockchainLink from '@trezor/blockchain-link';
const link = new BlockchainLink({
name: string;
worker: string;
server: string[];
debug: boolean;
});
try {
const resp = link.getInfo();
} catch(error) {
}
Workers compilation
Workers are already builded and minified inside @trezor/blockchain-link/build/
directory.
However if you want to compile those workers by yourself a few additional packages needs to be added to your project.
Those dependencies are listed inside package.json in workersDependencies
field.
Then set your project to compile and provide those workers into blockchain-link instance.
An webpack configuration example using worker-loader
could be found in here