This repo hosts a simple interface to send tokens using the Rialto bridge between an Ethereum network and a Substrate network (one way). Metamask (connected to Rialto network) is required to sign Ethereum transactions. The interface automatically connects to Rialto's Substrate nodes (no configuration or plugin required).
The interface is available at: https://paritytech.github.io/bridge-ui
This repo is deprecated, the work for Bridge UI continues in https://paritytech.github.io/parity-bridges-ui
You can set the Substrate and Ethereum nodes you want to connect to, by overriding the following variables in the .env
file:
SUBSTRATE_PROVIDER
ETHEREUM_PROVIDER
EXPECTED_ETHEREUM_NETWORK_ID
First install dependencies:
yarn
or using npm
npm install
To run in hot module reloading mode:
yarn start
or using npm
npm start
To check for linting errors/warnings:
yarn lint
or using npm
npm run lint
yarn build
or using npm
npm run build
Open the file dist/index.html
in your browser
Made with parcel bundler using createapp.dev