Identity

Represents an Identity in the Polymesh blockchain

Hierarchy

Index

Constructors

Properties

Methods

Constructors

constructor

+ new Identity(identifiers: UniqueIdentifiersarrow-up-right, context: Context): Identity

Overrides void

Defined in src/api/entities/Identity/index.ts:111arrow-up-right

Create an Identity entity

Parameters:

Name
Type

Returns: Identity

Properties

authorizations

• authorizations: IdentityAuthorizations

Defined in src/api/entities/Identity/index.ts:109arrow-up-right


Protected context

• context: Context

Inherited from Entity.context

Defined in src/api/entities/Entity.ts:48arrow-up-right


did

• did: string

Defined in src/api/entities/Identity/index.ts:106arrow-up-right

identity ID as stored in the blockchain


portfolios

• portfolios: Portfolios

Defined in src/api/entities/Identity/index.ts:110arrow-up-right


tokenPermissions

• tokenPermissions: TokenPermissions

Defined in src/api/entities/Identity/index.ts:111arrow-up-right


uuid

• uuid: string

Inherited from Entity.uuid

Defined in src/api/entities/Entity.ts:46arrow-up-right

Methods

areSecondaryKeysFrozen

▸ areSecondaryKeysFrozen(): Promise‹boolean›

Defined in src/api/entities/Identity/index.ts:681arrow-up-right

Check whether secondary keys are frozen

note can be subscribed to

Returns: Promise‹boolean›

▸ areSecondaryKeysFrozen(callback: SubCallback‹boolean›): Promise‹UnsubCallback›

Defined in src/api/entities/Identity/index.ts:682arrow-up-right

Parameters:

Name
Type

callback

SubCallback‹boolean›

Returns: Promise‹UnsubCallback›


createVenue

▸ createVenue(args: CreateVenueParamsarrow-up-right, opts?: ProcedureOptsarrow-up-right): Promise‹TransactionQueue‹Venue››

Defined in src/api/entities/Identity/index.ts:225arrow-up-right

Create a Venue

note this method is of type ProcedureMethodarrow-up-right, which means you can call createVenue.checkAuthorization on it to see whether the Current Account has the required permissions to run it

Parameters:

Returns: Promise‹TransactionQueue‹Venue››


exists

▸ exists(): Promise‹boolean›

Overrides Entity.exists

Defined in src/api/entities/Identity/index.ts:804arrow-up-right

Determine whether this Identity exists on chain

Returns: Promise‹boolean›


freezeSecondaryKeys

▸ freezeSecondaryKeys(args: void, opts?: ProcedureOptsarrow-up-right): Promise‹TransactionQueue‹void››

Defined in src/api/entities/Identity/index.ts:235arrow-up-right

Freeze all the secondary keys in this Identity. This means revoking their permission to perform any operation on the blockchain and freezing their funds until the keys are unfrozen via unfreezeSecondaryKeys

note this method is of type ProcedureMethodarrow-up-right, which means you can call freezeSecondaryKeys.checkAuthorization on it to see whether the Current Account has the required permissions to run it

Parameters:

Name
Type

Returns: Promise‹TransactionQueue‹void››


getHeldTokens

▸ getHeldTokens(opts: object): Promise‹ResultSetarrow-up-right‹SecurityToken››

Defined in src/api/entities/Identity/index.ts:435arrow-up-right

Retrieve a list of all tokens which were held at one point by this Identity

note uses the middleware

note supports pagination

Parameters:

â–ªDefault value opts: object= { order: Order.Asc }

Name
Type

order?

Order

size?

undefined | number

start?

undefined | number

Returns: Promise‹ResultSetarrow-up-right‹SecurityToken››


getInstructions

▸ getInstructions(): Promise‹GroupedInstructionsarrow-up-right›

Defined in src/api/entities/Identity/index.ts:559arrow-up-right

Retrieve all Instructions where this Identity is a participant, grouped by status

Returns: Promise‹GroupedInstructionsarrow-up-right›


getPendingDistributions

▸ getPendingDistributions(): Promise‹DistributionWithDetailsarrow-up-right[]›

Defined in src/api/entities/Identity/index.ts:717arrow-up-right

Retrieve every Dividend Distribution for which this Identity is eligible and hasn't been paid

note uses the middleware

note this query can be potentially SLOW depending on which Tokens this Identity has held

Returns: Promise‹DistributionWithDetailsarrow-up-right[]›


getPendingInstructions

▸ getPendingInstructions(): Promise‹Instruction[]›

Defined in src/api/entities/Identity/index.ts:628arrow-up-right

Retrieve all pending Instructions involving this Identity

deprecated in favor of getInstructions

Returns: Promise‹Instruction[]›


getPrimaryKey

▸ getPrimaryKey(): Promise‹Account›

Defined in src/api/entities/Identity/index.ts:400arrow-up-right

Retrieve the primary key associated with the Identity

note can be subscribed to

Returns: Promise‹Account›

▸ getPrimaryKey(callback: SubCallback‹Account›): Promise‹UnsubCallback›

Defined in src/api/entities/Identity/index.ts:401arrow-up-right

Parameters:

Name
Type

callback

SubCallback‹Account›

Returns: Promise‹UnsubCallback›


getScopeId

▸ getScopeId(args: object): Promise‹string›

Defined in src/api/entities/Identity/index.ts:541arrow-up-right

Retrieve the Scope ID associated to this Identity's Investor Uniqueness Claim for a specific Security Token

note more on Investor Uniqueness: https://developers.polymesh.live/confidential_identity

Parameters:

â–ª args: object

Name
Type

token

SecurityToken | string

Returns: Promise‹string›


getSecondaryKeys

▸ getSecondaryKeys(): Promise‹SecondaryKeyarrow-up-right[]›

Defined in src/api/entities/Identity/index.ts:769arrow-up-right

Get the list of secondary keys related to the Identity

note can be subscribed to

Returns: Promise‹SecondaryKeyarrow-up-right[]›

▸ getSecondaryKeys(callback: SubCallback‹SecondaryKeyarrow-up-right[]›): Promise‹UnsubCallback›

Defined in src/api/entities/Identity/index.ts:770arrow-up-right

Parameters:

Name
Type

Returns: Promise‹UnsubCallback›


getTokenBalance

▸ getTokenBalance(args: object): Promise‹BigNumber›

Defined in src/api/entities/Identity/index.ts:300arrow-up-right

Retrieve the balance of a particular Security Token

note can be subscribed to

Parameters:

â–ª args: object

Name
Type

ticker

string

Returns: Promise‹BigNumber›

▸ getTokenBalance(args: object, callback: SubCallback‹BigNumber›): Promise‹UnsubCallback›

Defined in src/api/entities/Identity/index.ts:301arrow-up-right

Parameters:

â–ª args: object

Name
Type

ticker

string

▪ callback: SubCallback‹BigNumber›

Returns: Promise‹UnsubCallback›


getTrustingTokens

▸ getTrustingTokens(args: object): Promise‹SecurityToken[]›

Defined in src/api/entities/Identity/index.ts:486arrow-up-right

Get the list of tokens for which this Identity is a trusted claim issuer

note uses the middleware

Parameters:

â–ªDefault value args: object= { order: Order.Asc }

Name
Type

order

Order

Returns: Promise‹SecurityToken[]›


getVenues

▸ getVenues(): Promise‹Venue[]›

Defined in src/api/entities/Identity/index.ts:507arrow-up-right

Retrieve all Venues created by this Identity

note can be subscribed to

Returns: Promise‹Venue[]›

▸ getVenues(callback: SubCallback‹Venue[]›): Promise‹UnsubCallback›

Defined in src/api/entities/Identity/index.ts:508arrow-up-right

Parameters:

Name
Type

callback

SubCallback‹Venue[]›

Returns: Promise‹UnsubCallback›


hasRole

▸ hasRole(role: Role): Promise‹boolean›

Defined in src/api/entities/Identity/index.ts:252arrow-up-right

Check whether this Identity possesses the specified Role

Parameters:

Name
Type

role

Returns: Promise‹boolean›


hasRoles

▸ hasRoles(roles: Role[]): Promise‹boolean›

Defined in src/api/entities/Identity/index.ts:475arrow-up-right

Check whether this Identity possesses all specified roles

Parameters:

Name
Type

roles

Returns: Promise‹boolean›


hasValidCdd

▸ hasValidCdd(): Promise‹boolean›

Defined in src/api/entities/Identity/index.ts:348arrow-up-right

Check whether this Identity has a valid CDD claim

Returns: Promise‹boolean›


inviteAccount

▸ inviteAccount(args: InviteAccountParamsarrow-up-right, opts?: ProcedureOptsarrow-up-right): Promise‹TransactionQueue‹void››

Defined in src/api/entities/Identity/index.ts:215arrow-up-right

Send an invitation to an Account to join this Identity

note this may create AuthorizationRequest which have to be accepted by the corresponding Account. An Account or Identity can fetch its pending Authorization Requests by calling authorizations.getReceived

note this method is of type ProcedureMethodarrow-up-right, which means you can call inviteAccount.checkAuthorization on it to see whether the Current Account has the required permissions to run it

Parameters:

Returns: Promise‹TransactionQueue‹void››


isCddProvider

▸ isCddProvider(): Promise‹boolean›

Defined in src/api/entities/Identity/index.ts:381arrow-up-right

Check whether this Identity is a CDD provider

Returns: Promise‹boolean›


isEqual

▸ isEqual(entity: Entity‹unknown, unknown›): boolean

Inherited from Entity.isEqual

Defined in src/api/entities/Entity.ts:61arrow-up-right

Determine whether this Entity is the same as another one

Parameters:

Name
Type

entity

Entity‹unknown, unknown›

Returns: boolean


isGcMember

▸ isGcMember(): Promise‹boolean›

Defined in src/api/entities/Identity/index.ts:364arrow-up-right

Check whether this Identity is Governance Committee member

Returns: Promise‹boolean›


modifyPermissions

▸ modifyPermissions(args: ModifySignerPermissionsParamsarrow-up-right, opts?: ProcedureOptsarrow-up-right): Promise‹TransactionQueue‹void››

Defined in src/api/entities/Identity/index.ts:201arrow-up-right

Modify all permissions of a list of secondary keys associated with the Identity

note this method is of type ProcedureMethodarrow-up-right, which means you can call modifyPermissions.checkAuthorization on it to see whether the Current Account has the required permissions to run it

Parameters:

Returns: Promise‹TransactionQueue‹void››


removeSecondaryKeys

▸ removeSecondaryKeys(args: RemoveSecondaryKeysParamsarrow-up-right, opts?: ProcedureOptsarrow-up-right): Promise‹TransactionQueue‹void››

Defined in src/api/entities/Identity/index.ts:181arrow-up-right

Remove a list of secondary keys associated with the Identity

note this method is of type ProcedureMethodarrow-up-right, which means you can call removeSecondaryKeys.checkAuthorization on it to see whether the Current Account has the required permissions to run it

Parameters:

Returns: Promise‹TransactionQueue‹void››


revokePermissions

▸ revokePermissions(args: object, opts?: ProcedureOptsarrow-up-right): Promise‹TransactionQueue‹void››

Defined in src/api/entities/Identity/index.ts:191arrow-up-right

Revoke all permissions of a list of secondary keys associated with the Identity

note this method is of type ProcedureMethodarrow-up-right, which means you can call revokePermissions.checkAuthorization on it to see whether the Current Account has the required permissions to run it

Parameters:

â–ª args: object

Name
Type

secondaryKeys

â–ªOptional opts: ProcedureOptsarrow-up-right

Returns: Promise‹TransactionQueue‹void››


toJson

â–¸ toJson(): string

Overrides Entity.toJson

Defined in src/api/entities/Identity/index.ts:817arrow-up-right

Return the Identity's DID

Returns: string


unfreezeSecondaryKeys

▸ unfreezeSecondaryKeys(args: void, opts?: ProcedureOptsarrow-up-right): Promise‹TransactionQueue‹void››

Defined in src/api/entities/Identity/index.ts:245arrow-up-right

Unfreeze all the secondary keys in this Identity. This will restore their permissions as they were before being frozen

note this method is of type ProcedureMethodarrow-up-right, which means you can call unfreezeSecondaryKeys.checkAuthorization on it to see whether the Current Account has the required permissions to run it

Parameters:

Name
Type

Returns: Promise‹TransactionQueue‹void››


Static generateUuid

▸ generateUuid‹Identifiers›(identifiers: Identifiers): string

Inherited from Entity.generateUuid

Defined in src/api/entities/Entity.ts:14arrow-up-right

Generate the Entity's UUID from its identifying properties

Type parameters:

â–ª Identifiers

Parameters:

Name
Type
Description

identifiers

Identifiers

Returns: string


Static unserialize

▸ unserialize‹Identifiers›(serialized: string): Identifiers

Inherited from Entity.unserialize

Defined in src/api/entities/Entity.ts:23arrow-up-right

Unserialize a UUID into its Unique Identifiers

Type parameters:

â–ª Identifiers

Parameters:

Name
Type
Description

serialized

string

UUID to unserialize

Returns: Identifiers

Last updated

Was this helpful?