Identities

Handles all Identity related functionality

Hierarchy

  • Identities

Index

Methods

Methods

createPortfolio

createPortfolio(args: object, opts?: ProcedureOpts): Promise‹TransactionQueueNumberedPortfolio[], NumberedPortfolio››

Defined in src/Identities.ts:82

Create a new Portfolio under the ownership of the signing Identity

note this method is of type ProcedureMethod, which means you can call createPortfolio.checkAuthorization on it to see whether the signing Account and Identity have the required roles and permissions to run it

Parameters:

args: object

NameType

name

string

Optional opts: ProcedureOpts

Returns: Promise‹TransactionQueueNumberedPortfolio[], NumberedPortfolio››


createPortfolios

createPortfolios(args: object, opts?: ProcedureOpts): Promise‹TransactionQueueNumberedPortfolio[]››

Defined in src/Identities.ts:92

Creates a set of new Portfolios under the ownership of the signing Identity

note this method is of type ProcedureMethod, which means you can call createPortfolios.checkAuthorization on it to see whether the signing Account and Identity have the required roles and permissions to run it

Parameters:

args: object

NameType

names

string[]

Optional opts: ProcedureOpts

Returns: Promise‹TransactionQueueNumberedPortfolio[]››


getIdentity

getIdentity(args: object): Promise‹Identity

Defined in src/Identities.ts:101

Create an Identity instance from a DID

throws if there is no Identity with the passed DID

Parameters:

args: object

NameType

did

string

Returns: Promise‹Identity


isIdentityValid

isIdentityValid(args: object): Promise‹boolean›

Defined in src/Identities.ts:108

Return whether the supplied Identity/DID exists

Parameters:

args: object

NameType

identity

Identity | string

Returns: Promise‹boolean›


registerIdentity

registerIdentity(args: RegisterIdentityParams, opts?: ProcedureOpts): Promise‹TransactionQueueIdentity››

Defined in src/Identities.ts:72

Register an Identity

note must be a CDD provider

note this may create Authorization Requests which have to be accepted by the targetAccount. An Account or Identity can fetch its pending Authorization Requests by calling authorizations.getReceived. Also, an Account or Identity can directly fetch the details of an Authorization Request by calling authorizations.getOne

note required role:

  • Customer Due Diligence Provider

note this method is of type ProcedureMethod, which means you can call registerIdentity.checkAuthorization on it to see whether the signing Account and Identity have the required roles and permissions to run it

Parameters:

Returns: Promise‹TransactionQueueIdentity››

Last updated