> For the complete documentation index, see [llms.txt](https://developers.polymath.network/polymesh-sdk-api-reference/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developers.polymath.network/polymesh-sdk-api-reference/v12.0.2/classes/defaultportfolio.md).

# DefaultPortfolio

Represents the default Portfolio for an Identity

## Hierarchy

↳ [Portfolio](/polymesh-sdk-api-reference/v12.0.2/classes/portfolio.md)

↳ **DefaultPortfolio**

## Index

### Properties

* [\_id](#protected-optional-_id)
* [context](#protected-context)
* [owner](#owner)
* [uuid](#uuid)

### Methods

* [exists](#exists)
* [getCustodian](#getcustodian)
* [getTokenBalances](#gettokenbalances)
* [getTransactionHistory](#gettransactionhistory)
* [isCustodiedBy](#iscustodiedby)
* [isEqual](#isequal)
* [isOwnedBy](#isownedby)
* [moveFunds](#movefunds)
* [quitCustody](#quitcustody)
* [setCustodian](#setcustodian)
* [toJson](#tojson)
* [generateUuid](#static-generateuuid)
* [unserialize](#static-unserialize)

## Properties

### `Protected` `Optional` \_id

• **\_id**? : *BigNumber*

*Inherited from* [*Portfolio*](/polymesh-sdk-api-reference/v12.0.2/classes/portfolio.md)*.*[*\_id*](/polymesh-sdk-api-reference/v12.0.2/classes/portfolio.md#protected-optional-_id)

*Defined in* [*src/api/entities/Portfolio/index.ts:75*](https://github.com/PolymathNetwork/polymesh-sdk/blob/44d12f59/src/api/entities/Portfolio/index.ts#L75)

internal Portfolio identifier (unused for default Portfolio)

***

### `Protected` context

• **context**: [*Context*](/polymesh-sdk-api-reference/v12.0.2/classes/context.md)

*Inherited from* [*Entity*](/polymesh-sdk-api-reference/v12.0.2/classes/entity.md)*.*[*context*](/polymesh-sdk-api-reference/v12.0.2/classes/entity.md#protected-context)

*Defined in* [*src/api/entities/Entity.ts:48*](https://github.com/PolymathNetwork/polymesh-sdk/blob/44d12f59/src/api/entities/Entity.ts#L48)

***

### owner

• **owner**: [*Identity*](/polymesh-sdk-api-reference/v12.0.2/classes/identity.md)

*Inherited from* [*Portfolio*](/polymesh-sdk-api-reference/v12.0.2/classes/portfolio.md)*.*[*owner*](/polymesh-sdk-api-reference/v12.0.2/classes/portfolio.md#owner)

*Defined in* [*src/api/entities/Portfolio/index.ts:70*](https://github.com/PolymathNetwork/polymesh-sdk/blob/44d12f59/src/api/entities/Portfolio/index.ts#L70)

identity of the Portfolio's owner

***

### uuid

• **uuid**: *string*

*Inherited from* [*Entity*](/polymesh-sdk-api-reference/v12.0.2/classes/entity.md)*.*[*uuid*](/polymesh-sdk-api-reference/v12.0.2/classes/entity.md#uuid)

*Defined in* [*src/api/entities/Entity.ts:46*](https://github.com/PolymathNetwork/polymesh-sdk/blob/44d12f59/src/api/entities/Entity.ts#L46)

## Methods

### exists

▸ **exists**(): *Promise‹boolean›*

*Overrides* [*Entity*](/polymesh-sdk-api-reference/v12.0.2/classes/entity.md)*.*[*exists*](/polymesh-sdk-api-reference/v12.0.2/classes/entity.md#abstract-exists)

*Defined in* [*src/api/entities/DefaultPortfolio.ts:23*](https://github.com/PolymathNetwork/polymesh-sdk/blob/44d12f59/src/api/entities/DefaultPortfolio.ts#L23)

Determine whether this Portfolio exists on chain

**Returns:** *Promise‹boolean›*

***

### getCustodian

▸ **getCustodian**(): *Promise‹*[*Identity*](/polymesh-sdk-api-reference/v12.0.2/classes/identity.md)*›*

*Inherited from* [*Portfolio*](/polymesh-sdk-api-reference/v12.0.2/classes/portfolio.md)*.*[*getCustodian*](/polymesh-sdk-api-reference/v12.0.2/classes/portfolio.md#getcustodian)

*Defined in* [*src/api/entities/Portfolio/index.ts:257*](https://github.com/PolymathNetwork/polymesh-sdk/blob/44d12f59/src/api/entities/Portfolio/index.ts#L257)

Retrieve the custodian Identity of this Portfolio

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

**Returns:** *Promise‹*[*Identity*](/polymesh-sdk-api-reference/v12.0.2/classes/identity.md)*›*

***

### getTokenBalances

▸ **getTokenBalances**(`args?`: undefined | object): *Promise‹*[*PortfolioBalance*](https://github.com/PolymathNetwork/polymesh-sdk/blob/docs/v12/docs/interfaces/portfoliobalance.md)*\[]›*

*Inherited from* [*Portfolio*](/polymesh-sdk-api-reference/v12.0.2/classes/portfolio.md)*.*[*getTokenBalances*](/polymesh-sdk-api-reference/v12.0.2/classes/portfolio.md#gettokenbalances)

*Defined in* [*src/api/entities/Portfolio/index.ts:139*](https://github.com/PolymathNetwork/polymesh-sdk/blob/44d12f59/src/api/entities/Portfolio/index.ts#L139)

Retrieve the balances of all assets in this Portfolio

**Parameters:**

| Name    | Type                |
| ------- | ------------------- |
| `args?` | undefined \| object |

**Returns:** *Promise‹*[*PortfolioBalance*](https://github.com/PolymathNetwork/polymesh-sdk/blob/docs/v12/docs/interfaces/portfoliobalance.md)*\[]›*

***

### getTransactionHistory

▸ **getTransactionHistory**(`filters`: object): *Promise‹*[*ResultSet*](https://github.com/PolymathNetwork/polymesh-sdk/blob/docs/v12/docs/interfaces/resultset.md)*‹*[*HistoricSettlement*](https://github.com/PolymathNetwork/polymesh-sdk/blob/docs/v12/docs/interfaces/historicsettlement.md)*››*

*Inherited from* [*Portfolio*](/polymesh-sdk-api-reference/v12.0.2/classes/portfolio.md)*.*[*getTransactionHistory*](/polymesh-sdk-api-reference/v12.0.2/classes/portfolio.md#gettransactionhistory)

*Defined in* [*src/api/entities/Portfolio/index.ts:302*](https://github.com/PolymathNetwork/polymesh-sdk/blob/44d12f59/src/api/entities/Portfolio/index.ts#L302)

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?`    | undefined \| number | page size                          |
| `start?`   | undefined \| number | page offset                        |
| `ticker?`  | undefined \| string | ticker involved in the transaction |

**Returns:** *Promise‹*[*ResultSet*](https://github.com/PolymathNetwork/polymesh-sdk/blob/docs/v12/docs/interfaces/resultset.md)*‹*[*HistoricSettlement*](https://github.com/PolymathNetwork/polymesh-sdk/blob/docs/v12/docs/interfaces/historicsettlement.md)*››*

***

### isCustodiedBy

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

*Inherited from* [*Portfolio*](/polymesh-sdk-api-reference/v12.0.2/classes/portfolio.md)*.*[*isCustodiedBy*](/polymesh-sdk-api-reference/v12.0.2/classes/portfolio.md#iscustodiedby)

*Defined in* [*src/api/entities/Portfolio/index.ts:123*](https://github.com/PolymathNetwork/polymesh-sdk/blob/44d12f59/src/api/entities/Portfolio/index.ts#L123)

Return whether an Identity is the Portfolio custodian

**Parameters:**

| Name    | Type                |
| ------- | ------------------- |
| `args?` | undefined \| object |

**Returns:** *Promise‹boolean›*

***

### isEqual

▸ **isEqual**(`entity`: [Entity](/polymesh-sdk-api-reference/v12.0.2/classes/entity.md)‹unknown, unknown›): *boolean*

*Inherited from* [*Entity*](/polymesh-sdk-api-reference/v12.0.2/classes/entity.md)*.*[*isEqual*](/polymesh-sdk-api-reference/v12.0.2/classes/entity.md#isequal)

*Defined in* [*src/api/entities/Entity.ts:61*](https://github.com/PolymathNetwork/polymesh-sdk/blob/44d12f59/src/api/entities/Entity.ts#L61)

Determine whether this Entity is the same as another one

**Parameters:**

| Name     | Type                                                                              |
| -------- | --------------------------------------------------------------------------------- |
| `entity` | [Entity](/polymesh-sdk-api-reference/v12.0.2/classes/entity.md)‹unknown, unknown› |

**Returns:** *boolean*

***

### isOwnedBy

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

*Inherited from* [*Portfolio*](/polymesh-sdk-api-reference/v12.0.2/classes/portfolio.md)*.*[*isOwnedBy*](/polymesh-sdk-api-reference/v12.0.2/classes/portfolio.md#isownedby)

*Defined in* [*src/api/entities/Portfolio/index.ts:107*](https://github.com/PolymathNetwork/polymesh-sdk/blob/44d12f59/src/api/entities/Portfolio/index.ts#L107)

Return whether an Identity is the Portfolio owner

**Parameters:**

| Name    | Type                |
| ------- | ------------------- |
| `args?` | undefined \| object |

**Returns:** *Promise‹boolean›*

***

### moveFunds

▸ **moveFunds**(`args`: [MoveFundsParams](https://github.com/PolymathNetwork/polymesh-sdk/blob/docs/v12/docs/interfaces/movefundsparams.md), `opts?`: [ProcedureOpts](https://github.com/PolymathNetwork/polymesh-sdk/blob/docs/v12/docs/interfaces/procedureopts.md)): *Promise‹*[*TransactionQueue*](/polymesh-sdk-api-reference/v12.0.2/classes/transactionqueue.md)*‹void››*

*Inherited from* [*Portfolio*](/polymesh-sdk-api-reference/v12.0.2/classes/portfolio.md)*.*[*moveFunds*](/polymesh-sdk-api-reference/v12.0.2/classes/portfolio.md#movefunds)

*Defined in* [*src/api/entities/Portfolio/index.ts:235*](https://github.com/PolymathNetwork/polymesh-sdk/blob/44d12f59/src/api/entities/Portfolio/index.ts#L235)

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

**`note`** required role:

* Portfolio Custodian

**`note`** this method is of type [ProcedureMethod](https://github.com/PolymathNetwork/polymesh-sdk/blob/docs/v12/docs/interfaces/proceduremethod.md), which means you can call `moveFunds.checkAuthorization` on it to see whether the Current Account has the required permissions to run it

**Parameters:**

| Name    | Type                                                                                                                |
| ------- | ------------------------------------------------------------------------------------------------------------------- |
| `args`  | [MoveFundsParams](https://github.com/PolymathNetwork/polymesh-sdk/blob/docs/v12/docs/interfaces/movefundsparams.md) |
| `opts?` | [ProcedureOpts](https://github.com/PolymathNetwork/polymesh-sdk/blob/docs/v12/docs/interfaces/procedureopts.md)     |

**Returns:** *Promise‹*[*TransactionQueue*](/polymesh-sdk-api-reference/v12.0.2/classes/transactionqueue.md)*‹void››*

***

### quitCustody

▸ **quitCustody**(`args`: void, `opts?`: [ProcedureOpts](https://github.com/PolymathNetwork/polymesh-sdk/blob/docs/v12/docs/interfaces/procedureopts.md)): *Promise‹*[*TransactionQueue*](/polymesh-sdk-api-reference/v12.0.2/classes/transactionqueue.md)*‹void››*

*Inherited from* [*Portfolio*](/polymesh-sdk-api-reference/v12.0.2/classes/portfolio.md)*.*[*quitCustody*](/polymesh-sdk-api-reference/v12.0.2/classes/portfolio.md#quitcustody)

*Defined in* [*src/api/entities/Portfolio/index.ts:248*](https://github.com/PolymathNetwork/polymesh-sdk/blob/44d12f59/src/api/entities/Portfolio/index.ts#L248)

Returns the custody of the portfolio to the portfolio owner unilaterally

**`note`** required role:

* Portfolio Custodian

**`note`** this method is of type [ProcedureMethod](https://github.com/PolymathNetwork/polymesh-sdk/blob/docs/v12/docs/interfaces/proceduremethod.md), which means you can call `quitCustody.checkAuthorization` on it to see whether the Current Account has the required permissions to run it

**Parameters:**

| Name    | Type                                                                                                            |
| ------- | --------------------------------------------------------------------------------------------------------------- |
| `args`  | void                                                                                                            |
| `opts?` | [ProcedureOpts](https://github.com/PolymathNetwork/polymesh-sdk/blob/docs/v12/docs/interfaces/procedureopts.md) |

**Returns:** *Promise‹*[*TransactionQueue*](/polymesh-sdk-api-reference/v12.0.2/classes/transactionqueue.md)*‹void››*

***

### setCustodian

▸ **setCustodian**(`args`: [SetCustodianParams](https://github.com/PolymathNetwork/polymesh-sdk/blob/docs/v12/docs/interfaces/setcustodianparams.md), `opts?`: [ProcedureOpts](https://github.com/PolymathNetwork/polymesh-sdk/blob/docs/v12/docs/interfaces/procedureopts.md)): *Promise‹*[*TransactionQueue*](/polymesh-sdk-api-reference/v12.0.2/classes/transactionqueue.md)*‹void››*

*Inherited from* [*Portfolio*](/polymesh-sdk-api-reference/v12.0.2/classes/portfolio.md)*.*[*setCustodian*](/polymesh-sdk-api-reference/v12.0.2/classes/portfolio.md#setcustodian)

*Defined in* [*src/api/entities/Portfolio/index.ts:222*](https://github.com/PolymathNetwork/polymesh-sdk/blob/44d12f59/src/api/entities/Portfolio/index.ts#L222)

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`

**`note`** required role:

* Portfolio Custodian

**`note`** this method is of type [ProcedureMethod](https://github.com/PolymathNetwork/polymesh-sdk/blob/docs/v12/docs/interfaces/proceduremethod.md), which means you can call `setCustodian.checkAuthorization` on it to see whether the Current Account has the required permissions to run it

**Parameters:**

| Name    | Type                                                                                                                      |
| ------- | ------------------------------------------------------------------------------------------------------------------------- |
| `args`  | [SetCustodianParams](https://github.com/PolymathNetwork/polymesh-sdk/blob/docs/v12/docs/interfaces/setcustodianparams.md) |
| `opts?` | [ProcedureOpts](https://github.com/PolymathNetwork/polymesh-sdk/blob/docs/v12/docs/interfaces/procedureopts.md)           |

**Returns:** *Promise‹*[*TransactionQueue*](/polymesh-sdk-api-reference/v12.0.2/classes/transactionqueue.md)*‹void››*

***

### toJson

▸ **toJson**(): [*HumanReadable*](https://github.com/PolymathNetwork/polymesh-sdk/blob/docs/v12/docs/interfaces/humanreadable.md)

*Inherited from* [*Portfolio*](/polymesh-sdk-api-reference/v12.0.2/classes/portfolio.md)*.*[*toJson*](/polymesh-sdk-api-reference/v12.0.2/classes/portfolio.md#tojson)

*Overrides* [*Entity*](/polymesh-sdk-api-reference/v12.0.2/classes/entity.md)*.*[*toJson*](/polymesh-sdk-api-reference/v12.0.2/classes/entity.md#abstract-tojson)

*Defined in* [*src/api/entities/Portfolio/index.ts:385*](https://github.com/PolymathNetwork/polymesh-sdk/blob/44d12f59/src/api/entities/Portfolio/index.ts#L385)

Return the Portfolio ID and owner DID

**Returns:** [*HumanReadable*](https://github.com/PolymathNetwork/polymesh-sdk/blob/docs/v12/docs/interfaces/humanreadable.md)

***

### `Static` generateUuid

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

*Inherited from* [*Entity*](/polymesh-sdk-api-reference/v12.0.2/classes/entity.md)*.*[*generateUuid*](/polymesh-sdk-api-reference/v12.0.2/classes/entity.md#static-generateuuid)

*Defined in* [*src/api/entities/Entity.ts:14*](https://github.com/PolymathNetwork/polymesh-sdk/blob/44d12f59/src/api/entities/Entity.ts#L14)

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*](/polymesh-sdk-api-reference/v12.0.2/classes/entity.md)*.*[*unserialize*](/polymesh-sdk-api-reference/v12.0.2/classes/entity.md#static-unserialize)

*Defined in* [*src/api/entities/Entity.ts:23*](https://github.com/PolymathNetwork/polymesh-sdk/blob/44d12f59/src/api/entities/Entity.ts#L23)

Unserialize a UUID into its Unique Identifiers

**Type parameters:**

▪ **Identifiers**

**Parameters:**

| Name         | Type   | Description         |
| ------------ | ------ | ------------------- |
| `serialized` | string | UUID to unserialize |

**Returns:** *Identifiers*
