Documentation ¶
Index ¶
- Constants
- func NewMsgServerImpl(keeper Keeper) types.MsgServer
- type Keeper
- func (k Keeper) AddToWaitingList(ctx sdk.Context, id string)
- func (k Keeper) EndBlocker(ctx sdk.Context)
- func (k Keeper) GetAllNode(ctx sdk.Context) (list []types.Node)
- func (k Keeper) GetAllStateInfo(ctx sdk.Context) (list []types.StateInfo)
- func (k Keeper) GetNode(ctx sdk.Context, key string) (val types.Node, found bool)
- func (k Keeper) GetParams(ctx sdk.Context) (params types.Params)
- func (k Keeper) GetRootKey(ctx sdk.Context) string
- func (k Keeper) GetStateInfo(ctx sdk.Context, index string) (val types.StateInfo, found bool)
- func (k Keeper) Logger(ctx sdk.Context) log.Logger
- func (k Keeper) MerkleProof(c context.Context, req *types.QueryGetMerkleProofRequest) (*types.QueryGetMerkleProofResponse, error)
- func (k Keeper) Node(c context.Context, req *types.QueryGetNodeRequest) (*types.QueryGetNodeResponse, error)
- func (k Keeper) NodeAll(c context.Context, req *types.QueryAllNodeRequest) (*types.QueryAllNodeResponse, error)
- func (k Keeper) Params(goCtx context.Context, req *types.QueryParamsRequest) (*types.QueryParamsResponse, error)
- func (k Keeper) Path(ctx sdk.Context, id string) []string
- func (k Keeper) PostTxProcessing(ctx sdk.Context, msg core.Message, receipt *ethtypes.Receipt) error
- func (k Keeper) RemoveNode(ctx sdk.Context, key string)
- func (k Keeper) RemoveStateInfo(ctx sdk.Context, index string)
- func (k Keeper) SetGIST(ctx sdk.Context, gist string)
- func (k Keeper) SetNode(ctx sdk.Context, n types.Node)
- func (k Keeper) SetParams(ctx sdk.Context, params types.Params)
- func (k Keeper) SetRootKey(ctx sdk.Context, root string)
- func (k Keeper) SetStateInfo(ctx sdk.Context, n types.StateInfo)
- func (k Keeper) State(c context.Context, req *types.QueryGetStateRequest) (*types.QueryGetStateResponse, error)
- func (k Keeper) StateAll(c context.Context, req *types.QueryAllStateRequest) (*types.QueryAllStateResponse, error)
- func (k Keeper) UpdateIdentity(ctx sdk.Context, gist string, id string, hash string)
- type LCG
- type Migrator
- type Treap
- func (t Treap) Insert(ctx sdk.Context, key string, priority uint64)
- func (t Treap) Merge(ctx sdk.Context, r1, r2 string) string
- func (t Treap) MerklePath(ctx sdk.Context, key string) []string
- func (t Treap) Remove(ctx sdk.Context, key string)
- func (t Treap) Split(ctx sdk.Context, root, key string) (string, string)
Constants ¶
const EmptyHashStr = "0x"
Variables ¶
This section is empty.
Functions ¶
func NewMsgServerImpl ¶
NewMsgServerImpl returns an implementation of the MsgServer interface for the provided Keeper.
Types ¶
type Keeper ¶
type Keeper struct {
// contains filtered or unexported fields
}
func NewKeeper ¶
func NewKeeper( cdc codec.BinaryCodec, storeKey, memKey storetypes.StoreKey, rarimo types.RarimocoreKeeper, ) *Keeper
func (Keeper) EndBlocker ¶
func (Keeper) GetAllStateInfo ¶
func (Keeper) GetStateInfo ¶
func (Keeper) MerkleProof ¶
func (k Keeper) MerkleProof(c context.Context, req *types.QueryGetMerkleProofRequest) (*types.QueryGetMerkleProofResponse, error)
func (Keeper) Node ¶
func (k Keeper) Node(c context.Context, req *types.QueryGetNodeRequest) (*types.QueryGetNodeResponse, error)
func (Keeper) NodeAll ¶
func (k Keeper) NodeAll(c context.Context, req *types.QueryAllNodeRequest) (*types.QueryAllNodeResponse, error)
func (Keeper) Params ¶
func (k Keeper) Params(goCtx context.Context, req *types.QueryParamsRequest) (*types.QueryParamsResponse, error)
func (Keeper) PostTxProcessing ¶
func (k Keeper) PostTxProcessing(ctx sdk.Context, msg core.Message, receipt *ethtypes.Receipt) error
PostTxProcessing is used to listen EVM smart contract events, filter and process `StateTransited` events emitted by configured in module params contract address. Will be called by EVM module as hook.
func (Keeper) State ¶
func (k Keeper) State(c context.Context, req *types.QueryGetStateRequest) (*types.QueryGetStateResponse, error)
func (Keeper) StateAll ¶
func (k Keeper) StateAll(c context.Context, req *types.QueryAllStateRequest) (*types.QueryAllStateResponse, error)
type LCG ¶
type LCG struct {
Keeper
}
func (LCG) Next ¶
Next function returns the next pseudo-random value depending on generator state in module params. Such simple solution is claimed to be enough for balancing binary tree nodes. Linear congruential generator More about: https://en.wikipedia.org/wiki/Linear_congruential_generator
type Migrator ¶ added in v1.1.0
type Migrator struct {
// contains filtered or unexported fields
}
func NewMigrator ¶ added in v1.1.0
type Treap ¶
type Treap struct {
Keeper
}
Treap implements dynamic Merkle tree using treap data structure. Proof of concept: https://github.com/olegfomenko/go-treap-merkle