AI agent wallets, Proof of Conduct reputation, and concentration decay on L1
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"io-github-rillcoin-rill": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A cryptocurrency with progressive concentration decay. Holdings above configurable thresholds gradually decay back into the mining pool, promoting circulation and discouraging long-term hoarding.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in finance
Real-time financial market data: stocks, forex, crypto, commodities, and economic indicators
A Model Context Protocol (MCP) server that provides AI assistants with direct access to the Spreedly payments API. Enables LLMs to manage gateways, process transactions, tokenize payment methods, and more, through structured, validated tool calls.
MCP server for InsightSentry financial data API - market data, options, screeners, and more
AI agents get on-chain identity, credentials, reputation, escrow, and persistent memory on XRPL.
MCP Security Weekly
Get CVE alerts and security updates for io.github.rillcoin/rill and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Wealth should flow like water.
A cryptocurrency with progressive concentration decay. Holdings above configurable thresholds gradually decay back into the mining pool, promoting circulation and discouraging long-term hoarding.
Rill implements a novel economic model where concentrated wealth naturally flows back into circulation through a mathematically-governed decay mechanism. Large balances above threshold values experience sigmoid-function-based decay, with decayed funds returning to miners as supplemental block rewards.
The project is implemented in Rust across 6 library crates and 3 binaries, with over 920 tests including unit, integration, property-based, and adversarial test coverage.
u64 fixed-point arithmetic (10^8 precision) — no floating pointcurl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
git clone https://github.com/rillcoin/rill.git
cd rill
# Build all binaries
cargo build --release
# Run all 920+ tests
cargo test --workspace
# Check for warnings
cargo clippy --workspace -- -D warnings
# Start a regtest node (instant blocks, no real PoW)
./target/release/rill-node --regtest --data-dir /tmp/rill-regtest
./target/release/rill-cli wallet create --network testnet
./target/release/rill-miner \
--rpc-endpoint http://127.0.0.1:38332 \
--mining-address trill1<your-address>
docker-compose up --build
rill-core Foundation types (Transaction, Block, Address, UTXO, traits)
|
rill-decay Concentration decay algorithm — sigmoid curves, fixed-point math
|
rill-consensus Block validation, PoW, difficulty adjustment, mining rewards
|
rill-network P2P networking (libp2p: Gossipsub, Kademlia, Noise, mDNS)
|
rill-wallet HD wallet, BIP-39 mnemonics, decay-aware coin selection
|
rill-node Full node: RocksDB storage, JSON-RPC server, mempool
See docs/ARCHITECTURE.md for a detailed description of every crate, the storage column families, network protocol, and design decisions.
rill/
├── crates/
│ ├── rill-core/ # Core types, traits, crypto, constants
│ ├── rill-decay/ # Sigmoid decay algorithm (fixed-point, integer-only)
│ ├── rill-consensus/ # Block production, validation, PoW, difficulty
│ ├── rill-network/ # P2P networking (libp2p)
│ ├── rill-wallet/ # HD wallet, coin selection, encrypted persistence
│ ├── rill-node/ # Full node library: storage, RPC, mempool
│ └── rill-tests/ # Integration, property-based, and adversarial tests
├── bins/
│ ├── rill-node/ # Full node binary
│ ├── rill-cli/ # Command-line wallet and node query tool
│ └── rill-miner/ # Standalone mi
... [View full README on GitHub](https://github.com/rillcoin/rill#readme)