Skip to content

api.entities.Asset.Base.Compliance.TrustedClaimIssuers.TrustedClaimIssuers

prashantasdeveloper edited this page Sep 11, 2024 · 20 revisions

Class: TrustedClaimIssuers

api/entities/Asset/Base/Compliance/TrustedClaimIssuers.TrustedClaimIssuers

Handles all Asset Default Trusted Claim Issuers related functionality

Hierarchy

  • Namespace<BaseAsset>

    TrustedClaimIssuers

Table of contents

Methods

Methods

add

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

Add the supplied Identities to the Asset's list of trusted claim issuers

Note

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

Parameters

Name Type
args ModifyAssetTrustedClaimIssuersAddSetParams
opts? ProcedureOpts

Returns

Promise<GenericPolymeshTransaction<void, void>>


get

get(): Promise<TrustedClaimIssuer<true>[]>

Retrieve the current Default Trusted Claim Issuers of the Asset

Note

can be subscribed to

Returns

Promise<TrustedClaimIssuer<true>[]>

get(callback): Promise<UnsubCallback>

Parameters

Name Type
callback SubCallback<TrustedClaimIssuer<true>[]>

Returns

Promise<UnsubCallback>


remove

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

Remove the supplied Identities from the Asset's list of trusted claim issuers *

Note

this method is of type ProcedureMethod, 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

Parameters

Name Type
args ModifyAssetTrustedClaimIssuersRemoveParams
opts? ProcedureOpts

Returns

Promise<GenericPolymeshTransaction<void, void>>


set

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

Assign a new default list of trusted claim issuers to the Asset by replacing the existing ones with the list passed as a parameter

This requires two transactions

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

Parameters

Name Type
args ModifyAssetTrustedClaimIssuersAddSetParams
opts? ProcedureOpts

Returns

Promise<GenericPolymeshTransaction<void, void>>

Clone this wiki locally