New: Introducing PHP and Composer Support.Read the Announcement
Socket
Book a DemoInstallSign in
Socket

@metamask/slip44

Package Overview
Dependencies
Maintainers
5
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@metamask/slip44

A simple mapping between slip44 IDs and their network metadata.

Source
npmnpm
Version
1.0.0
Version published
Weekly downloads
44K
-49.59%
Maintainers
5
Weekly downloads
 
Created
Source

@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.

Keywords

Blockchain

FAQs

Package last updated on 04 Sep 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts