Type Alias: PendingBoopInfo
type PendingBoopInfo = {
boopHash: Hash;
entryPoint: Address;
nonceTrack: UInt256;
nonceValue: UInt256;
submitted: boolean;
};
Defined in: apps/submitter/lib/handlers/getPending/types.ts:43
Information about a pending boop.
Properties
boopHash
boopHash: Hash;
Defined in: apps/submitter/lib/handlers/getPending/types.ts:44
entryPoint
entryPoint: Address;
Defined in: apps/submitter/lib/handlers/getPending/types.ts:45
nonceTrack
nonceTrack: UInt256;
Defined in: apps/submitter/lib/handlers/getPending/types.ts:46
nonceValue
nonceValue: UInt256;
Defined in: apps/submitter/lib/handlers/getPending/types.ts:47
submitted
submitted: boolean;
Defined in: apps/submitter/lib/handlers/getPending/types.ts:49
Whether the boop has been submitted to the blockchain yet.