Reference implementation of the Filecoin protocol, written in Go
Go to file
Łukasz Magiera ab0592231c
Merge pull request #9116 from filecoin-project/feat/worker-name-set
feat: sealing: Allow overriding worker hostname
2022-08-03 22:44:29 +02:00
.circleci Build / Publish snap twice (lotus-filecoin + lotus) 2022-08-03 12:15:53 -07:00
.github Merge pull request #8490 from galargh/patch-1 2022-05-23 19:12:12 +02:00
api Merge branch 'master' into sbansal/lotus-worker-stop-cmd 2022-08-03 10:42:19 +02:00
AppDir/usr/share/icons appimage 2021-06-02 12:16:09 +02:00
blockstore Upgrade to go-blockstore 1.2.0 and go-cid 0.2.0 2022-06-29 14:55:22 -04:00
build Merge branch 'master' into sbansal/lotus-worker-stop-cmd 2022-08-03 10:42:19 +02:00
chain Add IsDealActive func to template 2022-08-02 18:54:42 -04:00
cli Merge pull request #8833 from kaola526/master 2022-07-07 13:56:44 +02:00
cmd Merge pull request #9116 from filecoin-project/feat/worker-name-set 2022-08-03 22:44:29 +02:00
conformance FVM: always enable tracing for user-triggered executions 2022-07-14 15:41:26 -04:00
documentation Merge pull request #9116 from filecoin-project/feat/worker-name-set 2022-08-03 22:44:29 +02:00
extern fix: deps: update FFI to fix a slow memory leak (#9042) 2022-07-15 16:34:32 +00:00
gateway chore: fix imports 2022-06-14 17:00:51 +02:00
gen chore: rerun gen with moved packages 2022-06-14 20:13:31 +02:00
genesis wallet: Move key.go into separate pkg to avoid import loops 2022-06-14 19:21:40 +02:00
itests itests: Test custom worker names 2022-08-03 13:05:30 +02:00
journal path index: Raise alerts on bad filter config 2022-07-12 21:45:12 +02:00
lib unbreak itests 2022-06-29 14:55:35 -04:00
lotuspond chore: fix imports 2022-06-14 17:00:51 +02:00
markets Merge pull request #9010 from LexLuthr/feat/dagstore-destroyshard 2022-07-12 14:41:52 +02:00
metrics add metrics 2022-04-20 19:48:41 -07:00
miner chore: fix imports 2022-06-14 17:00:51 +02:00
node feat: sealer: Custom worker name config 2022-08-03 12:58:49 +02:00
paychmgr make gen 2022-06-15 16:51:30 +02:00
scripts Use goreleaser to build universal darwin binaries 2022-07-28 20:37:42 -07:00
snap packer snap 2021-12-17 17:06:32 -08:00
storage feat: sealer: Custom worker name config 2022-08-03 12:58:49 +02:00
system avoid global ResourceConstraints. 2020-12-02 22:26:30 +00:00
testplans Merge pull request #9014 from filecoin-project/jen/backport 2022-07-11 19:24:30 -04:00
tools fix: lotus-stats: actor code string 2022-07-06 23:23:55 +02:00
.dockerignore add docker support 2019-12-05 11:31:32 +08:00
.gitignore Use goreleaser to build universal darwin binaries 2022-07-28 20:37:42 -07:00
.gitmodules remove extern/blst 2021-01-20 16:19:07 +01:00
.golangci.yml dear linter, using xerrors is what we want to do. 2022-04-21 20:10:34 +03:00
.goreleaser.yaml Switch to filecoin-project from personal fork 2022-07-28 21:03:12 -07:00
AppImageBuilder.yml remove sign lines 2022-06-27 23:46:05 -07:00
CHANGELOG.md v1.16.1 prep 2022-07-07 16:03:32 -04:00
docker-compose.yaml remove api and jaeger env from docker file 2021-11-18 22:12:31 +00:00
Dockerfile.lotus chore: update golang and go-ipfs 2022-04-20 12:06:25 +02:00
go.mod Merge pull request #8985 from filecoin-project/masih/dep-up-carv2-2-4-1 2022-07-11 16:47:33 +02:00
go.sum Merge pull request #8985 from filecoin-project/masih/dep-up-carv2-2-4-1 2022-07-11 16:47:33 +02: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 nits 2021-08-13 00:39:51 -04:00
Makefile feat: build: run fiximports on make actors-gen 2022-08-02 18:05:57 -04:00
README.md ReadMe: use proper hwloc dependency for Fedora 2022-07-08 13:13:43 +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.17.9 or higher:

wget -c https://golang.org/dl/go1.17.9.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.

License

Dual-licensed under MIT + Apache 2.0