avail-apps
is a modified version of the @polkadot/apps repository for visualizing and interacting with the Avail network.
Learn more about Avail at the Avail product page and documentation websites.
You can access a live version of the explorer for the Avail Testnet at https://testnet.polygonavail.net/
The repo is split into a number of packages, each representing an application. These are -
- apps This is the main entry point. It handles the selection sidebar and routing to the specific application being displayed.
- apps-electron Desktop app running apps.
- page-accounts A basic account management app.
- page-address-book A basic address management app.
- page-democracy A basic voting app, allowing votes on activate proposals and referenda.
- page-explorer A simple block explorer. It only shows the most recent blocks, updating as they become available.
- page-extrinsics Submission of extrinsics to a node.
- page-js An online code editor with @polkadot-js/api access to the currently connected node.
- page-settings A basic settings management app, allowing choice of language, node to connect to, and theme
- page-staking A basic staking management app, allowing staking and nominations.
- page-storage A simple node storage query application. Multiple queries can be queued and updates as new values become available.
- page-toolbox Submission of raw data to RPC endpoints and utility hashing functions.
- page-transfer A basic account management app, allowing transfer of Units/DOTs between accounts.
In addition the following libraries are also included in the repo. These are to be moved to the @polkadot/ui repository once it reaches a base level of stability and usability. (At this point with the framework being tested on the apps above, it makes development easier having it close)
- react-components A reactive (using RxJS) application framework with a number of useful shared components.
- react-signer Signer implementation for apps.
- react-query Base components that use the RxJS Observable APIs
Contributions are welcome!
To start off, this repo uses yarn workspaces to organize the code. As such, after cloning dependencies should be installed via yarn
, not via npm, the latter will result in broken dependencies.
To get started -
- Clone the repo locally, via
git clone https://github.com/maticnetwork/avail-apps.git <optional local path>
- Ensure that you have a recent LTS version of Node.js, for development purposes Node >=10.13.0 is recommended.
- Ensure that you have a recent version of Yarn, for development purposes Yarn >=1.10.1 is required.
- Install the dependencies by running
yarn
- Ensure that env file is created as mentioned in
env-example
file - Ready! Now you can launch the UI (assuming you have a local Polkadot Node running), via
yarn run start
- Access the UI via http://localhost:3000