Socket
Socket
Sign inDemoInstall

@did-connect/types

Package Overview
Dependencies
Maintainers
1
Versions
77
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@did-connect/types - npm Package Compare versions

Comparing version 2.0.16 to 2.0.17

4

package.json
{
"name": "@did-connect/types",
"description": "Type definition and validator for did-connect protocol",
"version": "2.0.16",
"version": "2.0.17",
"author": {

@@ -63,3 +63,3 @@ "name": "wangshijun",

},
"gitHead": "2cba02ab1605e1404795f1f8d0879919cd57f72a"
"gitHead": "3b271ffa011055b02d08a3b8c3abd09d6a88413c"
}

@@ -1,3 +0,1 @@

![did-auth](https://www.arcblock.io/.netlify/functions/badge/?text=did-auth)
[![styled with prettier](https://img.shields.io/badge/styled_with-prettier-ff69b4.svg)](https://github.com/prettier/prettier)

@@ -9,15 +7,33 @@ [![docs](https://img.shields.io/badge/powered%20by-arcblock-green.svg)](https://docs.arcblock.io)

This library is implemented according to [ABT-DID-Protocol](https://github.com/ArcBlock/abt-did-spec), aiming to make it easier for developers to handle customized DID Connect Sessions in Node.js applications, and should always be used together with [DID Connect UX package](https://www.npmjs.com/package/@did-connect/react), if you are composing a blocklet, you may find the wrapped implementation in [Blocklet SDK](https://www.npmjs.com/package/@blocklet/sdk) more useful.
This package exist for 2 purposes:
Within a typical DID Connect Session, the application may request user to sign a transaction or provide some information, such as:
- Define core data structures and validators for DID Connect Protocol
- Provide a set of utilities that are widely used in ArcBlock implementation of DID Connect Protocol
- Provide a user profile, which may contain name, email
- Prove ownership of a NFT
- Prove ownership of a passport
Core data structures includes:
The following diagram demonstrates how a typical DID Connect Session works:
- DID Connect Request: a request to be fulfilled by DID Wallet
- AgreementRequest
- AssetRequest
- AuthPrincipalRequest
- PrepareTxRequest
- ProfileRequest
- SignatureRequest
- VerifiableCredentialRequest;
- DID Connect Response: a response sent from DID Wallet to fulfill a request
- TAgreementResponse
- TAssetResponse
- TAuthPrincipalResponse
- TPrepareTxResponse
- TProfileResponse
- TSignatureResponse
- TVerifiableCredentialResponse;
- DID Connect Session: the object that holds a running DID Connect session
- DID Connect Context: the object that holds the context of a running DID Connect session
![](./docs/workflow.png)
Other utilities includes:
`Claim` is the key concept in DID Connect Session, its used by the application to send specification of required info to finish the session. A claim is identified by `type`, and defined with a set of properties. Checkout the claim section for more information.
- AppInfo
- ChainInfo
- WalletInfo

@@ -27,5 +43,5 @@ ## Install

```sh
npm install @arcblock/did-auth
npm install @did-connect/types
// or
yarn add @arcblock/did-auth
yarn add @did-connect/types
```

@@ -35,180 +51,24 @@

### Basic Usage
Using types:
```js
const SimpleStorage = require('@did-connect/storage-nedb');
const { fromRandom } = require('@ocap/wallet');
const { Authenticator, WalletHandlers } = require('@arcblock/did-auth');
// First setup authenticator and handler factory
const wallet = fromRandom();
const authenticator = new Authenticator({
wallet,
baseUrl: 'http://wangshijun.natapp1.cc',
appInfo: {
description: 'Starter projects to develop web application on forge',
icon: '/images/logo@2x.png',
name: 'Forge Web Starter',
},
chainInfo: {
host: 'http://did-workshop.arcblock.co:8210/api',
id: 'forge',
},
});
const handlers = new WalletHandlers({
authenticator,
sessionStorage: new SimpleStorage({ dbPath: '/tmp/test/auth.db' }),
});
// Then attach handler to express server
const express = require('express');
const app = express();
// This is required if you want to use dynamic baseUrl inference
app.set('trust proxy', true);
handlers.attach({
action: 'profile',
claims: {
// This function can be async or returns a promise
profile: () => ({
fields: ['fullName', 'email'],
description: 'Please provide your name and email to continue',
}),
},
onAuth: async ({ userDid, claims, extraParams }) => {
// `userDid` is the current connected did
// `claims` contains what the user has submitted
// `extraParams` is set from webapp when creating the session
try {
const profile = claims.find((x) => x.type === 'profile');
console.info('login.success', { userDid, profile });
} catch (err) {
console.error('login.error', err);
}
},
});
import type { TProfileRequest } from '@did-connect/types';
const profile: TProfileRequest = {
type: 'profile',
description: 'Request user profile',
items: ['fullName'],
};
```
Then your application backend is ready to handle DID Connect Session that request and accept profile from user. For frontend integration please checkout [DID Connect UX](https://www.npmjs.com/package/@did-connect/react).
Using validators:
### Multiple Claims
You can request multiple claims in a single DID Connect Session:
```js
handlers.attach({
action: 'multiple-claims',
claims: {
profile: () => ({
fields: ['fullName', 'email'],
description: 'Please provide your name and email to continue',
}),
asset: ({ userDid, extraParams }) => {
// `userDid` is the current connected did
// `extraParams` is set from webapp when creating the session
return {
description: 'Please provide a valid NFT',
trustedIssuers: ['nft-issuer-did'],
};
},
},
onAuth: async ({ claims, userDid }) => {
// `claims` contains both the profile and the asset claim
},
});
```
import type { TProfileRequest } from '@did-connect/types';
import { ProfileRequest } from '@did-connect/types';
If you want to provide multiple claims of the same type:
```js
handlers.attach({
action: 'multiple-claims',
claims: {
signText: [
'signature',
{
type: 'mime:text/plain',
data: 'xxxx',
description: 'sign the text to continue',
},
],
signHtml: [
'signature',
{
type: 'mime:text/html',
data: `<h2>This is title</h2>`,
description: 'sign the html to continue',
},
],
},
onAuth: async ({ claims, userDid }) => {
// `claims` contains both the profile and the asset claim
},
const { error, value } = ProfileRequest.validate({
type: 'profile',
description: 'Request user profile',
items: ['fullName'],
});
```
### Dynamic Claims
By returning a claims object from `onConnect` callback, you can provide dynamic claims for the DID Connect Session.
```js
handlers.attach({
action: 'dynamic-claims',
// Can be async or returns a promise
onConnect: ({ userDid }) => {
// check userDid for some business logic
// then return the claim object
// you can return multiple claims here
return {
profile: () => ({
fields: ['fullName', 'email'],
description: 'Please provide your name and email to continue',
}),
};
},
onAuth: async ({ claims, userDid }) => {
// `claims` now contains the result for the dynamic claim
},
});
```
## Lifecycle Callbacks
Following callbacks are supported during the lifecycle of a DID-Connect session.
- `onStart({ req, challenge, didwallet, extraParams, updateSession })`: optional, called when a new session starts, can be async, return values from this callback will be returned to and available from browser, error thrown from `onStart` will halt the session.
- `onConnect({ req, challenge, userDid, userPk, extraParams, updateSession })`: optional, when wallet has selected `userDid` and `userPk`, you can return dynamic claims here, or do some permission check, error thrown from `onConnect` will halt the session.
- `onDecline({ req, challenge, userDid, userPk, extraParams, updateSession })`: optional, when wallet has rejected dapp request.
- `onAuth({ req, challenge, claims, userDid, userPk, extraParams, updateSession })`: required, when wallet has approved dapp request, and submitted info will be available in claims, which is a list of the dapp requested info.
- `onComplete({ req, userDid, userPk, extraParams, updateSession })`: optional, when the did connect session has completed.
- `onExpire({ extraParams })`: optional, when the did connect session has expired.
- `onError({ err, extraParams })`: optional, when the did connect session encountered some error, default to `console.error`.
Most commonly used callbacks are `onConnect` and `onAuth`.
Developer should always attach an `onAuth` callback for a DID Connect session handler. And put the business logic once user has approved and submitted the requested info in the callback.
Sometimes, developer may want to pass some information to the session storage, such as a transaction hash or login token, so that the browser can fetch for later use, developer can achieve this by call `updateSession` from `onAuth`. eg,
```js
handlers.attach({
action: 'dynamic-claims',
onAuth: ({ userDid, updateSession }) => {
// to persist plain non-sensible info
await updateSession({ key: 'non-sensible' });
// to persist sensible info: that need to be encrypted
await updateSession({ key: 'sensible' }, true);
},
});
```
## Claims
A `claim` specifies what kind of information the application can request user to provide. specifications for each claim are defined [here](./lib/schema/claims.js), complete claim request and response specification can be found in the [ABT DID Protocol](https://github.com/ArcBlock/ABT-DID-Protocol).
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