summaryrefslogtreecommitdiffstats
path: root/.gitignore
diff options
context:
space:
mode:
authorgabrix73 <gabriel1@frozenstar.info>2026-06-01 18:41:36 +0200
committergabrix73 <gabriel1@frozenstar.info>2026-06-01 18:41:36 +0200
commit25c18b58cb2492a95ac91cf76a8f98ca7c63af44 (patch)
treefcc27dd7be69fac5b5396a1d730baaf68c6aa3f9 /.gitignore
downloadonioncoin-25c18b58cb2492a95ac91cf76a8f98ca7c63af44.tar.gz
onioncoin-25c18b58cb2492a95ac91cf76a8f98ca7c63af44.tar.xz
onioncoin-25c18b58cb2492a95ac91cf76a8f98ca7c63af44.zip
Initial commit: OnionCoin prototype with Proof-of-Relay consensusHEADv0.1.0main
OnionCoin is a privacy cryptocurrency that rewards Tor relay operators through a unique Proof-of-Contribution consensus mechanism. Core Features: - Proof-of-Relay: 30% of block rewards go to Tor operators - Native .onion node identity (no IP exposure) - Temporal obfuscation protocols - Dandelion++ over Tor propagation - Native inheritance system with dead man's switch Technical Stack: - Rust workspace with 8 crates - Ed25519/X25519 cryptography - arti (Rust Tor client) integration planned - 10 minute block time, 5-10 TPS design Status: Prototype - Consensus logic complete with passing tests (30/33) - Network layer conceptual design complete - Tor integration pending - Testnet launch planned Q3 2026 License: MIT Author: Gabriele Salati (virebent) Contact: g48rix@gmail.com Website: https://www.gabrielesalati.eu Repository: https://git.virebent.art/virebent/onioncoin
Diffstat (limited to '.gitignore')
-rw-r--r--.gitignore24
1 files changed, 24 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..e527a32
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,24 @@
+# Rust
+target/
+Cargo.lock
+**/*.rs.bk
+*.pdb
+
+# IDE
+.vscode/
+.idea/
+*.swp
+*.swo
+*~
+
+# OS
+.DS_Store
+Thumbs.db
+
+# Project-specific
+*.sig
+merkle-tree.txt
+
+# Release artifacts (signed separately with yubisigner)
+dist/
+releases/