FHE Validation
Mind Network's Research Results:
DeepSeek's FHE Validator: Repo, DeepSeek Official Link
Virtuals's FHE Validator: Repo
Eliza's FHE Validator: Repo, Eliza with FHE Tutorial
Swarms' FHE Validator: Swarm Rust, Swarm Shield
Mind Network's Research Details:
š Proof of Stake (POS) is a consensus mechanism where stakeholder voting power determines validation results. POS is widely used in blockchain, AI, DePin and other decentralised worlds. For example, vote if Ethereum status is the longest chain to avoid unnecessary forks, can vote if Bittensor select the best performed models, can vote if IoTex conducts fair community governance, and so on.
š¤ FHE Validation focuses on preventing "collusion" risk, a dark shadow exists from day 1 of POS. Vitalik discussed it in 2016, 2019, and 2024, echoed widely by others recently, for example Ethereum, Polkadot, and Binance. A short summary of "collusion" risk is caused by stakers who have "clue" with each other. For example, if a16z voted "no" in a proposal, it could influence other nodes who saw a16z's vote also to vote "no". To increase difficulty of "collusion" risk, the current used solution is to randomise validators selection. It is acceptable in super large networks like Ethereum which has more than 8192 validators, but not in small networks which only have a few hundreds or even dozens of validators or even less. It is because a small number of validators could accumulate a significant amount of tokens and control a large portion of the network's decision-making power, which is called "POS timebomb" and the communities have already seen in several networks.
š”ļø FHE Validation addresses "collusion" risk by encrypting votes, ensuring privacy while achieving consensus. It is due to the nature of FHE to enable computation directly on encrypted data without decryption. While the mathematical details of FHE are complex, its basics can be illustrated as follows:
Alice encrypts her value privately.
Alice sends the encrypted value to Bob for computation.
Bob computes the function on the encrypted data and returns the result.
Alice decrypts the result to obtain the final value.
š With FHE, POS is developed into a consensus of mathematical production of stake by encrypted vote. Being different from classical POS, before and after voting, each validator node can not see what others have votes and is called "private voting", but their encrypted votes can reach consensus with FHE. Without "clue", validators are enforced to make independent decisions. You can see from the diagram below as an example.
š In Mind Network, FHE validators are forced to do independent validators because their votes can not been seen. We've developed SDKs in multiple languages to facilitate FHE Validation. FHE Validators encrypt their votes using a specified FHE Public Key and submit them to the FHE Validation Consensus. This has extremely useful in AI and Agents, and Mind is already adopted by the popular projects like DeepSeek, Virtuals, Eliza and Swarms.
Last updated