-
Notifications
You must be signed in to change notification settings - Fork 11
api.entities.Identity.ChildIdentity.ChildIdentity
api/entities/Identity/ChildIdentity.ChildIdentity
Represents a child identity
-
↳
ChildIdentity
- areSecondaryAccountsFrozen
- checkRoles
- exists
- getAssetBalance
- getHeldAssets
- getHeldNfts
- getHistoricalInstructions
- getInstructions
- getInvolvedInstructions
- getParentDid
- getPendingDistributions
- getPrimaryAccount
- getSecondaryAccounts
- getTrustingAssets
- getVenues
- hasRole
- hasValidCdd
- isCddProvider
- isChild
- isEqual
- isGcMember
- toHuman
- unlinkChild
- unlinkFromParent
- generateUuid
- unserialize
• assetPermissions: AssetPermissions
api/entities/Identity/index.ts:119
• authorizations: IdentityAuthorizations
api/entities/Identity/index.ts:117
• did: string
Identity ID as stored in the blockchain
api/entities/Identity/index.ts:114
• portfolios: Portfolios
api/entities/Identity/index.ts:118
• uuid: string
▸ areSecondaryAccountsFrozen(): Promise
<boolean
>
Check whether secondary Accounts are frozen
Note
can be subscribed to
Promise
<boolean
>
Identity.areSecondaryAccountsFrozen
▸ areSecondaryAccountsFrozen(callback
): Promise
<UnsubCallback
>
Name | Type |
---|---|
callback |
SubCallback <boolean > |
Promise
<UnsubCallback
>
Identity.areSecondaryAccountsFrozen
▸ checkRoles(roles
): Promise
<CheckRolesResult
>
Check whether this Identity possesses all specified roles
Name | Type |
---|---|
roles |
Role [] |
Promise
<CheckRolesResult
>
▸ exists(): Promise
<boolean
>
Determine whether this child Identity exists
Note
asset Identities aren't considered to exist for this check
Promise
<boolean
>
▸ getAssetBalance(args
): Promise
<BigNumber
>
Retrieve the balance of a particular Asset
Note
can be subscribed to
Name | Type |
---|---|
args |
Object |
args.ticker |
string |
Promise
<BigNumber
>
▸ getAssetBalance(args
, callback
): Promise
<UnsubCallback
>
Name | Type |
---|---|
args |
Object |
args.ticker |
string |
callback |
SubCallback <BigNumber > |
Promise
<UnsubCallback
>
▸ getHeldAssets(opts?
): Promise
<ResultSet
<FungibleAsset
>>
Retrieve a list of all Assets which were held at one point by this Identity
Note
uses the middlewareV2
Note
supports pagination
Name | Type |
---|---|
opts |
Object |
opts.order? |
AssetHoldersOrderBy |
opts.size? |
BigNumber |
opts.start? |
BigNumber |
Promise
<ResultSet
<FungibleAsset
>>
▸ getHeldNfts(opts?
): Promise
<ResultSet
<HeldNfts
>>
Retrieve a list of all NftCollections which were held at one point by this Identity
Note
uses the middlewareV2
Note
supports pagination
Name | Type |
---|---|
opts |
Object |
opts.order? |
NftHoldersOrderBy |
opts.size? |
BigNumber |
opts.start? |
BigNumber |
▸ getHistoricalInstructions(): Promise
<HistoricInstruction
[]>
Retrieve all Instructions that have been associated with this Identity's DID
Note
uses the middleware V2
Promise
<HistoricInstruction
[]>
Identity.getHistoricalInstructions
▸ getInstructions(): Promise
<GroupedInstructions
>
Retrieve all Instructions where this Identity is a custodian of one or more portfolios in the legs, grouped by status
Promise
<GroupedInstructions
>
▸ getInvolvedInstructions(): Promise
<GroupedInvolvedInstructions
>
Retrieve all Instructions where this Identity is a participant (owner/custodian), grouped by the role of the Identity and Instruction status
Promise
<GroupedInvolvedInstructions
>
Identity.getInvolvedInstructions
▸ getParentDid(): Promise
<null
| Identity
>
Returns the parent of this Identity (if any)
Promise
<null
| Identity
>
▸ getPendingDistributions(): Promise
<DistributionWithDetails
[]>
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 Assets this Identity has held
Promise
<DistributionWithDetails
[]>
Identity.getPendingDistributions
▸ getPrimaryAccount(): Promise
<PermissionedAccount
>
Retrieve the primary Account associated with the Identity
Note
can be subscribed to
Promise
<PermissionedAccount
>
▸ getPrimaryAccount(callback
): Promise
<UnsubCallback
>
Name | Type |
---|---|
callback |
SubCallback <PermissionedAccount > |
Promise
<UnsubCallback
>
▸ getSecondaryAccounts(paginationOpts?
): Promise
<ResultSet
<PermissionedAccount
>>
Get the list of secondary Accounts related to the Identity
Note
supports pagination
Note
can be subscribed to
Name | Type |
---|---|
paginationOpts? |
PaginationOptions |
Promise
<ResultSet
<PermissionedAccount
>>
▸ getSecondaryAccounts(callback
): Promise
<UnsubCallback
>
Name | Type |
---|---|
callback |
SubCallback <PermissionedAccount []> |
Promise
<UnsubCallback
>
▸ getSecondaryAccounts(paginationOpts
, callback
): Promise
<UnsubCallback
>
Name | Type |
---|---|
paginationOpts |
PaginationOptions |
callback |
SubCallback <PermissionedAccount []> |
Promise
<UnsubCallback
>
▸ getTrustingAssets(): Promise
<FungibleAsset
[]>
Get the list of Assets for which this Identity is a trusted claim issuer
Note
uses the middlewareV2
Promise
<FungibleAsset
[]>
▸ getVenues(): Promise
<Venue
[]>
Retrieve all Venues created by this Identity
Note
can be subscribed to
Promise
<Venue
[]>
▸ hasRole(role
): Promise
<boolean
>
Check whether this Identity possesses the specified Role
Name | Type |
---|---|
role |
Role |
Promise
<boolean
>
▸ hasValidCdd(): Promise
<boolean
>
Check whether this Identity has a valid CDD claim
Promise
<boolean
>
▸ isCddProvider(): Promise
<boolean
>
Check whether this Identity is a CDD provider
Promise
<boolean
>
▸ isChild(): Promise
<boolean
>
Check whether this Identity is a child Identity
Promise
<boolean
>
▸ isEqual(entity
): boolean
Determine whether this Entity is the same as another one
Name | Type |
---|---|
entity |
Entity <unknown , unknown > |
boolean
▸ isGcMember(): Promise
<boolean
>
Check whether this Identity is Governance Committee member
Promise
<boolean
>
▸ toHuman(): string
Return the Identity's DID
string
▸ unlinkChild(args
, opts?
): Promise
<GenericPolymeshTransaction
<void
, void
>>
Unlinks a child identity
Throws
if
- the
child
is not a child of this identity - the transaction signer is not the primary key of the parent identity
Note
this method is of type ProcedureMethod, which means you can call unlinkChild.checkAuthorization on it to see whether the signing Account and Identity have the required roles and permissions to run it
Name | Type |
---|---|
args |
UnlinkChildParams |
opts? |
ProcedureOpts |
Promise
<GenericPolymeshTransaction
<void
, void
>>
▸ unlinkFromParent(opts?
): Promise
<GenericPolymeshTransaction
<void
, void
>>
Unlinks this child identity from its parent
Throws
if
- this identity doesn't have a parent
- the transaction signer is not the primary key of the child identity
Note
this method is of type NoArgsProcedureMethod, which means you can call unlinkFromParent.checkAuthorization on it to see whether the signing Account and Identity have the required roles and permissions to run it
Name | Type |
---|---|
opts? |
ProcedureOpts |
Promise
<GenericPolymeshTransaction
<void
, void
>>
▸ Static
generateUuid<Identifiers
>(identifiers
): string
Generate the Entity's UUID from its identifying properties
Name |
---|
Identifiers |
Name | Type |
---|---|
identifiers |
Identifiers |
string
▸ Static
unserialize<Identifiers
>(serialized
): Identifiers
Unserialize a UUID into its Unique Identifiers
Name |
---|
Identifiers |
Name | Type | Description |
---|---|---|
serialized |
string |
UUID to unserialize |
Identifiers
Entities
- Account
- Asset
- Authorization Request
- Checkpoint
- Checkpoint Schedule
- Corporate Action
- Corporate Action Base
- Custom Permission Group
- Default Portfolio
- Default Trusted Claim Issuer
- Dividend Distribution
- Entity
- Identity
- Instruction
- Known Permission Group
- Metadata Entry
- Multi Sig Proposal
- Numbered Portfolio
- Offering
- Permission Group
- Portfolio
- Subsidies
- Subsidy
- Ticker Reservation
- Venue
- Authorizations
- Types