All Projects → public-awesome → testnets

public-awesome / testnets

Licence: Apache-2.0 license
Stargaze testnets

Programming Languages

shell
77523 projects
go
31211 projects - #10 most used programming language
jq
24 projects
Makefile
30231 projects

Projects that are alternatives of or similar to testnets

SecretNetwork
𝕊 The Secret Network
Stars: ✭ 466 (+983.72%)
Mutual labels:  cosmos-sdk
frontend
testnet.exchange frontend
Stars: ✭ 18 (-58.14%)
Mutual labels:  testnet
smrepl
A Spacemesh Terminal wallet app
Stars: ✭ 16 (-62.79%)
Mutual labels:  testnet
interchain-security
interchain-security houses the code implementing interchain security (aka replicated security) for Cosmos based blockchains.
Stars: ✭ 96 (+123.26%)
Mutual labels:  cosmos-sdk
testnet.backend
Backend for a ViaBTC exchange server (trading engine)
Stars: ✭ 18 (-58.14%)
Mutual labels:  testnet
sommelier
Sommelier Chain
Stars: ✭ 64 (+48.84%)
Mutual labels:  cosmos-sdk
scripts
StakePool Operator Scripts. Learn how to create and manage your StakePool with these simple scripts. Hardware-Ledger Support, Token/Asset Sending, Offline-Mode and more...
Stars: ✭ 200 (+365.12%)
Mutual labels:  testnet
ledger-cosmos-js
No description or website provided.
Stars: ✭ 23 (-46.51%)
Mutual labels:  cosmos-sdk
local-testnet
A local testnet of go-spacemesh full nodes running the Spacemesh protocol and a functional CLI wallet. 💾⏰
Stars: ✭ 13 (-69.77%)
Mutual labels:  testnet
distributed-compliance-ledger
DCL is a public permissioned ledger framework for Zigbee compliance certification of device models. The ledger is based on Cosmos SDK and Tendermint.
Stars: ✭ 41 (-4.65%)
Mutual labels:  cosmos-sdk
cosmos-snapshots
Automatic snapshots of the blockchain state
Stars: ✭ 71 (+65.12%)
Mutual labels:  stargaze
blockchain c2c
A Proof of Concept to show how blockchain can solve C2C persistence. PoC originally presented at EuskalHack Security Congress 2017, updated and improved for Cybercamp 2017.
Stars: ✭ 21 (-51.16%)
Mutual labels:  testnet
Docker-Ethereum-Testnet
🌐 Easily deploy a scaleable Ethereum Testnet using Docker
Stars: ✭ 45 (+4.65%)
Mutual labels:  testnet
juno
Open Source Platform for Interoperable Smart Contracts
Stars: ✭ 267 (+520.93%)
Mutual labels:  cosmos-sdk
cosmos-paychan
A Cosmos SDK module to add payment channels to any blockchain built using the SDK.
Stars: ✭ 14 (-67.44%)
Mutual labels:  cosmos-sdk
padawan-wallet
The bitcoin wallet trainer on Android.
Stars: ✭ 31 (-27.91%)
Mutual labels:  testnet
cosmospy
Python tools for Cosmos wallet management and offline transaction signing
Stars: ✭ 57 (+32.56%)
Mutual labels:  cosmos-sdk
regen-ledger
Blockchain for planetary regeneration
Stars: ✭ 154 (+258.14%)
Mutual labels:  cosmos-sdk
likecoin-tx-poll
Firestore based service of polling eth status and resending tx
Stars: ✭ 13 (-69.77%)
Mutual labels:  cosmos-sdk
desmos
Improving the well-being of users on social networks through the blockchain technology.
Stars: ✭ 82 (+90.7%)
Mutual labels:  cosmos-sdk

Stargaze Double Double Testnet Instructions

Minimum hardware requirements

  • 16GB RAM
  • 200GB of disk space

Software requirements

Stargaze has releases for Linux here.

Install Stargaze

Requires Go version v1.18+.

> git clone https://github.com/public-awesome/stargaze && cd stargaze
> git fetch origin --tags
> git checkout v4.0.0
> make install

Verify installation

To verify if the installation was successful, execute the following command:

> starsd version --long

It will display the version of starsd currently installed:

name: stargaze
server_name: starsd
version: 4.0.0
commit: 80cfeaa4c7123e87de162b9d8038eacb7d7cbff4
build_tags: netgo,ledger
go: go version go1.18 linux/amd64

Create testnet validator

  1. Init Chain and start your node

    > starsd init <moniker-name> --chain-id=double-double-1
  2. Create a local key pair

    > starsd keys add <key-name>
    > starsd keys show <key-name> -a
  3. Download genesis Fetch genesis.json into starsd's config directory.

    > curl -s https://raw.githubusercontent.com/public-awesome/testnets/main/double-double-1/genesis/genesis.tar.gz > genesis.tar.gz
    > tar -C ~/.starsd/config/ -xvf genesis.tar.gz

    Genesis sha256

     shasum -a 256 ~/.starsd/config/genesis.json
     ea00bb804c30d8bd0e6b98f915c6e63dce4842193bce8410e854215980ed8166  /home/<user>/.starsd/config/genesis.json
  4. Start your node and sync to the latest block

  5. Create validator

    $ starsd tx staking create-validator \
    --amount 50000000ustars \
    --commission-max-change-rate "0.1" \
    --commission-max-rate "0.20" \
    --commission-rate "0.1" \
    --min-self-delegation "1" \
    --details "validators write bios too" \
    --pubkey=$(starsd tendermint show-validator) \
    --moniker <your_moniker> \
    --chain-id double-double-1 \
    --gas-prices 0.025ustars \
    --from <key-name>
  6. Request tokens from the Stargaze Discord #faucet channel if you need more.

Seed

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