An application for interacting with Azimuth.
Clone the repo, and use a simple npm install
.
You can use a npm run build
to create an optimised static build.
The build directory needs to be served with a static server; you can use the
bridge
script to start serving the site at localhost:5000.
To authenticate and sign transactions with a Ledger, Bridge must be serving over HTTPS on localhost. This requires self-signed certificates. You can do this via the following:
- Install mkcert
- Install a local certificate authority via
mkcert -install
- In your
bridge
directory, generate a certificate valid for localhost viamkcert localhost
. This will produce two files:localhost.pem
, the local certificate, andlocalhost-key.pem
, its corresponding private key. - Run
python bridge-https.py
Bridge will serve to localhost over HTTPS on port 4443
Use npm run pilot
to get going. This will boot up a Ganache node in
the background, deploy the Azimuth contracts to it, and fire up a local
webserver. Bridge will be served on localhost:3000
.
Note that one of our dependencies itself depends on a library called
handle-thing
which breaks under the Ledger support requirements (see below)
on node 11.1.0, so make sure you're using some other node version.
You can use nvm, for example, and do:
$ nvm install 11.0.0
$ nvm use v11.0.0
before running npm run pilot
.
The ecliptic owner is the only account that's able to create galaxies, so it's a good place to get started. On the testnet, it's the address:
0x6DEfFb0caFDB11D175F123F6891AA64F01c24F7d
You can authenticate as it using the following mnemonic:
benefit crew supreme gesture quantum web media hazard theory mercy wing kitten
Under that mnemonic, Ganache will also auto-populate the following accounts with 100 ETH:
0x6deffb0cafdb11d175f123f6891aa64f01c24f7d
0xd53208cf45fc9bd7938b200bff8814a26146688f
0x7b2a2d51e4d8fac602e20a5f6907ff9fbd88e1fd
0xf48062ae8bafd6ef19cd6cb89db93a0d0ca6ce26
0xf84a77aeb351c49dfa87e805a659d2daddff7606
0x167e357cf8b845370d0d408f9b389b66185b7b5b
0xcbecf3abc9878f07afc851aead2d8f1c436cc71d
0x0afc0c3f4eeea500871f464ca71eef5e54a9af36
0x6d654ef2489674d21aed428e8a4ad8ca4820f125
0x218f6f87683db546ad47a5dc8b480e5a9b694866
To play around with any of these, authenticate using the same mnemonic, but
use a custom HD path of m/44'/60'/0'/0/1
, m/44'/60'/0'/0/2
, and so on.
You can also tweak a couple of things to change your development state somewhat (say, for example, you want to start on the points list screen, instead of having to re-authenticate whenever you make a change or refresh the page):
-
The
.env.development
file contains environment variables that you can provide to the application when it's running in development. You can access them viaprocess.env.REACT_APP_<whatever>
. -
The
componentDidMount
method of the Bridge component insrc/Bridge.js
can be tweaked for setting your initial state. You can provide a specific wallet, network type, and so on.
For development, you can enable HTTPS on localhost without a certificate for Chrome by pasting the following into the URL bar:
chrome://flags/#allow-insecure-localhost
Additionally you need to run with the HTTPS
environment variable set to
true
. Note that npm run pilot
will handle this automatically.
To generate a release .tar.gz
file, use a simple npm run release
.
This will pack the build directory together with the bridge
and
bridge-https.py
scripts, and also generate a set of checksums for the build
directory. You can verify the checksums on e.g. OS X via shasum -c checksums.txt
.