force-bridge-eth

所属分类:区块链开发
开发工具:Rust
文件大小:1320KB
下载次数:0
上传日期:2022-04-08 08:53:05
上 传 者sh-1993
说明:  force bridge eth,以太坊和Nervos之间的去中心化、无信任的桥梁。
(force-bridge-eth,Decentralized, trustless bridge between Ethereum and Nervos.)

文件列表:
force-bridge-eth-develop (0, 2021-04-23)
force-bridge-eth-develop\LICENSE (1067, 2021-04-23)
force-bridge-eth-develop\Makefile (4674, 2021-04-23)
force-bridge-eth-develop\QUICK_START.md (5188, 2021-04-23)
force-bridge-eth-develop\ckb-contracts (0, 2021-04-23)
force-bridge-eth-develop\ckb-contracts\Cargo.lock (104131, 2021-04-23)
force-bridge-eth-develop\ckb-contracts\Cargo.toml (521, 2021-04-23)
force-bridge-eth-develop\ckb-contracts\Makefile (674, 2021-04-23)
force-bridge-eth-develop\ckb-contracts\capsule.toml (608, 2021-04-23)
force-bridge-eth-develop\ckb-contracts\ckb_script_coverage.sh (179, 2021-04-23)
force-bridge-eth-develop\ckb-contracts\contracts-helper (0, 2021-04-23)
force-bridge-eth-develop\ckb-contracts\contracts-helper\Cargo.toml (402, 2021-04-23)
force-bridge-eth-develop\ckb-contracts\contracts-helper\src (0, 2021-04-23)
force-bridge-eth-develop\ckb-contracts\contracts-helper\src\chain.rs (1811, 2021-04-23)
force-bridge-eth-develop\ckb-contracts\contracts-helper\src\data_loader.rs (1231, 2021-04-23)
force-bridge-eth-develop\ckb-contracts\contracts-helper\src\debug.rs (498, 2021-04-23)
force-bridge-eth-develop\ckb-contracts\contracts-helper\src\entry.rs (1870, 2021-04-23)
force-bridge-eth-develop\ckb-contracts\contracts-helper\src\lib.rs (178, 2021-04-23)
force-bridge-eth-develop\ckb-contracts\contracts (0, 2021-04-23)
force-bridge-eth-develop\ckb-contracts\contracts\eth-bridge-lockscript (0, 2021-04-23)
force-bridge-eth-develop\ckb-contracts\contracts\eth-bridge-lockscript\Cargo.lock (9858, 2021-04-23)
force-bridge-eth-develop\ckb-contracts\contracts\eth-bridge-lockscript\Cargo.toml (495, 2021-04-23)
force-bridge-eth-develop\ckb-contracts\contracts\eth-bridge-lockscript\src (0, 2021-04-23)
force-bridge-eth-develop\ckb-contracts\contracts\eth-bridge-lockscript\src\main.rs (233, 2021-04-23)
force-bridge-eth-develop\ckb-contracts\contracts\eth-bridge-typescript (0, 2021-04-23)
force-bridge-eth-develop\ckb-contracts\contracts\eth-bridge-typescript\Cargo.lock (9616, 2021-04-23)
force-bridge-eth-develop\ckb-contracts\contracts\eth-bridge-typescript\Cargo.toml (495, 2021-04-23)
... ...

# Force Bridge ETH Force bridge is a bridge which connects CKB with other blockchain systems( aka cross-chain protocol ). Force-Bridge-ETH is the Ethereum component. Messages consist of transactionsevents and states on Ethereum can be transferred to CKB. In reverse, messages about transactions on CKB can be transferred to Ethereum. In other words, dapps on two sides can interoperate with each other based on force-bridge-eth. In the remaining part of this document, we will refer force-bridge-eth as force bridge for simplification. ## Design Cross-chain refers to the credible communication between blockchains. Generally, cross-chain protocols need solve two problems: 1. The credibility of cross-chain messages, that is, the authenticity of the message can be verified. 2. The comprehensibility of cross-chain messages, that is, messages can be decoded by another party. For the first problem, force bridge maintains light clients in smart contracts on both chain and use light clients to verify that transactions or events did happened on the counter party chain. The concept of on-chain light client is similar to [lightweight node](https://en.bitcoin.it/wiki/Lightweight_node) on BTC. And we use a mechanism called [SPV ( Simplified Payment Verification )](https://en.bitcoinwiki.org/wiki/Simplified_Payment_Verification_) to accomplish the verification. At the first stage, force bridge will maintain the light client in multi-signature notary scheme. A committee consists of Nervos Foundation and the community members will submit headers to the light client, along with their signature. At the second stage, force bridge will replace the multi-sig-light-client with consensus-based-light-client. It will be a full decentralized way. Everyone can submit headers. The contract will verify the header with the consensus algorithm of the chain. For the second problem, CKB uses [molecule](https://github.com/nervosnetwork/rfcs/blob/master/rfcs/0008-serialization/0008-serialization.md) for serialization and [blake2b](https://www.blake2.net/) for hashing, corresponding to [rlp](https://eth.wiki/fundamentals/rlp) and keccak256 on Ethereum. So we developed molecule and blake2b library on Ethereum to decode messages from CKB, rlp and keccak256 library on CKB to decode messages from Ethereum. Thereafter, we can transfer messages between CKB and Ethereum. ### Ethereum to CKB The Ethereum header contains state/transaction/receipt root, so messages of these three kinds can be transferred and verified. Take assets transfer as an example: 1. We can lock ETH/ERC20 token in an asset bridge contract with events emitted on Ethereum. 2. Then transfer the receipt message to CKB, that is to say, construct a CKB transaction with receipt and merkle proof as witness. 3. The constructed CKB transaction will mint mirror asset after verify the message by Ethereum client. ### CKB to Ethereum The CKB header contains transaction merkle root, so messages of CKB transaction can be transferred and verified. Take assets transfer as an example: 1. We can burn SUDT ( Simple User Defined Token ) on CKB. 2. Then transfer the transaction message to Ethereum, that is to say, call unlock method of the asset bridge contract with transaction data and merkle proof. 3. The asset bridge contract will unlock the correct asset after verify the message by CKB client. ## Architecture ![architecture](./docs/media/multi-sig-architecture.png) Force-bridge-eth will support assets transfer natively, the system consists of on-chain contracts and off-chain components. On-chain: - Ethereum contracts ( solidity ) - [CKB light client](https://github.com/nervosnetwork/force-bridge-eth/blob/main/eth-contracts/contracts/CKBChain.sol) - cross-chain contract - [asset-bridge](https://github.com/nervosnetwork/force-bridge-eth/blob/main/eth-contracts/contracts/TokenLocker.sol): supports lock/unlock asset features - ckb contracts ( rust ) - Ethereum light client - cross-chain contract - asset-bridge: supports mint/burn asset features - [bridge-lockscript](https://github.com/nervosnetwork/force-bridge-eth/tree/main/ckb-contracts/contracts/eth-bridge-lockscript): supports mint asset feature - [recipient-typescript](https://github.com/nervosnetwork/force-bridge-eth/blob/main/ckb-contracts/contracts/eth-recipient-typescript), supports burn asset feature Off-chain: - bridge lib ( rust ) - construct force-bridge-eth related transacitons to ckb and ethereum - construct cross-chain message proof - common structures and functions - bridge cli ( rust ) - depends on bridge lib - used by developers to do [deploy, test, bridge actions] - bridge web ( frontend: js, backend: rust ) - depends on bridge lib - used by users to do asset bridge actions - multi-sig-server ( rust ) - depends on bridge lib - used by signers to maintain ckb/ethereum clients ## Features - Security. The version 2.0 of force bridge will be full decentralized, permissionless bridge between CKB and Ethereum. Force bridge is secure as long as majority (1/2) of Etherem mining power and majority (1/2) of CKB mining power is honest. There are no additional security requirements. The whole crosschain process can be performed by anyone. - Extendability. Due to the low level abstraction of CKB script programming and flexible architecture of force bridge, it will be easy to extend its ability. - The asset bridge we already implemented will support ETH and all ERC20 token natively. In most solutions, you have to deploy a new asset on the target chain, register the address on Ethereum, and specify the relationship between them before you can move your asset. In force bridge, you can move your asset right after you deployed the ERC20 contract. You will get the associated mirror token automatically. - Move your asset to a user or to a dapp is the same thing for force bridge. As we will show in the DEX demo, users can place order with ETH to buy CKB in a single step, instead of locking the asset on ETH and then placing order on CKB. As long as the dapp follows some specific pattern, the dapp and bridge can be integrated without any changes of bridge. - In the future version of force bridge, we may reuse the existing components to support new crosschain situation, e.g. ERC721. The eth light client on CKB can verify that a transaction or event did happened on Ethereum. Developers can write handler dapps on CKB to extend the ability as they want. - User experience and broader interoperability. For a typical crosschain process, users have to maintain at least one account on each chain with associated wallet. In force bridge, users can reuse existing tools and participate in the CKB ecosystem without learning new concepts. You can use Ethereum wallet (e.g. Metamask) to do the crosschain, manage your assets and interact with DeFi on CKB. In future, we will support connecting to other blockchain systems. Users from different chain may use their own wallet to trade in the same liquid pool on CKB. [comment]: <> ([![codecov](https://codecov.io/gh/nervosnetwork/force-bridge-eth/branch/main/graph/badge.svg?token=ODATPNIRJO)](https://codecov.io/gh/nervosnetwork/force-bridge-eth))

近期下载者

相关文件


收藏者