All Projects → uport-project → Uport Credentials

uport-project / Uport Credentials

Licence: apache-2.0
Library for integrating uPort into node server side applications

Programming Languages

typescript
32286 projects

Projects that are alternatives of or similar to Uport Credentials

Uport Connect
Main uPort library for front end developers
Stars: ✭ 295 (+110.71%)
Mutual labels:  blockchain, ethereum, identity
Your first decentralized application python
An up to date and bare minimum tutorial on deploying smart contracts with python
Stars: ✭ 132 (-5.71%)
Mutual labels:  blockchain, ethereum
Status Network Token
Smart Contracts for the Status Contribution Period, along with Genesis and Network Tokens
Stars: ✭ 138 (-1.43%)
Mutual labels:  blockchain, ethereum
Web3.swift
Ethereum Swift API with support for smart contracts, ENS & ERC20
Stars: ✭ 137 (-2.14%)
Mutual labels:  blockchain, ethereum
Eth95
🛠️ A smart contract UI for your Ethereum dapp project
Stars: ✭ 139 (-0.71%)
Mutual labels:  blockchain, ethereum
Chainabstractionlayer
Blockchain abstraction layer
Stars: ✭ 131 (-6.43%)
Mutual labels:  blockchain, ethereum
Carmel
The Open Digital Innovation Marketplace
Stars: ✭ 136 (-2.86%)
Mutual labels:  blockchain, ethereum
Deltabalances.github.io
The Ethereum decentralized exchange assistant. Check token balances, transaction details & trade history.
Stars: ✭ 128 (-8.57%)
Mutual labels:  blockchain, ethereum
Yearn Vaults
Yearn Vault smart contracts
Stars: ✭ 132 (-5.71%)
Mutual labels:  blockchain, ethereum
Consensys Academy Notes
A series of notes that were taken during the ConsenSys Academy program.
Stars: ✭ 138 (-1.43%)
Mutual labels:  blockchain, ethereum
Awdy
are we decentralized yet? an analysis of how truly decentralized cryptocurrency networks are
Stars: ✭ 133 (-5%)
Mutual labels:  blockchain, ethereum
Awesome Openzeppelin
Blockchain educational resources curated by the OpenZeppelin team
Stars: ✭ 129 (-7.86%)
Mutual labels:  blockchain, ethereum
Hashed Timelock Contract Ethereum
Hashed Timelock Contracts for ETH, ERC20 and ERC721 on Ethereum
Stars: ✭ 128 (-8.57%)
Mutual labels:  blockchain, ethereum
Contracts
Smart contracts comprising the business logic of the Matic Network
Stars: ✭ 130 (-7.14%)
Mutual labels:  blockchain, ethereum
Hanzo.js
🚀 Hanzo JavaScript SDK. Develop cutting-edge decentralized applications.
Stars: ✭ 128 (-8.57%)
Mutual labels:  blockchain, ethereum
Chainlink
node of the decentralized oracle network, bridging on and off-chain computation
Stars: ✭ 2,680 (+1814.29%)
Mutual labels:  blockchain, ethereum
Blockchainbooks.github.io
Blockchain Books
Stars: ✭ 139 (-0.71%)
Mutual labels:  blockchain, ethereum
Py Solc
Python wrapper around the solc Solidity compiler.
Stars: ✭ 126 (-10%)
Mutual labels:  blockchain, ethereum
Hadoopcryptoledger
Hadoop Crypto Ledger - Analyzing CryptoLedgers, such as Bitcoin Blockchain, on Big Data platforms, such as Hadoop/Spark/Flink/Hive
Stars: ✭ 126 (-10%)
Mutual labels:  blockchain, ethereum
Awesome Dapps
A curated list of awesome decentralized applications / resources
Stars: ✭ 130 (-7.14%)
Mutual labels:  blockchain, ethereum

npm Twitter Follow

DID Specification | Getting Started

FAQ and helpdesk support

uPort Credentials Library

Required Upgrade to [email protected]

Starting with version 1.3.0 you are required to specify either a Resolver instance, or a valid configuration object for ethr-did-resolver. Previous versions of this library were relying on the automatic configuration of some default DID resolvers but this pattern was both limiting and prone to errors of misconfiguration or interference. This has caused an outage in credential verification on 2020-01-20 and continued use of previous versions are highly likely to no longer function properly because of this.

An example configuration with a resolver:

import { Credentials, SimpleSigner } from 'uport-credentials'
import { Resolver } from 'did-resolver'
import { getResolver } from 'ethr-did-resolver'

const providerConfig = { rpcUrl: 'https://mainnet.infura.io/<YOUR INFURA PROJECT ID>' }
const resolver = new Resolver(getResolver(providerConfig))

const credentials = new Credentials({
    did: process.env.APPLICATION_DID,
    signer: SimpleSigner(process.env.PRIVATE_KEY),
    resolver
})

See ethr-did-resolver#43 for more info.

Integrate uPort Into Your Application

uPort provides a set of tools for creating and managing identities that conform to the decentralized identifier (DID) specification, and for requesting and exchanging verified data between identities.

uPort Credentials simplifies the process of identity creation within JavaScript applications; additionally, it allows applications to easily sign and verify data — signed by other identities to facilitate secure communication between parties. These pieces of data take the form of signed JSON Web Tokens (JWTs), they have specific fields designed for use with uPort clients, described in the uPort specifications, collectively referred to as verifications.

To allow for maximum flexibility, uPort Credential’s only deals with creation and validation of verifications. To pass verifications between a JavaScript application and a user via the uPort mobile app, we have developed the uPort Transports library, use it in conjunction with uPort Credentials when necessary.

To hit the ground running with uPort Credentials, visit the Getting Started guide.

For details on uPort's underlying architecture, read our spec repo

This library is part of a suite of tools maintained by the uPort Project, a ConsenSys formation. For more information on the project, visit uport.me

FAQ and helpdesk support

Contributing

Please see our contribution guidelines if you wish to contribute to this project.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].