Class: CCIPPartialTransactionSubmissionError
Defined in: errors/specialized.ts:175
Thrown when a multi-transaction submission fails after prior transactions confirmed.
context.committedSlices lists each confirmed transaction with the [start, end) range of
instructions it carried; context.pendingSignature is set when the failing transaction was
sent but its confirmation failed, so it may still land.
Example
try {
await submitTransactions()
} catch (error) {
if (error instanceof CCIPPartialTransactionSubmissionError) {
console.log(error.context.committedSlices) // [{ signature, start, end }, ...]
console.log(error.context.committedInstructionCount)
// sent but unconfirmed: it may still land, so check it before resubmitting
if (error.context.pendingSignature) console.log(error.context.pendingSignature)
}
}
Extends
Constructors
Constructor
new CCIPPartialTransactionSubmissionError(
committedSlices: readonly {end:number;signature:string;start:number; }[],options?:CCIPErrorOptions& {pendingSignature?:string; }):CCIPPartialTransactionSubmissionError
Defined in: errors/specialized.ts:178
Creates a partial transaction submission error.
Parameters
| Parameter | Type |
|---|---|
committedSlices | readonly { end: number; signature: string; start: number; }[] |
options? | CCIPErrorOptions & { pendingSignature?: string; } |
Returns
CCIPPartialTransactionSubmissionError
Overrides
Properties
_isCCIPError
readonly_isCCIPError:true
Defined in: errors/CCIPError.ts:30
Brand for cross-module identification (dual package hazard).
Inherited from
code
readonlycode:CCIPErrorCode
Defined in: errors/CCIPError.ts:32
Machine-readable error code.
Inherited from
context
readonlycontext:Record<string,unknown>
Defined in: errors/CCIPError.ts:34
Structured context (IDs, addresses).
Inherited from
isTransient
readonlyisTransient:boolean
Defined in: errors/CCIPError.ts:36
True if retry may succeed.
Inherited from
name
readonlyname:"CCIPPartialTransactionSubmissionError"='CCIPPartialTransactionSubmissionError'
Defined in: errors/specialized.ts:176
Overrides
recovery?
readonlyoptionalrecovery?:string
Defined in: errors/CCIPError.ts:40
Recovery suggestion.
Inherited from
retryAfterMs?
readonlyoptionalretryAfterMs?:number
Defined in: errors/CCIPError.ts:38
Retry delay in ms.
Inherited from
Methods
toJSON()
toJSON():
Record<string,unknown>
Defined in: errors/CCIPError.ts:105
Serializes the error for logging.
Use this instead of JSON.stringify(error) directly, as Error properties
are non-enumerable and would be lost.
Returns
Record<string, unknown>
An object containing all error properties
Inherited from
from()
staticfrom(error:unknown,code?:CCIPErrorCode):CCIPError
Defined in: errors/CCIPError.ts:89
Wraps an unknown caught value in a CCIPError.
Useful for normalizing errors in catch blocks.
Parameters
| Parameter | Type | Description |
|---|---|---|
error | unknown | The error to wrap |
code? | CCIPErrorCode | Optional error code (defaults to 'UNKNOWN') |
Returns
A CCIPError wrapping the original error
Inherited from
isCCIPError()
staticisCCIPError(error:unknown):error is CCIPError
Defined in: errors/CCIPError.ts:73
Type guard for CCIPError.
Prefer this over instanceof to handle the dual package hazard
when multiple versions of the SDK may be present.
Parameters
| Parameter | Type | Description |
|---|---|---|
error | unknown | The error to check |
Returns
error is CCIPError
True if the error is a CCIPError instance