Instruction

Represents a settlement Instruction to be executed on a certain Venue

Hierarchy

  • Entity‹UniqueIdentifiers, string›

    Instruction

Index

Properties

Methods

Properties

Protected context

context: Context

Inherited from CheckpointSchedule.context

Defined in src/api/entities/Entity.ts:48


id

id: BigNumber

Defined in src/api/entities/Instruction/index.ts:80

Identifier number of the venue


uuid

uuid: string

Inherited from CheckpointSchedule.uuid

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

Methods

affirm

affirm(opts?: ProcedureOpts): Promise‹TransactionQueueInstruction››

Defined in src/api/entities/Instruction/index.ts:448

Affirm this instruction (authorize)

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

Parameters:

NameType

opts?

Returns: Promise‹TransactionQueueInstruction››


details

details(): Promise‹InstructionDetails

Defined in src/api/entities/Instruction/index.ts:201

Retrieve information specific to this Instruction

Returns: Promise‹InstructionDetails


exists

exists(): Promise‹boolean›

Overrides Entity.exists

Defined in src/api/entities/Instruction/index.ts:183

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

Returns: Promise‹boolean›


getAffirmations

getAffirmations(paginationOpts?: PaginationOptions): Promise‹ResultSetInstructionAffirmation››

Defined in src/api/entities/Instruction/index.ts:260

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

note supports pagination

Parameters:

NameType

paginationOpts?

Returns: Promise‹ResultSetInstructionAffirmation››


getLegs

getLegs(paginationOpts?: PaginationOptions): Promise‹ResultSetLeg››

Defined in src/api/entities/Instruction/index.ts:306

Retrieve all legs of this Instruction

note supports pagination

Parameters:

NameType

paginationOpts?

Returns: Promise‹ResultSetLeg››


getStatus

getStatus(): Promise‹InstructionStatusResult

Defined in src/api/entities/Instruction/index.ts:357

Retrieve current status of this Instruction

note uses the middleware

Returns: Promise‹InstructionStatusResult


getStatusV2

getStatusV2(): Promise‹InstructionStatusResult

Defined in src/api/entities/Instruction/index.ts:395

Retrieve current status of this Instruction

note uses the middlewareV2

Returns: Promise‹InstructionStatusResult


isEqual

isEqual(entity: Entity‹unknown, unknown›): boolean

Inherited from CheckpointSchedule.isEqual

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

Determine whether this Entity is the same as another one

Parameters:

NameType

entity

Entity‹unknown, unknown›

Returns: boolean


isExecuted

isExecuted(): Promise‹boolean›

Defined in src/api/entities/Instruction/index.ts:138

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

Returns: Promise‹boolean›


isPending

isPending(): Promise‹boolean›

Defined in src/api/entities/Instruction/index.ts:162

Retrieve whether the Instruction is still pending on chain

Returns: Promise‹boolean›


reject

reject(opts?: ProcedureOpts): Promise‹TransactionQueueInstruction››

Defined in src/api/entities/Instruction/index.ts:438

Reject this instruction

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

note reject on SettleOnBlock behaves just like unauthorize

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

Parameters:

NameType

opts?

Returns: Promise‹TransactionQueueInstruction››


reschedule

reschedule(opts?: ProcedureOpts): Promise‹TransactionQueueInstruction››

Defined in src/api/entities/Instruction/index.ts:470

Reschedules a failed Instruction to be tried again

throws if the Instruction status is not InstructionStatus.Failed

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

Parameters:

NameType

opts?

Returns: Promise‹TransactionQueueInstruction››


toHuman

toHuman(): string

Overrides Entity.toHuman

Defined in src/api/entities/Instruction/index.ts:527

Return the Instruction's ID

Returns: string


withdraw

withdraw(opts?: ProcedureOpts): Promise‹TransactionQueueInstruction››

Defined in src/api/entities/Instruction/index.ts:458

Withdraw affirmation from this instruction (unauthorize)

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

Parameters:

NameType

opts?

Returns: Promise‹TransactionQueueInstruction››


Static generateUuid

generateUuidIdentifiers›(identifiers: Identifiers): string

Inherited from CheckpointSchedule.generateUuid

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

Generate the Entity's UUID from its identifying properties

Type parameters:

Identifiers

Parameters:

NameTypeDescription

identifiers

Identifiers

Returns: string


Static unserialize

unserializeIdentifiers›(serialized: string): Identifiers

Inherited from CheckpointSchedule.unserialize

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

Unserialize a UUID into its Unique Identifiers

Type parameters:

Identifiers

Parameters:

NameTypeDescription

serialized

string

UUID to unserialize

Returns: Identifiers

Last updated