@liquality/client-factory
v1.13.12
Published
[](https://travis-ci.com/liquality/chainabstractionlayer) [
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)