chainstacklabs / evm-blockchain-bridge

A simplified blockchain bridge between two EVM compatible networks

Home Page:https://chainstack.com/how-to-create-blockchain-bridge/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Labs

Chainstack is the leading suite of services connecting developers with Web3 infrastructure

         

HomepageSupported protocolsChainstack blogChainstack docsBlockchain API reference
Start for free

EVM Blockchain bridge simplified

You can read the full article for this project in the Chainstack blog

This project contains multiple pieces to create a functional (although not production ready) ERC20 blockchain bridge between two EVM-compatible chains.

It uses a wallet as an escrow and leverages the events triggered by the ERC20 tokens to burn and mint tokens on each side of the bridge

Requirements

Build & Compile

Create a Metamask wallet and get some tokens for your target networks. This code was tested with Sepolia and BNB testnet. You can get testnet tokens using the Chainstack Faucet.

Clone the repository.

git clone https://github.com/chainstacklabs/evm-blockchain-bridge.git

Deploy smart contracts

cd solidity

Clean install dependencies.

npm ci

Rename /solidity/.env.example to /solidity/.env and fill in the details with your wallet address and the RPC endpoints from your Chainstack dashboard.

To deploy your contracts, run npm run deploy:ori and npm run deploy:dest.

You'll get the contract address in the console.

You can test the contracts running npm run test.

Front-end

Navigate to the web directory.

cd .. && cd web

Clean install dependencies

npm ci

Rename /web/.env.example to /web/.env and fill in the details with your wallet address, RPC endpoints, and token addresses from the deployed smart contracts.

To build the front end, run npm run build inside the web directory. You can run the front end locally with npm run dev or deploy the generated dist folder to any static site hosting.

Back-end

The back-end service is required to run the bridge.

Navigate to the backend directory.

cd .. && cd backend

Clean install dependencies

npm ci

Rename /backend/.env.example to /backend/.env and fill in the details with your wallet address, RPC endpoints, and token addresses from the deployed smart contracts.

To start the back-end service, run npm start.

Once the back-end service runs, you can use the front end to send tokens through the bridge.

About

A simplified blockchain bridge between two EVM compatible networks

https://chainstack.com/how-to-create-blockchain-bridge/


Languages

Language:Vue 52.5%Language:JavaScript 36.6%Language:Solidity 6.1%Language:TypeScript 4.0%Language:HTML 0.6%Language:CSS 0.1%