interface IEvent { context: { block: string; call_stack: string[]; index_in_slot: number; is_error: boolean; is_final: boolean; origin_operation_id: string; read_only: boolean; slot: ISlot; }; data: string; id?: string; } Properties
context
context: { block: string; call_stack: string[]; index_in_slot: number; is_error: boolean; is_final: boolean; origin_operation_id: string; read_only: boolean; slot: ISlot; } Type declaration
block: string
call_stack: string[]
index_in_slot: number
is_error: boolean
is_final: boolean
origin_operation_id: string
read_only: boolean
data
data: string
Optional
id
id?: string
The IEvent interface represents an event emitted by a smart contract.
See