Hubble is an ERC-20 token transfer solution that improves Ethereum throughput from 20 transactions per second to ~2700.
Accounts submit transfers to a coordinator node who then submits transactions and the state root of the balance updates to an Ethereum smart contract (Rollup.sol).
The contract does not validate either the correctness of the balance updates or the authenticity of the sender.
Anyone can trigger the dispute methods of the contract and penalize the coordinator by burning the assets they staked beforehand. The contract rolls back to the last state when the balances were correct.
- Optimism: Hubble does not support the EVM virtual machine, ... yet.
- ZK (zero knowledge proof) rollups: Both improve throughput but Hubble is ZK free. No zero-knowledge moon math, only boring EVM at work.
- ZK optimistic rollups: Hubble does not address privacy.
Hubble has the highest throughput compared with the above, since:
- Hubble use BLS signature aggregation to reduce the size to store data on chain.
- We optimize for simple token transfers.
Users can migrate their tokens to other L2 solutions without withdrawing to and depositing from Layer 1 (L1) again.
Users can onboard accounts to Hubble without going through L1. The coordinator can register their public keys and then they can acquire tokens from holders who are already in the Hubble L2.
https://hub.docker.com/r/thehubbleproject/node
docker pull thehubbleproject/node:latest
# or for a specific release, ...:v0.x.y
See Docker instructions.