From 6fb8ce6c69cf135ea1591829642cc8e6eeb10c98 Mon Sep 17 00:00:00 2001 From: yslcrypto Date: Sat, 30 May 2020 12:37:00 +0200 Subject: [PATCH] add explainer and define mixer --- css/style.css | 4 ++++ index.html | 9 ++++++--- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/css/style.css b/css/style.css index 831b27f..e28fde2 100644 --- a/css/style.css +++ b/css/style.css @@ -19,6 +19,10 @@ a:hover { cursor: pointer; } +.explainer { + max-width: 50%; +} + hr { height: 2px!important; diff --git a/index.html b/index.html index e6aaa88..27e84d0 100644 --- a/index.html +++ b/index.html @@ -57,8 +57,10 @@ From Esperanto, miksi (miks·i): to mingle, to blend, to mix, to shuffle

- Ethereum trustless zk-mixer. Computations and Merkle tree constructions are done offchain and then proved inside a zkSNARK to the smart-contract. -


+
+ Ethereum trustless zk-mixer. Computations and Merkle tree reconstructions are done offchain and then proved inside a zkSNARK to the smart-contract. This approach requires only ~325.000 gas to deposit, compared to ~1M gas for an onchain computation approach (as currently implemented by tornado.cash). +
+

WARNING: experimental code, use only in Göerli testnet. Do not use with real ETH.


@@ -115,7 +117,8 @@
Specs and core code: https://github.com/arnaucube/miksi-core
- What is a mixer? +
+ What is a mixer? A mixer is a tool to increase transaction privacy by breaking the on-chain link between the recipient and destination addresses. It uses a smart contract that accepts ETH deposits that can be withdrawn by a different address. Whenever a new address withdraws ETH, the link between the withdrawal and the deposit is obfuscated.


Config