This document also contains LocalNet instructions as a bonus so you can try it yourself.

The discord server to track conversations related to this release can be found here.

Deployment

Section goal: Capture keys and endpoints that may be relevant to accessing TestNet.

TestNet

TestNet Keys

https://github.com/pokt-network/pocket-core-internal-deployments/blob/master/testnet/KEYS.md

TestNet Faucet

The TestNet Faucet for tokens can be found here: https://github.com/pokt-network/testnet-faucet

TestNet Validators

declare -a nodes=("node1.testnet.pokt.network/v1/query/height"
                  "node2.testnet.pokt.network/v1/query/height"
                  "node3.testnet.pokt.network/v1/query/height"
                  "node4.testnet.pokt.network/v1/query/height"
                  "node5.testnet.pokt.network/v1/query/height"
                  "node6.testnet.pokt.network/v1/query/height")

Tendermint Nodes

declare -a nodes=("node1.tendermint.testnet.pokt.network/status"
                  "node2.tendermint.testnet.pokt.network/status"
                  "node3.tendermint.testnet.pokt.network/status"
                  "node4.tendermint.testnet.pokt.network/status"
                  "node5.tendermint.testnet.pokt.network/status"
                  "node6.tendermint.testnet.pokt.network/status")

LocalNet

LocalNet Instructions

The instructions for running a LocalNet can be found here.

Copy-paste Helpers

# Delete all LocalNet containers to start from scratch
docker rm node1.dev.pokt node2.dev.pokt node3.dev.pokt node4.dev.pokt && docker rmi playground/pocket-core

# Scaffold LocalNet
./bin/pokt-net/playground.sh cleanup && ./bin/pokt-net/playground.sh scaffold

# Start up LocalNet
./bin/pokt-net/playground.sh up

RC 0.10 Branches