All Projects → gxchain → Gxchain Explorer

gxchain / Gxchain Explorer

Licence: mit
GXChain explorer(GXChain区块链浏览器)

Projects that are alternatives of or similar to Gxchain Explorer

Bitcoin Transaction Explorer
Simple and pure block explorer you can run on top of a full node
Stars: ✭ 165 (+57.14%)
Mutual labels:  blockchain, explorer
Big Dipper
A block explorer for Cosmos
Stars: ✭ 119 (+13.33%)
Mutual labels:  blockchain, explorer
Lisk Explorer
📦 Lisk blockchain explorer
Stars: ✭ 123 (+17.14%)
Mutual labels:  blockchain, explorer
Erc20 Explorer
An explorer for ERC20 based Ethereum tokens
Stars: ✭ 248 (+136.19%)
Mutual labels:  blockchain, explorer
Ethvm
⚡️EthVM: Open Source Processing Engine and Block Explorer for Ethereum ⚡️
Stars: ✭ 319 (+203.81%)
Mutual labels:  blockchain, explorer
Bulwark Explorer
Block explorer for Bulwark Cryptocurrency
Stars: ✭ 57 (-45.71%)
Mutual labels:  blockchain, explorer
Blockscout
Blockchain explorer for Ethereum based network and a tool for inspecting and analyzing EVM based blockchains.
Stars: ✭ 913 (+769.52%)
Mutual labels:  blockchain, explorer
Explorer
Block Explorer of Nebulas
Stars: ✭ 95 (-9.52%)
Mutual labels:  blockchain, explorer
Awesome Ton
A curated list of awesome TON ecosystem 😎
Stars: ✭ 101 (-3.81%)
Mutual labels:  blockchain
Diadata
DIAdata.org platform
Stars: ✭ 103 (-1.9%)
Mutual labels:  blockchain
Barong
Barong auth server
Stars: ✭ 100 (-4.76%)
Mutual labels:  blockchain
Utopian.io
Utopian.io Frontend - Utopian wants to reward open-source contributors!
Stars: ✭ 101 (-3.81%)
Mutual labels:  blockchain
Ecency Mobile
Ecency Mobile - reimagined social blogging, contribute and get rewarded (for Android and iOS)
Stars: ✭ 103 (-1.9%)
Mutual labels:  blockchain
Library
Collection of papers in the field of distributed systems, game theory, cryptography, cryptoeconomics, zero knowledge
Stars: ✭ 100 (-4.76%)
Mutual labels:  blockchain
Ark Js
An ARK Client for JavaScript.
Stars: ✭ 103 (-1.9%)
Mutual labels:  blockchain
Masterblockchain
Stars: ✭ 100 (-4.76%)
Mutual labels:  blockchain
Esteem Surfer
Ecency desktop formerly known as Esteem Surfer - reimagined desktop social wallet, contribute and get rewarded (for Windows, Mac, Linux)
Stars: ✭ 100 (-4.76%)
Mutual labels:  blockchain
Dcrdata
Decred block explorer, with packages and apps for data collection and storage. Written in Go.
Stars: ✭ 104 (-0.95%)
Mutual labels:  blockchain
Todo List Fabricv1
A todo list application using Hyperledger Fabric V1 as a data source
Stars: ✭ 103 (-1.9%)
Mutual labels:  blockchain
Solana
Web-Scale Blockchain for fast, secure, scalable, decentralized apps and marketplaces.
Stars: ✭ 1,383 (+1217.14%)
Mutual labels:  blockchain

GXChain区块浏览器(GXChain Explorer)

GXChain区块浏览器是构建在公信链(GXChain)上的一个查询工具,提供区块(Block)查询,交易(Transaction)查询和账户(Account)查询功能

GXChain Explorer is a search tool build on GXChain, supporting block search, transaction search, and account search.

任何一方可以无偿使用此浏览器或进行二次开发, 但请注明项目来源:Powered by GXChain

Please keep our copyright "Powered by GXChain" if you want use it for free

Thanks shuang-guo for providing english translation

功能 Function

  • [x] 区块同步 Block synchronization
  • [x] 区块查询 Block search
  • [x] 账户查询 Account search
  • [x] 交易查询 Transaction search
  • [x] 可视化 Visualization
  • [x] 多语言(已添加中文、英文)Multi-language supported(Chinese and English)

环境依赖 System requirement

必要环境(Required): Node 6+

建议系统(Operation system): OSX、Linux

Node环境安装 Install under Node environment

建议使用NVM(Node Version Manager)进行安装: Recommend to use NVM(Node Version Manager)for installation:

curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.30.2/install.sh | bash
. ~/.nvm/nvm.sh
nvm install v6
nvm use v6

克隆项目 Clone project

git clone https://github.com/gxchain/gxbox.git

依赖安装 Install dependencies

调试模式依赖于babel-node, 在克隆的工程下执行以下命令安装依赖: Test mode depends on babel-node, execute the following commands to install dependencies under cloned engineering mode:

npm install -g babel-node
npm install

开发模式启动 Development mode start

npm start

生产环境启动 Production environment start

NODE_ENV=production node server-dist/index.js

或者使用pm2启动(else use pm2 to start)

NODE_ENV=production pm2 start server-dist/index.js --name gxb-explorer

API说明 API description

1. 根据区块高度获取区块信息 Acquire block information from block_height

/api/block/:block_height

2. 根据tx_id获取交易信息 Acquire transaction information from tx_id

/api/transaction/:tx_id

3. 根据账户id或账户名获取账户信息 Acquire account information from id or username

/api/account/:name_or_id

4. 根据账户id或账户名获取账户余额 Acquire balance information from id or username

/api/account_balance/:name_or_id

常见问题 FAQ

1. 提示GC Alert GC

区块太大可能导致内存不足, 可以修改BlocksyncTask.js中的sync_block_length,默认值为100(每次同步100个区块)

Block too big may cause insufficient memory, modify sync_block_length in BlocksyncTask.js,default is 100(synchronize 100 blocks everytime)

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].