NumberedPortfolio

Represents a numbered (non-default) Portfolio for an Identity

Hierarchy

↳ Portfolio

↳ NumberedPortfolio

Index

Properties

Methods

Properties

Protected Optional _id

• _id? : BigNumber

Inherited from Portfolio._id

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

internal Portfolio identifier (unused for default Portfolio)

Protected context

• context: Context

Inherited from Entity.context

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

id

• id: BigNumber

Defined in src/api/entities/NumberedPortfolio.ts:38arrow-up-right

portfolio identifier number

owner

• owner: Identity

Inherited from Portfolio.owner

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

identity of the Portfolio's owner

uuid

• uuid: string

Inherited from Entity.uuid

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

Methods

createdAt

▸ createdAt(): Promise‹EventIdentifier | null›

Defined in src/api/entities/NumberedPortfolio.ts:102arrow-up-right

Retrieve the identifier data (block number, date and event index) of the event that was emitted when this portfolio was created

note uses the middleware

note there is a possibility that the data is not ready by the time it is requested. In that case, null is returned

Returns: Promise‹EventIdentifier | null›

delete

▸ delete(): Promise‹TransactionQueue‹void››

Defined in src/api/entities/NumberedPortfolio.ts:54arrow-up-right

Delete this Portfolio

Returns: Promise‹TransactionQueue‹void››

exists

▸ exists(): Promise‹boolean›

Defined in src/api/entities/NumberedPortfolio.ts:135arrow-up-right

Return whether this Portfolio exists

Returns: Promise‹boolean›

getCustodian

▸ getCustodian(): Promise‹Identity›

Inherited from Portfolio.getCustodian

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

Retrieve the custodian Identity of this Portfolio

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

Returns: Promise‹Identity›

getName

▸ getName(): Promise‹string›

Defined in src/api/entities/NumberedPortfolio.ts:79arrow-up-right

Return the Portfolio name

Returns: Promise‹string›

getTokenBalances

▸ getTokenBalances(args?: undefined | object): Promise‹PortfolioBalance[]›

Inherited from Portfolio.getTokenBalances

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

Retrieve the balances of all assets in this Portfolio

Parameters:

Name

Type

args?

undefined | object

Returns: Promise‹PortfolioBalance[]›

isCustodiedBy

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

Inherited from Portfolio.isCustodiedBy

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

Return whether an Identity is the Portfolio custodian

Parameters:

Name

Type

args?

undefined | object

Returns: Promise‹boolean›

isOwnedBy

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

Inherited from Portfolio.isOwnedBy

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

Return whether an Identity is the Portfolio owner

Parameters:

Name

Type

args?

undefined | object

Returns: Promise‹boolean›

modifyName

▸ modifyName(args: RenamePortfolioParams): Promise‹TransactionQueue‹NumberedPortfolio››

Defined in src/api/entities/NumberedPortfolio.ts:65arrow-up-right

Rename portfolio

Parameters:

Returns: Promise‹TransactionQueue‹NumberedPortfolio››

moveFunds

▸ moveFunds(args: MoveFundsParams): Promise‹TransactionQueue‹void››

Inherited from Portfolio.moveFunds

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

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

Parameters:

Name

Type

Returns: Promise‹TransactionQueue‹void››

setCustodian

▸ setCustodian(args: SetCustodianParams): Promise‹TransactionQueue‹void››

Inherited from Portfolio.setCustodian

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

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

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

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: object

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: object

Parameters:

Name

Type

Description

serialized

string

UUID to unserialize

Returns: Identifiers

Last updated

Was this helpful?