2022-11-29 13:43:18 +00:00
|
|
|
package walletevent
|
|
|
|
|
|
|
|
import (
|
|
|
|
"math/big"
|
|
|
|
|
|
|
|
"github.com/ethereum/go-ethereum/common"
|
|
|
|
)
|
|
|
|
|
|
|
|
// EventType type for event types.
|
|
|
|
type EventType string
|
|
|
|
|
|
|
|
// Event is a type for transfer events.
|
|
|
|
type Event struct {
|
|
|
|
Type EventType `json:"type"`
|
|
|
|
BlockNumber *big.Int `json:"blockNumber"`
|
|
|
|
Accounts []common.Address `json:"accounts"`
|
|
|
|
Message string `json:"message"`
|
2023-03-20 13:02:09 +00:00
|
|
|
At int64 `json:"at"`
|
|
|
|
ChainID uint64 `json:"chainId"`
|
2023-07-24 22:54:53 +00:00
|
|
|
RequestID *int `json:"requestId,omitempty"`
|
2022-11-29 13:43:18 +00:00
|
|
|
}
|