Documentation ¶ Index ¶ type Event type EventType Constants ¶ This section is empty. Variables ¶ This section is empty. Functions ¶ This section is empty. Types ¶ type Event ¶ type Event struct { Type EventType `json:"type"` Accounts []common.Address `json:"accounts"` } Event is a type for accounts events. type EventType ¶ type EventType string EventType type for event types. const ( // EventTypeAdded is emitted when a new account is added. EventTypeAdded EventType = "added" // EventTypeRemoved is emitted when an account is removed. EventTypeRemoved EventType = "removed" ) Source Files ¶ View all Source files events.go Click to show internal directories. Click to hide internal directories.