Requirements

Handles all Security Token Compliance Requirements related functionality

Hierarchy

Index

Properties

Methods

Properties

Protected context

context: Context

Inherited from void

Defined in src/api/entities/Namespace.ts:11


Protected parent

parent: SecurityToken

Inherited from void

Defined in src/api/entities/Namespace.ts:9

Methods

arePaused

arePaused(): Promise‹boolean›

Defined in src/api/entities/SecurityToken/Compliance/Requirements.ts:228

Check whether asset compliance requirements are paused or not

Returns: Promise‹boolean›


checkSettle

checkSettle(args: object): Promise‹Compliance›

Defined in src/api/entities/SecurityToken/Compliance/Requirements.ts:199

Check whether the sender and receiver Identities in a transfer comply with all the requirements of this asset

note this does not take balances into account

deprecated in favor of settlements.canTransfer

Parameters:

args: object

NameTypeDescription

from?

string | Identity

sender Identity (optional, defaults to the current Identity)

to

string | Identity

receiver Identity

Returns: Promise‹Compliance›


get

get(): Promise‹Requirement[]›

Defined in src/api/entities/SecurityToken/Compliance/Requirements.ts:78

Retrieve all of the Security Token's requirements

note can be subscribed to

Returns: Promise‹Requirement[]›

get(callback: SubCallbackRequirement[]›): Promise‹UnsubCallback

Defined in src/api/entities/SecurityToken/Compliance/Requirements.ts:79

Parameters:

NameType

callback

Returns: Promise‹UnsubCallback


pause

pause(args: void, opts?: ProcedureOpts): Promise‹TransactionQueueSecurityToken››

Defined in src/api/entities/SecurityToken/Compliance/Requirements.ts:175

Pause all the Security Token's requirements. This means that all transfers will be allowed until requirements are unpaused

note this method is of type ProcedureMethod, which means you can call pause.checkAuthorization on it to see whether the Current Account has the required permissions to run it

Parameters:

NameType

args

void

opts?

Returns: Promise‹TransactionQueueSecurityToken››


reset

reset(args: void, opts?: ProcedureOpts): Promise‹TransactionQueueSecurityToken››

Defined in src/api/entities/SecurityToken/Compliance/Requirements.ts:165

Detele all the current requirements for the Security Token.

note this method is of type ProcedureMethod, which means you can call reset.checkAuthorization on it to see whether the Current Account has the required permissions to run it

Parameters:

NameType

args

void

opts?

Returns: Promise‹TransactionQueueSecurityToken››


set

set(args: SetAssetRequirementsParams, opts?: ProcedureOpts): Promise‹TransactionQueueSecurityToken››

Defined in src/api/entities/SecurityToken/Compliance/Requirements.ts:69

Configure asset compliance requirements for the Security Token. This operation will replace all existing requirements with a new requirement set

This requires two transactions

example Say A, B, C, D and E are requirements and we arrange them as [[A, B], [C, D], [E]]. For a transfer to succeed, it must either comply with A AND B, C AND D, OR E.

note this method is of type ProcedureMethod, which means you can call set.checkAuthorization on it to see whether the Current Account has the required permissions to run it

Parameters:

Returns: Promise‹TransactionQueueSecurityToken››


unpause

unpause(args: void, opts?: ProcedureOpts): Promise‹TransactionQueueSecurityToken››

Defined in src/api/entities/SecurityToken/Compliance/Requirements.ts:185

Un-pause all the Security Token's current requirements

note this method is of type ProcedureMethod, which means you can call unpause.checkAuthorization on it to see whether the Current Account has the required permissions to run it

Parameters:

NameType

args

void

opts?

Returns: Promise‹TransactionQueueSecurityToken››

Last updated