First public Neutron testnet.
Attribute | Value |
---|---|
Chain ID | quark-1 |
- 8 Cores
- 64 GB RAM
- 2x960 GB SSD
Name | Version |
---|---|
Neutron | v0.0.1 |
Go | > 1.18 |
Rust | > 1.63.0 |
Hermes IBC relayer | > 1.0 |
PLEASE NOTE THAT WE ARE GOING TO USE v0.0.1 FOR GENTXS ONLY AND v0.1.0 (TO BE RELEASED SHORTLY) FOR THE ACTUAL TESTNET. SORRY FOR THE INCONVENIENCE.
- Neutron Quark Blockchain Explorer
Build and install neutron binary.
$ git clone -b v0.0.1 [email protected]:neutron-org/neutron.git
$ cd neutron
$ make install
after installation please check installed version by running:
neutrond version --long
You should see something similar to the following:
name: neutrond
server_name: neutrond
version: 0.0.1
commit: 750ec1bfdc7831d2782e5d2109362a0874904cf6
neutrond init "<moniker-name>" --chain-id quark-1
# To create new keypair - make sure you save the mnemonics!
neutrond keys add <key-name>
or
# Restore existing odin wallet with mnemonic seed phrase.
# You will be prompted to enter mnemonic seed.
neutrond keys add <key-name> --recover
or
# Add keys using ledger
neutrond keys show <key-name> --ledger
Check your key:
# Query the keystore for your public address
neutrond keys show <key-name> -a
neutrond add-genesis-account <key-name> 1000000000untrn --keyring-backend os
# Create the gentx.
# Note, staking amount should be equal to 1000000000untrn.
neutrond gentx <key-name> 1000000000untrn --output-document=gentx.json \
--chain-id=quark-1 \
--moniker="<moniker-name>" \
--website=<your-node-website> \
--details=<your-node-details> \
--commission-rate="0.10" \
--commission-max-rate="0.20" \
--commission-max-change-rate="0.01" \
--min-self-delegation="1" \
--keyring-backend <os | file>
After gentx is ready please upload it to the https://github.com/neutron-org/testnets repository into /quark/gentxs/
directory. Also please provide your peer and put it into /quark/peers/
, one peer per file.