Interface
Structured data emitted by a smart contract during a method invocation. Typically emitted in response to state changes within the contract and to notify contract listeners of an action happening within the contract.
export interface Event<TName extends string = string, TEventParameters = EventParameters> extends RawActionBase {
readonly type: 'Event';
readonly name: TName;
readonly parameters: TEventParameters;
}