Run Wasm Light Clients of any Tetcore based chain directly in your browser.
Substrate Connect is not the name of a single product, it rather describes a vision or notion that will allow developers to quickly generate and run Wasm Light Clients of their Substrate based chains - as easy as installing a node module.
Substrate Connect provides the infrastructure to run these clients directly in the browser and any other JavaScript or Node environment without deeper additional programming efforts needed. It adds Substrate light-client functionality to any Javascript environment, from in-browser applications to browser extensions and electron apps up to IOT devices and mobile phones.
It also provides an interface that enables Dapp developers to effortlessly make use of the light-client functionality in their applications.
- Ready-to-use Substrate Wasm Light-Clients to be executed in the browser**.** They are part of the Substrate framework and with that, available for every Substrate based project. If developers want to generate a light client of their chain, all it takes is just one command to compile a library that contains everything that's needed to run a light client in the browser.
- A node module that bundles the light-clients of different chains. It provides an interface that allows developers to run light nodes of different chains and to add runtimes and genesis configs of their own chain.
The @substrate/connect
node module will allow developers to include light client functionality into their application by using a predefined interface.
- For in-browser use, Substrate Connect provides a Browser Extension built upon the @substrate/light node module that is running the selected light clients inside the extension so that the end-user doesn't need to fire up a light node in every browser tab. This will also allow the light-node to keep syncing as long as the browser window stays open.
When used in individual projects, the Substrate Connect node module will first check for the installed extension. If available, it will try to connect to the light client running inside the extension. Only if the extension is not installed it will start a light client in the browser tab.
This repository is using yarn workspaces for dependency management together with Lerna to handle releases.
- Clone the whole
substrate-connect
repository.
$ git clone https://github.com/paritytech/substrate-connect.git
- Install all dependencies
$ yarn install
- Compile all packages and projects
$ yarn build
To clean up all workspaces in the repository, run:
$ yarn clean
Running the following command will build all necessary dependencies and run the Substrate Burnr Wallet in development mode with hot reloading enabled. It will be served on http://localhost:8000/
$ yarn run dev:burnr
(Make sure to run $ yarn install
before.)
Running the following command will build all necessary dependencies and run the Smoldot browser demo. It will be served on https://localhost:1234/
$ yarn run dev:smoldot-browser-demo
(Make sure to run $ yarn install
before.)
Substrate Connect is using Yarn workspaces to manage dependencies.
Read more about it here: https://classic.yarnpkg.com/en/docs/workspaces/
To add new dependencies, please use the following syntax:
$ yarn workspace [module name from package.json] add your-desired-npm-package
Example to add Jest to the Burnr Wallet:
$ yarn workspace @substrate/burnr add jest