Class: BaseAsset
api/entities/Asset/Base/BaseAsset.BaseAsset
Class used to manage functionality common to all assets.
Hierarchy
-
Entity
<UniqueIdentifiers
,string
>↳
BaseAsset
Properties
compliance
• compliance: Compliance
Defined in
api/entities/Asset/Base/BaseAsset.ts:54
did
• did: string
Identity ID of the Asset (used for Claims)
Defined in
api/entities/Asset/Base/BaseAsset.ts:62
documents
• documents: Documents
Defined in
api/entities/Asset/Base/BaseAsset.ts:55
metadata
• metadata: Metadata
Defined in
api/entities/Asset/Base/BaseAsset.ts:56
permissions
• permissions: Permissions
Defined in
api/entities/Asset/Base/BaseAsset.ts:57
ticker
• ticker: string
ticker of the Asset
Defined in
api/entities/Asset/Base/BaseAsset.ts:67
uuid
• uuid: string
Inherited from
Defined in
Methods
details
▸ details(): Promise
<AssetDetails
>
Retrieve the Asset's data
Returns
Promise
<AssetDetails
>
Note
can be subscribed to
Defined in
api/entities/Asset/Base/BaseAsset.ts:228
▸ details(callback
): Promise
<UnsubCallback
>
Parameters
Name | Type |
---|---|
callback | SubCallback <AssetDetails > |
Returns
Promise
<UnsubCallback
>
Defined in
api/entities/Asset/Base/BaseAsset.ts:229
freeze
▸ freeze(opts?
): Promise
<GenericPolymeshTransaction
<void
, void
>>
Freeze transfers of the Asset
Parameters
Name | Type |
---|---|
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
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
Defined in
api/entities/Asset/Base/BaseAsset.ts:158
▸ getIdentifiers(callback?
): Promise
<UnsubCallback
>
Parameters
Name | Type |
---|---|
callback? | SubCallback <SecurityIdentifier []> |
Returns
Promise
<UnsubCallback
>
Defined in
api/entities/Asset/Base/BaseAsset.ts:159
isEqual
▸ isEqual(entity
): boolean
Determine whether this Entity is the same as another one
Parameters
Name | Type |
---|---|
entity | Entity <unknown , unknown > |
Returns
boolean
Inherited from
Defined in
isFrozen
▸ isFrozen(): Promise
<boolean
>
Check whether transfers are frozen for the Asset
Returns
Promise
<boolean
>
Note
can be subscribed to
Defined in
api/entities/Asset/Base/BaseAsset.ts:194
▸ isFrozen(callback
): Promise
<UnsubCallback
>
Parameters
Name | Type |
---|---|
callback | SubCallback <boolean > |
Returns
Promise
<UnsubCallback
>
Defined in
api/entities/Asset/Base/BaseAsset.ts:195
toHuman
▸ toHuman(): string
Return the NftCollection's ticker
Returns
string
Overrides
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
Name | Type |
---|---|
args | TransferAssetOwnershipParams |
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
Defined in
api/entities/Asset/Base/BaseAsset.ts:80
unfreeze
▸ unfreeze(opts?
): Promise
<GenericPolymeshTransaction
<void
, void
>>
Unfreeze transfers of the Asset
Parameters
Name | Type |
---|---|
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
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
Name | Type |
---|---|
identifiers | Identifiers |
Returns
string
Inherited from
Defined in
unserialize
▸ Static
unserialize<Identifiers
>(serialized
): Identifiers
Unserialize a UUID into its Unique Identifiers
Type parameters
Name |
---|
Identifiers |
Parameters
Name | Type | Description |
---|---|---|
serialized | string | UUID to unserialize |
Returns
Identifiers