npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@ula-aca/present-proof

v0.0.2

Published

Universal Ledger Agent plugin for creating and receiving Aries Cloudagent Verifiable Presentations

Downloads

12

Readme

Universal Ledger Agent - Aries Cloudagent Present Proof Plugin

npm (scoped)

This package handles everything that has to do with presenting and exchanging Verifiable Presentations. It has classes to perform proof related actions as well as to listen for proof exchange events.

Usage

PresentProofController

import { EventHandler } from 'universal-ledger-agent'
import { PresentProofController } from '@ula-aca/present-proof'

const presentProofController = new PresentProofController({
  basePath: 'https://aca-py-api.com'
})

const eventHandler = new EventHandler([presentProofController])

@ula-aca/present-proof/get-all-exchange-records

Fetch all present-proof exchange records.

import { EventHandler, UlaResponse, Message } from 'universal-ledger-agent'
import {
  PresentProofController,
  PresentProofMessageTypes,
  GetPresentationExchangeRecordsMessage,
  GetPresentationExchangeRecordsResult
} from '@ula-aca/present-proof'

const presentProofController = new PresentProofController({
  basePath: 'https://aca-py-api.com'
})

const eventHandler = new EventHandler([presentProofController])

const message = new Message({
  type: PresentProofMessageTypes.GET_EXCHANGE_RECORDS,
  body: {}
} as GetPresentationExchangeRecordsMessage)
eventHandler.processMsg(message, (response: UlaResponse) => {
  if (response.statusCode < 200 || response.statusCode >= 300) {
    // error
  } else {
    const result: GetPresentationExchangeRecordsResult = response.body
    // response.body is response from /present-proof/records api endpoint in aca-py
    // https://ula-aca.github.io/aries-cloudagent-interface-javascript/#/present-proof/get_present_proof_records
  }
})

@ula-aca/present-proof/get-exchange-record-by-id

Fetch a single presentation exchange record.

import { EventHandler, UlaResponse, Message } from 'universal-ledger-agent'
import {
  PresentProofController,
  PresentProofMessageTypes,
  GetPresentationExchangeRecordByIdMessage,
  GetPresentationExchangeRecordByIdResult
} from '@ula-aca/present-proof'

const presentProofController = new PresentProofController({
  basePath: 'https://aca-py-api.com'
})

const eventHandler = new EventHandler([presentProofController])

const message = new Message({
  type: PresentProofMessageTypes.GET_EXCHANGE_RECORD_BY_ID,
  body: {
    presentation_exchange_id: '3fa85f64-5717-4562-b3fc-2c963f66afa6'
  }
} as GetPresentationExchangeRecordByIdMessage)

eventHandler.processMsg(message, (response: UlaResponse) => {
  if (response.statusCode < 200 || response.statusCode >= 300) {
    // error
  } else {
    const result: GetPresentationExchangeRecordByIdResult = response.body
    // response.body is response from /present-proof/records/{pres_ex_id} api endpoint in aca-py
    // https://ula-aca.github.io/aries-cloudagent-interface-javascript/#/present-proof/get_present_proof_records__pres_ex_id_
  }
})

@ula-aca/present-proof/get-presentation-request-credentials

Fetch credentials for a presentation request from wallet.

import { EventHandler, UlaResponse, Message } from 'universal-ledger-agent'
import {
  PresentProofController,
  PresentProofMessageTypes,
  GetPresentationRequestCredentialsMessage,
  GetPresentationRequestCredentialsResult
} from '@ula-aca/present-proof'

const presentProofController = new PresentProofController({
  basePath: 'https://aca-py-api.com'
})

const eventHandler = new EventHandler([presentProofController])

const message = new Message({
  type: PresentProofMessageTypes.GET_PRESENTATION_REQUEST_CREDENTIALS,
  body: {
    presentation_exchange_id: '3fa85f64-5717-4562-b3fc-2c963f66afa6'
  }
} as GetPresentationRequestCredentialsMessage)

eventHandler.processMsg(message, (response: UlaResponse) => {
  if (response.statusCode < 200 || response.statusCode >= 300) {
    // error
  } else {
    const result: GetPresentationRequestCredentialsIdResult = response.body
    // response.body is response from ​/present-proof​/records​/{pres_ex_id}​/credentials api endpoint in aca-py
    // https://ula-aca.github.io/aries-cloudagent-interface-javascript/#/present-proof/get_present_proof_records__pres_ex_id__credentials
  }
})

@ula-aca/present-proof/get-presentation-request-credentials-with-referent

Fetch credentials for a presentation request from wallet.

import { EventHandler, UlaResponse, Message } from 'universal-ledger-agent'
import {
  PresentProofController,
  PresentProofMessageTypes,
  GetPresentationRequestCredentialsByReferentIdResult,
  GetPresentationRequestCredentialsByReferentIdMessage
} from '@ula-aca/present-proof'

const presentProofController = new PresentProofController({
  basePath: 'https://aca-py-api.com'
})

const eventHandler = new EventHandler([presentProofController])

const message = new Message({
  type:
    PresentProofMessageTypes.GET_PRESENTATION_REQUEST_CREDENTIALS_WITH_REFERENT,
  body: {
    presentation_exchange_id: '5717-4562-b3fc-2c963f66afa6-3fa85f64',
    referent: '3fa85f64-5717-4562-b3fc-2c963f66afa6'
  }
} as GetPresentationRequestCredentialsByReferentIdMessage)

eventHandler.processMsg(message, (response: UlaResponse) => {
  if (response.statusCode < 200 || response.statusCode >= 300) {
    // error
  } else {
    const result: GetPresentationRequestCredentialsByReferentIdResult =
      response.body
    // response.body is response from /present-proof/records/{pres_ex_id}/credentials/{referent} api endpoint in aca-py
    // https://ula-aca.github.io/aries-cloudagent-interface-javascript/#/present-proof/get_present_proof_records__pres_ex_id__credentials__referent_
  }
})

@ula-aca/present-proof/send-proposal

Sends a presentation proposal.

import { EventHandler, UlaResponse, Message } from 'universal-ledger-agent'
import {
  PresentProofController,
  PresentProofMessageTypes,
  SendPresentationProposalMessage,
  SendPresentationProposalResult
} from '@ula-aca/present-proof'

const presentProofController = new PresentProofController({
  basePath: 'https://aca-py-api.com'
})

const eventHandler = new EventHandler([presentProofController])

const message = new Message({
  type: PresentProofMessageTypes.SEND_PROPOSAL,
  body: {
    connection_id: '3fa85f64-5717-4562-b3fc-2c963f66afa6',
    presentation_proposal: {
      '@type':
        'did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/present-proof/1.0/presentation-preview',
      attributes: [
        {
          name: 'favourite_drink',
          cred_def_id: 'WgWxqztrNooG92RXvxSTWv:3:CL:20:tag',
          'mime-type': 'image/jpeg',
          value: 'martini'
        }
      ],
      predicates: [
        {
          name: 'high_score',
          cred_def_id: 'WgWxqztrNooG92RXvxSTWv:3:CL:20:tag',
          predicate: '>=',
          threshold: 0
        }
      ]
    },
    comment: 'string',
    auto_present: true
  }
} as SendPresentationProposalMessage)

eventHandler.processMsg(message, (response: UlaResponse) => {
  if (response.statusCode < 200 || response.statusCode >= 300) {
    // error
  } else {
    const result: SendPresentationProposalResult = response.body
    // response.body is response from ​/present-proof​/send-proposal POST api endpoint in aca-py
    // https://ula-aca.github.io/aries-cloudagent-interface-javascript/#/present-proof/post_present_proof_send_proposal
  }
})

@ula-aca/present-proof/create-presentation-request

Creates a presentation request not bound to any proposal or existing connection.

import { EventHandler, UlaResponse, Message } from 'universal-ledger-agent'
import {
  PresentProofController,
  PresentProofMessageTypes,
  CreatePresentationRequestMessage,
  CreatePresentationRequestResult
} from '@ula-aca/present-proof'

const presentProofController = new PresentProofController({
  basePath: 'https://aca-py-api.com'
})

const eventHandler = new EventHandler([presentProofController])

const message = new Message({
  type: PresentProofMessageTypes.CREATE_PRESENTATION_REQUEST,
  body: {
    connection_id: '3fa85f64-5717-4562-b3fc-2c963f66afa6',
    comment: 'string',
    proof_request: {
      name: 'Proof request',
      requested_attributes: {
        additionalProp1: {
          name: 'favouriteDrink',
          restrictions: [
            {
              schema_id: 'WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0',
              issuer_did: 'WgWxqztrNooG92RXvxSTWv',
              cred_def_id: 'WgWxqztrNooG92RXvxSTWv:3:CL:20:tag',
              schema_name: 'transcript',
              schema_version: '1.0',
              schema_issuer_did: 'WgWxqztrNooG92RXvxSTWv',
              credential_definition_id: 'WgWxqztrNooG92RXvxSTWv:3:CL:20:tag'
            }
          ],
          non_revoked: {
            to_epoch: 1576152338,
            from_epoch: 1576152338
          }
        }
      },
      nonce: '1234567890',
      requested_predicates: {
        additionalProp1: {
          name: 'index',
          restrictions: [
            {
              schema_id: 'WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0',
              issuer_did: 'WgWxqztrNooG92RXvxSTWv',
              cred_def_id: 'WgWxqztrNooG92RXvxSTWv:3:CL:20:tag',
              schema_name: 'transcript',
              schema_version: '1.0',
              schema_issuer_did: 'WgWxqztrNooG92RXvxSTWv',
              credential_definition_id: 'WgWxqztrNooG92RXvxSTWv:3:CL:20:tag'
            }
          ],
          non_revoked: {
            to_epoch: 1576152338,
            from_epoch: 1576152338
          }
        }
      },
      version: '1.0'
    }
  }
} as CreatePresentationRequestMessage)

eventHandler.processMsg(message, (response: UlaResponse) => {
  if (response.statusCode < 200 || response.statusCode >= 300) {
    // error
  } else {
    const result: CreatePresentationRequestResult = response.body
    // response.body is response from /present-proof/create-request POST api endpoint in aca-py
    // https://ula-aca.github.io/aries-cloudagent-interface-javascript/#/present-proof/post_present_proof_create_request
  }
})

@ula-aca/present-proof/send-request

Sends a free presentation request not bound to any proposal.

import { EventHandler, UlaResponse, Message } from 'universal-ledger-agent'
import {
  PresentProofController,
  PresentProofMessageTypes,
  SendPresentationRequestMessage,
  SendPresentationRequestResult
} from '@ula-aca/present-proof'

const presentProofController = new PresentProofController({
  basePath: 'https://aca-py-api.com'
})

const eventHandler = new EventHandler([presentProofController])

const message = new Message({
  type: PresentProofMessageTypes.SEND_REQUEST,
  body: {
    connection_id: '3fa85f64-5717-4562-b3fc-2c963f66afa6',
    comment: 'string',
    proof_request: {
      name: 'Proof request',
      requested_attributes: {
        additionalProp1: {
          name: 'favouriteDrink',
          restrictions: [
            {
              schema_id: 'WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0',
              issuer_did: 'WgWxqztrNooG92RXvxSTWv',
              cred_def_id: 'WgWxqztrNooG92RXvxSTWv:3:CL:20:tag',
              schema_name: 'transcript',
              schema_version: '1.0',
              schema_issuer_did: 'WgWxqztrNooG92RXvxSTWv',
              credential_definition_id: 'WgWxqztrNooG92RXvxSTWv:3:CL:20:tag'
            }
          ],
          non_revoked: {
            to_epoch: 1576152338,
            from_epoch: 1576152338
          }
        }
      },
      nonce: '1234567890',
      requested_predicates: {
        additionalProp1: {
          name: 'index',
          restrictions: [
            {
              schema_id: 'WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0',
              issuer_did: 'WgWxqztrNooG92RXvxSTWv',
              cred_def_id: 'WgWxqztrNooG92RXvxSTWv:3:CL:20:tag',
              schema_name: 'transcript',
              schema_version: '1.0',
              schema_issuer_did: 'WgWxqztrNooG92RXvxSTWv',
              credential_definition_id: 'WgWxqztrNooG92RXvxSTWv:3:CL:20:tag'
            }
          ],
          non_revoked: {
            to_epoch: 1576152338,
            from_epoch: 1576152338
          }
        }
      },
      version: '1.0'
    }
  }
} as SendPresentationRequestMessage)

eventHandler.processMsg(message, (response: UlaResponse) => {
  if (response.statusCode < 200 || response.statusCode >= 300) {
    // error
  } else {
    const result: SendPresentationRequestResult = response.body
    // response.body is response from /present-proof/send-request POST api endpoint in aca-py
    // https://ula-aca.github.io/aries-cloudagent-interface-javascript/#/present-proof/post_present_proof_send_request
  }
})

@ula-aca/present-proof/send-proof-presentation-request-by-id

Sends a presentation request in reference to a proposal.

import { EventHandler, UlaResponse, Message } from 'universal-ledger-agent'
import {
  PresentProofController,
  PresentProofMessageTypes,
  SendPresentationRequestByIdMessage,
  SendPresentationRequestByIdResult
} from '@ula-aca/present-proof'

const presentProofController = new PresentProofController({
  basePath: 'https://aca-py-api.com'
})

const eventHandler = new EventHandler([presentProofController])

const message = new Message({
  type: PresentProofMessageTypes.SEND_REQUEST_BY_ID,
  body: {
    presentation_exchange_id: '2c65f66afa6-5717-4562-b3fc-2c9635717b2',
    connection_id: '3fa85f64-5717-4562-b3fc-2c963f66afa6',
    comment: 'string',
    proof_request: {
      name: 'Proof request',
      requested_attributes: {
        additionalProp1: {
          name: 'favouriteDrink',
          restrictions: [
            {
              schema_id: 'WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0',
              issuer_did: 'WgWxqztrNooG92RXvxSTWv',
              cred_def_id: 'WgWxqztrNooG92RXvxSTWv:3:CL:20:tag',
              schema_name: 'transcript',
              schema_version: '1.0',
              schema_issuer_did: 'WgWxqztrNooG92RXvxSTWv',
              credential_definition_id: 'WgWxqztrNooG92RXvxSTWv:3:CL:20:tag'
            }
          ],
          non_revoked: {
            to_epoch: 1576152338,
            from_epoch: 1576152338
          }
        }
      },
      nonce: '1234567890',
      requested_predicates: {
        additionalProp1: {
          name: 'index',
          restrictions: [
            {
              schema_id: 'WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0',
              issuer_did: 'WgWxqztrNooG92RXvxSTWv',
              cred_def_id: 'WgWxqztrNooG92RXvxSTWv:3:CL:20:tag',
              schema_name: 'transcript',
              schema_version: '1.0',
              schema_issuer_did: 'WgWxqztrNooG92RXvxSTWv',
              credential_definition_id: 'WgWxqztrNooG92RXvxSTWv:3:CL:20:tag'
            }
          ],
          non_revoked: {
            to_epoch: 1576152338,
            from_epoch: 1576152338
          }
        }
      },
      version: '1.0'
    }
  }
} as SendPresentationRequestByIdMessage)

eventHandler.processMsg(message, (response: UlaResponse) => {
  if (response.statusCode < 200 || response.statusCode >= 300) {
    // error
  } else {
    const result: SendPresentationRequestByIdResult = response.body
    // response.body is response from ​/present-proof​/records​/{pres_ex_id}​/send-request POST api endpoint in aca-py
    // https://ula-aca.github.io/aries-cloudagent-interface-javascript/#/present-proof/post_present_proof_records__pres_ex_id__send_request
  }
})

@ula-aca/present-proof/send-presentation

Sends a proof presentation.

import { EventHandler, UlaResponse, Message } from 'universal-ledger-agent'
import {
  PresentProofController,
  PresentProofMessageTypes,
  SendPresentationMessage,
  SendPresentationResult
} from '@ula-aca/present-proof'

const presentProofController = new PresentProofController({
  basePath: 'https://aca-py-api.com'
})

const eventHandler = new EventHandler([presentProofController])

const message = new Message({
  type: PresentProofMessageTypes.SEND_PRESENTATION,
  body: {
    presentation_exchange_id: '3fa85f64-5717-4562-b3fc-2c963f66afa6',
    self_attested_attributes: {
      additionalProp1: 'self_attested_value',
      additionalProp2: 'self_attested_value',
      additionalProp3: 'self_attested_value'
    },
    requested_attributes: {
      additionalProp1: {
        revealed: true,
        cred_id: '3fa85f64-5717-4562-b3fc-2c963f66afa6'
      }
    },
    requested_predicates: {
      additionalProp1: {
        cred_id: '3fa85f64-5717-4562-b3fc-2c963f66afa6'
      }
    }
  }
} as SendPresentationMessage)

eventHandler.processMsg(message, (response: UlaResponse) => {
  if (response.statusCode < 200 || response.statusCode >= 300) {
    // error
  } else {
    const result: SendPresentationResult = response.body
    // response.body is response from ​/present-proof​/records​/{pres_ex_id}​/send-presentation POST api endpoint in aca-py
    // https://ula-aca.github.io/aries-cloudagent-interface-javascript/#/present-proof/post_present_proof_records__pres_ex_id__send_presentation
  }
})

@ula-aca/present-proof/verify-presentation

Verify a received presentation.

import { EventHandler, UlaResponse, Message } from 'universal-ledger-agent'
import {
  PresentProofController,
  PresentProofMessageTypes,
  VerifyPresentationMessage,
  VerifyPresentationResult
} from '@ula-aca/present-proof'

const presentProofController = new PresentProofController({
  basePath: 'https://aca-py-api.com'
})

const eventHandler = new EventHandler([presentProofController])

const message = new Message({
  type: PresentProofMessageTypes.VERIFY_PRESENTATION,
  body: {
    presentation_exchange_id: '3fa85f64-5717-4562-b3fc-2c963f66afa6'
  }
} as VerifyPresentationMessage)

eventHandler.processMsg(message, (response: UlaResponse) => {
  if (response.statusCode < 200 || response.statusCode >= 300) {
    // error
  } else {
    const result: VerifyPresentationResult = response.body
    // response.body is response from ​/present-proof​/records​/{pres_ex_id}​/verify-presentation POST api endpoint in aca-py
    // https://ula-aca.github.io/aries-cloudagent-interface-javascript/#/present-proof/post_present_proof_records__pres_ex_id__verify_presentation
  }
})

@ula-aca/present-proof/remove-exchange-record

Remove an existing presentation exchange record.

import { EventHandler, UlaResponse, Message } from 'universal-ledger-agent'
import {
  PresentProofController,
  PresentProofMessageTypes,
  RemovePresentationExchangeRecordMessage
} from '@ula-aca/present-proof'

const presentProofController = new PresentProofController({
  basePath: 'https://aca-py-api.com'
})

const eventHandler = new EventHandler([presentProofController])

const message = new Message({
  type: PresentProofMessageTypes.REMOVE_EXCHANGE_RECORD,
  body: {
    presentation_exchange_id: '3fa85f64-5717-4562-b3fc-2c963f66afa6'
  }
} as RemovePresentationExchangeRecordMessage)

eventHandler.processMsg(message, (response: UlaResponse) => {
  if (response.statusCode < 200 || response.statusCode >= 300) {
    // error
  } else {
    // record removed
    // https://ula-aca.github.io/aries-cloudagent-interface-javascript/#/present-proof/post_present_proof_records__pres_ex_id__remove
  }
})

ConnectionEventHandler

In order to react to incoming presentation exchange events, we need to setup out event handler. This package exposes an abstract class PresentProofEventHandler that you can extend to implement this behavior. The Aries Cloudagent-Py emits an event whenever there is a change to the state of an agent's presentation exchange record. Therefore there is a callback method for every presentation exchange record state possible. These are: proposal_sent, proposal_received, request_sent, request_received, presentation_sent, presentation_received and verified.

There is also a callback method for incoming basic message events.

import { PresentProofEventHandler } from '@ula-aca/present-proof'
import { EventHandler } from 'universal-ledger-agent'
import { WebhookRelayEventRouter } from '@ula-aca/webhook-relay-event-router'
import {
  PresentationExchangeRecordProposalSent,
  PresentationExchangeRecordProposalReceived,
  PresentationExchangeRecordRequestSent,
  PresentationExchangeRecordRequestReceived,
  PresentationExchangeRecordPresentationSent,
  PresentationExchangeRecordPresentationReceived,
  PresentationExchangeRecordVerified
} from '@ula-aca/webhook-event-models'

class ProofEventHandler extends PresentProofEventHandler {
  onProposalSent(
    message: PresentationExchangeRecordProposalSent
  ): Promise<void> {
    // presentation exchange record state changed to 'proposal_sent'
  }
  onProposalReceived(
    message: PresentationExchangeRecordProposalReceived
  ): Promise<void> {
    // presentation exchange record state changed to 'proposal_received'
  }
  onRequestSent(message: PresentationExchangeRecordRequestSent): Promise<void> {
    // presentation exchange record state changed to 'request_sent'
  }
  onRequestReceived(
    message: PresentationExchangeRecordRequestReceived
  ): Promise<void> {
    // presentation exchange record state changed to 'request_received'
  }
  onPresentationSent(
    message: PresentationExchangeRecordPresentationSent
  ): Promise<void> {
    // presentation exchange record state changed to 'presentation_sent'
  }
  onPresentationReceived(
    message: PresentationExchangeRecordPresentationReceived
  ): Promise<void> {
    // presentation exchange record state changed to 'presentation_received'
  }
  onVerified(message: PresentationExchangeRecordVerified): Promise<void> {
    // presentation exchange record state changed to 'verified'
  }
}

// set up the event router
const eventRouter = new WebhookRelayEventRouter({
  url: 'wss://whr-url.com/ws',
  apiKey: 'api-key',
  fastForward: false
})
// initialize the proof event handler
const proofHandler = new ProofEventHandler()

const eventHandler = new EventHandler([eventRouter, proofHandler])