Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
102bdcd
feat: add category in README.md
Yohann76 Feb 9, 2026
7bef323
feat: add borrower category
Yohann76 Feb 9, 2026
64d165b
feat: add tool for borrowers category
Yohann76 Feb 9, 2026
4a966ac
fix: typo in borrowers README
Yohann76 Feb 9, 2026
7b94a5b
feat: add developers github tdata exemple
Yohann76 Feb 9, 2026
187af45
feat: add github tool for developer category with commits
Yohann76 Feb 9, 2026
d2689e5
feat: add some documentation in category readme.md
Yohann76 Feb 9, 2026
0eaf526
feat: add exemple blacklist in folder
Yohann76 Feb 9, 2026
a000be5
feat: Converting CSV to JSON
Yohann76 Feb 9, 2026
26b487d
feat: add some documentation in developers tools
Yohann76 Feb 9, 2026
9f5ddfc
feat: update borrowers tool with interest calcul (not 4X snapshot per…
Yohann76 Feb 9, 2026
9635f09
fix: update developers tool for get github commit (without fork commit)
Yohann76 Feb 9, 2026
53a4ecb
feat: change calculation mode with burn/mint token and calculate inte…
Yohann76 Feb 9, 2026
a87809c
feat: add some documentation
Yohann76 Feb 14, 2026
74342c0
feat: add liquidators tools and data
Yohann76 Feb 14, 2026
a5f629e
feat: chance rpc for liquidator gnosis
Yohann76 Feb 14, 2026
8e26e74
feat: update chunk in fetch borrower rmm
Yohann76 Feb 14, 2026
23fae22
feat: add config for rmmv2 borrowers tool
Yohann76 Feb 16, 2026
17785be
feat: add new data for liquidators tool
Yohann76 Feb 16, 2026
b285e53
feat: add simple data in outData
Yohann76 Feb 16, 2026
4339382
feat: clean some code in tool
Yohann76 Feb 16, 2026
b6086f8
feat: update README.md category tools list
Yohann76 Feb 16, 2026
a4cab8d
feat: add some documentation with graph
Yohann76 Feb 17, 2026
b0398f3
feat: add data liquidator tool for coherence
Yohann76 Feb 17, 2026
3803ee0
feat: validate data from mock data
Yohann76 Feb 18, 2026
7a0b680
fix: remove double 0x data in liquidators_gnosis
Yohann76 Feb 18, 2026
f4d4eca
feat: add script for build json mock
Yohann76 Feb 18, 2026
0a7e543
feat: add time for each transation in liquidation tool
Yohann76 Feb 18, 2026
1259423
feat: update parsing mock data
Yohann76 Feb 18, 2026
9283b09
feat: add retry for find liquidator from wrapper
Yohann76 Feb 18, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,17 @@ example:
| Year | Category | Subject | Author | Score | Proof |
|------|----------|----------|---------|-------|---------------------------------------------------|
| 2026 | Writer | GitBook | @PhilP | 1000 | https://community-realt.gitbook.io/tuto-community |

# List of categories:

- Borrowers (Tools in borrowers/tools)(RMM V2 + RMM V3 OK)
- Liquidators (Tools search liquidator in RMM)(RMM V2 + RMM V3 OK))
- Developers (Tools in developper/tools for search all commit in community repository)

- Community managers (what to do for those who left the ecosystem? How define this?))
- Community participants (How define this? Need tool for discord, telegram ok)
- Documenters (How define this?)

- Liquidity providers (search in levinswap?)
- Collectors (??What is the purpose of this category?)
- Users (??What is the purpose of this category?)
23 changes: 23 additions & 0 deletions blacklist/exemple_blacklist.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"blacklist": [
{
"pseudo": "user_malveillant123",
"address": "0x742d35Cc6634C0532925a3b8D7dE158f9f4B9E4d",
"reason": "Repeated spam and harassment"
},
{
"pseudo": "",
"address": "0x1234567890abcdef1234567890abcdef12345678",
"reason": "Multiple accounts and rules violation"
},
{
"pseudo": "scam_bot",
"address": "",
"reason": "Scam attempts and phishing"
}
],
"metadata": {
"version": "1.0",
"last_update": "2026-02-09"
}
}
16 changes: 16 additions & 0 deletions borrowers/data/exemple_data.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"execution_script": "2025-02-15T12:00:00.000Z",
"realt_borrowers_gnosis": {
"2023": {
"0x1234567890123456789012345678901234567890": {"interest": 1, "interest_prorata": 0.7, "rank": 1},
"0xabcdefabcdefabcdefabcdefabcdefabcdefabcd": {"interest": 0.42, "interest_prorata": 0.3, "rank": 2}
},
"2024": {
"0x1234567890123456789012345678901234567890": {"interest": 0.67, "interest_prorata": 0.73, "rank": 1},
"0x9999999999999999999999999999999999999999": {"interest": 0.25, "interest_prorata": 0.27, "rank": 2}
},
"2025": {
"0x5678567856785678567856785678567856785678": {"interest": 1.25, "interest_prorata": 1, "rank": 1}
}
}
}
Loading