lotus/build/actors
raulk b46258d0bf
feat: evm: align events implementation with FIP-0049 and FIP-0054. (#10152)
- Event keys are now t1, t2, t3, t4 for topics; and d for data.
- ref-fvm no longer stores events in the blockstore for us. It just
  returns events to the client, who is now responsible for handling
  them as it wishes / according to its configuration.
- Add a flag to VMOpts to have the events AMT be written in the blockstore.
- Add a flag to the ChainStore to advertise to the rest of the system
  if the ChainStore is storing events.
- Enable that flag if the EthRPC is enabled (can also add an explicit
  configuration flag if wanted).
2023-02-02 19:10:30 -08:00
..
pack.sh Remove references from wallaby and hyperspace 2023-01-20 16:51:01 -05:00
README.md feat: support overriding actor versions per-network 2022-06-22 10:47:04 -07:00
v8.tar.zst add bundle dev/20230114-pre-rc.2 2023-01-14 01:41:46 -05:00
v9.tar.zst add bundle dev/20230114-pre-rc.2 2023-01-14 01:41:46 -05:00
v10.tar.zst feat: evm: align events implementation with FIP-0049 and FIP-0054. (#10152) 2023-02-02 19:10:30 -08:00

Bundles

This directory includes the actors bundles for each release. Each actor bundle is a zstd compressed tarfile containing one bundle per network type. These tarfiles are subsequently embedded in the lotus binary.

Updating

To update, run the ./pack.sh script. For example, the following will pack the builtin actors release dev/20220602 into the v8 tarfile.

./pack.sh v8 dev/20220602

This will:

  1. Download the actors bundles and pack them into the appropriate tarfile ($VERSION.tar.zst).
  2. Run make bundle-gen in the top-level directory to regenerate the bundle metadata file for all network versions (all *.tar.zst files in this directory).

Overriding

To build a bundle, but specify a different release/tag for a specific network, append $network=$alternative_release on the command line. For example:

./pack.sh v8 dev/20220602 mainnet=v8.0.0 calibrationnet=v8.0.0-rc.1