Skip to content

earthflower/slip44

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

@metamask/slip44

A simple mapping between slip44 identifiers and the associated metadata, parsed directly from that repository linked above.

Usage

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;
  }
}

Updating

To automatically update from the slip44 doc, run ./generate.sh.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 99.9%
  • Shell 0.1%