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

Defined in src/api/entities/Entity.ts:48arrow-up-right

id

id: BigNumber

Defined in src/api/entities/Instruction/index.ts:77arrow-up-right

Identifier number of the venue

uuid

uuid: string

Inherited from Entity.uuid

Defined in src/api/entities/Entity.ts:46arrow-up-right

Methods

affirm

affirm(args: void, opts?: ProcedureOpts): Promise‹TransactionQueueInstruction››

Defined in src/api/entities/Instruction/index.ts:402arrow-up-right

Affirm this instruction (authorize)

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

Parameters:

Name

Type

args

void

Returns: Promise‹TransactionQueueInstruction››

details

details(): Promise‹InstructionDetails

Defined in src/api/entities/Instruction/index.ts:194arrow-up-right

Retrieve information specific to this Instruction

Returns: Promise‹InstructionDetails

exists

exists(): Promise‹boolean›

Defined in src/api/entities/Instruction/index.ts:176arrow-up-right

Retrieve whether the 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:253arrow-up-right

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

note supports pagination

Parameters:

Name

Type

paginationOpts?

Returns: Promise‹ResultSetInstructionAffirmation››

getLegs

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

Defined in src/api/entities/Instruction/index.ts:299arrow-up-right

Retrieve all legs of this Instruction

note supports pagination

Parameters:

Name

Type

paginationOpts?

Returns: Promise‹ResultSetLeg››

getStatus

getStatus(): Promise‹InstructionStatusResult

Defined in src/api/entities/Instruction/index.ts:350arrow-up-right

Retrieve current status of this Instruction

note uses the middleware

Returns: Promise‹InstructionStatusResult

isEqual

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

Inherited from Entity.isEqual

Defined in src/api/entities/Entity.ts:61arrow-up-right

Whether this Entity is the same as another one

Parameters:

Name

Type

entity

Entity‹unknown, unknown›

Returns: boolean

isExecuted

isExecuted(): Promise‹boolean›

Defined in src/api/entities/Instruction/index.ts:131arrow-up-right

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:155arrow-up-right

Retrieve whether the Instruction is still pending on chain

Returns: Promise‹boolean›

reject

reject(args: void, opts?: ProcedureOpts): Promise‹TransactionQueueInstruction››

Defined in src/api/entities/Instruction/index.ts:392arrow-up-right

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 ProcedureMethod, which means you can call reject.checkAuthorization on it to see whether the Current Account has the required permissions to run it

Parameters:

Name

Type

args

void

Returns: Promise‹TransactionQueueInstruction››

reschedule

reschedule(args: void, opts?: ProcedureOpts): Promise‹TransactionQueueInstruction››

Defined in src/api/entities/Instruction/index.ts:422arrow-up-right

Schedule a failed Instructi oto rwaa

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

Parameters:

Name

Type

args

void

Returns: Promise‹TransactionQueueInstruction››

toJson

toJson(): string

Overrides Entity.toJson

Defined in src/api/entities/Instruction/index.ts:451arrow-up-right

Return the Instruction's ID

Returns: string

withdraw

withdraw(args: void, opts?: ProcedureOpts): Promise‹TransactionQueueInstruction››

Defined in src/api/entities/Instruction/index.ts:412arrow-up-right

Withdraw affirmation from this instruction (unauthorize)

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

Parameters:

Name

Type

args

void

Returns: Promise‹TransactionQueueInstruction››

Static generateUuid

generateUuidIdentifiers›(identifiers: Identifiers): string

Inherited from Entity.generateUuid

Defined in src/api/entities/Entity.ts:14arrow-up-right

Generate the Entity's UUID from its identifying properties

Type parameters:

Identifiers

Parameters:

Name

Type

Description

identifiers

Identifiers

Returns: string

Static unserialize

unserializeIdentifiers›(serialized: string): Identifiers

Inherited from Entity.unserialize

Defined in src/api/entities/Entity.ts:23arrow-up-right

Unserialize a UUID into its Unique Identifiers

Type parameters:

Identifiers

Parameters:

Name

Type

Description

serialized

string

UUID to unserialize

Returns: Identifiers

Last updated

Was this helpful?