Versions in this module Expand all Collapse all v0 v0.34.0 Feb 20, 2026 Changes in this version + var ErrAlreadyExists = errors.New("vm metadata already exists") + var ErrNotFound = errors.New("vm metadata not found") + type Record struct + Authority string + CreatedAt time.Time + DaysLocked uint8 + Id uint64 + Mint string + Omnibus string + OmnibusBump uint8 + Vm string + VmBump uint8 + func (r *Record) Clone() Record + func (r *Record) CopyTo(dst *Record) + func (r *Record) Validate() error + type Store interface + GetByMint func(ctx context.Context, mint string) (*Record, error) + Put func(ctx context.Context, record *Record) error