Query different blockchains with a single and simple interface.
const Client = require('chainabstractionlayer')
const { BitcoinRPCProvider } = Client.providers.bitcoin
const bitcoin = new Client(new BitcoinRPCProvider('http://localhost:8080', 'bitcoin', 'local321'))
bitcoin
.generateBlock(1) // returns Promise
.then(console.log) // Array<BlockHash>
git clone git@github.com:ConsenSys/chainabstractionlayer.git
cd chainabstractionlayer
npm link
cd myblockchainproject
npm link chainabstractionlayer
npm run build:docs