Skip to content

tuliptools/Arronax

 
 

Repository files navigation

Arronax

Build Status dependencies

Blockchain data analytics tool built with ConseilJS, powered by the Conseil API. Beta deployment is live.

Building

git clone https://github.com/Cryptonomic/Arronax.git
cd Arronax
npm i
#Read instructions for configuration
npm run start

Configuration Instructions

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.

Other Build Targets

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

Packages

No packages published

Languages

  • TypeScript 95.4%
  • CSS 2.4%
  • JavaScript 2.0%
  • Other 0.2%