Skip to content

Latest commit

 

History

History
86 lines (65 loc) · 2.35 KB

README.md

File metadata and controls

86 lines (65 loc) · 2.35 KB

image

Decentralized social platform

Substrate version GitHub license

1. Introduce

Listen is a decentralized social platform.


2. Getting Started

Follow these steps to get started with the Parachain Node.


option 1 (For common users)

  • Download the executable file
wget -O- https://github.com/listenofficial/listen-parachain/releases/latest  | grep -o '/.*listen-collator'  | sed  's/^/https:\/\/github.com/g' | xargs  wget -c
  • Run (Connect to the main network)
./listen --collator --base-path db --pruning archive --state-cache-size=0 -- --execution wasm --chain kusama --unsafe-pruning --pruning=1000 --state-cache-size=0

option 2 (For developers)

If you are a common user, you don't need this option

  • Rust
curl https://sh.rustup.rs -sSf | sh
  • Clone Project From Github
git clone https://github.com/listenofficial/listen-parachain.git
  • Init
cd listen-parachain
make submodule
  • Build
cargo build --release
  • Run (Connect to the main network)
cd target/release
./listen --collator --base-path db --pruning archive --state-cache-size=0 -- --execution wasm --chain kusama --unsafe-pruning --pruning=1000 --state-cache-size=0

3. Learn More