Skip to content

Commit

Permalink
feat: NV23 Waffle support 🧇 (#4473)
Browse files Browse the repository at this point in the history
  • Loading branch information
LesnyRumcajs authored Jul 4, 2024
1 parent d9b7177 commit 8f8dbdc
Show file tree
Hide file tree
Showing 38 changed files with 1,623 additions and 174 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@

### Added

- [#4473](https://github.com/ChainSafe/forest/pull/4473) Add support for NV23
_Waffle_ network upgrade (FIP-0085, FIP-0091, v14 actors).

- [#4352](https://github.com/ChainSafe/forest/pull/4352) Add support for the
`Filecoin.StateGetClaim` RPC method.

Expand Down
104 changes: 73 additions & 31 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

29 changes: 15 additions & 14 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,35 +40,36 @@ crypto_secretbox = "0.1"
daemonize-me = "2"
data-encoding = "2"
data-encoding-macro = "0.1"
derive_builder = "0.20.0"
derive_more = "0.99"
dialoguer = "0.11"
digest = "0.10"
directories = "5"
displaydoc = "0.2"
ethereum-types = "0.14"
fil_actor_account_state = { version = "14" }
fil_actor_cron_state = { version = "14" }
fil_actor_datacap_state = { version = "14" }
fil_actor_init_state = { version = "14" }
fil_actor_interface = { version = "14" }
fil_actor_market_state = { version = "14" }
fil_actor_miner_state = { version = "14" }
fil_actor_power_state = { version = "14" }
fil_actor_reward_state = { version = "14" }
fil_actor_system_state = { version = "14" }
fil_actor_verifreg_state = { version = "14" }
fil_actors_shared = { version = "14", features = ["json"] }
fil_actor_account_state = { version = "15" }
fil_actor_cron_state = { version = "15" }
fil_actor_datacap_state = { version = "15" }
fil_actor_init_state = { version = "15" }
fil_actor_interface = { version = "15" }
fil_actor_market_state = { version = "15" }
fil_actor_miner_state = { version = "15" }
fil_actor_power_state = { version = "15" }
fil_actor_reward_state = { version = "15" }
fil_actor_system_state = { version = "15" }
fil_actor_verifreg_state = { version = "15" }
fil_actors_shared = { version = "15", features = ["json"] }
flume = "0.11"
fs_extra = "1"
futures = "0.3"
fvm2 = { package = "fvm", version = "~2.8", default-features = false }
fvm3 = { package = "fvm", default-features = false, version = "~3.10", features = ["arb"] }
fvm4 = { package = "fvm", default-features = false, version = "~4.3", features = ["arb", "verify-signature"] }
fvm4 = { package = "fvm", default-features = false, version = "~4.3.1", features = ["arb", "verify-signature"] }
fvm_ipld_blockstore = "0.2"
fvm_ipld_encoding = "0.4"
fvm_shared2 = { package = "fvm_shared", version = "~2.7" }
fvm_shared3 = { package = "fvm_shared", version = "~3.10", features = ["arb", "testing", "proofs"] }
fvm_shared4 = { package = "fvm_shared", version = "~4.3", features = ["arb", "testing", "proofs"] }
fvm_shared4 = { package = "fvm_shared", version = "~4.3.1", features = ["arb", "testing", "proofs"] }
gethostname = "0.4"
git-version = "0.3"
group = "0.13"
Expand Down
4 changes: 2 additions & 2 deletions build/bootstrap/butterflynet
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
/dns4/bootstrap-0.butterfly.fildev.network/tcp/1347/p2p/12D3KooWSDtxY5PnoJMWQE2atCRzFon4zGhX3s5PyuRnbAmfJq3t
/dns4/bootstrap-1.butterfly.fildev.network/tcp/1347/p2p/12D3KooWPGoyrzLsTBuhHKQHrDvVsXxitFqBnrNLFssbyYv7Gazk
/dns4/bootstrap-0.butterfly.fildev.network/tcp/1347/p2p/12D3KooWE9GZUna2UpMMtcCcpmSwiEB7jcKse8gixzwVomgbQysC
/dns4/bootstrap-1.butterfly.fildev.network/tcp/1347/p2p/12D3KooWJGtqGX2XBssujaMn3FsybJu1xJhFZzhVjNnWvC6a26iG
Loading

0 comments on commit 8f8dbdc

Please sign in to comment.