Skip to main content
Version: 23.0.x

Class: FungibleAsset

api/entities/Asset/Fungible.FungibleAsset

Class used to manage all Fungible Asset functionality

Hierarchy

Properties

assetHolders

assetHolders: AssetHolders

Defined in

api/entities/Asset/Fungible/index.ts:59


checkpoints

checkpoints: Checkpoints

Defined in

api/entities/Asset/Fungible/index.ts:63


compliance

compliance: Compliance

Inherited from

BaseAsset.compliance

Defined in

api/entities/Asset/Base/BaseAsset.ts:54


corporateActions

corporateActions: CorporateActions

Defined in

api/entities/Asset/Fungible/index.ts:64


did

did: string

Identity ID of the Asset (used for Claims)

Inherited from

BaseAsset.did

Defined in

api/entities/Asset/Base/BaseAsset.ts:62


documents

documents: Documents

Inherited from

BaseAsset.documents

Defined in

api/entities/Asset/Base/BaseAsset.ts:55


issuance

issuance: Issuance

Defined in

api/entities/Asset/Fungible/index.ts:60


metadata

metadata: Metadata

Inherited from

BaseAsset.metadata

Defined in

api/entities/Asset/Base/BaseAsset.ts:56


offerings

offerings: Offerings

Defined in

api/entities/Asset/Fungible/index.ts:62


permissions

permissions: Permissions

Inherited from

BaseAsset.permissions

Defined in

api/entities/Asset/Base/BaseAsset.ts:57


settlements

settlements: FungibleSettlements

Defined in

api/entities/Asset/Fungible/index.ts:58


ticker

ticker: string

ticker of the Asset

Inherited from

BaseAsset.ticker

Defined in

api/entities/Asset/Base/BaseAsset.ts:67


transferRestrictions

transferRestrictions: TransferRestrictions

Defined in

api/entities/Asset/Fungible/index.ts:61


uuid

uuid: string

Inherited from

BaseAsset.uuid

Defined in

api/entities/Entity.ts:46

Methods

controllerTransfer

controllerTransfer(args, opts?): Promise<GenericPolymeshTransaction<void, void>>

Force a transfer from a given Portfolio to the caller’s default Portfolio

Parameters

NameType
argsControllerTransferParams
opts?ProcedureOpts

Returns

Promise<GenericPolymeshTransaction<void, void>>

Note

this method is of type ProcedureMethod, which means you can call controllerTransfer.checkAuthorization on it to see whether the signing Account and Identity have the required roles and permissions to run it

Defined in

api/entities/Asset/Fungible/index.ts:222


createdAt

createdAt(): Promise<null | EventIdentifier>

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

Returns

Promise<null | EventIdentifier>

Note

uses the middlewareV2

Note

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

Defined in

api/entities/Asset/Fungible/index.ts:159


currentFundingRound

currentFundingRound(): Promise<null | string>

Retrieve the Asset's funding round

Returns

Promise<null | string>

Note

can be subscribed to

Defined in

api/entities/Asset/Fungible/index.ts:121

currentFundingRound(callback): Promise<UnsubCallback>

Parameters

NameType
callbackSubCallback<null | string>

Returns

Promise<UnsubCallback>

Defined in

api/entities/Asset/Fungible/index.ts:122


details

details(): Promise<AssetDetails>

Retrieve the Asset's data

Returns

Promise<AssetDetails>

Note

can be subscribed to

Inherited from

BaseAsset.details

Defined in

api/entities/Asset/Base/BaseAsset.ts:228

details(callback): Promise<UnsubCallback>

Parameters

NameType
callbackSubCallback <AssetDetails>

Returns

Promise<UnsubCallback>

Inherited from

BaseAsset.details

Defined in

api/entities/Asset/Base/BaseAsset.ts:229


exists

exists(): Promise<boolean>

Determine whether this FungibleAsset exists on chain

Returns

Promise<boolean>

Overrides

BaseAsset.exists

Defined in

api/entities/Asset/Fungible/index.ts:319


freeze

freeze(opts?): Promise<GenericPolymeshTransaction<void, void>>

Freeze transfers of the Asset

Parameters

NameType
opts?ProcedureOpts

Returns

Promise<GenericPolymeshTransaction<void, void>>

Note

this method is of type NoArgsProcedureMethod, which means you can call freeze.checkAuthorization on it to see whether the signing Account and Identity have the required roles and permissions to run it

Inherited from

BaseAsset.freeze

Defined in

api/entities/Asset/Base/BaseAsset.ts:139


getIdentifiers

getIdentifiers(): Promise<SecurityIdentifier[]>

Retrieve the Asset's identifiers list

Returns

Promise<SecurityIdentifier[]>

Note

can be subscribed to

Inherited from

BaseAsset.getIdentifiers

Defined in

api/entities/Asset/Base/BaseAsset.ts:158

getIdentifiers(callback?): Promise<UnsubCallback>

Parameters

NameType
callback?SubCallback <SecurityIdentifier[]>

Returns

Promise<UnsubCallback>

Inherited from

BaseAsset.getIdentifiers

Defined in

api/entities/Asset/Base/BaseAsset.ts:159


getOperationHistory

getOperationHistory(): Promise<HistoricAgentOperation[]>

Retrieve this Asset's Operation History

Returns

Promise<HistoricAgentOperation[]>

Note

Operations are grouped by the agent Identity who performed them

Note

uses the middlewareV2

Defined in

api/entities/Asset/Fungible/index.ts:233


getTransactionHistory

getTransactionHistory(opts): Promise<ResultSet <HistoricAssetTransaction>>

Retrieve this Asset's transaction History

Parameters

NameType
optsObject
opts.size?BigNumber
opts.start?BigNumber

Returns

Promise<ResultSet <HistoricAssetTransaction>>

Note

uses the middlewareV2

Defined in

api/entities/Asset/Fungible/index.ts:262


investorCount

investorCount(): Promise<BigNumber>

Retrieve the amount of unique investors that hold this Asset

Returns

Promise<BigNumber>

Defined in

api/entities/Asset/Fungible/index.ts:192


isEqual

isEqual(entity): boolean

Determine whether this Entity is the same as another one

Parameters

NameType
entityEntity<unknown, unknown>

Returns

boolean

Inherited from

BaseAsset.isEqual

Defined in

api/entities/Entity.ts:61


isFrozen

isFrozen(): Promise<boolean>

Check whether transfers are frozen for the Asset

Returns

Promise<boolean>

Note

can be subscribed to

Inherited from

BaseAsset.isFrozen

Defined in

api/entities/Asset/Base/BaseAsset.ts:194

isFrozen(callback): Promise<UnsubCallback>

Parameters

NameType
callbackSubCallback<boolean>

Returns

Promise<UnsubCallback>

Inherited from

BaseAsset.isFrozen

Defined in

api/entities/Asset/Base/BaseAsset.ts:195


modify

modify(args, opts?): Promise<GenericPolymeshTransaction <FungibleAsset, FungibleAsset>>

Modify some properties of the Asset

Parameters

NameType
argsModifyAssetParams
opts?ProcedureOpts

Returns

Promise<GenericPolymeshTransaction <FungibleAsset, FungibleAsset>>

Throws

if the passed values result in no changes being made to the Asset

Note

this method is of type ProcedureMethod, which means you can call modify.checkAuthorization on it to see whether the signing Account and Identity have the required roles and permissions to run it

Defined in

api/entities/Asset/Fungible/index.ts:112


redeem

redeem(args, opts?): Promise<GenericPolymeshTransaction<void, void>>

Redeem (burn) an amount of this Asset's tokens

Parameters

NameType
argsRedeemTokensParams
opts?ProcedureOpts

Returns

Promise<GenericPolymeshTransaction<void, void>>

Note

tokens are removed from the caller's Default Portfolio

Note

this method is of type ProcedureMethod, which means you can call redeem.checkAuthorization on it to see whether the signing Account and Identity have the required roles and permissions to run it

Defined in

api/entities/Asset/Fungible/index.ts:185


setVenueFiltering

setVenueFiltering(args, opts?): Promise<GenericPolymeshTransaction<void, void>>

Enable/disable venue filtering for this Asset and/or set allowed/disallowed venues

Parameters

NameType
argsSetVenueFilteringParams
opts?ProcedureOpts

Returns

Promise<GenericPolymeshTransaction<void, void>>

Note

this method is of type ProcedureMethod, which means you can call setVenueFiltering.checkAuthorization on it to see whether the signing Account and Identity have the required roles and permissions to run it

Defined in

api/entities/Asset/Fungible/index.ts:343


toHuman

toHuman(): string

Return the NftCollection's ticker

Returns

string

Inherited from

BaseAsset.toHuman

Defined in

api/entities/Asset/Base/BaseAsset.ts:342


transferOwnership

transferOwnership(args, opts?): Promise<GenericPolymeshTransaction <AuthorizationRequest, AuthorizationRequest>>

Transfer ownership of the Asset to another Identity. This generates an authorization request that must be accepted by the recipient

Parameters

NameType
argsTransferAssetOwnershipParams
opts?ProcedureOpts

Returns

Promise<GenericPolymeshTransaction <AuthorizationRequest, AuthorizationRequest>>

Note

this will create Authorization Request which has to be accepted by the target Identity. An Account or Identity 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

this method is of type ProcedureMethod, which means you can call transferOwnership.checkAuthorization on it to see whether the signing Account and Identity have the required roles and permissions to run it

Inherited from

BaseAsset.transferOwnership

Defined in

api/entities/Asset/Base/BaseAsset.ts:80


unfreeze

unfreeze(opts?): Promise<GenericPolymeshTransaction<void, void>>

Unfreeze transfers of the Asset

Parameters

NameType
opts?ProcedureOpts

Returns

Promise<GenericPolymeshTransaction<void, void>>

Note

this method is of type NoArgsProcedureMethod, which means you can call unfreeze.checkAuthorization on it to see whether the signing Account and Identity have the required roles and permissions to run it

Inherited from

BaseAsset.unfreeze

Defined in

api/entities/Asset/Base/BaseAsset.ts:149


generateUuid

Static generateUuid<Identifiers>(identifiers): string

Generate the Entity's UUID from its identifying properties

Type parameters

Name
Identifiers

Parameters

NameType
identifiersIdentifiers

Returns

string

Inherited from

BaseAsset.generateUuid

Defined in

api/entities/Entity.ts:14


unserialize

Static unserialize<Identifiers>(serialized): Identifiers

Unserialize a UUID into its Unique Identifiers

Type parameters

Name
Identifiers

Parameters

NameTypeDescription
serializedstringUUID to unserialize

Returns

Identifiers

Inherited from

BaseAsset.unserialize

Defined in

api/entities/Entity.ts:23