Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type BigMapAction ¶
type BigMapAction struct { bun.BaseModel `bun:"big_map_actions"` ID int64 `bun:"id,pk,notnull,autoincrement"` Action types.BigMapAction `bun:"action,type:SMALLINT"` SourcePtr *int64 DestinationPtr *int64 OperationID int64 Level int64 Address string `bun:"address,type:text"` Timestamp time.Time `bun:"timestamp,pk,notnull"` }
BigMapAction -
func (*BigMapAction) TableName ¶
func (b *BigMapAction) TableName() string
type Repository ¶
type Repository interface {
Get(ctx context.Context, ptr, limit, offset int64) ([]BigMapAction, error)
}
Click to show internal directories.
Click to hide internal directories.