HanawaBanana / gxb-core

GXChain code

Home Page:https://gxs.gxb.io/en/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

GXB-Core


GXB-Core is the GXChain implementation and command-line interface. Current binary version of the GXB-Core software for ubuntu 14.04 LTS, see here. Visit gxb.io to learn about GXB.

API Document

APIs are separated into two categories, namely

  • the Blockchain API which is used to query blockchain data (account, assets, trading history, etc.) and
  • the Wallet API which has your private keys loaded and is required when interacting with the blockchain with new transactions.
  1. Wallet API.

  2. Blockchain API.

Document For Exchange

  1. Document For Exchange(中文)

  2. Document For Exchange(en)

Getting Started


Building

  1. Build on Ubuntu
  2. Build on OS X

Running

After building, the witness node can be launched with:

    ./programs/witness_node/witness_node --rpc-endpoint="127.0.0.1:8090" --max-ops-per-account=0 --partial-operations=true --data-transaction-lifetime=1

The node will automatically create a data directory including a config file. It may take several minutes to fully synchronize the blockchain.

After starting the witness node, in a separate terminal you can run cli_wallet:

    ./programs/cli_wallet/cli_wallet -s ws://127.0.0.1:8090

Set your inital password:

new >>> set_password <PASSWORD>
locked >>> unlock <PASSWORD>

To import your wif_key(active key):

    unlocked >>> import_key <ACCOUNT NAME> [<WIF_KEY>] true

Import balances:

    unlocked >>> import_balance <ACCOUNT NAME> [<WIF_KEY>] true

Transferring Currency:

    unlocked >>> transfer <FROM ACCOUNT> <TO ACCOUNT> 100 GXC "" true

If you send private keys over this connection, rpc-endpoint should be bound to localhost for security.

Use help to see all available wallet commands.

Support


Report bugs, issues using GitHub issues.

Technical support is also available in the GXS forum

License


GXB-Core is under the GNU General Public License v3. See LICENSE.

About

GXChain code

https://gxs.gxb.io/en/

License:GNU General Public License v3.0


Languages

Language:WebAssembly 61.6%Language:C++ 36.2%Language:C 1.3%Language:CMake 0.5%Language:Python 0.3%Language:Shell 0.1%Language:Perl 0.0%Language:Dockerfile 0.0%