Table of Contents

Class EventClient

Namespace
Aptos
Assembly
Aptos.dll
public class EventClient
Inheritance
EventClient
Inherited Members

Constructors

EventClient(AptosClient)

public EventClient(AptosClient client)

Parameters

client AptosClient

Methods

GetEvents(events_bool_exp, int, int, events_order_by?)

Gets the events that match the given condition.

public Task<List<EventData>> GetEvents(events_bool_exp where, int offset = 0, int limit = 50, events_order_by? orderBy = null)

Parameters

where events_bool_exp

The condition to filter the events.

offset int

The offset of the query.

limit int

The item limit of the query.

orderBy events_order_by

The order by condition of the query.

Returns

Task<List<EventData>>

A list of events.