Reference implementation of the Filecoin protocol, written in Go
Go to file
Jiaying Wang f458606e35
Merge pull request #12147 from filecoin-project/chore/nv23-v1.28.0-backport
chore: NV23 release: backport changes from master
2024-06-25 18:07:33 -04:00
.github test: niporep: initial niporep e2e test 2024-06-25 21:25:10 +10:00
api Update codename for NV23 (#12104) 2024-06-18 07:39:00 +02:00
blockstore chore: fix function names (#12043) 2024-05-27 03:51:55 +00:00
build chore: actors: update to builtin-actors@v14.0.0-rc.1 2024-06-25 21:25:10 +10:00
chain feat: niporep: introduce SealProofVariant 2024-06-25 19:13:07 +10:00
cli chore: api: the Net API/CLI now remains only on daemon 2024-06-17 18:21:34 +10:00
cmd feat: lotus-bench: add script to benchmark standard sector steps 2024-06-25 19:13:07 +10:00
conformance chore: lint: fix lint errors with new linting config 2024-05-13 14:52:09 +10:00
documentation Update codename for NV23 (#12104) 2024-06-18 07:39:00 +02:00
extern nv23 deps (#12129) 2024-06-21 10:41:20 +04:00
gateway feat: eth: support "safe" and "finalized" for eth_getBlockByNumber (#12110) 2024-06-21 11:38:21 +10:00
gen chore: actors: pull in the latest v14 bundles 2024-06-25 12:05:18 +04:00
genesis fix: missing permissions tag 2022-10-10 16:54:07 +08:00
itests Rough draft (#12139) 2024-06-25 16:16:00 +00:00
journal chore: remove duplicate words in strings and comments 2024-04-30 16:04:38 +10:00
lib chore: types: remove more items forgotten after markets (#12095) 2024-06-17 10:01:20 +04:00
metrics chore: deals: remove forgotten graphsync references (#12084) 2024-06-14 11:33:31 +10:00
miner chore: lint: fix lint errors with new linting config 2024-05-13 14:52:09 +10:00
node feat: eth: support "safe" and "finalized" for eth_getBlockByNumber (#12110) 2024-06-21 11:38:21 +10:00
paychmgr chore: Merge nv22 into master (#11699) 2024-03-12 10:33:58 +01:00
scripts chore: types: remove more items forgotten after markets (#12095) 2024-06-17 10:01:20 +04:00
storage nv23 deps (#12129) 2024-06-21 10:41:20 +04:00
system fix: extend LOTUS_CHAIN_BADGERSTORE_DISABLE_FSYNC to the markset 2023-02-01 21:00:39 +01:00
tools chore: fix some typos in comments (#11892) 2024-04-18 10:34:20 +02:00
.dockerignore add docker support 2019-12-05 11:31:32 +08:00
.gitattributes Use gitattributes to ignore generated files in diffs 2022-11-16 20:05:22 -05:00
.gitignore chore: curio: remove forgotten parts of curio config (#12087) 2024-06-14 11:34:36 +10:00
.gitmodules remove extern/blst 2021-01-20 16:19:07 +01:00
.golangci.yml chore: lint: update golangci lint config 2024-05-13 14:52:09 +10:00
.goreleaser.yaml fix: release: update goreleaser config file 2024-06-20 10:59:02 +10:00
CHANGELOG.md chore: docs: add changelog upgrade warning for events db migration (#12145) 2024-06-25 15:13:40 +04:00
docker-compose.yaml chore: Fix dead links to docs.filecoin.io 2022-09-14 00:10:22 +01:00
Dockerfile Remove curio from Dockerfile 2024-05-28 13:28:00 +02:00
GO_VERSION_MIN chore: build: update minimum go version to 1.21.7 (#11652) 2024-02-26 06:57:23 -08:00
go.mod chore: deps: upgrade to go-state-types@v0.14.0-rc2 2024-06-25 12:05:18 +04:00
go.sum chore: deps: upgrade to go-state-types@v0.14.0-rc2 2024-06-25 12:05:18 +04:00
LICENSE-APACHE Add basic readme and licenses 2019-08-01 21:26:11 -07:00
LICENSE-MIT Add basic readme and licenses 2019-08-01 21:26:11 -07:00
LOTUS_RELEASE_FLOW.md Completed TODO in code 2023-09-26 13:03:46 +02:00
Makefile Drop curio-related sources 2024-05-28 13:28:00 +02:00
README.md chore: docs: remove unused badge from the README (#12097) 2024-06-17 00:07:33 +02:00
SECURITY.md Update SECURITY.md (#5246) 2020-12-23 00:48:25 -03:00

Project Lotus Logo

Project Lotus - 莲


Lotus is an implementation of the Filecoin Distributed Storage Network. For more details about Filecoin, check out the Filecoin Spec.

Building & Documentation

Note: The default master branch is the dev branch, please use with caution. For the latest stable version, checkout the most recent Latest release.

For complete instructions on how to build, install and setup lotus, please visit https://lotus.filecoin.io. Basic build instructions can be found further down in this readme.

Reporting a Vulnerability

Please send an email to security@filecoin.org. See our security policy for more details.

These repos are independent and reusable modules, but are tightly integrated into Lotus to make up a fully featured Filecoin implementation:

Contribute

Lotus is a universally open project and welcomes contributions of all kinds: code, docs, and more. However, before making a contribution, we ask you to heed these recommendations:

  1. If the proposal entails a protocol change, please first submit a Filecoin Improvement Proposal.
  2. If the change is complex and requires prior discussion, open an issue or a discussion to request feedback before you start working on a pull request. This is to avoid disappointment and sunk costs, in case the change is not actually needed or accepted.
  3. Please refrain from submitting PRs to adapt existing code to subjective preferences. The changeset should contain functional or technical improvements/enhancements, bug fixes, new features, or some other clear material contribution. Simple stylistic changes are likely to be rejected in order to reduce code churn.

When implementing a change:

  1. Adhere to the standard Go formatting guidelines, e.g. Effective Go. Run go fmt.
  2. Stick to the idioms and patterns used in the codebase. Familiar-looking code has a higher chance of being accepted than eerie code. Pay attention to commonly used variable and parameter names, avoidance of naked returns, error handling patterns, etc.
  3. Comments: follow the advice on the Commentary section of Effective Go.
  4. Minimize code churn. Modify only what is strictly necessary. Well-encapsulated changesets will get a quicker response from maintainers.
  5. Lint your code with golangci-lint (CI will reject your PR if unlinted).
  6. Add tests.
  7. Title the PR in a meaningful way and describe the rationale and the thought process in the PR description.
  8. Write clean, thoughtful, and detailed commit messages. This is even more important than the PR description, because commit messages are stored inside the Git history. One good rule is: if you are happy posting the commit message as the PR description, then it's a good commit message.

Basic Build Instructions

System-specific Software Dependencies:

Building Lotus requires some system dependencies, usually provided by your distribution.

Ubuntu/Debian:

sudo apt install mesa-opencl-icd ocl-icd-opencl-dev gcc git bzr jq pkg-config curl clang build-essential hwloc libhwloc-dev wget -y && sudo apt upgrade -y

Fedora:

sudo dnf -y install gcc make git bzr jq pkgconfig mesa-libOpenCL mesa-libOpenCL-devel opencl-headers ocl-icd ocl-icd-devel clang llvm wget hwloc hwloc-devel

For other distributions you can find the required dependencies here. For instructions specific to macOS, you can find them here.

Go

To build Lotus, you need a working installation of Go 1.21.7 or higher:

wget -c https://golang.org/dl/go1.21.7.linux-amd64.tar.gz -O - | sudo tar -xz -C /usr/local

TIP: You'll need to add /usr/local/go/bin to your path. For most Linux distributions you can run something like:

echo "export PATH=$PATH:/usr/local/go/bin" >> ~/.bashrc && source ~/.bashrc

See the official Golang installation instructions if you get stuck.

Build and install Lotus

Once all the dependencies are installed, you can build and install the Lotus suite (lotus, lotus-miner, and lotus-worker).

  1. Clone the repository:

    git clone https://github.com/filecoin-project/lotus.git
    cd lotus/
    

Note: The default branch master is the dev branch where the latest new features, bug fixes and improvement are in. However, if you want to run lotus on Filecoin mainnet and want to run a production-ready lotus, get the latest release here.

  1. To join mainnet, checkout the latest release.

    If you are changing networks from a previous Lotus installation or there has been a network reset, read the Switch networks guide before proceeding.

    For networks other than mainnet, look up the current branch or tag/commit for the network you want to join in the Filecoin networks dashboard, then build Lotus for your specific network below.

    git checkout <tag_or_branch>
    # For example:
    git checkout <vX.X.X> # tag for a release
    

    Currently, the latest code on the master branch corresponds to mainnet.

  2. If you are in China, see "Lotus: tips when running in China".

  3. This build instruction uses the prebuilt proofs binaries. If you want to build the proof binaries from source check the complete instructions. Note, if you are building the proof binaries from source, installing rustup is also needed.

  4. Build and install Lotus:

    make clean all #mainnet
    
    # Or to join a testnet or devnet:
    make clean calibnet # Calibration with min 32GiB sectors
    
    sudo make install
    

    This will put lotus, lotus-miner and lotus-worker in /usr/local/bin.

    lotus will use the $HOME/.lotus folder by default for storage (configuration, chain data, wallets, etc). See advanced options for information on how to customize the Lotus folder.

  5. You should now have Lotus installed. You can now start the Lotus daemon and sync the chain.

  6. (Optional) Follow the Setting Up Prometheus and Grafana guide for detailed instructions on setting up a working monitoring system running against a local running lotus node.

License

Dual-licensed under MIT + Apache 2.0