Terp Network Docs
Resources

Verify

Verifying Installation Script Integrity

Before running the installation scripts, verify their integrity using checksums:

SHA256 Checksums

0e2743c117a3be8e5648427e0e1d8863b7ac59e1e1cff428152eda99cf9dc970  terp-installer.py
a233f0863b439273e772b14d61b985c8a20e719c72506399adebff03551596c7  terp-installer.sh

BLAKE3 Checksums

3113805970499a614c8dda2b8d2730bade6f0b0a3d5a8fa99bac4e9856396cee  terp-installer.py
8c1826931f3c9c620dddabe6756881a2a51aa977c24b60842eca697dfd40ebb7  terp-installer.sh

Verification Instructions

Using SHA256:

# Download the shell script
curl -sL https://terp.network/get > terp-installer.sh

# Verify with sha256sum (Linux)
echo "a233f0863b439273e772b14d61b985c8a20e719c72506399adebff03551596c7  terp-installer.sh" | sha256sum -c

# Verify with shasum (macOS)
echo "a233f0863b439273e772b14d61b985c8a20e719c72506399adebff03551596c7  terp-installer.sh" | shasum -a 256 -c

Using BLAKE3:

# Download the shell script
curl -sL https://terp.network/get > terp-installer.sh

# Install b3sum if not already installed
# macOS: brew install b3sum
# Linux: cargo install b3sum
# or download from: https://github.com/BLAKE3-team/BLAKE3

# Verify with b3sum
echo "8c1826931f3c9c620dddabe6756881a2a51aa977c24b60842eca697dfd40ebb7  terp-installer.sh" | b3sum --check

Expected output on successful verification:

terp-installer.sh: OK

On this page