Reference implementation of the Filecoin protocol, written in Go
Go to file
frrist 41f4f1fd83 refactor: implement processor and syncer
- When chainwatch is ran it will first start a Syncer that continuously collects blocks from the
ChainNotify channel and persists them to the blocks_synced table. Once the Syncer has caught the
blocks_synced table up to the lotus daemons current head a Processor is started. The Processor
selects a batch of contiguous blocks and extracts and stores their data. It attempts to do as much
work as it can in parallel. When the blocks are done being processed their corresponding
processed_at and is_processed fields in the blocks_synced table are filled out.
2020-07-15 11:42:19 -07:00
.circleci ci: lint-changes based on master 2020-06-22 19:39:08 +02:00
.github/ISSUE_TEMPLATE Use lotus version instead to get daemon version 2020-07-04 14:51:22 +02:00
api api/api_full.go: fix method signature 2020-07-13 22:35:51 +08:00
build Include unlock duration as a param for multisig creation 2020-07-11 23:54:58 -04:00
chain Merge pull request #2419 from filecoin-project/schomatis/fix/newtipset/mismatch-lengths 2020-07-15 17:49:39 +02:00
cli clarify multisig create helptext 2020-07-13 19:50:18 -04:00
cmd refactor: implement processor and syncer 2020-07-15 11:42:19 -07:00
documentation Merge pull request #2188 from filecoin-project/const-relaxation 2020-07-01 10:43:07 +02:00
extern Update FFI 2020-07-03 02:23:45 +02:00
gen Reintroduce correct ticket randomness alongside ElectionProof 2020-04-08 21:06:41 +02:00
genesis Update deps, fix more tests 2020-06-15 18:30:49 +02:00
journal journal: Fix panic with no journal set 2020-07-07 02:28:59 +02:00
lib Merge pull request #1563 from filecoin-project/feat/cache-bs 2020-07-13 16:20:43 -07:00
lotuspond seed: Support fake preseals 2020-07-03 03:29:21 +02:00
markets make system constants configurable as vars. 2020-06-30 14:18:26 +01:00
metrics Express block validation, cpu/mem usage via OpenCensus 2020-06-11 12:31:04 +02:00
miner pass error into waitFunc callback 2020-07-03 17:15:43 -04:00
node API improvements 2020-07-11 23:54:58 -04:00
paychmgr Fix to addresses in paychmgr channel creation 2020-06-26 09:06:01 +03:00
scripts Merge pull request #1894 from filecoin-project/feat/chainwatch-usage 2020-06-22 22:25:48 +02:00
storage API improvements 2020-07-11 23:54:58 -04:00
tools disable call to StatePledgeCollateral 2020-07-10 17:52:44 +02:00
.codecov.yml Codecov ignore cbor gen 2020-01-09 23:52:44 +01:00
.dockerignore add docker support 2019-12-05 11:31:32 +08:00
.gitignore add scratchpad to gitignore 2020-07-02 18:47:35 +02:00
.gitmodules Integrate updated serialization vectors as tests 2020-03-18 22:53:15 -07:00
.golangci.yml Fix even more lint warnings 2020-06-02 16:29:39 +02:00
CHANGELOG.md Add simple changelog 2019-12-11 16:00:55 +01:00
go.mod refactor: implement processor and syncer 2020-07-15 11:42:19 -07:00
go.sum refactor: implement processor and syncer 2020-07-15 11:42:19 -07: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 add testground Makefile target; attach to buildall. 2020-06-30 14:48:13 +01:00
README.md doc: report a vulnerability 2020-06-22 12:45:24 -03:00
SECURITY.md doc: report a vulnerability 2020-06-22 12:45:24 -03:00

Lotus

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 lotus from source, please visit https://docs.lotu.sh or read the source here.

Reporting a Vulnerability

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

Development

All work is tracked via issues. An attempt at keeping an up-to-date view on remaining work is in the lotus testnet github project board.

The main branches under development at the moment are:

  • master: current testnet.
  • next: working branch with chain-breaking changes.
  • interopnet: devnet running one of next commits.

License

Dual-licensed under MIT + Apache 2.0