Type alias ResolvedSegmentError

ResolvedSegmentError: ResolvedSegmentBase & {
    missingIdentifier?: string;
    owningEntity?: string;
    type: "error";
    value: string;
}

Type declaration

  • Optional missingIdentifier?: string

    The full identifier (including any compilation operations) of the variable missing from compilation, e.g. my_key.schnorr_signature.all_outputs or my_key.public_key. Only present if the error is recoverable – the error can be resolved by providing the variable in the compilation data.

  • Optional owningEntity?: string

    Available if both missingIdentifier is provided and the entityOwnership for the referenced variable is available in the compilation data.

  • type: "error"
  • value: string

Generated using TypeDoc