Portfolio

Represents a base Portfolio for a specific Identity in the Polymesh blockchain

Hierarchy

Index

Properties

Methods

Properties

Protected Optional _id

_id? : BigNumber

Defined in src/api/entities/Portfolio/index.ts:83arrow-up-right

internal Portfolio identifier (unused for default Portfolio)


Protected context

context: Context

Inherited from CheckpointSchedule.context

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


owner

owner: Identity

Defined in src/api/entities/Portfolio/index.ts:78arrow-up-right

Identity of the Portfolio's owner


uuid

uuid: string

Inherited from CheckpointSchedule.uuid

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

Methods

Abstract exists

exists(): Promise‹boolean›

Inherited from Entity.exists

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

Determine whether this Entity exists on chain

Returns: Promise‹boolean›


getAssetBalances

getAssetBalances(args?: undefined | object): Promise‹PortfolioBalancearrow-up-right[]›

Defined in src/api/entities/Portfolio/index.ts:144arrow-up-right

Retrieve the balances of all Assets in this Portfolio

Parameters:

Name
Type

args?

undefined | object

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


getCustodian

getCustodian(): Promise‹Identity

Defined in src/api/entities/Portfolio/index.ts:274arrow-up-right

Retrieve the custodian Identity of this Portfolio

note if no custodian is set, the owner Identity is returned

Returns: Promise‹Identity


getTransactionHistory

getTransactionHistory(filters: object): Promise‹ResultSetarrow-up-rightHistoricSettlementarrow-up-right››

Defined in src/api/entities/Portfolio/index.ts:319arrow-up-right

Retrieve a list of transactions where this portfolio was involved. Can be filtered using parameters

note supports pagination

note uses the middleware

Parameters:

Default value filters: object= {}

Name
Type
Description

account?

undefined | string

Account involved in the settlement

size?

BigNumber

page size

start?

BigNumber

page offset

ticker?

undefined | string

ticker involved in the transaction

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


getTransactionHistoryV2

getTransactionHistoryV2(filters: object): Promise‹HistoricSettlementarrow-up-right[]›

Defined in src/api/entities/Portfolio/index.ts:421arrow-up-right

Retrieve a list of transactions where this portfolio was involved. Can be filtered using parameters

note uses the middlewareV2

Parameters:

Default value filters: object= {}

Name
Type
Description

account?

undefined | string

Account involved in the settlement

ticker?

undefined | string

ticker involved in the transaction

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


isCustodiedBy

isCustodiedBy(args?: undefined | object): Promise‹boolean›

Defined in src/api/entities/Portfolio/index.ts:128arrow-up-right

Return whether an Identity is the Portfolio custodian

Parameters:

Name
Type

args?

undefined | object

Returns: Promise‹boolean›


isEqual

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

Inherited from CheckpointSchedule.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


isOwnedBy

isOwnedBy(args?: undefined | object): Promise‹boolean›

Defined in src/api/entities/Portfolio/index.ts:115arrow-up-right

Return whether an Identity is the Portfolio owner

Parameters:

Name
Type

args?

undefined | object

Returns: Promise‹boolean›


moveFunds

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

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

Moves funds from this Portfolio to another one owned by the same Identity

note required role:

  • Portfolio Custodian

note this method is of type ProcedureMethodarrow-up-right, which means you can call moveFunds.checkAuthorizationarrow-up-right on it to see whether the signing Account and Identity have the required roles and permissions to run it

Parameters:

Returns: Promise‹TransactionQueue‹void››


quitCustody

quitCustody(opts?: ProcedureOptsarrow-up-right): Promise‹TransactionQueue‹void››

Defined in src/api/entities/Portfolio/index.ts:265arrow-up-right

Returns the custody of the portfolio to the portfolio owner unilaterally

note required role:

  • Portfolio Custodian

note this method is of type NoArgsProcedureMethodarrow-up-right, which means you can call quitCustody.checkAuthorizationarrow-up-right on it to see whether the signing Account and Identity have the required roles and permissions to run it

Parameters:

Returns: Promise‹TransactionQueue‹void››


setCustodian

setCustodian(args: SetCustodianParamsarrow-up-right, opts?: ProcedureOptsarrow-up-right): Promise‹TransactionQueueAuthorizationRequest››

Defined in src/api/entities/Portfolio/index.ts:239arrow-up-right

Send an invitation to an Identity to assign it as custodian for this Portfolio

note this will create an Authorization Request which has to be accepted by the targetIdentity. An Accountarrow-up-right or Identityarrow-up-right 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:

  • Portfolio Custodian

note this method is of type ProcedureMethodarrow-up-right, which means you can call setCustodian.checkAuthorizationarrow-up-right on it to see whether the signing Account and Identity have the required roles and permissions to run it

Parameters:

Returns: Promise‹TransactionQueueAuthorizationRequest››


toHuman

toHuman(): HumanReadablearrow-up-right

Overrides Entity.toHuman

Defined in src/api/entities/Portfolio/index.ts:540arrow-up-right

Return the Portfolio ID and owner DID

Returns: HumanReadablearrow-up-right


Static generateUuid

generateUuidIdentifiers›(identifiers: Identifiers): string

Inherited from CheckpointSchedule.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

unserializeIdentifiers›(serialized: string): Identifiers

Inherited from CheckpointSchedule.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?