TransactionPlanner

type TransactionPlanner = (instructionPlan, config?) => Promise<TransactionPlan>;

Plans one or more transactions according to the provided instruction plan.

Parameters

ParameterTypeDescription
instructionPlanInstructionPlanThe instruction plan to be planned and executed.
config?{ abortSignal?: AbortSignal; }Optional configuration object that can include an AbortSignal to cancel the planning process.
config.abortSignal?AbortSignal-

Returns

Promise<TransactionPlan>

See

On this page