Blockchain data analytics tool built with ConseilJS, powered by the Conseil API. Beta deployment is live.
git clone https://github.com/Cryptonomic/Arronax.git
cd Arronax
npm i
#Read instructions for configuration
npm run start
config.tsx
is expected to be found in /src
. It defines one or more Conseil end-points and data sources within. initialState
inside /src/reducers/app/reducers.ts
will reference the default connection to create once the application loads. The most basic config file will look like the following
import { Config } from './types';
const configs: Config[] = [
{
platform: '', // eg tezos:
network: '', // eg alphanet
displayName: '', // eg Tezos Alphanet
url: 'conseil.server',
apiKey: 'SomeSecret'
}
]
export default configs;
platform
and network
in that file become URL parameters that ConseilJS uses.
Start the local server without forcing open a browser.
npm run serve
Package (webpack) for distribution. Fully contained artifacts will appear in /dist
once this process is complete.
npm run build