A simple mapping between slip44 identifiers and the associated metadata, parsed directly from that repository linked above.
const slip44 = require('@metamask/slip44');
const metadata = slip44['0']
assert.equals(metadata.name, 'Bitcoin');
interface Slip44 {
[index:string]: {
index: string;
hex: string;
symbol: string;
name: string;
link?: string;
}
}
To automatically update from the slip44 doc, run ./generate.sh
.