EVM-compatible chain secured by the Push consensus algorithm. With Skyhigh Blockchain Skyhigh, you can experience the blockchain transactions.
Building skyhigh
requires both a Go (version 1.14 or later) and a C compiler. You can install
them using your favourite package manager. Once the dependencies are installed, run
make skyhigh
The build output is build/skyhigh
executable.
Going through all the possible command line flags is out of scope here,
but we've enumerated a few common parameter combos to get you up to speed quickly
on how you can run your own skyhigh
instance.
Launching skyhigh
for a network:
$ skyhigh --genesis /path/to/genesis.g
As an alternative to passing the numerous flags to the skyhigh
binary, you can also pass a
configuration file via:
$ skyhigh --config /path/to/your_config.toml
To get an idea how the file should look like you can use the dumpconfig
subcommand to
export your existing configuration:
$ skyhigh --your-favourite-flags dumpconfig
New validator private key may be created with skyhigh validator new
command.
To launch a validator, you have to use --validator.id
and --validator.pubkey
flags to enable events emitter.
$ skyhigh --nousb --validator.id YOUR_ID --validator.pubkey 0xYOUR_PUBKEY
skyhigh
will prompt you for a password to decrypt your validator private key. Optionally, you can
specify password with a file using --validator.password
flag.
Optionally you can specify your public IP to straighten connectivity of the network. Ensure your TCP/UDP p2p port (5050 by default) isn't blocked by your firewall.
$ skyhigh --nat extip:1.2.3.4
The network is specified only by its genesis file, so running a testnet node is equivalent to using a testnet genesis file instead of a mainnet genesis file:
$ skyhigh --genesis /path/to/testnet.g # launch node
It may be convenient to use a separate datadir for your testnet node to avoid collisions with other networks:
$ skyhigh --genesis /path/to/testnet.g --datadir /path/to/datadir # launch node
$ skyhigh --datadir /path/to/datadir account new # create new account
$ skyhigh --datadir /path/to/datadir attach # attach to IPC
Push has extensive unit-testing. Use the Go tool to run tests:
go test ./...
If everything goes well, it should output something along these lines:
ok github.com/skyhighblockchain/skyhigh/app 0.033s
? github.com/skyhighblockchain/skyhigh/cmd/cmdtest [no test files]
ok github.com/skyhighblockchain/skyhigh/cmd/skyhigh 13.890s
? github.com/skyhighblockchain/skyhigh/cmd/skyhigh/metrics [no test files]
? github.com/skyhighblockchain/skyhigh/cmd/skyhigh/tracing [no test files]
? github.com/skyhighblockchain/skyhigh/crypto [no test files]
? github.com/skyhighblockchain/skyhigh/debug [no test files]
? github.com/skyhighblockchain/skyhigh/ethapi [no test files]
? github.com/skyhighblockchain/skyhigh/eventcheck [no test files]
? github.com/skyhighblockchain/skyhigh/eventcheck/basiccheck [no test files]
? github.com/skyhighblockchain/skyhigh/eventcheck/gaspowercheck [no test files]
? github.com/skyhighblockchain/skyhigh/eventcheck/heavycheck [no test files]
? github.com/skyhighblockchain/skyhigh/eventcheck/parentscheck [no test files]
ok github.com/skyhighblockchain/skyhigh/evmcore 6.322s
? github.com/skyhighblockchain/skyhigh/gossip [no test files]
? github.com/skyhighblockchain/skyhigh/gossip/emitter [no test files]
ok github.com/skyhighblockchain/skyhigh/gossip/filters 1.250s
? github.com/skyhighblockchain/skyhigh/gossip/gasprice [no test files]
? github.com/skyhighblockchain/skyhigh/gossip/occuredtxs [no test files]
? github.com/skyhighblockchain/skyhigh/gossip/piecefunc [no test files]
ok github.com/skyhighblockchain/skyhigh/integration 21.640s
Also it is tested with fuzzing.
Fakenet is a private network optimized for your private testing. It'll generate a genesis containing N validators with equal stakes. To launch a validator in this network, all you need to do is specify a validator ID you're willing to launch.
Pay attention that validator's private keys are deterministically generated in this network, so you must use it only for private testing.
Maintaining your own private network is more involved as a lot of configurations taken for granted in the official networks need to be manually set up.
To run the fakenet with just one validator (which will work practically as a PoA blockchain), use:
$ skyhigh --fakenet 1/1
To run the fakenet with 5 validators, run the command for each validator:
$ skyhigh --fakenet 1/5 # first node, use 2/5 for second node
If you have to launch a non-validator node in fakenet, use 0 as ID:
$ skyhigh --fakenet 0/5
After that, you have to connect your nodes. Either connect them statically or specify a bootnode:
$ skyhigh --fakenet 1/5 --bootnodes "enode://verylonghex@1.2.3.4:5050"
For the testing purposes, the full demo may be launched using:
cd demo/
./start.sh # start the Skyhigh processes
./stop.sh # stop the demo
./clean.sh # erase the chain data