13

Github GitHub - filecoin-project/venus: Filecoin Full Node Implementation in Go

 3 years ago
source link: https://github.com/filecoin-project/venus
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

Filecoin (venus)

venus is an implementation of the Filecoin Distributed Storage Network. For more details about Filecoin, checkout the Filecoin Spec.

venus was the first Filecoin implementation originially initiated and developed by Protocol Labs, and now is maintained by the Filecoin community. See maintenance for more information.

Questions or problems with venus? Ask the community first. Your problem may already be solved.

Table of Contents

What is Filecoin?

Filecoin is a decentralized storage network that turns the world’s unused storage into an algorithmic market, creating a permanent, decentralized future for the web. Miners earn the native protocol token (also called “Filecoin”) by providing data storage and/or retrieval. Clients pay miners to store or distribute data and to retrieve it. Check out the Filecoin website and Filecoin Documentation for more.

Install

wave Welcome to venus!

This README outlines the basics for building and running venus. For more background, configuration, and troubleshooting information check out the venus Docs.

System Requirements

venus can build and run on most Linux and MacOS systems. Windows is not yet supported.

A validating node can run on most systems with at least 8GB of RAM. A mining node requires significant RAM and GPU resources, depending on the sector configuration to be used.

Install from Source

Clone this git repository to your machine:

mkdir -p /path/to/filecoin-project
git clone https://github.com/filecoin-project/venus.git /path/to/filecoin-project/venus

Install Go

The build process for venus requires Go >= v1.15.5

Installing Go for the first time? We recommend this tutorial which includes environment setup.

Due to our use of cgo, you'll need a C compiler to build venus whether you're using a prebuilt library or building it yourself from source. If you want to use gcc (e.g. export CC=gcc) when building venus, you will need to use v7.4.0 or higher.

The build process will download a static library containing the Filecoin proofs implementation (which is written in Rust).

If instead you wish to build proofs from source, you'll need (1) Rust development environment and (2) to set the environment variable FFI_BUILD_FROM_SOURCE=1. More info at filecoin-ffi.

Install Dependencies

First install componets

sudo yum install -y https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm; sudo yum install -y git gcc bzr jq pkgconfig clang llvm mesa-libGL-devel opencl-headers ocl-icd ocl-icd-devel hwloc-devel

Initialize build dependencies.

make deps

Note: The first time you run deps can be slow as very large parameter files are either downloaded or generated locally in /var/tmp/filecoin-proof-parameters. Have patience; future runs will be faster.

Build and run tests

# First, build the binary
make

# Then, run the unit tests.
go run ./build test

# Build and test can be combined!
go run ./build best

Other handy build commands include:

# Check the code for style and correctness issues
go run ./build lint

# Run different categories of tests by toggling their flags
go run ./build test -unit=false -integration=true -functional=true

# Test with a coverage report
go run ./build test -cover

# Test with Go's race-condition instrumentation and warnings (see https://blog.golang.org/race-detector)
go run ./build test -race

# Deps, Lint, Build, Test (any args will be passed to `test`)
go run ./build all

Note: Any flag passed to go run ./build test (e.g. -cover) will be passed on to go test.

If you have problems with the build, please consult the Troubleshooting section of the venus Documentation.

Usage

For a complete step-by-step tutorial, see Getting Started.

Quick start:

# Remove any existing symlink to a repo directory
rm -rf ~/.venus

# Initialize a new repository, Start the daemon.  It will block until it connects to at least one bootstrap peer.
./venus daemon                   #mainnet
./venus daemon --network cali    #calibration

Your node should now be connected to some peers, and begin downloading and validating the blockchain.

Open a new terminal to interact with your node:

# Print the node's connection information
./venus swarm id

# Show chain sync status
./venus chain status

To see a full list of commands, run ./venus --help.

Contributing

We heart all our contributors; this project wouldn’t be what it is without you! If you want to help out, please see CONTRIBUTING.md.

Check out the venus code overview for a brief tour of the code.

Community

Here are a few places to get help and connect with the Filecoin community:

Looking for even more? See the full rundown at filecoin-project/community.

Maintenance

Venus (previously called venus) is now maintained by IPFS-Force Community

Maintainers: @steven004, @diwufeiwen, @hunjixin, @felix00000

This repo is open for anyone to submit issues and PRs.

License

The Filecoin Project is dual-licensed under Apache 2.0 and MIT terms:


Recommend

About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK