Skip to content

Commit

Permalink
Merge pull request #30 from rarimo/feature/rootupdater-docs
Browse files Browse the repository at this point in the history
Describe root updater module
  • Loading branch information
olegfomenko authored Aug 29, 2024
2 parents e3ddd5b + 5dd5416 commit 4797d07
Show file tree
Hide file tree
Showing 2 changed files with 57 additions and 0 deletions.
1 change: 1 addition & 0 deletions x/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ title: List of Modules
* [x/evm and x/feemarket](./evm/README.md) - EVM compatibility feature.
* [x/identity](./identity/README.md) - Storing aggregated identity data.
* [x/cscalist](./cscalist/README.md) - Storing and managing CSCA Master List
* [x/rootupdater](./rootupdater/README.md) - Storing and managing passport root

## EVM

Expand Down
56 changes: 56 additions & 0 deletions x/rootupdater/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
---
layout: default
title: x/rootupdater
---

# `x/rootupdater`

## Abstract

This module is designed to extract the passport root from Ethereum Virtual Machine (EVM) contract events and
subsequently create a new operation for `rarimo-core` module .

----

## Concepts

The core functionality of this module involves monitoring and processing events emitted by EVM contracts
to capture the passport root. Once the passport root is accurately extracted, the module proceeds to create
a new operation within the rarimo-core module.

An operation includes the following fields, such as `contract_address`, `root`, `root_timestamp`, `block_height`

## State

Model can be found in `proto/rootupdater`. Module data are stored inside Params

#### Module params proto

```protobuf
message Params {
string contract_address = 1;
string root = 2;
string last_signed_root = 3;
string last_signed_root_index = 4;
string event_name = 5;
int64 root_timestamp = 6;
uint64 block_height = 7;
}
```

Example values are provided in JSON for convenient reading.

#### Module params
```json
{
"params": {
"contract_address": "0x65D51e50453371392b4c1280BE9B75Cbe52F950e",
"root": "0x000000",
"last_signed_root": "0x000000",
"last_signed_root_index": "0x1c710a1e732c4178b110e01096f26c83c81a5a9118d8219ef8d204954ca09dd9",
"event_name": "RootUpdated",
"root_timestamp": "1724316208",
"block_height": "0"
}
}
```

0 comments on commit 4797d07

Please sign in to comment.