Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

uport-lite

Package Overview
Dependencies
Maintainers
6
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

uport-lite

Lightweight library for looking up public profiles on uport-registry

  • 1.0.5
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
45
increased by309.09%
Maintainers
6
Weekly downloads
 
Created
Source

Light weight library for fetching public uPort profiles

A uPort is an ethereum address representing an identity of a person, thing or other entitity. We are using the MNID address encoding scheme to safely support multiple networks.

A public profile is stored on ipfs at a hash registered in the uPortRegistry.

This library aims to let developers look up a profile for a given ethereum address and nothing else. It is designed to be tiny, so you can easily add uport functionality to non Ethereum apps.

Use

By default it uses the uport registry on the ropsten network as well as infura ipfs and jsonRpc gateways.

import UportLite from 'uport-lite'

// UportLite is just a function returning a function. It is not a Class so don't use `new`
const registry = UportLite()

registry('2oVdmcz7BkWozm2JE4hHixRV8s5y3STqhPG', (error, profile) => {
  console.log(profile)
})

You can configure it passing options to the function:

import UportLite from 'uport-lite'

const registry = UportLite({
  ipfsGw: 'https://ipfs.infura.io/ipfs/',
  infuraKey: 'INFURA_API_KEY',
  networks: {
    '0x94365e3b': {
      rpcUrl: 'https://private.chain/rpc',
      address: '0x0101....'
    }
  }
})

registry('5A8bRWU3F7j3REx3vkJWxdjQPp4tqmxFPmab1Tr', (error, profile) => {
  console.log(profile)
})

FAQs

Package last updated on 15 Apr 2019

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc