Skip to content
Open
Show file tree
Hide file tree
Changes from 21 commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
0b9a934
block_on_any_runtime function made publicly accessible
zees-dev Oct 30, 2025
890835e
added fork_url cli param to fork node
zees-dev Oct 30, 2025
075d0e1
added fork_block_number param to forc node
zees-dev Oct 30, 2025
41cb973
forc node contract data and state forking support
zees-dev Oct 30, 2025
b6b177e
added state forking e2e tests
zees-dev Oct 31, 2025
c1b7a90
fuel-core branch patch
zees-dev Oct 31, 2025
440a91c
forc-node cargo.toml upd
zees-dev Oct 31, 2025
e85b5b5
cargo.lock upd
zees-dev Oct 31, 2025
34b4583
forc node forking integration test contracts
zees-dev Oct 31, 2025
86b1183
added comment for patch diff
zees-dev Oct 31, 2025
250b6ae
cargo-toml-lint fixed dependency ordering
zees-dev Oct 31, 2025
609d0fd
various improvements to align contract bytecode retrieval and state r…
zees-dev Oct 31, 2025
8a52f69
improve combined database construction readability
zees-dev Oct 31, 2025
df3ae87
non-interactive for tests
zees-dev Nov 3, 2025
07eecf9
introduced non-interactive cmd arg instead - defaults to false
zees-dev Nov 3, 2025
f1d9f38
updated forc compilation for test contracts
zees-dev Nov 3, 2025
7438872
docs for using forc-node with testnet as fork example
zees-dev Nov 4, 2025
494fa90
Merge branch 'master' into feat/forc-node-local-state-forking
zees-dev Nov 4, 2025
e266dd6
Update forc-plugins/forc-node/tests/fork/Forc.toml
zees-dev Nov 12, 2025
28964d8
Update forc-plugins/forc-node/tests/local.rs
zees-dev Nov 12, 2025
b810dcc
Update forc-plugins/forc-node/tests/local.rs
zees-dev Nov 12, 2025
01dde89
using cargo.toml and cargo.lock from master
zees-dev Nov 14, 2025
703c4e0
Merge branch 'master' into feat/forc-node-local-state-forking
zees-dev Nov 14, 2025
bbf192d
cargo.toml and cargo.lock upd
zees-dev Nov 18, 2025
f1bf8a5
fixed compilation errors in tests
zees-dev Nov 18, 2025
dce3d6b
fixed spellchack and markdown lint issues
zees-dev Nov 18, 2025
d6c6bd9
fixed spellcheck
zees-dev Nov 18, 2025
f23981d
Merge branch 'master' into feat/forc-node-local-state-forking
zees-dev Nov 26, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
157 changes: 96 additions & 61 deletions Cargo.lock

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

8 changes: 8 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -259,3 +259,11 @@ vte = "0.13"
walkdir = "2.3"
whoami = "1.5"
wiremock = "0.6"

# https://github.com/FuelLabs/fuel-core/compare/v0.46.0...update/pub-data-source-attr
[patch.crates-io]
fuel-core = { git = "https://github.com/FuelLabs/fuel-core", branch = "update/pub-data-source-attr" }
fuel-core-chain-config = { git = "https://github.com/FuelLabs/fuel-core", branch = "update/pub-data-source-attr" }
fuel-core-client = { git = "https://github.com/FuelLabs/fuel-core", branch = "update/pub-data-source-attr" }
fuel-core-storage = { git = "https://github.com/FuelLabs/fuel-core", branch = "update/pub-data-source-attr" }
fuel-core-types = { git = "https://github.com/FuelLabs/fuel-core", branch = "update/pub-data-source-attr" }
Loading