Reference implementation of the Filecoin protocol, written in Go
Go to file
2021-04-28 17:43:07 -07:00
.circleci Merge commit 'f1ded63d608e1b191d79c780b8065f8cff367c98' into feat/nv12-1.11 2021-04-27 08:22:55 +02:00
.github Update CODEOWNERS 2021-04-26 18:54:23 +02:00
api Merge commit 'f1ded63d608e1b191d79c780b8065f8cff367c98' into feat/nv12-1.11 2021-04-27 08:22:55 +02:00
blockstore CachedBlockstore is not referenced as of 3795cc2bd2 2021-04-06 13:24:49 +02:00
build bump version 2021-04-27 08:39:05 +02:00
chain Merge commit 'f1ded63d608e1b191d79c780b8065f8cff367c98' into feat/nv12-1.11 2021-04-27 08:22:55 +02:00
cli add "expected duration" label to inspect-deals output 2021-04-26 13:02:29 -04:00
cmd feat(lotus-shed): make it possible to filter by to/from when checking dups 2021-04-28 17:43:07 -07:00
conformance fix lint 2021-04-06 14:30:49 +02:00
documentation Merge commit 'f1ded63d608e1b191d79c780b8065f8cff367c98' into feat/nv12-1.11 2021-04-27 08:22:55 +02:00
extern Merge commit 'f1ded63d608e1b191d79c780b8065f8cff367c98' into feat/nv12-1.11 2021-04-27 08:22:55 +02:00
gen api stub codegen 2021-04-03 13:12:59 +02:00
genesis port to v2 imports 2020-10-21 12:16:23 -07:00
journal Centralize everything on ipfs/go-log/v2 2021-04-06 15:04:32 +02:00
lib sigs: vector tests for bls 2021-04-15 23:02:21 +02:00
lotuspond Merge commit 'f1ded63d608e1b191d79c780b8065f8cff367c98' into feat/nv12-1.11 2021-04-27 08:22:55 +02:00
markets feat: add more debug logging for unsealing 2021-04-22 11:33:28 +02:00
metrics Merge pull request #6056 from filecoin-project/feat/vm-metrics 2021-04-18 17:07:16 +02:00
miner Propagate StateMsg api changes 2021-04-05 19:56:53 +02:00
node Merge commit 'f1ded63d608e1b191d79c780b8065f8cff367c98' into feat/nv12-1.11 2021-04-27 08:22:55 +02:00
paychmgr Fix tests 2021-04-06 12:24:58 +02:00
scripts bugfix: fixup devnet script 2020-11-22 00:11:39 +08:00
storage fix lint 2021-04-06 14:30:49 +02:00
system avoid global ResourceConstraints. 2020-12-02 22:26:30 +00:00
testplans remove deals concurrency 2021-04-28 13:38:18 +02:00
tools Merge remote-tracking branch 'origin/master' into feat/v1-api 2021-04-13 14:24:22 +02:00
.codecov.yml Add misc tooling to codecov ignore list 2021-01-13 17:07:27 +01:00
.dockerignore add docker support 2019-12-05 11:31:32 +08:00
.gitignore OpenRPC Support (#5843) 2021-03-19 19:22:46 +01: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
CHANGELOG.md Merge branch 'master' into releases 2021-04-27 04:14:36 -04:00
Dockerfile.lotus add job to build docker image and push to AWS ECR private repo 2021-01-20 16:27:19 +01:00
go.mod Merge commit 'f1ded63d608e1b191d79c780b8065f8cff367c98' into feat/nv12-1.11 2021-04-27 08:22:55 +02:00
go.sum Merge commit 'f1ded63d608e1b191d79c780b8065f8cff367c98' into feat/nv12-1.11 2021-04-27 08:22:55 +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
Makefile Fix buildall 2021-04-05 20:12:47 +02:00
README.md README: refine Contribute section. 2021-01-12 16:59:48 +00: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

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