Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ChainInfo ¶
type IndexPointer ¶
type IndexPointer struct { bun.BaseModel `bun:"table:meta.index_pointer"` ID int64 `bun:"id,pk,autoincrement"` ChainInfoID int64 `bun:"chain_info_id,pk,notnull"` IndexName string `bun:"index_name"` Pointer int64 `bun:"pointer,notnull"` }
func (IndexPointer) String ¶
func (ip IndexPointer) String() string
type ValidatorInfo ¶
type ValidatorInfo struct { bun.BaseModel `bun:"table:meta.validator_info"` ID int64 `bun:"id,pk,autoincrement"` ChainInfoID int64 `bun:"chain_info_id,pk,notnull"` HexAddress string `bun:"hex_address,unique:uniq_hex_address_by_chain"` OperatorAddress string `bun:"operator_address,unique:uniq_operator_address_by_chain"` Moniker string `bun:"moniker"` }
func (ValidatorInfo) String ¶
func (vi ValidatorInfo) String() string
Click to show internal directories.
Click to hide internal directories.