All Projects → Cryptonomic → Arronax

Cryptonomic / Arronax

Licence: GPL-3.0 License
Blockchain data analytics tool

Programming Languages

typescript
32286 projects
CSS
56736 projects

Projects that are alternatives of or similar to Arronax

Tezori
Whitelabel wallet framework for the Tezos blockchain
Stars: ✭ 59 (+96.67%)
Mutual labels:  blockchains, tezos
nft-tutorial
Tezos FA2 NFT CLI Tool And Tutorial
Stars: ✭ 81 (+170%)
Mutual labels:  tezos
TZComet
Contract Metadata Viewer on Tezos
Stars: ✭ 24 (-20%)
Mutual labels:  tezos
tatum-cli
Command-line tool to access all blockchains.
Stars: ✭ 75 (+150%)
Mutual labels:  blockchains
crypto-code-school-inside-tezos
Interactive Code School for onboarding newcomers to build DApps on Tezos using SmartPy
Stars: ✭ 48 (+60%)
Mutual labels:  tezos
Tezos-Developer-Resources
Resources for Tezos Developers
Stars: ✭ 34 (+13.33%)
Mutual labels:  tezos
quipuswap-core
🧙‍♂️ Repository containing QuipuSwap liquidity protocol smart-contracts written in Ligo language
Stars: ✭ 48 (+60%)
Mutual labels:  tezos
ruby-to-michelson
(Secure) Ruby to Liquidity w/ ReasonML Syntax / Michelson (Source-to-Source) Cross-Compiler Cheat Sheet / White Paper
Stars: ✭ 16 (-46.67%)
Mutual labels:  tezos
techelson
A test execution engine for Michelson smart contracts.
Stars: ✭ 17 (-43.33%)
Mutual labels:  tezos
harbinger
Harbinger is a decentralized price oracle solution for price feeds on the Tezos network. This repository contains top level documentation for the project.
Stars: ✭ 39 (+30%)
Mutual labels:  tezos
tezbridge-legacy
This is the legacy code base of TezBridge
Stars: ✭ 13 (-56.67%)
Mutual labels:  tezos
tezos-k8s
Deploy a Tezos Blockchain on Kubernetes
Stars: ✭ 43 (+43.33%)
Mutual labels:  tezos
tezos-reward-distributor
Tezos Reward Distributor (TRD): A reward distribution software for tezos bakers.
Stars: ✭ 80 (+166.67%)
Mutual labels:  tezos
tzindex
Tezos Blockchain Indexer
Stars: ✭ 64 (+113.33%)
Mutual labels:  tezos
tzscan
The TzScan block explorer for Tezos
Stars: ✭ 12 (-60%)
Mutual labels:  tezos
bcdhub
Better Call Dev backend
Stars: ✭ 30 (+0%)
Mutual labels:  tezos
kukai
Web wallet for the Tezos blockchain
Stars: ✭ 157 (+423.33%)
Mutual labels:  tezos
templewallet-mobile
📱🔐💰 Mobile cryptocurrency wallet for Tezos blockchain.
Stars: ✭ 27 (-10%)
Mutual labels:  tezos
pytezos
🐍 Python SDK & CLI for Tezos | Michelson REPL and testing framework
Stars: ✭ 93 (+210%)
Mutual labels:  tezos
tezedge-specification
TLA+ specs and models for the TezEdge node's p2p overlay network, shell, and consensus
Stars: ✭ 19 (-36.67%)
Mutual labels:  tezos

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 install
#Read instructions for configuration
npm 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: '',
    network: '',
    displayName: '',
    url: 'conseil.server',
    apiKey: 'SomeSecret',
    nodeUrl: 'tezos.server',
    entities: ['blocks', 'operations', 'accounts', 'bakers', 'governance'],
    hiddenEntities: ['originated_account_maps', 'big_maps', 'big_map_contents']
  }
]

export default configs;

platform ('tezos') and network ('mainnet') in that file become URL parameters that ConseilJS uses. displayName is used in the UI network selector. url and apiKey are Conseil service parameters. Cryptonomic provides a turn-key Tezos infrastructure service – nautilus.cloud. Conseil and Tezos endpoints are provided by that service. nodeUrl is a Tezos RPC endpoint. entities and hiddenEntities provide priority sorting for entity display and hide entities from display respectively.

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 /build once this process is complete. npm run build

Package into docker

docker build -t arronaxcontainer .
docker run -d -p 3080:80 arronaxcontainer
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].