Skip to main content
Version: 22.1.x

Class: Instruction

api/entities/Instruction.Instruction

Represents a settlement Instruction to be executed on a certain Venue

Hierarchy

Properties

id

id: BigNumber

Unique identifier number of the instruction

Defined in

api/entities/Instruction/index.ts:89


uuid

uuid: string

Inherited from

Entity.uuid

Defined in

api/entities/Entity.ts:46

Methods

affirm

affirm(args?, opts?): Promise<GenericPolymeshTransaction <Instruction, Instruction>>

Affirm this instruction (authorize)

Parameters

NameType
args?AffirmOrWithdrawInstructionParams
opts?ProcedureOpts

Returns

Promise<GenericPolymeshTransaction <Instruction, Instruction>>

Note

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

Defined in

api/entities/Instruction/index.ts:575


details

details(): Promise<InstructionDetails>

Retrieve information specific to this Instruction

Returns

Promise<InstructionDetails>

Defined in

api/entities/Instruction/index.ts:300


executeManually

executeManually(args?, opts?): Promise<GenericPolymeshTransaction <Instruction, Instruction>>

Executes an Instruction either of type SettleManual or a Failed instruction

Parameters

NameType
args?ExecuteManualInstructionParams
opts?ProcedureOpts

Returns

Promise<GenericPolymeshTransaction <Instruction, Instruction>>

Note

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

Defined in

api/entities/Instruction/index.ts:609


exists

exists(): Promise<boolean>

Determine whether this Instruction exists on chain (or existed and was pruned)

Returns

Promise<boolean>

Overrides

Entity.exists

Defined in

api/entities/Instruction/index.ts:282


getAffirmations

getAffirmations(paginationOpts?): Promise<ResultSet <InstructionAffirmation>>

Retrieve every authorization generated by this Instruction (status and authorizing Identity)

Parameters

NameType
paginationOpts?PaginationOptions

Returns

Promise<ResultSet <InstructionAffirmation>>

Note

supports pagination

Defined in

api/entities/Instruction/index.ts:394


getInvolvedPortfolios

getInvolvedPortfolios(args): Promise<(NumberedPortfolio | DefaultPortfolio)[]>

Retrieve all the involved portfolios in this Instruction where the given identity is a custodian of

Parameters

NameType
argsObject
args.didstring

Returns

Promise<(NumberedPortfolio | DefaultPortfolio)[]>

Defined in

api/entities/Instruction/index.ts:655


getLegs

getLegs(paginationOpts?): Promise<ResultSet <Leg>>

Retrieve all legs of this Instruction

Parameters

NameType
paginationOpts?PaginationOptions

Returns

Promise<ResultSet <Leg>>

Note

supports pagination

Defined in

api/entities/Instruction/index.ts:440


getStatus

getStatus(): Promise<InstructionStatusResult>

Retrieve current status of this Instruction

Returns

Promise<InstructionStatusResult>

Note

uses the middlewareV2

Defined in

api/entities/Instruction/index.ts:521


isEqual

isEqual(entity): boolean

Determine whether this Entity is the same as another one

Parameters

NameType
entityEntity<unknown, unknown>

Returns

boolean

Inherited from

Entity.isEqual

Defined in

api/entities/Entity.ts:61


isExecuted

isExecuted(): Promise<boolean>

Retrieve whether the Instruction has already been executed and pruned from the chain.

Returns

Promise<boolean>

Defined in

api/entities/Instruction/index.ts:160


isPending

isPending(): Promise<boolean>

Retrieve whether the Instruction is still pending on chain

Returns

Promise<boolean>

Defined in

api/entities/Instruction/index.ts:201


onStatusChange

onStatusChange(callback): Promise<UnsubCallback>

Retrieve current status of the Instruction. This can be subscribed to know if instruction fails

Parameters

NameType
callbackSubCallback <InstructionStatus>

Returns

Promise<UnsubCallback>

Note

can be subscribed to

Note

current status as Executed means that the Instruction has been executed/rejected and pruned from the chain.

Defined in

api/entities/Instruction/index.ts:226


reject

reject(args?, opts?): Promise<GenericPolymeshTransaction <Instruction, Instruction>>

Reject this instruction

Parameters

NameType
args?RejectInstructionParams
opts?ProcedureOpts

Returns

Promise<GenericPolymeshTransaction <Instruction, Instruction>>

Note

reject on SettleOnAffirmation will execute the settlement and it will fail immediately.

Note

reject on SettleOnBlock behaves just like unauthorize

Note

reject on SettleManual behaves just like unauthorize

Note

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

Defined in

api/entities/Instruction/index.ts:565


reschedule

reschedule(opts?): Promise<GenericPolymeshTransaction <Instruction, Instruction>>

Reschedules a failed Instruction to be tried again

Parameters

NameType
opts?ProcedureOpts

Returns

Promise<GenericPolymeshTransaction <Instruction, Instruction>>

Throws

if the Instruction status is not InstructionStatus.Failed

Deprecated

chain v6 will allow executeManually to be used instead

Note

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

Defined in

api/entities/Instruction/index.ts:599


toHuman

toHuman(): string

Return the Instruction's ID

Returns

string

Overrides

Entity.toHuman

Defined in

api/entities/Instruction/index.ts:648


withdraw

withdraw(args?, opts?): Promise<GenericPolymeshTransaction <Instruction, Instruction>>

Withdraw affirmation from this instruction (unauthorize)

Parameters

NameType
args?AffirmOrWithdrawInstructionParams
opts?ProcedureOpts

Returns

Promise<GenericPolymeshTransaction <Instruction, Instruction>>

Note

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

Defined in

api/entities/Instruction/index.ts:585


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

Entity.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

Entity.unserialize

Defined in

api/entities/Entity.ts:23