Reference implementation of the Filecoin protocol, written in Go
Go to file
2021-06-01 17:50:06 -04:00
.circleci Merge branch 'release/v1.9.0' into releases 2021-05-17 16:16:34 -04:00
.github Delete CODEOWNERS 2021-05-18 19:14:15 -04:00
api Fix TestDeadlineToggling 2021-06-01 17:50:06 -04:00
blockstore fix: spelling 2021-04-28 22:08:37 -07:00
build Merge remote-tracking branch 'origin/feat/nv13' into feat/nv13-1.11 2021-06-01 21:06:58 +02:00
chain statetree: Add missing version defs 2021-06-01 21:16:01 +02:00
cli fix 2k build 2021-05-31 21:52:23 +02:00
cmd Merge remote-tracking branch 'origin/feat/nv13' into feat/nv13-1.11 2021-06-01 21:06:58 +02:00
conformance Merge remote-tracking branch 'origin/feat/nv13' into feat/nv13-1.11 2021-05-31 21:38:34 +02:00
documentation CLI docsgen 2021-06-01 17:39:45 -04:00
extern Merge remote-tracking branch 'origin/feat/nv13' into feat/nv13-1.11 2021-06-01 21:06:58 +02:00
gateway remove duplicated vars. 2021-05-19 18:17:38 +01:00
gen
genesis Allow starting networks from arbitrary actor versions 2021-05-26 12:48:14 -04:00
journal
lib Remove log line when tracing is not configured 2021-05-26 10:45:04 -07:00
lotuspond Merge master into feat/nv13 2021-05-27 12:28:20 +02:00
markets Self-review cleanup 2021-05-30 19:37:33 +02:00
metrics
miner Merge pull request #6358 from filecoin-project/chore/better_winning_log_harder 2021-05-31 20:59:08 +02:00
node Merge remote-tracking branch 'origin/master' into feat/nv13-1.11 2021-06-01 21:07:04 +02:00
paychmgr
scripts Fix shell completions 2021-05-24 15:00:47 +08:00
snap downgrade to core18 2021-05-06 16:28:27 -07:00
storage Merge remote-tracking branch 'origin/feat/nv13' into feat/nv13-1.11 2021-06-01 21:06:58 +02:00
system
testplans Merge master into feat/nv13 2021-05-27 12:28:20 +02:00
tools
.codecov.yml
.dockerignore
.gitignore
.gitmodules
.golangci.yml
CHANGELOG.md Merge branch 'master' into releases 2021-05-17 17:24:29 -04:00
Dockerfile.lotus
go.mod Merge remote-tracking branch 'origin/feat/nv13' into feat/nv13-1.11 2021-05-31 21:38:34 +02:00
go.sum mod tidy 2021-05-31 21:40:21 +02:00
LICENSE-APACHE
LICENSE-MIT
Makefile Merge pull request #6316 from Aloxaf/fix_completion 2021-05-24 13:44:02 +02:00
README.md
SECURITY.md

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

For instructions on how to build, install and setup lotus, please visit https://docs.filecoin.io/get-started/lotus.

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.

License

Dual-licensed under MIT + Apache 2.0