📓
Tinanpha's Docs
  • Tổng quan
  • Về tác giả
  • Học Trading - Price Action
    • Bitcoin Phá Key H4,D thì về Key W
    • Key Level Quan Trọng
    • Lọc Nhiễu Râu Dài Bitcoin
    • Mô hình 2 đỉnh thất bại
    • Cách nhìn vùng bò gấu để mua khi dự án ngon
    • Price Action Bò vs Gấu
    • Vào lệnh ngược xu hướng time 5p Bitcoin
    • Giá phá key 15p, H1, Về Key H4 lại tăng lên
    • Lọc nhiễu Key Level 15p
    • Trường hợp bình thường trong xu hướng tăng
    • Sự thất bại của Fibonaci
    • Sự thất bại của mô hình 2 đỉnh
    • Phá key 15p nhưng vẫn lên được
    • Dump ways to die
    • Chưa phá Key Level
    • Mô Hình Giá: 2 Đáy
    • Xu hướng tăng - Giá hồi về cản gần
    • Về Key 15p 2 lần
    • Key Level Giảm
    • Chạm lần 2 vẫn lên được
    • Một số điểm quan trọng khi kết hợp RSI
    • Đơn Giản Là TP
    • Giá về key 15p - RSI phân kì - RSI Khung ngày mạnh
    • 14-JULY
    • Phân Kì H4
    • 3 Đáy
    • Cuộn đẹp
    • Tưởng về KEY mà Lại Về FIBO
    • 1 Lệnh nhức nhối
    • 1 Lệnh Đẹp
    • Mô Hình 3 đáy vượt FIBO
    • Cấu Trúc Theo NUKIDA
    • Nhiều lúc không về FIBO hay KEY gì đâu nha
    • Một số lệnh đẹp
    • Trong 1 Xu Hướng Tăng thì khi giá càng lên cao thì về key càng nhỏ
    • Chưa phá key H1
    • Giá Về Tới OB Chưa Sử Dụng
    • Một số lệnh đẹp tháng 9
    • BUY SELL THEO FIBO
  • Hướng dẫn làm Testnet
    • Hướng dẫn làm Tesnet KAVA
      • A
      • B
    • Hướng dẫn làm Testnet LooserChicken
    • Hướng dẫn làm Testnet INSUREDAO
  • HƯỚNG DẪN CHẠY NODE
    • Script Full Node Sui
    • Hướng dẫn chạy Node của NEAR - STAKE WARS III
      • 1-Tạo Ví Shardnet và Khởi chạy NEAR CLI
      • Copy of 1-Tạo Ví Shardnet và Khởi chạy NEAR CLI
      • Page 3
      • Page 4
      • Page 5
    • Hướng dẫn sử dụng TMUX
    • A
  • Hướng dẫn chung
    • Hướng dẫn lấy link public watchlist của Coinmarketcap
    • Hướng dẫn mua IDO trên Thorstater
    • Hướng dẫn mua SHO trên nền tảng DAO MAKER
    • Hướng dẫn mua các dự án Startup trên GATE.IO
      • Các bước mua tiếp theo StartUp GATE.IO
    • Hướng dẫn sử dụng Gitbook
    • DATA Science for Staking
    • CÀI DOCKER
    • Test
  • Blog
  • Medical
  • Youtube
  • Logs
  • Chuyển Ảnh thành Hình Vẽ
  • Chart BSC USD
  • Chart BSC BNB
  • Windowsever2016 Direct Link
  • ĐỔI GIỜ TRÊN ETH
  • Polymesh ITN
  • Chart BSC USD Poocoin
  • Tra Cứu Mã Số Thuế
  • Page 2
  • Đánh giá Quỹ Coin
  • DỌN MAC
  • ĐÁNH GIÁ QUỸ 2
Powered by GitBook
On this page

Was this helpful?

  1. HƯỚNG DẪN CHẠY NODE

A

PreviousHướng dẫn sử dụng TMUXNextHướng dẫn lấy link public watchlist của Coinmarketcap

Last updated 6 months ago

Was this helpful?

Getting Started

IMPORTANT: Before you start, please note that the competition on the network is very severe. Use the calculator to get a rough estimate of how much you can expect to earn. Remember that this is not an airdrop.

TL;DR

Use prover, checkout branch testnet3-new, and connect to the pool at pool.hamp.app:4444.

Precompiled version

Download from .

Building the prover

1. Install Rust

DO NOT install Rust using things like apt install rust.

If rust is already installed: Make sure you have at least Rust 1.65. Check with rustc --version.

Install the latest version of Rust using rustup. Run the following line:

curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh

Accept default options by pressing Enter or customize if you need to.

Log out and log in again to finish the installation, or follow the instructions by rustup.

2. Install dependencies

Install following dependencies using the package manager of your distribution:

git
clang
libssl-dev
pkg-config

On Debian / Ubuntu, running the following command should be enough:

sudo apt update
sudo apt install git clang libssl-dev pkg-config --no-install-recommends

3. Clone and build the prover

Unless absolutely necessary, DO NOT run anything with sudo. You don't need root permission from now on.

Clone the prover repo:

git clone https://github.com/HarukaMa/aleo-prover -b testnet3-new
cd aleo-prover

Build the prover using cargo:

cargo build --release

If the build successes, Run the prover:

cargo run --release -- -a aleo1your_address_here -p pool.hamp.app:4444

or

target/release/aleo-prover -a aleo1your_address_here -p pool.hamp.app:4444
this
here