@socialproof/ledgerjs-hw-app-myso
v0.0.2
Published
Ledger Hardware Wallet MySo Application API
Downloads
139
Maintainers
Readme
Ledger Github, Ledger Developer Portal, Ledger Developer Discord
ledgerjs-hw-app-myso
Ledger Hardware Wallet JavaScript bindings for MySo, based on LedgerJS.
Using LedgerJS for MySo
Here is a sample app for Node:
const Transport = require('@ledgerhq/hw-transport').default;
const MySo = require('@socialproof/ledgerjs-hw-app-myso').default;
const getPublicKey = async () => {
const myso = new MySo(await Transport.create());
return await myso.getPublicKey("44'/6976'/0'/0'/0'");
};
const signTransaction = async () => {
const myso = new MySo(await Transport.create());
return await myso.signTransaction("44'/6976'/0'/0'/0'", '<transaction contents>');
};
const getVersion = async () => {
const myso = new MySo(await Transport.create());
return await myso.getVersion();
};
const doAll = async () => {
console.log(await getPublicKey());
console.log(await signTransaction());
console.log(await getVersion());
};
doAll().catch((err) => console.log(err));API
Table of Contents
Parameters
transportTransport<any>scrambleKeystring (optional, default"MySo")
Examples
import MySo from 'ledgerjs-hw-app-myso';
const transport = await Transport.create();
const myso = new MySo(transport);getPublicKey
Gets the MySo address for a given BIP-32 path.
Parameters
pathstring a path in BIP-32 formatdisplayOnDeviceboolean whether or not to display the address on the Ledger device.
Examples
const publicKey = await myso.getPublicKey("44'/6976'/0'/0'/0'");Returns Promise<string> an object with a public key.
signTransaction
Sign a transaction with a given BIP-32 path.
Parameters
pathstring a path in BIP-32 format
Examples
const publicKey = await myso.signTransaction("44'/6976'/0'/0'/0'", '<transaction contents>');Returns Promise<object> an object with text field containing a signature.
getVersion
Get the version of the application installed on the hardware device.
Examples
console.log(await myso.getVersion());for version 0.1.0, it produces something like
{
major: 0
minor: 1
patch: 0
}Returns Promise<{object}> an object with major, minor, and patch of the version.
