api.entities.MetadataEntry - PolymeshAssociation/polymesh-sdk GitHub Wiki

@polymeshassociation/polymesh-sdk / api/entities/MetadataEntry

api/entities/MetadataEntry

Classes

MetadataEntry

Defined in: api/entities/MetadataEntry/index.ts:45

Represents an Asset MetadataEntry in the Polymesh blockchain

Extends

Properties

asset

asset: BaseAsset

Defined in: api/entities/MetadataEntry/index.ts:49

Asset for which this is the metadata

id

id: BigNumber

Defined in: api/entities/MetadataEntry/index.ts:59

identifier number of the MetadataEntry

type

type: MetadataType

Defined in: api/entities/MetadataEntry/index.ts:54

Type of metadata represented by this instance

uuid

uuid: string

Defined in: api/entities/Entity.ts:46

Inherited from

Entity.uuid

Methods

clear()

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

Defined in: api/entities/MetadataEntry/index.ts:111

Removes the asset metadata value

Parameters
Parameter Type
opts? ProcedureOpts
Returns

Promise<GenericPolymeshTransaction<void, void>>

Throws
  • if the Metadata doesn't exists
    • if the Metadata value is locked
Note

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

details()

details(): Promise<MetadataDetails>

Defined in: api/entities/MetadataEntry/index.ts:129

Retrieve name and specs for this MetadataEntry

Returns

Promise<MetadataDetails>

exists()

exists(): Promise<boolean>

Defined in: api/entities/MetadataEntry/index.ts:205

Determine whether this MetadataEntry exists on chain

Returns

Promise<boolean>

Overrides

Entity.exists

isEqual()

isEqual(entity): boolean

Defined in: api/entities/Entity.ts:61

Determine whether this Entity is the same as another one

Parameters
Parameter Type
entity Entity<unknown, unknown>
Returns

boolean

Inherited from

Entity.isEqual

isModifiable()

isModifiable(): Promise<{ canModify: boolean; reason?: PolymeshError; }>

Defined in: api/entities/MetadataEntry/index.ts:238

Check if the MetadataEntry can be modified. A MetadataEntry is modifiable if it exists and is not locked

Returns

Promise<{ canModify: boolean; reason?: PolymeshError; }>

remove()

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

Defined in: api/entities/MetadataEntry/index.ts:124

Removes a local Asset Metadata key along with its value

Parameters
Parameter Type
opts? ProcedureOpts
Returns

Promise<GenericPolymeshTransaction<void, void>>

Note

A global Metadata key cannot be deleted

Throws
  • if the Metadata type is global
    • if the Metadata doesn't exists
    • if the Metadata value is locked
    • if the Metadata is a mandatory key for any NFT Collection
Note

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

set()

set(args, opts?): Promise<GenericPolymeshTransaction<MetadataEntry, MetadataEntry>>

Defined in: api/entities/MetadataEntry/index.ts:102

Assign new value for the MetadataEntry along with its details or optionally only set the details (expiry + lock status) of any Metadata value

Parameters
Parameter Type
args SetMetadataParams
opts? ProcedureOpts
Returns

Promise<GenericPolymeshTransaction<MetadataEntry, MetadataEntry>>

Note
  • Value or the details can only be set if the MetadataEntry is not locked
Note

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

toHuman()

toHuman(): HumanReadable

Defined in: api/entities/MetadataEntry/index.ts:301

Return the MetadataEntry's ID, Asset ticker and Metadata type

Returns

HumanReadable

Overrides

Entity.toHuman

value()

value(): Promise<MetadataValue | null>

Defined in: api/entities/MetadataEntry/index.ts:176

Retrieve the value and details (expiry + lock status) for this MetadataEntry

Returns

Promise<MetadataValue | null>

Note
  • This returns null if no value is yet specified for this MetadataEntry
generateUuid()

static generateUuid<Identifiers>(identifiers): string

Defined in: api/entities/Entity.ts:14

Generate the Entity's UUID from its identifying properties

Type Parameters
Type Parameter
Identifiers
Parameters
Parameter Type Description
identifiers Identifiers -
Returns

string

Inherited from

Entity.generateUuid

unserialize()

static unserialize<Identifiers>(serialized): Identifiers

Defined in: api/entities/Entity.ts:23

Unserialize a UUID into its Unique Identifiers

Type Parameters
Type Parameter
Identifiers
Parameters
Parameter Type Description
serialized string UUID to unserialize
Returns

Identifiers

Inherited from

Entity.unserialize

Interfaces

HumanReadable

Defined in: api/entities/MetadataEntry/index.ts:36

Properties

assetId

assetId: string

Defined in: api/entities/MetadataEntry/index.ts:38

id

id: string

Defined in: api/entities/MetadataEntry/index.ts:37

type

type: MetadataType

Defined in: api/entities/MetadataEntry/index.ts:39


UniqueIdentifiers

Defined in: api/entities/MetadataEntry/index.ts:30

Properties

assetId

assetId: string

Defined in: api/entities/MetadataEntry/index.ts:33

id

id: BigNumber

Defined in: api/entities/MetadataEntry/index.ts:32

type

type: MetadataType

Defined in: api/entities/MetadataEntry/index.ts:31

⚠️ **GitHub.com Fallback** ⚠️