Versions in this module Expand all Collapse all v1 v1.0.0 Feb 26, 2024 Changes in this version + var ErrAccountNotFound = errors.New("account not found") + var ErrAssetNotFound = errors.New("asset not found") + var ErrProofNotFound = errors.New("proof not found") + type Account struct + AccountNumber int64 + Address sdk.AccAddress + Coins sdk.Coins + type MemoryStore struct + func NewMemoryStore(proofsPath string) (*MemoryStore, error) + func (ss *MemoryStore) Close() error + func (ss *MemoryStore) CountAccountAssetProofs() (count int64, err error) + func (ss *MemoryStore) GetAccountAssetProof(address types.AccAddress, symbol string) (*store.Proof, error) + type Proof struct + Address sdk.AccAddress + Coin sdk.Coin + Proof [][]byte + func (p *Proof) UnmarshalJSON(data []byte) error + type Proofs []*Proof