Type Alias: GetStateError
type GetStateError = {
description: string;
status: Exclude<GetStateStatus,
| typeof Receipt
| typeof Simulated>;
};Defined in: apps/submitter/lib/handlers/getState/types.ts:60
Could not get boop state, or the boop is unknown.
Properties
description
description: string;Defined in: apps/submitter/lib/handlers/getState/types.ts:62
status
status: Exclude<GetStateStatus,
| typeof Receipt
| typeof Simulated>;Defined in: apps/submitter/lib/handlers/getState/types.ts:61