This application is created for interacting with the æternity <> EVM Bridge contracts provided by Acurast. Executing proper bridge actions using this application will result in moving the sent funds to the other chain.
Staging: https://bridge.stg.aepps.com/
Production: https://ae-bridge.com/
Before running the application, first project dependencies needs to be installed with the following command:
yarn
Afterwards, to run the application locally in development mode, following command needs to be run at the project directory:
yarn start
This application doesn't contain any secrets and can be run by any machine with the following packages installed: node, npm, yarn
After completing the Getting started
successfully, following command will build the application and make it ready to be served either on a local machine or on a server:
yarn build
To serve the build, there is a need for an additional package called serve
, can be installed via:
with yarn:
yarn global add serve
without yarn:
npm -g install serve
Finally, to run the build:
serve -s build
If you want to run the bridge on free cloud service, following steps can be taken:
- Fork this repository
- Create an account for a cloud deployment service (Vercel, Netlify, AWS etc)
- Connect your GitHub account to your cloud platform selection
- Create a new app under your cloud service
- Configure your application using your forked repo with the standard node application deployment settings
- Deploy and self host your bridge application