Reference implementation of the Filecoin protocol, written in Go
Go to file
Aayush Rajasekaran 095361bead Update carv2
2021-12-10 19:15:53 -05:00
.circleci disable building of appimage on release 2021-12-01 19:15:35 +00:00
.github sync branch main with master on updates 2021-09-21 20:07:41 +00:00
api Command to list active sector locks 2021-12-03 12:33:23 +01:00
AppDir/usr/share/icons appimage 2021-06-02 12:16:09 +02:00
blockstore WIP: updating to new datastore/blockstore code with contexts 2021-12-09 14:12:25 +02:00
build Command to list active sector locks 2021-12-03 12:33:23 +01:00
chain Shed: Add a util to create miners more easily 2021-11-03 00:20:48 +00:00
cli cli: boolean logic is hard 2021-11-29 21:41:38 +01:00
cmd Command to list active sector locks 2021-12-03 12:33:23 +01:00
conformance Fix Drand fetching around null tipsets 2021-09-29 11:57:59 -04:00
documentation Command to list active sector locks 2021-12-03 12:33:23 +01:00
extern WIP: updating to new datastore/blockstore code with contexts 2021-12-09 14:12:25 +02:00
gateway add additional methods to lotus gateway 2021-11-22 12:19:27 +01:00
gen Simplify retrieval APIs 2021-11-22 12:45:42 +01:00
genesis Allow starting networks from arbitrary actor versions 2021-05-26 12:48:14 -04:00
itests retrieval: DagSpec.MatchPath -> ExportMerkleProof 2021-11-29 21:14:00 +01:00
journal alerting: Add a test 2021-08-26 15:45:19 +02:00
lib WIP: updating to new datastore/blockstore code with contexts 2021-12-09 14:12:25 +02:00
lotuspond Merge pull request #7660 from filecoin-project/dependabot/npm_and_yarn/lotuspond/front/ws-5.2.3 2021-11-22 14:54:09 +01:00
markets dagstore pieceReader: Fix wrong ErrUnexpectedEOF return in ReadAt 2021-12-03 23:36:36 +01:00
metrics Add metrics to dagstore piecereader 2021-12-03 17:07:14 +01:00
miner Fix Drand fetching around null tipsets 2021-09-29 11:57:59 -04:00
node hook the upgrade schedule to splitstore start 2021-12-03 12:11:54 +02:00
paychmgr Merge pull request #5609 from filecoin-project/fix/vouchers 2021-09-28 14:29:04 +02:00
scripts Merge pull request #7709 from filecoin-project/logic-error-miner-entrypoint 2021-11-29 18:16:58 -05:00
snap homeplug 2021-06-06 23:07:59 -07:00
storage Merge pull request #7572 from filecoin-project/asr/post 2021-11-22 12:21:41 +01:00
system avoid global ResourceConstraints. 2020-12-02 22:26:30 +00:00
testplans retrieval: Update lotus-soup 2021-11-22 12:46:29 +01:00
tools Add caches to lotus-stats and splitcode 2021-11-01 09:05:14 +00:00
.codecov.yml increase miner codecov threshold from 1% to 1.5% 2021-09-08 01:57:33 -04:00
.dockerignore add docker support 2019-12-05 11:31:32 +08:00
.gitignore build(lotus-sim): add a makefile target 2021-06-21 11:25:40 -07:00
.gitmodules remove extern/blst 2021-01-20 16:19:07 +01:00
.golangci.yml lint: don't skip builtin 2021-03-25 17:21:56 -07:00
AppImageBuilder.yml include appimage on release 2021-06-03 00:05:43 -07:00
CHANGELOG.md v1.13.1 prep 2021-11-26 16:33:39 -05:00
docker-compose.yaml remove api and jaeger env from docker file 2021-11-18 22:12:31 +00:00
Dockerfile.lotus Merge pull request #7329 from filecoin-project/feat/lotus-stats-update 2021-11-22 12:44:00 +01:00
go.mod Update carv2 2021-12-10 19:15:53 -05:00
go.sum Update carv2 2021-12-10 19:15:53 -05: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 make: Run inline-gen 2021-10-18 17:33:28 +02:00
README.md remove nerpanet related code base as it was deprecated on aug 16 https://docs.filecoin.io/about-filecoin/networks/#deprecated-networks 2021-09-22 00:59:38 -04: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://docs.filecoin.io/get-started/lotus. 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 libhwloc-dev

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.16.4 or higher:

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