1.13.13 • Published 2 years ago

@hashprotocol/client-factory v1.13.13

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

@hashprotocol/client-factory

Build Status Coverage Status Standard Code Style MIT License @hashprotocol/client-factory Gitter Telegram Greenkeeper badge

:warning: This project is under heavy development. Expect bugs & breaking changes.

:pencil: Introductory Blog Post: The Missing Tool to Cross-Chain Development

Query different blockchains with account management using a single and simple interface.

Installation

npm i @hashprotocol/client-factory

or

<script src="https://cdn.jsdelivr.net/npm/@hashprotocol/client-factory@0.2.3/dist/client.min.js"></script>
<!-- sourceMap at https://cdn.jsdelivr.net/npm/@hashprotocol/client-factory@0.2.3/dist/client.min.js.map -->
<!-- available as window.Client -->

Usage

import { ClientFactory } from '@hashprotocol/client-factory'

const bitcoin = ClientFactory.create('mainnet', 'btc', { mnemonic: 'xxx' })
const ethereum = ClientFactory.create('mainnet', 'eth', { mnemonic: 'xxx' })

// Fetch addresses from Ledger wallet using a single-unified API
const [ bitcoinAddress ] = await bitcoin.wallet.getAddresses(0, 1)
const [ ethereumAddress ] = await ethereum.wallet.getAddresses(0, 1)

// Sign a message
const signedMessageBitcoin = await bitcoin.wallet.signMessage(
  'The Times 3 January 2009 Chancellor on brink of second bailout for banks', bitcoinAddress.address
)
const signedMessageEthereum = await ethereum.wallet.signMessage(
  'The Times 3 January 2009 Chancellor on brink of second bailout for banks', ethereumAddress.address
)

// Send a transaction
await bitcoin.chain.sendTransaction(<to>, 1000)
await ethereum.chain.sendTransaction(<to>, 1000)

License

MIT