Skip to content
Draft
Show file tree
Hide file tree
Changes from 12 commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
0cd5b20
Include new data coin input/output types from vm
MitchTurner Mar 21, 2025
3d22f46
Fix the remaining compilation errors
MitchTurner Mar 21, 2025
7ac89fe
Change output to use `Vec`--but it is not compiling :///
MitchTurner Mar 27, 2025
6c3fbac
Update data type
MitchTurner Mar 27, 2025
d5ff3bf
WIP add data coins to fuel-core level concepts
MitchTurner Mar 28, 2025
f6686d3
Finish adding data coin and fixing helpers
MitchTurner Mar 29, 2025
31a64c5
Fix test that shows executor running tx with data coin and predicate …
MitchTurner Mar 29, 2025
df8a1fe
Finish merging
MitchTurner Mar 30, 2025
4eba976
Add new unit test for unhappy path
MitchTurner Mar 30, 2025
b0a4336
WIP add integ test for data coin in predicate
MitchTurner Mar 30, 2025
79e1e19
WIP troubleshooting integ test
MitchTurner Mar 31, 2025
ea66242
Get the table entry to work properly for genesis block
MitchTurner Mar 31, 2025
3a27f69
Update crates/chain-config/src/config/state.rs
MitchTurner Mar 31, 2025
670beeb
Update crates/chain-config/src/config/state/reader.rs
MitchTurner Mar 31, 2025
897ecc1
Update crates/fuel-core/src/graphql_api/storage/coins/codecs.rs
MitchTurner Mar 31, 2025
62f1843
Update crates/fuel-core/src/graphql_api/storage/coins/codecs.rs
MitchTurner Mar 31, 2025
d09d0e2
Update crates/fuel-core/src/graphql_api/storage/coins/codecs.rs
MitchTurner Mar 31, 2025
e2a9da6
Update crates/types/src/entities/coins/coin.rs
MitchTurner Mar 31, 2025
4b8ad3b
Update crates/services/txpool_v2/src/storage/graph.rs
MitchTurner Mar 31, 2025
9a623bf
Update crates/services/executor/src/executor.rs
MitchTurner Mar 31, 2025
66f0e29
Update crates/services/executor/src/executor.rs
MitchTurner Mar 31, 2025
a339f97
Update crates/services/executor/src/executor.rs
MitchTurner Mar 31, 2025
1c23c18
Update crates/fuel-core/src/service/sub_services.rs
MitchTurner Mar 31, 2025
c21b437
Update crates/fuel-core/src/service/sub_services.rs
MitchTurner Mar 31, 2025
f08558e
Update crates/fuel-core/src/service/genesis.rs
MitchTurner Mar 31, 2025
a6beef5
Update crates/fuel-core/src/service/genesis.rs
MitchTurner Mar 31, 2025
45a4829
Update crates/fuel-core/src/service/genesis/importer/off_chain.rs
MitchTurner Mar 31, 2025
43c4d77
Appease Clippy-sama
MitchTurner Apr 1, 2025
9074c10
Add GWT to test
MitchTurner Apr 1, 2025
afc9906
add new test
MitchTurner Apr 1, 2025
5aa12e4
fix tests
MitchTurner Apr 1, 2025
d568ae9
Remove panic in benches
MitchTurner Apr 1, 2025
d6d09b4
Add test for outputs to executor
MitchTurner Apr 3, 2025
2f96a61
Add test that checks data outputs
MitchTurner Apr 3, 2025
1982e6b
Merge branch 'master' into spike/add-data-coins-to-predicate-eval
MitchTurner Apr 3, 2025
cefd633
Switch on actual predicate code
MitchTurner Apr 4, 2025
b2d8343
Merge branch 'master' into spike/add-data-coins-to-predicate-eval
MitchTurner Apr 7, 2025
5e02ad6
Merge branch 'master' into spike/add-data-coins-to-predicate-eval
MitchTurner Apr 9, 2025
59edc60
Restore test now that it is passing
MitchTurner Apr 4, 2025
e576370
Merge branch 'master' into spike/add-data-coins-to-predicate-eval
MitchTurner Apr 14, 2025
7092024
Fix compilation
MitchTurner Apr 14, 2025
7e76efd
Prototype: DataCoins api endpoints (#2948)
MitchTurner Apr 17, 2025
dfd0c82
Merge branch 'master' into spike/add-data-coins-to-predicate-eval
MitchTurner Apr 17, 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
20 changes: 2 additions & 18 deletions Cargo.lock

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

4 changes: 4 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -171,3 +171,7 @@ insta = "1.8"
tempfile = "3.4"
tikv-jemallocator = "0.5"
url = "2.2"

# add patch for fuel-vm
[patch.crates-io]
fuel-vm-private = { path = "../fuel-vm/fuel-vm", version = "0.60.0", package = "fuel-vm" }
2 changes: 1 addition & 1 deletion benches/benches/block_target_gas.rs
Original file line number Diff line number Diff line change
Expand Up @@ -428,7 +428,7 @@ fn run_with_service_with_extra_inputs(
}

for output in &extra_outputs {
tx_builder.add_output(*output);
tx_builder.add_output(output.clone());
}
let mut tx = tx_builder.finalize_as_transaction();
let chain_config = shared.config.snapshot_reader.chain_config().clone();
Expand Down
Loading
Loading