Official golang implementation of the janeta protocol.
Automated builds are available for stable releases and the unstable master branch. Binary archives are published at https://github.com/janotchain/janeta/releases.
janeta is software designed to operate and connect to highly scalable blockchain networks confirming to the janeta Blockchain Protocol, which allows partipicants to define, issue and transfer digitial assets on a multi-asset shared ledger. Please refer to the White Paper for more details.
In the current state janeta
is able to:
- Manage key, account as well as asset
- Send transactions, i.e., issue, spend and retire asset
brew tap janeta/janeta && brew install janeta
- Go version 1.8 or higher, with
$GOPATH
set to your preferred directory
Ensure Go with the supported version is installed properly:
$ go version
$ go env GOROOT GOPATH
- Get the source code
$ git clone https://github.com/janotchain/janeta.git $GOPATH/src/github.com/janotchain/janeta
- Build source code
$ cd $GOPATH/src/github.com/janotchain/janeta
$ make janetad # build janetad
$ make janetacli # build janetacli
When successfully building the project, the janetad
and janetacli
binary should be present in cmd/janetad
and cmd/janetacli
directory, respectively.
The janeta project comes with several executables found in the cmd
directory.
Command | Description |
---|---|
janetad | janetad command can help to initialize and launch janeta domain by custom parameters. janetad --help for command line options. |
janetacli | Our main janeta CLI client. It is the entry point into the janeta network (main-, test- or private net), capable of running as a full node archive node (retaining all historical state). It can be used by other processes as a gateway into the janeta network via JSON RPC endpoints exposed on top of HTTP, WebSocket and/or IPC transports. janetacli --help and the janetacli Wiki page for command line options. |
Currently, janeta is still in active development and a ton of work needs to be done, but we also provide the following content for these eager to do something with janeta
. This section won't cover all the commands of janetad
and janetacli
at length, for more information, please the help of every command, e.g., janetacli help
.
First of all, initialize the node:
$ cd ./cmd/janetad
$ ./janetad init --chain_id mainnet
There are three options for the flag --chain_id
:
mainnet
: connect to the mainnet.testnet
: connect to the testnet wisdom.solonet
: standalone mode.
After that, you'll see config.toml
generated, then launch the node.
$ ./janetad node
available flags for janetad node
:
Flags:
--auth.disable Disable rpc access authenticate
--chain_id string Select network type
-h, --help help for node
--log_file string Log output file (default "log")
--log_level string Select log level(debug, info, warn, error or fatal)
--p2p.dial_timeout int Set dial timeout (default 3)
--p2p.handshake_timeout int Set handshake timeout (default 30)
--p2p.keep_dial string Peers addresses try keeping connecting to, separated by ',' (for example "1.1.1.1:46657;2.2.2.2:46658")
--p2p.laddr string Node listen address. (0.0.0.0:0 means any interface, any port) (default "tcp://0.0.0.0:46656")
--p2p.lan_discoverable Whether the node can be discovered by nodes in the LAN (default true)
--p2p.max_num_peers int Set max num peers (default 50)
--p2p.node_key string Node key for p2p communication
--p2p.proxy_address string Connect via SOCKS5 proxy (eg. 127.0.0.1:1086)
--p2p.proxy_password string Password for proxy server
--p2p.proxy_username string Username for proxy server
--p2p.seeds string Comma delimited host:port seed nodes
--p2p.skip_upnp Skip UPNP configuration
--prof_laddr string Use http to profile janetad programs
--vault_mode Run in the offline enviroment
--wallet.disable Disable wallet
--wallet.rescan Rescan wallet
--wallet.txindex Save global tx index
--web.closed Lanch web browser or not
--ws.max_num_concurrent_reqs int Max number of concurrent websocket requests that may be processed concurrently (default 20)
--ws.max_num_websockets int Max number of websocket connections (default 25)
Global Flags:
--home string root directory for config and data
-r, --root string DEPRECATED. Use --home (default "/Users/zcc/Library/Application Support/janeta")
--trace print out full stack trace on errors
Given the janetad
node is running, the general workflow is as follows:
- create key, then you can create account and asset.
- send transaction, i.e., build, sign and submit transaction.
- query all kinds of information, let's say, avaliable key, account, key, balances, transactions, etc.
Access the dashboard:
$ open http://localhost:9888/
Ensure your Docker version is 17.05 or higher.
$ docker build -t janeta .
For the usage please refer to running-in-docker-wiki.
Thank you for considering helping out with the source code! Any contributions are highly appreciated, and we are grateful for even the smallest of fixes!
If you run into an issue, feel free to janeta issues in this repository. We are glad to help!