Skip to content

Releases: filecoin-project/lotus

Release v0.5.0

21 Aug 21:21
9e2f56b
Compare
Choose a tag to compare

Lotus changelog

0.5.0 / 2020-08-2020

This version of Lotus will be used for the incentivized testnet Space Race competition,
and can be considered mainnet-ready code. It includes some protocol
changes, upgrades of core dependencies, and various bugfixes and UX/performance improvements.

Highlights

Among the highlights included in this release are:

  • Gas changes: We implemented EIP-1559 and introduced real gas values.
  • Deal-making: We now support "Committed Capacity" sectors, "fast-retrieval" deals,
    and the packing of multiple deals into a single sector.
  • Renamed features: We renamed some of the binaries, environment variables, and default
    paths associated with a Lotus node.

Gas changes

We made some significant changes to the mechanics of gas in this release.

Network fee

We implemented something similar to
Ethereum's EIP-1559.
The Message structure had three changes:

  • The GasPrice field has been removed
  • A new GasFeeCap field has been added, which controls the maximum cost
    the sender incurs for the message
  • A new GasPremium field has been added, which controls the reward a miner
    earns for including the message

A sender will never be charged more than GasFeeCap * GasLimit.
A miner will typically earn GasPremium * GasLimit as a reward.

The Blockheader structure has one new field, called ParentBaseFee.
Informally speaking,the ParentBaseFee
is increased when blocks are densely packed with messages, and decreased otherwise.

The ParentBaseFee is used when calculating how much a sender burns when executing a message. Burning simply refers to sending attoFIL to a dedicated, unreachable account.
A message causes ParentBaseFee * GasUsed attoFIL to be burnt.

Real gas values

This release also includes our first "real" gas costs for primitive operations.
The costs were designed to account for both the time that message execution takes,
as well as the space a message adds to the state tree.

Deal-making changes

There are three key changes to the deal-making process.

Committed Capacity sectors

Miners can now pledge "Committed Capacity" (CC) sectors, which are explicitly
stated as containing junk data, and must not include any deals. Miners can do this
to increase their storage power, and win block rewards from this pledged storage.

They can mark these sectors as "upgradable" with lotus-miner sectors mark-for-upgrade.
If the miner receives and accepts one or more storage deals, the sector that includes
those deals will replace the CC sector. This is intended to maximize the amount of useful
storage on the Filecoin network.

Fast-retrieval deals

Clients can now include a fast-retrieval flag when proposing deals with storage miners.
If set to true, the miner will include an extra copy of the deal data. This
data can be quickly served in a retrieval deal, since it will not need to be unsealed.

Multiple deals per sector

Miners can now pack multiple deals into a single sector, so long as all the deals
fit into the sector capacity. This should increase the packing efficiency of miners.

Renamed features

To improve the user experience, we updated several names to mainatin
standard prefixing, and to better reflect the meaning of the features being referenced.

In particular, the Lotus miner binary is now called lotus-miner, the default
path for miner data is now ~/.lotusminer, and the environment variable
that sets the path for miner data is now $LOTUS_MINER_PATH. A full list of renamed
features can be found here.

Changelog

Downstream upgrades

  • Upgrades markets to v0.5.6 (#3058)
  • Upgrades specs-actors to v0.9.3 (#3151)

Core protocol

  • Introduces gas values, replacing placeholders (#2343)
  • Implements EIP-1559, introducing a network base fee, message gas fee cap, and message gas fee premium (#2874)
  • Implements Poisson Sortition for elections (#2084)

Deal-making lifecycle

Enhancements

UX

  • Provide status updates for data-transfer (#3162, #3191)
  • Miners can customise asks (#2046)
  • Miners can toggle auto-acceptance of deals (#1994)
  • Miners can maintain a blocklist of piece CIDs (#2069)

Contributors

The following contributors had 10 or more commits go into this release.
We are grateful for every contribution!

Contributor Commits Lines ±
magik6k 361 +13197/-6136
Kubuxu 227 +5670/-2587
arajasek 120 +2916/-1264
whyrusleeping 112 +3979/-1089
vyzo 99 +3343/-1305
dirkmc 68 +8732/-3621
laser 45 +1489/-501
hannahhoward 43 +2654/-990
frrist 37 +6630/-4338
schomatis 28 +3016/-1368
placer14 27 +824/-350
raulk 25 +28718/-29849
mrsmkl 22 +560/-368
travisperson 18 +1354/-314
nonsense 16 +2956/-2842
ingar 13 +331/-123
daviddias 11 +311/-11
Stebalien 11 +1204/-980
RobQuistNL 10 +69/-74

0.1.0 / 2019-12-11

We are very excited to release lotus 0.1.0. This is our testnet release. To install lotus and join the testnet, please visit lotu.sh. Please file bug reports as issues.

A huge thank you to all contributors for this testnet release!

v0.4.2

27 Jul 17:14
c459a13
Compare
Choose a tag to compare

This release includes the following changes:

  • A new specs-actors with a major refactor of the miner actor (#2413)
  • A new go-fil-markets with a major data transfer rewrite (filecoin-project/go-data-transfer#55, filecoin-project/go-fil-markets#321)
  • An overhaul of the mechanisms that charge gas during VM execution (#2343)
  • The ability to mark sectors as "Committed Capacity", and later upgrading them with deals (#2220)
  • The ability to mark deals as for "fast-retrieval", which instructs miners to store an unsealed copy (#2323)
  • The ability to pack multiple deals into a sector (filecoin-project/storage-fsm#38)
  • Various bugfixes, performance improvements, and new API endpoints

v0.4.1

02 Jul 20:25
5de7b62
Compare
Choose a tag to compare
Release v0.4.1

v0.4.0

18 Jun 23:41
ffa7be8
Compare
Choose a tag to compare
Release v0.4.0

v0.3.2

05 Jun 13:24
7d166fd
Compare
Choose a tag to compare
Release v0.3.2

Testnet Phase Two

14 May 21:08
1ac6f3f
Compare
Choose a tag to compare
v0.3.0

Merge pull request #1744 from filecoin-project/fix/signed-message-acc…

v0.2.10

03 Mar 23:34
41bf668
Compare
Choose a tag to compare
Merge pull request #1294 from natewalck/more-opencensus-metrics

More opencensus metrics

v0.2.8

21 Feb 00:17
1ad725a
Compare
Choose a tag to compare
Release v0.2.8

Release v0.2.6

25 Jan 03:30
7b258ed
Compare
Choose a tag to compare

Fixes blocksync issues

Release v0.1.0

11 Dec 18:26
Compare
Choose a tag to compare

We are very excited to release lotus 0.1.0. This is our testnet release. To install lotus and join the testnet, please visit docs.lotu.sh. Please file bug reports as issues.

A huge thank you to all contributors for this testnet release!