From 493d019441efabef37ab00296128c84d6f6cd94c Mon Sep 17 00:00:00 2001 From: Andrew Date: Thu, 7 Nov 2024 10:39:47 +0000 Subject: [PATCH 01/25] Add computation_cost_burned field to GasCostSummary --- .../checkpoints/checkpoint_executor/tests.rs | 2 +- crates/iota-core/src/checkpoints/mod.rs | 17 +++++++++-------- .../tests/reconfiguration_tests.rs | 2 +- crates/iota-graphql-rpc/src/types/checkpoint.rs | 1 + crates/iota-graphql-rpc/src/types/gas.rs | 2 ++ crates/iota-indexer/src/models/checkpoints.rs | 2 ++ crates/iota-open-rpc/src/examples.rs | 1 + crates/iota-types/src/effects/mod.rs | 2 +- crates/iota-types/src/gas.rs | 15 +++++++++++++-- crates/iota-types/src/gas_model/gas_v1.rs | 2 ++ crates/iota-types/src/iota_sdk2_conversions.rs | 3 +++ crates/iota/src/displays/gas_cost_summary.rs | 4 +++- 12 files changed, 39 insertions(+), 14 deletions(-) diff --git a/crates/iota-core/src/checkpoints/checkpoint_executor/tests.rs b/crates/iota-core/src/checkpoints/checkpoint_executor/tests.rs index 9dd7463d1a5..b1e4f3cfb38 100644 --- a/crates/iota-core/src/checkpoints/checkpoint_executor/tests.rs +++ b/crates/iota-core/src/checkpoints/checkpoint_executor/tests.rs @@ -473,7 +473,7 @@ async fn sync_end_of_epoch_checkpoint( authority_state .create_and_execute_advance_epoch_tx( &authority_state.epoch_store_for_testing().clone(), - &GasCostSummary::new(0, 0, 0, 0), + &GasCostSummary::new(0, 0, 0, 0, 0), *checkpoint.sequence_number(), 0, // epoch_start_timestamp_ms ) diff --git a/crates/iota-core/src/checkpoints/mod.rs b/crates/iota-core/src/checkpoints/mod.rs index 82749fa472a..4c21afed7fa 100644 --- a/crates/iota-core/src/checkpoints/mod.rs +++ b/crates/iota-core/src/checkpoints/mod.rs @@ -1558,6 +1558,7 @@ impl CheckpointBuilder { if previous_epoch == self.epoch_store.epoch() { // sum only when we are within the same epoch GasCostSummary::new( + previous_gas_costs.computation_cost + current_gas_costs.computation_cost, previous_gas_costs.computation_cost + current_gas_costs.computation_cost, previous_gas_costs.storage_cost + current_gas_costs.storage_cost, previous_gas_costs.storage_rebate + current_gas_costs.storage_rebate, @@ -2467,28 +2468,28 @@ mod tests { state.clone(), d(1), vec![d(2), d(3)], - GasCostSummary::new(11, 12, 11, 1), + GasCostSummary::new(11, 11, 12, 11, 1), ); commit_cert_for_test( &mut store, state.clone(), d(2), vec![d(3), d(4)], - GasCostSummary::new(21, 22, 21, 1), + GasCostSummary::new(21, 21, 22, 21, 1), ); commit_cert_for_test( &mut store, state.clone(), d(3), vec![], - GasCostSummary::new(31, 32, 31, 1), + GasCostSummary::new(31, 31, 32, 31, 1), ); commit_cert_for_test( &mut store, state.clone(), d(4), vec![], - GasCostSummary::new(41, 42, 41, 1), + GasCostSummary::new(41, 41, 42, 41, 1), ); for i in [5, 6, 7, 10, 11, 12, 13] { commit_cert_for_test( @@ -2496,7 +2497,7 @@ mod tests { state.clone(), d(i), vec![], - GasCostSummary::new(41, 42, 41, 1), + GasCostSummary::new(41, 41, 42, 41, 1), ); } for i in [15, 16, 17] { @@ -2505,7 +2506,7 @@ mod tests { state.clone(), d(i), vec![], - GasCostSummary::new(51, 52, 51, 1), + GasCostSummary::new(51, 51, 52, 51, 1), ); } let all_digests: Vec<_> = store.keys().copied().collect(); @@ -2571,7 +2572,7 @@ mod tests { assert_eq!(c1s.sequence_number, 0); assert_eq!( c1s.epoch_rolling_gas_cost_summary, - GasCostSummary::new(41, 42, 41, 1) + GasCostSummary::new(41, 41, 42, 41, 1) ); assert_eq!(c2t, vec![d(3), d(2), d(1)]); @@ -2579,7 +2580,7 @@ mod tests { assert_eq!(c2s.sequence_number, 1); assert_eq!( c2s.epoch_rolling_gas_cost_summary, - GasCostSummary::new(104, 108, 104, 4) + GasCostSummary::new(104, 104, 108, 104, 4) ); // Pending at index 2 had 4 transactions, and we configured 3 transactions max. diff --git a/crates/iota-e2e-tests/tests/reconfiguration_tests.rs b/crates/iota-e2e-tests/tests/reconfiguration_tests.rs index 0c905ba0d0d..b731b4d1169 100644 --- a/crates/iota-e2e-tests/tests/reconfiguration_tests.rs +++ b/crates/iota-e2e-tests/tests/reconfiguration_tests.rs @@ -49,7 +49,7 @@ async fn advance_epoch_tx_test() { let (_system_state, _system_epoch_info_event, effects) = state .create_and_execute_advance_epoch_tx( &state.epoch_store_for_testing(), - &GasCostSummary::new(0, 0, 0, 0), + &GasCostSummary::new(0, 0, 0, 0, 0), 0, // checkpoint 0, // epoch_start_timestamp_ms ) diff --git a/crates/iota-graphql-rpc/src/types/checkpoint.rs b/crates/iota-graphql-rpc/src/types/checkpoint.rs index 03727fad37d..414dc377fa4 100644 --- a/crates/iota-graphql-rpc/src/types/checkpoint.rs +++ b/crates/iota-graphql-rpc/src/types/checkpoint.rs @@ -136,6 +136,7 @@ impl Checkpoint { async fn rolling_gas_summary(&self) -> Option { Some(GasCostSummary { computation_cost: self.stored.computation_cost as u64, + computation_cost_burned: self.stored.computation_cost_burned as u64, storage_cost: self.stored.storage_cost as u64, storage_rebate: self.stored.storage_rebate as u64, non_refundable_storage_fee: self.stored.non_refundable_storage_fee as u64, diff --git a/crates/iota-graphql-rpc/src/types/gas.rs b/crates/iota-graphql-rpc/src/types/gas.rs index be6ce2b20a9..f6f349781a1 100644 --- a/crates/iota-graphql-rpc/src/types/gas.rs +++ b/crates/iota-graphql-rpc/src/types/gas.rs @@ -30,6 +30,7 @@ pub(crate) struct GasInput { #[derive(Clone, Copy, Debug, PartialEq, Eq)] pub(crate) struct GasCostSummary { pub computation_cost: u64, + pub computation_cost_burned: u64, pub storage_cost: u64, pub storage_rebate: u64, pub non_refundable_storage_fee: u64, @@ -192,6 +193,7 @@ impl From<&NativeGasCostSummary> for GasCostSummary { fn from(gcs: &NativeGasCostSummary) -> Self { Self { computation_cost: gcs.computation_cost, + computation_cost_burned: gcs.computation_cost_burned, storage_cost: gcs.storage_cost, storage_rebate: gcs.storage_rebate, non_refundable_storage_fee: gcs.non_refundable_storage_fee, diff --git a/crates/iota-indexer/src/models/checkpoints.rs b/crates/iota-indexer/src/models/checkpoints.rs index b2bca102061..a3456b5d41a 100644 --- a/crates/iota-indexer/src/models/checkpoints.rs +++ b/crates/iota-indexer/src/models/checkpoints.rs @@ -203,6 +203,8 @@ impl TryFrom for RpcCheckpoint { end_of_epoch_data, epoch_rolling_gas_cost_summary: GasCostSummary { computation_cost: checkpoint.computation_cost as u64, + // TODO_FIXED_BASE_FEE: update computation cost burned in checkpoint to be used here. + computation_cost_burned: checkpoint.computation_cost as u64, storage_cost: checkpoint.storage_cost as u64, storage_rebate: checkpoint.storage_rebate as u64, non_refundable_storage_fee: checkpoint.non_refundable_storage_fee as u64, diff --git a/crates/iota-open-rpc/src/examples.rs b/crates/iota-open-rpc/src/examples.rs index 82dec134b65..f9c087f0afc 100644 --- a/crates/iota-open-rpc/src/examples.rs +++ b/crates/iota-open-rpc/src/examples.rs @@ -668,6 +668,7 @@ impl RpcExampleProvider { modified_at_versions: vec![], gas_used: GasCostSummary { computation_cost: 100, + computation_cost_burned: 100, storage_cost: 100, storage_rebate: 10, non_refundable_storage_fee: 0, diff --git a/crates/iota-types/src/effects/mod.rs b/crates/iota-types/src/effects/mod.rs index b67048f2473..01449f50fc4 100644 --- a/crates/iota-types/src/effects/mod.rs +++ b/crates/iota-types/src/effects/mod.rs @@ -43,7 +43,7 @@ pub const APPROX_SIZE_OF_EXECUTION_STATUS: usize = 120; // Approximate size of `EpochId` type in bytes pub const APPROX_SIZE_OF_EPOCH_ID: usize = 10; // Approximate size of `GasCostSummary` type in bytes -pub const APPROX_SIZE_OF_GAS_COST_SUMMARY: usize = 40; +pub const APPROX_SIZE_OF_GAS_COST_SUMMARY: usize = 40; // TODO: Update this // Approximate size of `Option` type in bytes pub const APPROX_SIZE_OF_OPT_TX_EVENTS_DIGEST: usize = 40; // Approximate size of `TransactionDigest` type in bytes diff --git a/crates/iota-types/src/gas.rs b/crates/iota-types/src/gas.rs index 8df712a0797..f49e44b4921 100644 --- a/crates/iota-types/src/gas.rs +++ b/crates/iota-types/src/gas.rs @@ -141,6 +141,10 @@ pub mod checked { #[schemars(with = "BigInt")] #[serde_as(as = "Readable, _>")] pub computation_cost: u64, + /// The burned component of the computation/execution costs + #[schemars(with = "BigInt")] + #[serde_as(as = "Readable, _>")] + pub computation_cost_burned: u64, /// Storage cost, it's the sum of all storage cost for all objects /// created or mutated. #[schemars(with = "BigInt")] @@ -161,12 +165,14 @@ pub mod checked { impl GasCostSummary { pub fn new( computation_cost: u64, + computation_cost_burned: u64, storage_cost: u64, storage_rebate: u64, non_refundable_storage_fee: u64, ) -> GasCostSummary { GasCostSummary { computation_cost, + computation_cost_burned, storage_cost, storage_rebate, non_refundable_storage_fee, @@ -198,7 +204,8 @@ pub mod checked { pub fn new_from_txn_effects<'a>( transactions: impl Iterator, ) -> GasCostSummary { - let (storage_costs, computation_costs, storage_rebates, non_refundable_storage_fee): ( + let (storage_costs, computation_costs, computation_costs_burned, storage_rebates, non_refundable_storage_fee): ( + Vec, Vec, Vec, Vec, @@ -208,6 +215,7 @@ pub mod checked { ( e.gas_cost_summary().storage_cost, e.gas_cost_summary().computation_cost, + e.gas_cost_summary().computation_cost_burned, e.gas_cost_summary().storage_rebate, e.gas_cost_summary().non_refundable_storage_fee, ) @@ -217,6 +225,7 @@ pub mod checked { GasCostSummary { storage_cost: storage_costs.iter().sum(), computation_cost: computation_costs.iter().sum(), + computation_cost_burned: computation_costs_burned.iter().sum(), storage_rebate: storage_rebates.iter().sum(), non_refundable_storage_fee: non_refundable_storage_fee.iter().sum(), } @@ -227,8 +236,9 @@ pub mod checked { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { write!( f, - "computation_cost: {}, storage_cost: {}, storage_rebate: {}, non_refundable_storage_fee: {}", + "computation_cost: {}, computation_cost_burned: {}, storage_cost: {}, storage_rebate: {}, non_refundable_storage_fee: {}", self.computation_cost, + self.computation_cost_burned, self.storage_cost, self.storage_rebate, self.non_refundable_storage_fee, @@ -239,6 +249,7 @@ pub mod checked { impl std::ops::AddAssign<&Self> for GasCostSummary { fn add_assign(&mut self, other: &Self) { self.computation_cost += other.computation_cost; + self.computation_cost_burned += other.computation_cost_burned; self.storage_cost += other.storage_cost; self.storage_rebate += other.storage_rebate; self.non_refundable_storage_fee += other.non_refundable_storage_fee; diff --git a/crates/iota-types/src/gas_model/gas_v1.rs b/crates/iota-types/src/gas_model/gas_v1.rs index f3e8d463fb1..da872086f33 100644 --- a/crates/iota-types/src/gas_model/gas_v1.rs +++ b/crates/iota-types/src/gas_model/gas_v1.rs @@ -405,6 +405,8 @@ mod checked { let non_refundable_storage_fee = storage_rebate - sender_rebate; GasCostSummary { computation_cost: self.computation_cost, + // entire computation cost is burned. + computation_cost_burned: self.computation_cost, storage_cost: self.storage_cost(), storage_rebate: sender_rebate, non_refundable_storage_fee, diff --git a/crates/iota-types/src/iota_sdk2_conversions.rs b/crates/iota-types/src/iota_sdk2_conversions.rs index dc79e3e6973..6c80480335f 100644 --- a/crates/iota-types/src/iota_sdk2_conversions.rs +++ b/crates/iota-types/src/iota_sdk2_conversions.rs @@ -749,6 +749,7 @@ impl From for crate::effects::TransactionEffects { executed_epoch: transaction_effects_v1.epoch, gas_used: crate::gas::GasCostSummary::new( transaction_effects_v1.gas_used.computation_cost, + transaction_effects_v1.gas_used.computation_cost_burned, transaction_effects_v1.gas_used.storage_cost, transaction_effects_v1.gas_used.storage_rebate, transaction_effects_v1.gas_used.non_refundable_storage_fee, @@ -1595,6 +1596,7 @@ impl From for GasCostSummary { fn from(value: crate::gas::GasCostSummary) -> Self { Self::new( value.computation_cost, + value.computation_cost_burned, value.storage_cost, value.storage_rebate, value.non_refundable_storage_fee, @@ -1606,6 +1608,7 @@ impl From for crate::gas::GasCostSummary { fn from(value: GasCostSummary) -> Self { Self::new( value.computation_cost, + value.computation_cost_burned, value.storage_cost, value.storage_rebate, value.non_refundable_storage_fee, diff --git a/crates/iota/src/displays/gas_cost_summary.rs b/crates/iota/src/displays/gas_cost_summary.rs index 42d0b5e25c5..8880db90553 100644 --- a/crates/iota/src/displays/gas_cost_summary.rs +++ b/crates/iota/src/displays/gas_cost_summary.rs @@ -13,14 +13,16 @@ impl<'a> Display for Pretty<'a, GasCostSummary> { let Pretty(gcs) = self; let GasCostSummary { computation_cost, + computation_cost_burned, storage_cost, storage_rebate, non_refundable_storage_fee, } = gcs; let output = format!( "Gas Cost Summary:\n \ - Storage Cost: {storage_cost}\n \ Computation Cost: {computation_cost}\n \ + Computation Cost Burned: {computation_cost_burned}\n \ + Storage Cost: {storage_cost}\n \ Storage Rebate: {storage_rebate}\n \ Non-refundable Storage Fee: {non_refundable_storage_fee}", ); From 43c1d01abfdcdb8f5474380129861539ba8143e5 Mon Sep 17 00:00:00 2001 From: Chloe Martin Date: Thu, 7 Nov 2024 09:12:46 -0500 Subject: [PATCH 02/25] Update to iota-rust-sdk PR commit --- Cargo.lock | 2 +- Cargo.toml | 2 +- crates/iota-types/src/iota_sdk2_conversions.rs | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index fa43635bb9d..9e8a25ed5cd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -7610,7 +7610,7 @@ dependencies = [ [[package]] name = "iota-rust-sdk" version = "0.0.0" -source = "git+ssh://git@github.com/iotaledger/iota-rust-sdk.git?rev=dd7b331a5ec62fd5e810051d19f31dff90ea7e3f#dd7b331a5ec62fd5e810051d19f31dff90ea7e3f" +source = "git+ssh://git@github.com/iotaledger/iota-rust-sdk.git?rev=fc75533f7e6a779990de70237f1f7250c3c2248c#fc75533f7e6a779990de70237f1f7250c3c2248c" dependencies = [ "base64ct", "bcs", diff --git a/Cargo.toml b/Cargo.toml index 47f7395e1a8..f45b80bfff9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -417,7 +417,7 @@ iota-rosetta = { path = "crates/iota-rosetta" } iota-rpc-loadgen = { path = "crates/iota-rpc-loadgen" } iota-sdk = { path = "crates/iota-sdk" } # core-types with json format for REST API -iota-sdk2 = { package = "iota-rust-sdk", git = "ssh://git@github.com/iotaledger/iota-rust-sdk.git", rev = "dd7b331a5ec62fd5e810051d19f31dff90ea7e3f", features = ["hash", "serde", "schemars"] } +iota-sdk2 = { package = "iota-rust-sdk", git = "ssh://git@github.com/iotaledger/iota-rust-sdk.git", rev = "fc75533f7e6a779990de70237f1f7250c3c2248c", features = ["hash", "serde", "schemars"] } iota-simulator = { path = "crates/iota-simulator" } iota-snapshot = { path = "crates/iota-snapshot" } iota-source-validation = { path = "crates/iota-source-validation" } diff --git a/crates/iota-types/src/iota_sdk2_conversions.rs b/crates/iota-types/src/iota_sdk2_conversions.rs index 6c80480335f..a3f447e36f5 100644 --- a/crates/iota-types/src/iota_sdk2_conversions.rs +++ b/crates/iota-types/src/iota_sdk2_conversions.rs @@ -650,6 +650,7 @@ impl From for TransactionEffects { epoch: effects.executed_epoch, gas_used: GasCostSummary::new( effects.gas_used.computation_cost, + effects.gas_used.computation_cost_burned, effects.gas_used.storage_cost, effects.gas_used.storage_rebate, effects.gas_used.non_refundable_storage_fee, From 8b49742a78abc579d1069a65a4f647bc7e40e6c2 Mon Sep 17 00:00:00 2001 From: Andrew Date: Thu, 7 Nov 2024 14:32:59 +0000 Subject: [PATCH 03/25] add missing fields --- crates/iota-core/src/checkpoints/mod.rs | 2 +- crates/iota-graphql-rpc/src/types/checkpoint.rs | 2 +- crates/iota-graphql-rpc/src/types/system_state_summary.rs | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/crates/iota-core/src/checkpoints/mod.rs b/crates/iota-core/src/checkpoints/mod.rs index 4c21afed7fa..a629f9e6927 100644 --- a/crates/iota-core/src/checkpoints/mod.rs +++ b/crates/iota-core/src/checkpoints/mod.rs @@ -1559,7 +1559,7 @@ impl CheckpointBuilder { // sum only when we are within the same epoch GasCostSummary::new( previous_gas_costs.computation_cost + current_gas_costs.computation_cost, - previous_gas_costs.computation_cost + current_gas_costs.computation_cost, + previous_gas_costs.computation_cost_burned + current_gas_costs.computation_cost_burned, previous_gas_costs.storage_cost + current_gas_costs.storage_cost, previous_gas_costs.storage_rebate + current_gas_costs.storage_rebate, previous_gas_costs.non_refundable_storage_fee diff --git a/crates/iota-graphql-rpc/src/types/checkpoint.rs b/crates/iota-graphql-rpc/src/types/checkpoint.rs index 414dc377fa4..ab464fe101a 100644 --- a/crates/iota-graphql-rpc/src/types/checkpoint.rs +++ b/crates/iota-graphql-rpc/src/types/checkpoint.rs @@ -136,7 +136,7 @@ impl Checkpoint { async fn rolling_gas_summary(&self) -> Option { Some(GasCostSummary { computation_cost: self.stored.computation_cost as u64, - computation_cost_burned: self.stored.computation_cost_burned as u64, + computation_cost_burned: self.stored.computation_cost as u64, storage_cost: self.stored.storage_cost as u64, storage_rebate: self.stored.storage_rebate as u64, non_refundable_storage_fee: self.stored.non_refundable_storage_fee as u64, diff --git a/crates/iota-graphql-rpc/src/types/system_state_summary.rs b/crates/iota-graphql-rpc/src/types/system_state_summary.rs index dd55c46437c..f088c01bcb3 100644 --- a/crates/iota-graphql-rpc/src/types/system_state_summary.rs +++ b/crates/iota-graphql-rpc/src/types/system_state_summary.rs @@ -39,6 +39,7 @@ impl SystemStateSummary { enabled: Some(self.native.safe_mode), gas_summary: Some(GasCostSummary { computation_cost: self.native.safe_mode_computation_rewards, + computation_cost_burned: self.native.safe_mode_computation_rewards, storage_cost: self.native.safe_mode_storage_charges, storage_rebate: self.native.safe_mode_storage_rebates, non_refundable_storage_fee: self.native.safe_mode_non_refundable_storage_fee, From 3910a01c632a8e9750edecf951212aa986065e75 Mon Sep 17 00:00:00 2001 From: miker83z Date: Thu, 7 Nov 2024 16:13:43 +0100 Subject: [PATCH 04/25] refactor(iota-types): update specs --- crates/iota-open-rpc/spec/openrpc.json | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/crates/iota-open-rpc/spec/openrpc.json b/crates/iota-open-rpc/spec/openrpc.json index 6676283013b..684da3a05aa 100644 --- a/crates/iota-open-rpc/spec/openrpc.json +++ b/crates/iota-open-rpc/spec/openrpc.json @@ -104,6 +104,7 @@ "executedEpoch": "0", "gasUsed": { "computationCost": "100", + "computationCostBurned": "100", "storageCost": "100", "storageRebate": "10", "nonRefundableStorageFee": "0" @@ -247,6 +248,7 @@ "executedEpoch": "0", "gasUsed": { "computationCost": "100", + "computationCostBurned": "100", "storageCost": "100", "storageRebate": "10", "nonRefundableStorageFee": "0" @@ -450,6 +452,7 @@ "executedEpoch": "0", "gasUsed": { "computationCost": "100", + "computationCostBurned": "100", "storageCost": "100", "storageRebate": "10", "nonRefundableStorageFee": "0" @@ -578,6 +581,7 @@ "previousDigest": "6tBy8RXZKrdrB4XkMQn7J3MNG4fQCo9XcRduFFvYrL5Z", "epochRollingGasCostSummary": { "computationCost": "0", + "computationCostBurned": "0", "storageCost": "0", "storageRebate": "0", "nonRefundableStorageFee": "0" @@ -663,6 +667,7 @@ "previousDigest": "8BLFxLTjWZ2KqaGc3FjR1o9aL6kbyYrmhuNfJLU1ehYt", "epochRollingGasCostSummary": { "computationCost": "0", + "computationCostBurned": "0", "storageCost": "0", "storageRebate": "0", "nonRefundableStorageFee": "0" @@ -682,6 +687,7 @@ "previousDigest": "6Pn25cieaE62AT6BwCeBoca13AGZuneucaaTGqt3gNCo", "epochRollingGasCostSummary": { "computationCost": "0", + "computationCostBurned": "0", "storageCost": "0", "storageRebate": "0", "nonRefundableStorageFee": "0" @@ -701,6 +707,7 @@ "previousDigest": "CnHTfdUJr1UUqwXkYUhbQjXeM16xR33UR62jE72toCis", "epochRollingGasCostSummary": { "computationCost": "0", + "computationCostBurned": "0", "storageCost": "0", "storageRebate": "0", "nonRefundableStorageFee": "0" @@ -720,6 +727,7 @@ "previousDigest": "38fLUfuigyzLPEDrsmRhcQmhKtbEUohuFBP9NDcWBmFz", "epochRollingGasCostSummary": { "computationCost": "0", + "computationCostBurned": "0", "storageCost": "0", "storageRebate": "0", "nonRefundableStorageFee": "0" @@ -2258,6 +2266,7 @@ "executedEpoch": "0", "gasUsed": { "computationCost": "100", + "computationCostBurned": "100", "storageCost": "100", "storageRebate": "10", "nonRefundableStorageFee": "0" @@ -2637,6 +2646,7 @@ "executedEpoch": "0", "gasUsed": { "computationCost": "100", + "computationCostBurned": "100", "storageCost": "100", "storageRebate": "10", "nonRefundableStorageFee": "0" @@ -2753,6 +2763,7 @@ "executedEpoch": "0", "gasUsed": { "computationCost": "100", + "computationCostBurned": "100", "storageCost": "100", "storageRebate": "10", "nonRefundableStorageFee": "0" @@ -2869,6 +2880,7 @@ "executedEpoch": "0", "gasUsed": { "computationCost": "100", + "computationCostBurned": "100", "storageCost": "100", "storageRebate": "10", "nonRefundableStorageFee": "0" @@ -7115,6 +7127,7 @@ "type": "object", "required": [ "computationCost", + "computationCostBurned", "nonRefundableStorageFee", "storageCost", "storageRebate" @@ -7128,6 +7141,14 @@ } ] }, + "computationCostBurned": { + "description": "The burned component of the computation/execution costs", + "allOf": [ + { + "$ref": "#/components/schemas/BigInt_for_uint64" + } + ] + }, "nonRefundableStorageFee": { "description": "The fee for the rebate. The portion of the storage rebate kept by the system.", "allOf": [ From 421be0131befe0b265091a9b16840b0551b90b77 Mon Sep 17 00:00:00 2001 From: miker83z Date: Thu, 7 Nov 2024 16:58:09 +0100 Subject: [PATCH 05/25] fix(iota-graphql-e2e-tests): update baselines --- .../tests/available_range/available_range.exp | 16 +++---- .../tests/call/coin_metadata.exp | 4 +- .../tests/call/dynamic_fields.exp | 10 ++--- .../tests/call/owned_objects.exp | 4 +- .../tests/call/simple.exp | 22 +++++----- .../tests/consistency/balances.exp | 8 ++-- .../checkpoints/transaction_blocks.exp | 20 ++++----- .../tests/consistency/coins.exp | 8 ++-- .../consistency/dynamic_fields/deleted_df.exp | 12 +++--- .../dynamic_fields/deleted_dof.exp | 12 +++--- .../dof_add_reclaim_transfer.exp | 8 ++-- .../dof_add_reclaim_transfer_reclaim_add.exp | 14 +++---- .../dynamic_fields/dynamic_fields.exp | 12 +++--- .../dynamic_fields/immutable_dof.exp | 14 +++---- .../consistency/dynamic_fields/mutated_df.exp | 12 +++--- .../dynamic_fields/mutated_dof.exp | 14 +++---- .../consistency/dynamic_fields/nested_dof.exp | 16 +++---- .../consistency/epochs/transaction_blocks.exp | 16 +++---- .../tests/consistency/object_at_version.exp | 12 +++--- .../tests/consistency/objects_pagination.exp | 12 +++--- .../consistency/objects_pagination_single.exp | 12 +++--- .../consistency/performance/many_objects.exp | 10 ++--- .../tests/consistency/staked_iota.exp | 8 ++-- .../tests/consistency/tx_address_objects.exp | 8 ++-- .../tests/epoch/chain_identifier.exp | 2 +- .../tests/epoch/epoch.exp | 6 +-- .../tests/epoch/system_state.exp | 10 ++--- .../tests/errors/clever_errors.exp | 4 +- .../tests/errors/clever_errors_in_macros.exp | 2 +- .../event_connection/combo_filter_error.exp | 4 +- .../event_connection/event_connection.exp | 14 +++---- .../event_connection/nested_emit_event.exp | 4 +- .../tests/event_connection/no_filter.exp | 4 +- .../tests/event_connection/pagination.exp | 6 +-- .../tests/event_connection/tx_digest.exp | 8 ++-- .../tests/event_connection/type_filter.exp | 8 ++-- .../event_connection/type_param_filter.exp | 8 ++-- .../tests/limits/directives.exp | 4 +- .../tests/objects/coin.exp | 2 +- .../tests/objects/data.exp | 4 +- .../tests/objects/display.exp | 26 ++++++------ .../tests/objects/enum_data.exp | 4 +- .../tests/objects/filter_by_type.exp | 4 +- .../tests/objects/pagination.exp | 12 +++--- .../tests/objects/public_transfer.exp | 4 +- .../tests/objects/received.exp | 2 +- .../tests/objects/staked_iota.exp | 4 +- .../tests/owner/downcasts.exp | 2 +- .../tests/owner/root_version.exp | 20 ++++----- .../tests/packages/datatypes.exp | 2 +- .../tests/packages/enums.exp | 4 +- .../tests/packages/friends.exp | 4 +- .../tests/packages/functions.exp | 4 +- .../tests/packages/modules.exp | 2 +- .../tests/packages/structs.exp | 4 +- .../tests/packages/types.exp | 2 +- .../tests/packages/versioning.exp | 6 +-- .../balance_changes.exp | 4 +- .../dependencies.exp | 16 +++---- .../transaction_block_effects/events.exp | 8 ++-- .../object_changes.exp | 4 +- .../tests/transactions/at_checkpoint.exp | 2 +- .../tests/transactions/errors.exp | 2 +- .../tests/transactions/filters/kind.exp | 12 +++--- .../transactions/filters/transaction_ids.exp | 4 +- .../tests/transactions/programmable.exp | 8 ++-- .../transactions/scan_limit/alternating.exp | 22 +++++----- .../transactions/scan_limit/both_cursors.exp | 22 +++++----- .../transactions/scan_limit/equal/first.exp | 24 +++++------ .../transactions/scan_limit/equal/last.exp | 22 +++++----- .../transactions/scan_limit/ge_page/first.exp | 42 +++++++++---------- .../transactions/scan_limit/ge_page/last.exp | 42 +++++++++---------- .../scan_limit/invalid_limits.exp | 12 +++--- .../transactions/scan_limit/le_page/first.exp | 22 +++++----- .../transactions/scan_limit/le_page/last.exp | 22 +++++----- .../tests/transactions/scan_limit/require.exp | 22 +++++----- .../tests/transactions/shared.exp | 8 ++-- .../tests/validator/validator.exp | 40 +++++++++--------- 78 files changed, 420 insertions(+), 420 deletions(-) diff --git a/crates/iota-graphql-e2e-tests/tests/available_range/available_range.exp b/crates/iota-graphql-e2e-tests/tests/available_range/available_range.exp index 23e7a64730c..7b55df71201 100644 --- a/crates/iota-graphql-e2e-tests/tests/available_range/available_range.exp +++ b/crates/iota-graphql-e2e-tests/tests/available_range/available_range.exp @@ -6,20 +6,20 @@ Response: { "data": { "availableRange": { "first": { - "digest": "Ap4ddWHXeYVMSMcf8cQT9j7WUM1rGKw7rG3Q8rpsuaUd", + "digest": "6bcKLwLh2YqRrtemWRC8KsaKsjFjZ1Xiivo7J4viV7w2", "sequenceNumber": 0 }, "last": { - "digest": "Ap4ddWHXeYVMSMcf8cQT9j7WUM1rGKw7rG3Q8rpsuaUd", + "digest": "6bcKLwLh2YqRrtemWRC8KsaKsjFjZ1Xiivo7J4viV7w2", "sequenceNumber": 0 } }, "first": { - "digest": "Ap4ddWHXeYVMSMcf8cQT9j7WUM1rGKw7rG3Q8rpsuaUd", + "digest": "6bcKLwLh2YqRrtemWRC8KsaKsjFjZ1Xiivo7J4viV7w2", "sequenceNumber": 0 }, "last": { - "digest": "Ap4ddWHXeYVMSMcf8cQT9j7WUM1rGKw7rG3Q8rpsuaUd", + "digest": "6bcKLwLh2YqRrtemWRC8KsaKsjFjZ1Xiivo7J4viV7w2", "sequenceNumber": 0 } } @@ -39,20 +39,20 @@ Response: { "data": { "availableRange": { "first": { - "digest": "Ap4ddWHXeYVMSMcf8cQT9j7WUM1rGKw7rG3Q8rpsuaUd", + "digest": "6bcKLwLh2YqRrtemWRC8KsaKsjFjZ1Xiivo7J4viV7w2", "sequenceNumber": 0 }, "last": { - "digest": "6SSpR1JWujKRTEB844us1vSSxjpD3RADCZ6HujXWx9a1", + "digest": "D9KfHWBEcPWAtQyFU6d2KetRykyPZiYXGnavBFc5xXGa", "sequenceNumber": 2 } }, "first": { - "digest": "Ap4ddWHXeYVMSMcf8cQT9j7WUM1rGKw7rG3Q8rpsuaUd", + "digest": "6bcKLwLh2YqRrtemWRC8KsaKsjFjZ1Xiivo7J4viV7w2", "sequenceNumber": 0 }, "last": { - "digest": "6SSpR1JWujKRTEB844us1vSSxjpD3RADCZ6HujXWx9a1", + "digest": "D9KfHWBEcPWAtQyFU6d2KetRykyPZiYXGnavBFc5xXGa", "sequenceNumber": 2 } } diff --git a/crates/iota-graphql-e2e-tests/tests/call/coin_metadata.exp b/crates/iota-graphql-e2e-tests/tests/call/coin_metadata.exp index 338d6c11140..e26ea9c6d8a 100644 --- a/crates/iota-graphql-e2e-tests/tests/call/coin_metadata.exp +++ b/crates/iota-graphql-e2e-tests/tests/call/coin_metadata.exp @@ -7,7 +7,7 @@ task 1, lines 7-18: //# publish --sender A created: object(1,0), object(1,1), object(1,2) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 10617200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 10617200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 20: //# create-checkpoint @@ -36,7 +36,7 @@ task 4, lines 36-38: created: object(4,0) mutated: object(0,0), object(1,2) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 4012800, storage_rebate: 2690400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4012800, storage_rebate: 2690400, non_refundable_storage_fee: 0 task 5, line 40: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/call/dynamic_fields.exp b/crates/iota-graphql-e2e-tests/tests/call/dynamic_fields.exp index 1cc6231fd6b..299f1f81404 100644 --- a/crates/iota-graphql-e2e-tests/tests/call/dynamic_fields.exp +++ b/crates/iota-graphql-e2e-tests/tests/call/dynamic_fields.exp @@ -7,25 +7,25 @@ task 1, lines 14-53: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 8329600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 8329600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 55: //# run Test::m::create_obj --sender A created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2234400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2234400, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 57: //# run Test::m::add_df --sender A --args object(2,0) created: object(3,0), object(3,1), object(3,2) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 6536000, storage_rebate: 2234400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6536000, storage_rebate: 2234400, non_refundable_storage_fee: 0 task 4, line 59: //# run Test::m::add_dof --sender A --args object(2,0) created: object(4,0), object(4,1) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 5928000, storage_rebate: 2234400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5928000, storage_rebate: 2234400, non_refundable_storage_fee: 0 task 5, line 61: //# create-checkpoint @@ -105,7 +105,7 @@ task 7, line 88: created: object(7,0) mutated: object(0,0) wrapped: object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2485200, storage_rebate: 2234400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2485200, storage_rebate: 2234400, non_refundable_storage_fee: 0 task 8, line 90: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/call/owned_objects.exp b/crates/iota-graphql-e2e-tests/tests/call/owned_objects.exp index c6d924f7b9f..6d4cc5bc6de 100644 --- a/crates/iota-graphql-e2e-tests/tests/call/owned_objects.exp +++ b/crates/iota-graphql-e2e-tests/tests/call/owned_objects.exp @@ -4,7 +4,7 @@ task 1, lines 23-42: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5570800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5570800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 44-62: //# run-graphql @@ -22,7 +22,7 @@ task 3, line 64: //# run Test::M1::create --args 0 @A created: object(3,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 4, line 66: //# view-object 3,0 diff --git a/crates/iota-graphql-e2e-tests/tests/call/simple.exp b/crates/iota-graphql-e2e-tests/tests/call/simple.exp index 0e6fc5296ed..fb826826f91 100644 --- a/crates/iota-graphql-e2e-tests/tests/call/simple.exp +++ b/crates/iota-graphql-e2e-tests/tests/call/simple.exp @@ -7,19 +7,19 @@ task 1, lines 7-26: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 5570800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5570800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 28: //# run Test::M1::create --args 0 @A --gas-price 1000 created: object(2,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 3, line 30: //# run Test::M1::create --args 0 @validator_0 created: object(3,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 4, line 32: //# view-object 0,0 @@ -73,7 +73,7 @@ Checkpoint created: 4 task 8, line 40: //# view-checkpoint CheckpointSummary { epoch: 0, seq: 4, content_digest: D3oWLCcqoa1D15gxzvMaDemNNY8YYVspAkYkcmtQKWRt, - epoch_rolling_gas_cost_summary: GasCostSummary { computation_cost: 3000000, storage_cost: 10176400, storage_rebate: 1976000, non_refundable_storage_fee: 0 }} + epoch_rolling_gas_cost_summary: GasCostSummary { computation_cost: 3000000, computation_cost_burned: 3000000, storage_cost: 10176400, storage_rebate: 1976000, non_refundable_storage_fee: 0 }} task 9, line 42: //# advance-epoch 6 @@ -81,8 +81,8 @@ Epoch advanced: 5 task 10, line 44: //# view-checkpoint -CheckpointSummary { epoch: 5, seq: 10, content_digest: TQRzKjmFFVTRsVoxCEk4TEatECab3mejg97UWAXNncR, - epoch_rolling_gas_cost_summary: GasCostSummary { computation_cost: 0, storage_cost: 0, storage_rebate: 0, non_refundable_storage_fee: 0 }} +CheckpointSummary { epoch: 5, seq: 10, content_digest: 2tpcrXbKLVRmsaprpdrDbbteuhZmeLFBshCSBy2r2KFn, + epoch_rolling_gas_cost_summary: GasCostSummary { computation_cost: 0, computation_cost_burned: 0, storage_cost: 0, storage_rebate: 0, non_refundable_storage_fee: 0 }} task 11, lines 46-51: //# run-graphql @@ -101,7 +101,7 @@ Checkpoint created: 11 task 13, line 55: //# view-checkpoint CheckpointSummary { epoch: 6, seq: 11, content_digest: D3oWLCcqoa1D15gxzvMaDemNNY8YYVspAkYkcmtQKWRt, - epoch_rolling_gas_cost_summary: GasCostSummary { computation_cost: 0, storage_cost: 0, storage_rebate: 0, non_refundable_storage_fee: 0 }} + epoch_rolling_gas_cost_summary: GasCostSummary { computation_cost: 0, computation_cost_burned: 0, storage_cost: 0, storage_rebate: 0, non_refundable_storage_fee: 0 }} task 14, lines 57-62: //# run-graphql @@ -144,7 +144,7 @@ Response: { task 16, line 71: //# view-checkpoint CheckpointSummary { epoch: 6, seq: 11, content_digest: D3oWLCcqoa1D15gxzvMaDemNNY8YYVspAkYkcmtQKWRt, - epoch_rolling_gas_cost_summary: GasCostSummary { computation_cost: 0, storage_cost: 0, storage_rebate: 0, non_refundable_storage_fee: 0 }} + epoch_rolling_gas_cost_summary: GasCostSummary { computation_cost: 0, computation_cost_burned: 0, storage_cost: 0, storage_rebate: 0, non_refundable_storage_fee: 0 }} task 17, lines 73-76: //# advance-epoch @@ -359,19 +359,19 @@ task 22, line 178: //# run Test::M1::create --args 0 @A --gas-price 999 created: object(22,0) mutated: object(0,1) -gas summary: computation_cost: 999000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 999000, computation_cost_burned: 999000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 23, line 180: //# run Test::M1::create --args 0 @A --gas-price 1000 created: object(23,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 24, line 182: //# run Test::M1::create --args 0 @A --gas-price 235 created: object(24,0) mutated: object(0,1) -gas summary: computation_cost: 235000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 235000, computation_cost_burned: 235000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 25, lines 184-189: //# run-graphql diff --git a/crates/iota-graphql-e2e-tests/tests/consistency/balances.exp b/crates/iota-graphql-e2e-tests/tests/consistency/balances.exp index c9bc932542f..95db49e70c6 100644 --- a/crates/iota-graphql-e2e-tests/tests/consistency/balances.exp +++ b/crates/iota-graphql-e2e-tests/tests/consistency/balances.exp @@ -8,7 +8,7 @@ task 1, lines 20-47: created: object(1,0), object(1,1), object(1,2), object(1,3), object(1,4), object(1,5) mutated: object(0,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 15663600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 15663600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 49: //# create-checkpoint @@ -20,7 +20,7 @@ task 3, lines 51-53: //> MergeCoins(Input(2), [Result(0)]); mutated: object(0,0), object(1,1), object(1,5) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 4012800, storage_rebate: 4012800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4012800, storage_rebate: 4012800, non_refundable_storage_fee: 0 task 4, line 55: //# create-checkpoint @@ -30,7 +30,7 @@ task 5, line 57: //# transfer-object 1,2 --sender A --recipient B mutated: object(0,0), object(1,2) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 2310400, storage_rebate: 2310400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2310400, storage_rebate: 2310400, non_refundable_storage_fee: 0 task 6, line 59: //# create-checkpoint @@ -40,7 +40,7 @@ task 7, line 61: //# transfer-object 1,3 --sender A --recipient B mutated: object(0,0), object(1,3) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 2310400, storage_rebate: 2310400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2310400, storage_rebate: 2310400, non_refundable_storage_fee: 0 task 9, line 65: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/consistency/checkpoints/transaction_blocks.exp b/crates/iota-graphql-e2e-tests/tests/consistency/checkpoints/transaction_blocks.exp index 88a01ee9564..42783da62bc 100644 --- a/crates/iota-graphql-e2e-tests/tests/consistency/checkpoints/transaction_blocks.exp +++ b/crates/iota-graphql-e2e-tests/tests/consistency/checkpoints/transaction_blocks.exp @@ -7,31 +7,31 @@ task 1, lines 14-27: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 5175600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5175600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 29: //# run Test::M1::create --args 0 @A --sender A created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 31: //# run Test::M1::create --args 0 @A --sender A created: object(3,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 4, line 33: //# run Test::M1::create --args 0 @A --sender A created: object(4,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 5, line 35: //# run Test::M1::create --args 0 @A --sender A created: object(5,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 6, line 37: //# create-checkpoint @@ -41,19 +41,19 @@ task 7, line 39: //# run Test::M1::create --args 0 @A --sender A created: object(7,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 8, line 41: //# run Test::M1::create --args 0 @A --sender A created: object(8,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 9, line 43: //# run Test::M1::create --args 0 @A --sender A created: object(9,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 10, line 45: //# create-checkpoint @@ -63,13 +63,13 @@ task 11, line 47: //# run Test::M1::create --args 0 @A --sender A created: object(11,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 12, line 49: //# run Test::M1::create --args 0 @A --sender A created: object(12,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 13, line 51: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/consistency/coins.exp b/crates/iota-graphql-e2e-tests/tests/consistency/coins.exp index f7400762b98..fb5a79b09e7 100644 --- a/crates/iota-graphql-e2e-tests/tests/consistency/coins.exp +++ b/crates/iota-graphql-e2e-tests/tests/consistency/coins.exp @@ -8,7 +8,7 @@ task 1, lines 13-40: created: object(1,0), object(1,1), object(1,2), object(1,3), object(1,4), object(1,5) mutated: object(0,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 15663600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 15663600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 42: //# create-checkpoint @@ -20,7 +20,7 @@ task 3, lines 44-46: //> MergeCoins(Input(2), [Result(0)]); mutated: object(0,0), object(1,1), object(1,5) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 4012800, storage_rebate: 4012800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4012800, storage_rebate: 4012800, non_refundable_storage_fee: 0 task 4, line 48: //# create-checkpoint @@ -434,13 +434,13 @@ task 7, line 136: //# transfer-object 1,2 --sender A --recipient B mutated: object(0,0), object(1,2) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 2310400, storage_rebate: 2310400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2310400, storage_rebate: 2310400, non_refundable_storage_fee: 0 task 8, line 138: //# transfer-object 1,3 --sender A --recipient B mutated: object(0,0), object(1,3) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 2310400, storage_rebate: 2310400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2310400, storage_rebate: 2310400, non_refundable_storage_fee: 0 task 9, line 140: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/deleted_df.exp b/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/deleted_df.exp index 46eff675eb9..4f0641f7682 100644 --- a/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/deleted_df.exp +++ b/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/deleted_df.exp @@ -7,13 +7,13 @@ task 1, lines 15-56: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 8474000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 8474000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 58: //# run Test::M1::parent --sender A --args @A created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 60: //# view-object 2,0 @@ -32,7 +32,7 @@ task 4, line 62: //# run Test::M1::add_df --sender A --args object(2,0) created: object(4,0), object(4,1), object(4,2) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 8664000, storage_rebate: 2302800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 8664000, storage_rebate: 2302800, non_refundable_storage_fee: 0 task 5, line 64: //# view-object 2,0 @@ -51,7 +51,7 @@ task 6, line 66: //# run Test::M1::add_more_df --sender A --args object(2,0) created: object(6,0), object(6,1), object(6,2) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 8664000, storage_rebate: 2302800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 8664000, storage_rebate: 2302800, non_refundable_storage_fee: 0 task 7, line 68: //# view-object 2,0 @@ -70,12 +70,12 @@ task 8, line 70: //# run Test::M1::remove_df --sender A --args object(2,0) mutated: object(0,0), object(2,0) deleted: object(4,0), object(4,1), object(4,2) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 8664000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 8664000, non_refundable_storage_fee: 0 task 9, line 72: //# run Test::M1::mutate_parent --sender A --args object(2,0) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 2302800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 2302800, non_refundable_storage_fee: 0 task 10, line 74: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/deleted_dof.exp b/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/deleted_dof.exp index fbb25f800e5..12f3175d56f 100644 --- a/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/deleted_dof.exp +++ b/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/deleted_dof.exp @@ -7,7 +7,7 @@ task 1, lines 15-59: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 7949600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7949600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 61-63: //# programmable --sender A --inputs @A @@ -15,18 +15,18 @@ task 2, lines 61-63: //> 1: Test::M1::parent(Input(0)); created: object(2,0), object(2,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3610000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3610000, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 65: //# run Test::M1::add_child --sender A --args object(2,1) object(2,0) 42 created: object(3,0) mutated: object(0,0), object(2,0), object(2,1) -gas summary: computation_cost: 1000000, storage_cost: 6064800, storage_rebate: 3610000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6064800, storage_rebate: 3610000, non_refundable_storage_fee: 0 task 4, line 67: //# run Test::M1::mutate_parent --sender A --args object(2,1) mutated: object(0,0), object(2,1) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 2302800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 2302800, non_refundable_storage_fee: 0 task 5, line 69: //# create-checkpoint @@ -135,7 +135,7 @@ task 7, line 130: //# run Test::M1::delete_child --sender A --args object(2,1) 42 mutated: object(0,0), object(2,1) deleted: object(2,0), object(3,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 6064800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 6064800, non_refundable_storage_fee: 0 task 8, line 132: //# create-checkpoint @@ -181,7 +181,7 @@ Response: { task 10, line 187: //# run Test::M1::mutate_parent --sender A --args object(2,1) mutated: object(0,0), object(2,1) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 2302800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 2302800, non_refundable_storage_fee: 0 task 11, line 189: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/dof_add_reclaim_transfer.exp b/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/dof_add_reclaim_transfer.exp index bc2d879ab0c..f0b074f31c9 100644 --- a/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/dof_add_reclaim_transfer.exp +++ b/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/dof_add_reclaim_transfer.exp @@ -7,7 +7,7 @@ task 1, lines 20-59: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 7600000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7600000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 61-63: //# programmable --sender A --inputs @A @@ -15,13 +15,13 @@ task 2, lines 61-63: //> 1: Test::M1::parent(Input(0)); created: object(2,0), object(2,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3610000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3610000, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 65: //# run Test::M1::add_child --sender A --args object(2,1) object(2,0) 42 created: object(3,0) mutated: object(0,0), object(2,0), object(2,1) -gas summary: computation_cost: 1000000, storage_cost: 6064800, storage_rebate: 3610000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6064800, storage_rebate: 3610000, non_refundable_storage_fee: 0 task 4, line 67: //# create-checkpoint @@ -152,7 +152,7 @@ task 6, line 133: //# run Test::M1::reclaim_and_transfer_child --sender A --args object(2,1) 42 @A mutated: object(0,0), object(2,0), object(2,1) deleted: object(3,0) -gas summary: computation_cost: 1000000, storage_cost: 3610000, storage_rebate: 6064800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3610000, storage_rebate: 6064800, non_refundable_storage_fee: 0 task 7, line 135: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/dof_add_reclaim_transfer_reclaim_add.exp b/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/dof_add_reclaim_transfer_reclaim_add.exp index 2a29f107466..840d8161366 100644 --- a/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/dof_add_reclaim_transfer_reclaim_add.exp +++ b/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/dof_add_reclaim_transfer_reclaim_add.exp @@ -7,7 +7,7 @@ task 1, lines 19-58: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 7600000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7600000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 60-63: //# programmable --sender A --inputs @A @@ -16,37 +16,37 @@ task 2, lines 60-63: //> 2: Test::M1::parent(Input(0)); created: object(2,0), object(2,1), object(2,2) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4924800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4924800, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 65: //# run Test::M1::add_child --sender A --args object(2,1) object(2,0) 42 created: object(3,0) mutated: object(0,0), object(2,0), object(2,1) -gas summary: computation_cost: 1000000, storage_cost: 6064800, storage_rebate: 3610000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6064800, storage_rebate: 3610000, non_refundable_storage_fee: 0 task 4, line 67: //# run Test::M1::reclaim_and_transfer_child --sender A --args object(2,1) 42 @A mutated: object(0,0), object(2,0), object(2,1) deleted: object(3,0) -gas summary: computation_cost: 1000000, storage_cost: 3610000, storage_rebate: 6064800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3610000, storage_rebate: 6064800, non_refundable_storage_fee: 0 task 5, line 69: //# run Test::M1::add_child --sender A --args object(2,2) object(2,0) 42 created: object(5,0) mutated: object(0,0), object(2,0), object(2,2) -gas summary: computation_cost: 1000000, storage_cost: 6064800, storage_rebate: 3610000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6064800, storage_rebate: 3610000, non_refundable_storage_fee: 0 task 6, line 71: //# run Test::M1::reclaim_and_transfer_child --sender A --args object(2,2) 42 @A mutated: object(0,0), object(2,0), object(2,2) deleted: object(5,0) -gas summary: computation_cost: 1000000, storage_cost: 3610000, storage_rebate: 6064800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3610000, storage_rebate: 6064800, non_refundable_storage_fee: 0 task 7, line 73: //# run Test::M1::add_child --sender A --args object(2,1) object(2,0) 42 created: object(3,0) mutated: object(0,0), object(2,0), object(2,1) -gas summary: computation_cost: 1000000, storage_cost: 6064800, storage_rebate: 3610000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6064800, storage_rebate: 3610000, non_refundable_storage_fee: 0 task 8, line 75: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/dynamic_fields.exp b/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/dynamic_fields.exp index ae07862cdf7..4f3edba1172 100644 --- a/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/dynamic_fields.exp +++ b/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/dynamic_fields.exp @@ -7,7 +7,7 @@ task 1, lines 13-83: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 11012400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 11012400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 85-87: //# programmable --sender A --inputs @A 42 @@ -15,7 +15,7 @@ task 2, lines 85-87: //> 1: Test::M1::child(Input(0)); created: object(2,0), object(2,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3549200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3549200, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 89: //# view-object 2,1 @@ -48,7 +48,7 @@ task 5, lines 93-95: //> Test::M1::mutate_child_via_parent(Input(0), Input(2)); created: object(5,0) mutated: object(0,0), object(2,0), object(2,1) -gas summary: computation_cost: 1000000, storage_cost: 6004000, storage_rebate: 3549200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6004000, storage_rebate: 3549200, non_refundable_storage_fee: 0 task 6, line 97: //# view-object 2,1 @@ -134,7 +134,7 @@ task 10, lines 167-169: //> Test::M1::add_df(Input(0)); created: object(10,0), object(10,1), object(10,2) mutated: object(0,0), object(2,0), object(2,1) -gas summary: computation_cost: 1000000, storage_cost: 9910400, storage_rebate: 3549200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 9910400, storage_rebate: 3549200, non_refundable_storage_fee: 0 task 11, line 171: //# view-object 2,1 @@ -387,7 +387,7 @@ task 16, lines 279-280: //> Test::M1::add_more_df(Input(0)); created: object(16,0), object(16,1), object(16,2) mutated: object(0,0), object(2,1) -gas summary: computation_cost: 1000000, storage_cost: 8603200, storage_rebate: 2242000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 8603200, storage_rebate: 2242000, non_refundable_storage_fee: 0 task 17, line 282: //# view-object 2,1 @@ -744,7 +744,7 @@ task 21, lines 340-341: //> Test::M1::remove_df(Input(0)); mutated: object(0,0), object(2,1) deleted: object(10,0), object(10,1), object(10,2) -gas summary: computation_cost: 1000000, storage_cost: 2242000, storage_rebate: 8603200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2242000, storage_rebate: 8603200, non_refundable_storage_fee: 0 task 22, line 343: //# view-object 2,1 diff --git a/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/immutable_dof.exp b/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/immutable_dof.exp index 98b3cef7ed7..271cb510a2a 100644 --- a/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/immutable_dof.exp +++ b/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/immutable_dof.exp @@ -7,43 +7,43 @@ task 1, lines 21-69: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 8770400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 8770400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 71: //# run Test::M1::parent --sender A --args @A created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 73: //# run Test::M1::child --sender A --args @A created: object(3,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2295200, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2295200, storage_rebate: 988000, non_refundable_storage_fee: 0 task 4, line 75: //# run Test::M1::child --sender A --args @A created: object(4,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2295200, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2295200, storage_rebate: 988000, non_refundable_storage_fee: 0 task 5, line 77: //# run Test::M1::add_child --sender A --args object(2,0) object(3,0) 42 created: object(5,0) mutated: object(0,0), object(2,0), object(3,0) -gas summary: computation_cost: 1000000, storage_cost: 6064800, storage_rebate: 3610000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6064800, storage_rebate: 3610000, non_refundable_storage_fee: 0 task 6, line 79: //# run Test::M1::add_nested_child --sender A --args object(2,0) 42 object(4,0) 420 created: object(6,0) mutated: object(0,0), object(2,0), object(4,0) -gas summary: computation_cost: 1000000, storage_cost: 6064800, storage_rebate: 3610000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6064800, storage_rebate: 3610000, non_refundable_storage_fee: 0 task 7, line 81: //# run Test::M1::reclaim_and_freeze_child --sender A --args object(2,0) 42 mutated: object(0,0), object(2,0), object(3,0) deleted: object(5,0) -gas summary: computation_cost: 1000000, storage_cost: 3610000, storage_rebate: 6064800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3610000, storage_rebate: 6064800, non_refundable_storage_fee: 0 task 8, line 83: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/mutated_df.exp b/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/mutated_df.exp index 145c6d01f7e..2dab9a08b8b 100644 --- a/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/mutated_df.exp +++ b/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/mutated_df.exp @@ -7,13 +7,13 @@ task 1, lines 15-46: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 7828000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7828000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 48: //# run Test::M1::parent --sender A --args @A created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 50: //# view-object 2,0 @@ -32,7 +32,7 @@ task 4, line 52: //# run Test::M1::add_df --sender A --args object(2,0) created: object(4,0), object(4,1), object(4,2) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 8664000, storage_rebate: 2302800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 8664000, storage_rebate: 2302800, non_refundable_storage_fee: 0 task 5, line 54: //# view-object 2,0 @@ -50,7 +50,7 @@ Contents: Test::M1::Parent { task 6, line 56: //# run Test::M1::mutate_parent --sender A --args object(2,0) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 2302800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 2302800, non_refundable_storage_fee: 0 task 7, line 58: //# view-object 2,0 @@ -155,7 +155,7 @@ Contents: Test::M1::Parent { task 11, line 114: //# run Test::M1::mutate_df1 --sender A --args object(2,0) mutated: object(0,0), object(2,0), object(4,0) -gas summary: computation_cost: 1000000, storage_cost: 4484000, storage_rebate: 4423200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4484000, storage_rebate: 4423200, non_refundable_storage_fee: 0 task 12, line 116: //# view-object 2,0 @@ -173,7 +173,7 @@ Contents: Test::M1::Parent { task 13, line 118: //# run Test::M1::mutate_parent --sender A --args object(2,0) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 2302800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 2302800, non_refundable_storage_fee: 0 task 14, line 120: //# view-object 2,0 diff --git a/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/mutated_dof.exp b/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/mutated_dof.exp index 989f71226d6..f7c007ebc41 100644 --- a/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/mutated_dof.exp +++ b/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/mutated_dof.exp @@ -7,7 +7,7 @@ task 1, lines 16-63: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 8390400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 8390400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 65-67: //# programmable --sender A --inputs @A @@ -15,18 +15,18 @@ task 2, lines 65-67: //> 1: Test::M1::parent(Input(0)); created: object(2,0), object(2,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3610000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3610000, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 69: //# run Test::M1::add_child --sender A --args object(2,1) object(2,0) 42 created: object(3,0) mutated: object(0,0), object(2,0), object(2,1) -gas summary: computation_cost: 1000000, storage_cost: 6064800, storage_rebate: 3610000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6064800, storage_rebate: 3610000, non_refundable_storage_fee: 0 task 4, line 71: //# run Test::M1::mutate_parent --sender A --args object(2,1) mutated: object(0,0), object(2,1) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 2302800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 2302800, non_refundable_storage_fee: 0 task 5, line 73: //# create-checkpoint @@ -135,7 +135,7 @@ task 7, line 134: //# run Test::M1::reclaim_and_transfer_child --sender A --args object(2,1) 42 @A mutated: object(0,0), object(2,0), object(2,1) deleted: object(3,0) -gas summary: computation_cost: 1000000, storage_cost: 3610000, storage_rebate: 6064800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3610000, storage_rebate: 6064800, non_refundable_storage_fee: 0 task 8, line 136: //# create-checkpoint @@ -181,13 +181,13 @@ Response: { task 10, line 191: //# run Test::M1::mutate_child --sender A --args object(2,0) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2295200, storage_rebate: 2295200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2295200, storage_rebate: 2295200, non_refundable_storage_fee: 0 task 11, line 193: //# run Test::M1::add_child --sender A --args object(2,1) object(2,0) 42 created: object(3,0) mutated: object(0,0), object(2,0), object(2,1) -gas summary: computation_cost: 1000000, storage_cost: 6064800, storage_rebate: 3610000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6064800, storage_rebate: 3610000, non_refundable_storage_fee: 0 task 12, line 195: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/nested_dof.exp b/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/nested_dof.exp index 7790f8e3903..c2e1fbbc06a 100644 --- a/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/nested_dof.exp +++ b/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/nested_dof.exp @@ -7,47 +7,47 @@ task 1, lines 25-76: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 8960400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 8960400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 78: //# run Test::M1::parent --sender A --args @A created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 80: //# run Test::M1::child --sender A --args @A created: object(3,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2295200, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2295200, storage_rebate: 988000, non_refundable_storage_fee: 0 task 4, line 82: //# run Test::M1::child --sender A --args @A created: object(4,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2295200, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2295200, storage_rebate: 988000, non_refundable_storage_fee: 0 task 5, line 84: //# run Test::M1::add_child --sender A --args object(2,0) object(3,0) 42 created: object(5,0) mutated: object(0,0), object(2,0), object(3,0) -gas summary: computation_cost: 1000000, storage_cost: 6064800, storage_rebate: 3610000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6064800, storage_rebate: 3610000, non_refundable_storage_fee: 0 task 6, line 86: //# run Test::M1::add_nested_child --sender A --args object(2,0) 42 object(4,0) 420 created: object(6,0) mutated: object(0,0), object(2,0), object(4,0) -gas summary: computation_cost: 1000000, storage_cost: 6064800, storage_rebate: 3610000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6064800, storage_rebate: 3610000, non_refundable_storage_fee: 0 task 7, line 88: //# run Test::M1::mutate_child_on_parent --sender A --args object(2,0) 42 mutated: object(0,0), object(2,0), object(3,0) -gas summary: computation_cost: 1000000, storage_cost: 3610000, storage_rebate: 3610000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3610000, storage_rebate: 3610000, non_refundable_storage_fee: 0 task 8, line 90: //# run Test::M1::mutate_nested_child_on_parent --sender A --args object(2,0) 42 420 mutated: object(0,0), object(2,0), object(4,0) -gas summary: computation_cost: 1000000, storage_cost: 3610000, storage_rebate: 3610000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3610000, storage_rebate: 3610000, non_refundable_storage_fee: 0 task 9, line 92: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/consistency/epochs/transaction_blocks.exp b/crates/iota-graphql-e2e-tests/tests/consistency/epochs/transaction_blocks.exp index 5d3d4848e43..b4732793dbf 100644 --- a/crates/iota-graphql-e2e-tests/tests/consistency/epochs/transaction_blocks.exp +++ b/crates/iota-graphql-e2e-tests/tests/consistency/epochs/transaction_blocks.exp @@ -7,7 +7,7 @@ task 1, lines 23-36: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 5175600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5175600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 38: //# create-checkpoint @@ -17,7 +17,7 @@ task 3, line 40: //# run Test::M1::create --args 0 @A --sender A created: object(3,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 0, non_refundable_storage_fee: 0 task 4, line 42: //# create-checkpoint @@ -72,7 +72,7 @@ task 7, line 64: //# run Test::M1::create --args 0 @A --sender A created: object(7,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 8, line 66: //# create-checkpoint @@ -82,7 +82,7 @@ task 9, line 68: //# run Test::M1::create --args 0 @A --sender A created: object(9,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 10, line 70: //# create-checkpoint @@ -92,7 +92,7 @@ task 11, line 72: //# run Test::M1::create --args 0 @A --sender A created: object(11,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 12, line 74: //# create-checkpoint @@ -106,7 +106,7 @@ task 14, line 78: //# run Test::M1::create --args 0 @A --sender A created: object(14,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 15, line 80: //# create-checkpoint @@ -116,7 +116,7 @@ task 16, line 82: //# run Test::M1::create --args 0 @A --sender A created: object(16,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 17, line 84: //# create-checkpoint @@ -126,7 +126,7 @@ task 18, line 86: //# run Test::M1::create --args 0 @A --sender A created: object(18,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 19, line 88: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/consistency/object_at_version.exp b/crates/iota-graphql-e2e-tests/tests/consistency/object_at_version.exp index 2d05fd0cfba..7c8e8b5ff73 100644 --- a/crates/iota-graphql-e2e-tests/tests/consistency/object_at_version.exp +++ b/crates/iota-graphql-e2e-tests/tests/consistency/object_at_version.exp @@ -7,13 +7,13 @@ task 1, lines 20-57: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 7014800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7014800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 59: //# run Test::M1::create --args 0 @A created: object(2,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 3, line 61: //# create-checkpoint @@ -41,7 +41,7 @@ Response: { task 5, line 78: //# run Test::M1::update --sender A --args object(2,0) 1 mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 1314800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 1314800, non_refundable_storage_fee: 0 task 6, line 80: //# create-checkpoint @@ -83,7 +83,7 @@ task 8, line 110: created: object(8,0) mutated: object(0,0) wrapped: object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2553600, storage_rebate: 2302800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2553600, storage_rebate: 2302800, non_refundable_storage_fee: 0 task 9, line 112: //# create-checkpoint @@ -118,7 +118,7 @@ task 11, line 142: mutated: object(0,0) unwrapped: object(2,0) deleted: object(8,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 2553600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 2553600, non_refundable_storage_fee: 0 task 12, line 144: //# create-checkpoint @@ -164,7 +164,7 @@ task 14, line 186: //# run Test::M1::delete --sender A --args object(2,0) mutated: object(0,0) deleted: object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 2302800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 2302800, non_refundable_storage_fee: 0 task 15, line 188: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/consistency/objects_pagination.exp b/crates/iota-graphql-e2e-tests/tests/consistency/objects_pagination.exp index fd5221a9387..da6d9096111 100644 --- a/crates/iota-graphql-e2e-tests/tests/consistency/objects_pagination.exp +++ b/crates/iota-graphql-e2e-tests/tests/consistency/objects_pagination.exp @@ -7,19 +7,19 @@ task 1, lines 16-29: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 5175600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5175600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 31: //# run Test::M1::create --args 0 @A created: object(2,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 3, line 33: //# run Test::M1::create --args 1 @A created: object(3,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 4, line 35: //# create-checkpoint @@ -57,13 +57,13 @@ task 6, line 67: //# run Test::M1::create --args 2 @A created: object(6,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 7, line 69: //# run Test::M1::create --args 3 @A created: object(7,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 8, line 71: //# create-checkpoint @@ -223,7 +223,7 @@ task 12, lines 147-148: //# programmable --sender A --inputs object(2,0) object(3,0) object(6,0) object(7,0) @B //> TransferObjects([Input(0), Input(1), Input(2), Input(3)], Input(4)) mutated: object(0,0), object(2,0), object(3,0), object(6,0), object(7,0) -gas summary: computation_cost: 1000000, storage_cost: 6247200, storage_rebate: 5259200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6247200, storage_rebate: 5259200, non_refundable_storage_fee: 0 task 13, line 150: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/consistency/objects_pagination_single.exp b/crates/iota-graphql-e2e-tests/tests/consistency/objects_pagination_single.exp index 6682a18e477..a4dd028213b 100644 --- a/crates/iota-graphql-e2e-tests/tests/consistency/objects_pagination_single.exp +++ b/crates/iota-graphql-e2e-tests/tests/consistency/objects_pagination_single.exp @@ -7,24 +7,24 @@ task 1, lines 11-28: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 5456800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5456800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 30: //# run Test::M1::create --args 0 @A created: object(2,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 3, line 32: //# run Test::M1::create --args 1 @A created: object(3,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 4, line 34: //# run Test::M1::update --sender A --args 100 object(2,0) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 1314800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 1314800, non_refundable_storage_fee: 0 task 5, line 36: //# create-checkpoint @@ -63,7 +63,7 @@ Response: { task 7, line 68: //# run Test::M1::update --sender A --args 200 object(2,0) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 2302800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 2302800, non_refundable_storage_fee: 0 task 8, line 70: //# create-checkpoint @@ -194,7 +194,7 @@ Response: { task 11, line 180: //# run Test::M1::update --sender A --args 300 object(3,0) mutated: object(0,0), object(3,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 2302800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 2302800, non_refundable_storage_fee: 0 task 12, line 182: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/consistency/performance/many_objects.exp b/crates/iota-graphql-e2e-tests/tests/consistency/performance/many_objects.exp index 9fe41ff7c64..258c402f1dd 100644 --- a/crates/iota-graphql-e2e-tests/tests/consistency/performance/many_objects.exp +++ b/crates/iota-graphql-e2e-tests/tests/consistency/performance/many_objects.exp @@ -7,13 +7,13 @@ task 1, lines 13-36: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 6118000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6118000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 38: //# run Test::M1::create_many --sender A --args @A created: object(2,0), object(2,1), object(2,2), object(2,3), object(2,4), object(2,5), object(2,6), object(2,7), object(2,8), object(2,9), object(2,10), object(2,11), object(2,12), object(2,13), object(2,14), object(2,15), object(2,16), object(2,17), object(2,18), object(2,19), object(2,20), object(2,21), object(2,22), object(2,23), object(2,24), object(2,25), object(2,26), object(2,27), object(2,28), object(2,29), object(2,30), object(2,31), object(2,32), object(2,33), object(2,34), object(2,35), object(2,36), object(2,37), object(2,38), object(2,39), object(2,40), object(2,41), object(2,42), object(2,43), object(2,44), object(2,45), object(2,46), object(2,47), object(2,48), object(2,49), object(2,50), object(2,51), object(2,52), object(2,53), object(2,54), object(2,55), object(2,56), object(2,57), object(2,58), object(2,59), object(2,60), object(2,61), object(2,62), object(2,63), object(2,64), object(2,65), object(2,66), object(2,67), object(2,68), object(2,69), object(2,70), object(2,71), object(2,72), object(2,73), object(2,74), object(2,75), object(2,76), object(2,77), object(2,78), object(2,79), object(2,80), object(2,81), object(2,82), object(2,83), object(2,84), object(2,85), object(2,86), object(2,87), object(2,88), object(2,89), object(2,90), object(2,91), object(2,92), object(2,93), object(2,94), object(2,95), object(2,96), object(2,97), object(2,98), object(2,99), object(2,100), object(2,101), object(2,102), object(2,103), object(2,104), object(2,105), object(2,106), object(2,107), object(2,108), object(2,109), object(2,110), object(2,111), object(2,112), object(2,113), object(2,114), object(2,115), object(2,116), object(2,117), object(2,118), object(2,119), object(2,120), object(2,121), object(2,122), object(2,123), object(2,124), object(2,125), object(2,126), object(2,127), object(2,128), object(2,129), object(2,130), object(2,131), object(2,132), object(2,133), object(2,134), object(2,135), object(2,136), object(2,137), object(2,138), object(2,139), object(2,140), object(2,141), object(2,142), object(2,143), object(2,144), object(2,145), object(2,146), object(2,147), object(2,148), object(2,149), object(2,150), object(2,151), object(2,152), object(2,153), object(2,154), object(2,155), object(2,156), object(2,157), object(2,158), object(2,159), object(2,160), object(2,161), object(2,162), object(2,163), object(2,164), object(2,165), object(2,166), object(2,167), object(2,168), object(2,169), object(2,170), object(2,171), object(2,172), object(2,173), object(2,174), object(2,175), object(2,176), object(2,177), object(2,178), object(2,179), object(2,180), object(2,181), object(2,182), object(2,183), object(2,184), object(2,185), object(2,186), object(2,187), object(2,188), object(2,189), object(2,190), object(2,191), object(2,192), object(2,193), object(2,194), object(2,195), object(2,196), object(2,197), object(2,198), object(2,199), object(2,200), object(2,201), object(2,202), object(2,203), object(2,204), object(2,205), object(2,206), object(2,207), object(2,208), object(2,209), object(2,210), object(2,211), object(2,212), object(2,213), object(2,214), object(2,215), object(2,216), object(2,217), object(2,218), object(2,219), object(2,220), object(2,221), object(2,222), object(2,223), object(2,224), object(2,225), object(2,226), object(2,227), object(2,228), object(2,229), object(2,230), object(2,231), object(2,232), object(2,233), object(2,234), object(2,235), object(2,236), object(2,237), object(2,238), object(2,239), object(2,240), object(2,241), object(2,242), object(2,243), object(2,244), object(2,245), object(2,246), object(2,247), object(2,248), object(2,249), object(2,250), object(2,251), object(2,252), object(2,253), object(2,254), object(2,255), object(2,256), object(2,257), object(2,258), object(2,259), object(2,260), object(2,261), object(2,262), object(2,263), object(2,264), object(2,265), object(2,266), object(2,267), object(2,268), object(2,269), object(2,270), object(2,271), object(2,272), object(2,273), object(2,274), object(2,275), object(2,276), object(2,277), object(2,278), object(2,279), object(2,280), object(2,281), object(2,282), object(2,283), object(2,284), object(2,285), object(2,286), object(2,287), object(2,288), object(2,289), object(2,290), object(2,291), object(2,292), object(2,293), object(2,294), object(2,295), object(2,296), object(2,297), object(2,298), object(2,299), object(2,300), object(2,301), object(2,302), object(2,303), object(2,304), object(2,305), object(2,306), object(2,307), object(2,308), object(2,309), object(2,310), object(2,311), object(2,312), object(2,313), object(2,314), object(2,315), object(2,316), object(2,317), object(2,318), object(2,319), object(2,320), object(2,321), object(2,322), object(2,323), object(2,324), object(2,325), object(2,326), object(2,327), object(2,328), object(2,329), object(2,330), object(2,331), object(2,332), object(2,333), object(2,334), object(2,335), object(2,336), object(2,337), object(2,338), object(2,339), object(2,340), object(2,341), object(2,342), object(2,343), object(2,344), object(2,345), object(2,346), object(2,347), object(2,348), object(2,349), object(2,350), object(2,351), object(2,352), object(2,353), object(2,354), object(2,355), object(2,356), object(2,357), object(2,358), object(2,359), object(2,360), object(2,361), object(2,362), object(2,363), object(2,364), object(2,365), object(2,366), object(2,367), object(2,368), object(2,369), object(2,370), object(2,371), object(2,372), object(2,373), object(2,374), object(2,375), object(2,376), object(2,377), object(2,378), object(2,379), object(2,380), object(2,381), object(2,382), object(2,383), object(2,384), object(2,385), object(2,386), object(2,387), object(2,388), object(2,389), object(2,390), object(2,391), object(2,392), object(2,393), object(2,394), object(2,395), object(2,396), object(2,397), object(2,398), object(2,399), object(2,400), object(2,401), object(2,402), object(2,403), object(2,404), object(2,405), object(2,406), object(2,407), object(2,408), object(2,409), object(2,410), object(2,411), object(2,412), object(2,413), object(2,414), object(2,415), object(2,416), object(2,417), object(2,418), object(2,419), object(2,420), object(2,421), object(2,422), object(2,423), object(2,424), object(2,425), object(2,426), object(2,427), object(2,428), object(2,429), object(2,430), object(2,431), object(2,432), object(2,433), object(2,434), object(2,435), object(2,436), object(2,437), object(2,438), object(2,439), object(2,440), object(2,441), object(2,442), object(2,443), object(2,444), object(2,445), object(2,446), object(2,447), object(2,448), object(2,449), object(2,450), object(2,451), object(2,452), object(2,453), object(2,454), object(2,455), object(2,456), object(2,457), object(2,458), object(2,459), object(2,460), object(2,461), object(2,462), object(2,463), object(2,464), object(2,465), object(2,466), object(2,467), object(2,468), object(2,469), object(2,470), object(2,471), object(2,472), object(2,473), object(2,474), object(2,475), object(2,476), object(2,477), object(2,478), object(2,479), object(2,480), object(2,481), object(2,482), object(2,483), object(2,484), object(2,485), object(2,486), object(2,487), object(2,488), object(2,489), object(2,490), object(2,491), object(2,492), object(2,493), object(2,494), object(2,495), object(2,496), object(2,497), object(2,498), object(2,499) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 658388000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 658388000, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 40: //# create-checkpoint 2 @@ -141,17 +141,17 @@ Response: { task 5, line 85: //# transfer-object 2,499 --sender A --recipient B mutated: object(0,0), object(2,499) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 2302800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 2302800, non_refundable_storage_fee: 0 task 6, line 87: //# transfer-object 2,498 --sender A --recipient B mutated: object(0,0), object(2,498) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 2302800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 2302800, non_refundable_storage_fee: 0 task 7, line 89: //# transfer-object 2,497 --sender A --recipient B mutated: object(0,0), object(2,497) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 2302800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 2302800, non_refundable_storage_fee: 0 task 8, line 91: //# view-object 2,498 diff --git a/crates/iota-graphql-e2e-tests/tests/consistency/staked_iota.exp b/crates/iota-graphql-e2e-tests/tests/consistency/staked_iota.exp index f903c004684..da6af30b173 100644 --- a/crates/iota-graphql-e2e-tests/tests/consistency/staked_iota.exp +++ b/crates/iota-graphql-e2e-tests/tests/consistency/staked_iota.exp @@ -21,7 +21,7 @@ task 2, lines 21-23: //> TransferObjects([Result(0)], Input(1)) created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 1976000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 1976000, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 25: //# run 0x3::iota_system::request_add_stake --args object(0x5) object(2,0) @validator_0 --sender C @@ -29,7 +29,7 @@ events: Event { package_id: iota_system, transaction_module: Identifier("iota_sy created: object(3,0) mutated: object(_), 0x0000000000000000000000000000000000000000000000000000000000000005, object(0,0) deleted: object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 14523600, storage_rebate: 1976000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 14523600, storage_rebate: 1976000, non_refundable_storage_fee: 0 task 4, line 27: //# create-checkpoint @@ -45,7 +45,7 @@ task 6, lines 31-33: //> TransferObjects([Result(0)], Input(1)) created: object(6,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 1976000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 1976000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 7, line 35: //# run 0x3::iota_system::request_add_stake --args object(0x5) object(6,0) @validator_0 --sender C @@ -53,7 +53,7 @@ events: Event { package_id: iota_system, transaction_module: Identifier("iota_sy created: object(7,0) mutated: object(_), 0x0000000000000000000000000000000000000000000000000000000000000005, object(0,0) deleted: object(6,0) -gas summary: computation_cost: 1000000, storage_cost: 14523600, storage_rebate: 14219600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 14523600, storage_rebate: 14219600, non_refundable_storage_fee: 0 task 8, line 37: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/consistency/tx_address_objects.exp b/crates/iota-graphql-e2e-tests/tests/consistency/tx_address_objects.exp index b1fe2560fae..af61462194d 100644 --- a/crates/iota-graphql-e2e-tests/tests/consistency/tx_address_objects.exp +++ b/crates/iota-graphql-e2e-tests/tests/consistency/tx_address_objects.exp @@ -7,14 +7,14 @@ task 1, lines 18-35: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 5479600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5479600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 37-38: //# programmable --sender A --inputs 0 1 @A //> 0: Test::M1::create(Input(0), Input(2)); created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 40: //# create-checkpoint @@ -27,7 +27,7 @@ task 4, lines 42-45: //> Test::M1::create(Input(3), Input(4)); created: object(4,0), object(4,1) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 4932400, storage_rebate: 2302800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4932400, storage_rebate: 2302800, non_refundable_storage_fee: 0 task 5, line 47: //# create-checkpoint @@ -41,7 +41,7 @@ task 6, lines 49-53: //> Test::M1::create(Input(4), Input(5)); created: object(6,0), object(6,1), object(6,2) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 6247200, storage_rebate: 2302800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6247200, storage_rebate: 2302800, non_refundable_storage_fee: 0 task 7, line 55: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/epoch/chain_identifier.exp b/crates/iota-graphql-e2e-tests/tests/epoch/chain_identifier.exp index e4a97219410..c3295dfcbae 100644 --- a/crates/iota-graphql-e2e-tests/tests/epoch/chain_identifier.exp +++ b/crates/iota-graphql-e2e-tests/tests/epoch/chain_identifier.exp @@ -11,6 +11,6 @@ task 2, lines 10-13: //# run-graphql Response: { "data": { - "chainIdentifier": "08ff9a17" + "chainIdentifier": "10b3fc91" } } diff --git a/crates/iota-graphql-e2e-tests/tests/epoch/epoch.exp b/crates/iota-graphql-e2e-tests/tests/epoch/epoch.exp index 178178d4fa9..aee30338676 100644 --- a/crates/iota-graphql-e2e-tests/tests/epoch/epoch.exp +++ b/crates/iota-graphql-e2e-tests/tests/epoch/epoch.exp @@ -17,7 +17,7 @@ task 3, lines 13-15: //> TransferObjects([Result(0)], Input(1)) created: object(3,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 1976000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 1976000, storage_rebate: 0, non_refundable_storage_fee: 0 task 4, lines 17-19: //# run 0x3::iota_system::request_add_stake --args object(0x5) object(3,0) @validator_0 --sender C @@ -25,7 +25,7 @@ events: Event { package_id: iota_system, transaction_module: Identifier("iota_sy created: object(4,0) mutated: object(_), 0x0000000000000000000000000000000000000000000000000000000000000005, object(0,0) deleted: object(3,0) -gas summary: computation_cost: 1000000, storage_cost: 14523600, storage_rebate: 1976000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 14523600, storage_rebate: 1976000, non_refundable_storage_fee: 0 task 5, line 20: //# create-checkpoint @@ -42,7 +42,7 @@ task 7, lines 25-29: // TODO: Short term hack to get around indexer epoch issue created: object(7,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 1976000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 1976000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 8, line 30: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/epoch/system_state.exp b/crates/iota-graphql-e2e-tests/tests/epoch/system_state.exp index e18544be743..1a9970af0c9 100644 --- a/crates/iota-graphql-e2e-tests/tests/epoch/system_state.exp +++ b/crates/iota-graphql-e2e-tests/tests/epoch/system_state.exp @@ -17,7 +17,7 @@ task 3, lines 15-17: //> TransferObjects([Result(0)], Input(1)) created: object(3,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 1976000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 1976000, storage_rebate: 0, non_refundable_storage_fee: 0 task 4, line 19: //# run 0x3::iota_system::request_add_stake --args object(0x5) object(3,0) @validator_0 --sender C @@ -25,7 +25,7 @@ events: Event { package_id: iota_system, transaction_module: Identifier("iota_sy created: object(4,0) mutated: object(_), 0x0000000000000000000000000000000000000000000000000000000000000005, object(0,0) deleted: object(3,0) -gas summary: computation_cost: 1000000, storage_cost: 14523600, storage_rebate: 1976000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 14523600, storage_rebate: 1976000, non_refundable_storage_fee: 0 task 5, line 21: //# create-checkpoint @@ -49,7 +49,7 @@ task 9, lines 29-31: //> TransferObjects([Result(0)], Input(1)) created: object(9,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 1976000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 1976000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 10, line 33: //# create-checkpoint @@ -65,7 +65,7 @@ events: Event { package_id: iota_system, transaction_module: Identifier("iota_sy created: object(12,0) mutated: object(_), 0x0000000000000000000000000000000000000000000000000000000000000005, object(0,0) deleted: object(4,0) -gas summary: computation_cost: 1000000, storage_cost: 14219600, storage_rebate: 14523600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 14219600, storage_rebate: 14523600, non_refundable_storage_fee: 0 task 13, line 39: //# create-checkpoint @@ -81,7 +81,7 @@ task 15, lines 43-45: //> TransferObjects([Result(0)], Input(1)) created: object(15,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 1976000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 1976000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 16, line 47: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/errors/clever_errors.exp b/crates/iota-graphql-e2e-tests/tests/errors/clever_errors.exp index 12d61755a32..66dd3ae9b1c 100644 --- a/crates/iota-graphql-e2e-tests/tests/errors/clever_errors.exp +++ b/crates/iota-graphql-e2e-tests/tests/errors/clever_errors.exp @@ -7,7 +7,7 @@ task 1, lines 7-82: //# publish --upgradeable --sender A created: object(1,0), object(1,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 9743200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 9743200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 84: //# run P0::m::callU8 @@ -149,7 +149,7 @@ task 15, lines 120-198: //# upgrade --package P0 --upgrade-capability 1,0 --sender A created: object(15,0) mutated: object(0,0), object(1,0) -gas summary: computation_cost: 1000000, storage_cost: 9849600, storage_rebate: 2622000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 9849600, storage_rebate: 2622000, non_refundable_storage_fee: 0 task 16, line 200: //# run P0::m::callU8 diff --git a/crates/iota-graphql-e2e-tests/tests/errors/clever_errors_in_macros.exp b/crates/iota-graphql-e2e-tests/tests/errors/clever_errors_in_macros.exp index 32ecf97944f..69167ac740b 100644 --- a/crates/iota-graphql-e2e-tests/tests/errors/clever_errors_in_macros.exp +++ b/crates/iota-graphql-e2e-tests/tests/errors/clever_errors_in_macros.exp @@ -7,7 +7,7 @@ task 1, lines 7-35: //# publish --sender A created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4187600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4187600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 37: //# run P0::m::t_a diff --git a/crates/iota-graphql-e2e-tests/tests/event_connection/combo_filter_error.exp b/crates/iota-graphql-e2e-tests/tests/event_connection/combo_filter_error.exp index 62475c2f565..2bbf99465fb 100644 --- a/crates/iota-graphql-e2e-tests/tests/event_connection/combo_filter_error.exp +++ b/crates/iota-graphql-e2e-tests/tests/event_connection/combo_filter_error.exp @@ -7,13 +7,13 @@ task 1, lines 10-29: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 5380800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5380800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 31: //# run Test::M2::emit_emit_a --sender A --args 20 events: Event { package_id: Test, transaction_module: Identifier("M2"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [20, 0, 0, 0, 0, 0, 0, 0] } mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 33: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/event_connection/event_connection.exp b/crates/iota-graphql-e2e-tests/tests/event_connection/event_connection.exp index 321e1b0ba81..b84b8712f05 100644 --- a/crates/iota-graphql-e2e-tests/tests/event_connection/event_connection.exp +++ b/crates/iota-graphql-e2e-tests/tests/event_connection/event_connection.exp @@ -7,43 +7,43 @@ task 1, lines 15-82: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 11263200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 11263200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 84: //# run Test::M1::create --sender A --args 0 @A created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 86: //# run Test::M1::emit_a --sender A --args object(2,0) 0 events: Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [0, 0, 0, 0, 0, 0, 0, 0] } mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 2302800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 2302800, non_refundable_storage_fee: 0 task 4, line 88: //# run Test::M1::emit_b --sender A --args object(2,0) 1 events: Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventB"), type_params: [Struct(StructTag { address: Test, module: Identifier("M1"), name: Identifier("Object"), type_params: [] })] }, contents: [1, 0, 0, 0, 0, 0, 0, 0] } mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 2302800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 2302800, non_refundable_storage_fee: 0 task 5, line 90: //# run Test::M2::create --sender A --args 2 @A created: object(5,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 6, line 92: //# run Test::M2::emit_a --sender A --args object(5,0) 2 events: Event { package_id: Test, transaction_module: Identifier("M2"), sender: A, type_: StructTag { address: Test, module: Identifier("M2"), name: Identifier("EventA"), type_params: [] }, contents: [2, 0, 0, 0, 0, 0, 0, 0] } mutated: object(0,0), object(5,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 2302800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 2302800, non_refundable_storage_fee: 0 task 7, line 94: //# run Test::M2::emit_b --sender A --args object(5,0) 3 events: Event { package_id: Test, transaction_module: Identifier("M2"), sender: A, type_: StructTag { address: Test, module: Identifier("M2"), name: Identifier("EventB"), type_params: [Struct(StructTag { address: Test, module: Identifier("M2"), name: Identifier("Object"), type_params: [] })] }, contents: [3, 0, 0, 0, 0, 0, 0, 0] } mutated: object(0,0), object(5,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 2302800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 2302800, non_refundable_storage_fee: 0 task 8, line 96: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/event_connection/nested_emit_event.exp b/crates/iota-graphql-e2e-tests/tests/event_connection/nested_emit_event.exp index 82ef64a1e28..3beb07c0941 100644 --- a/crates/iota-graphql-e2e-tests/tests/event_connection/nested_emit_event.exp +++ b/crates/iota-graphql-e2e-tests/tests/event_connection/nested_emit_event.exp @@ -7,13 +7,13 @@ task 1, lines 11-38: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 6095200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6095200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 40: //# run Test::M3::yeet --sender A --args 2 events: Event { package_id: Test, transaction_module: Identifier("M3"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [2, 0, 0, 0, 0, 0, 0, 0] } mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 42: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/event_connection/no_filter.exp b/crates/iota-graphql-e2e-tests/tests/event_connection/no_filter.exp index d01197e6dd1..775de754163 100644 --- a/crates/iota-graphql-e2e-tests/tests/event_connection/no_filter.exp +++ b/crates/iota-graphql-e2e-tests/tests/event_connection/no_filter.exp @@ -7,13 +7,13 @@ task 1, lines 7-26: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 4970400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4970400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 28: //# run Test::M1::emit --sender A --args 0 events: Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [0, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [1, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [2, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [3, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [4, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [5, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [6, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [7, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [8, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [9, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [10, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [11, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [12, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [13, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [14, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [15, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [16, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [17, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [18, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [19, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [20, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [21, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [22, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [23, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [24, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [25, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [26, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [27, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [28, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [29, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [30, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [31, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [32, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [33, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [34, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [35, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [36, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [37, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [38, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [39, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [40, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [41, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [42, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [43, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [44, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [45, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [46, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [47, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [48, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [49, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [50, 0, 0, 0, 0, 0, 0, 0] } mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 30: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/event_connection/pagination.exp b/crates/iota-graphql-e2e-tests/tests/event_connection/pagination.exp index 91fd65462c5..1030f616256 100644 --- a/crates/iota-graphql-e2e-tests/tests/event_connection/pagination.exp +++ b/crates/iota-graphql-e2e-tests/tests/event_connection/pagination.exp @@ -7,19 +7,19 @@ task 1, lines 7-23: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 4818400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4818400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 25: //# run Test::M1::emit_1 --sender A --args 0 events: Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [0, 0, 0, 0, 0, 0, 0, 0] } mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 27: //# run Test::M1::emit_2 --sender A --args 1 events: Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [1, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [2, 0, 0, 0, 0, 0, 0, 0] } mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 4, line 29: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/event_connection/tx_digest.exp b/crates/iota-graphql-e2e-tests/tests/event_connection/tx_digest.exp index 82b88b85aa9..e242cd6d838 100644 --- a/crates/iota-graphql-e2e-tests/tests/event_connection/tx_digest.exp +++ b/crates/iota-graphql-e2e-tests/tests/event_connection/tx_digest.exp @@ -7,24 +7,24 @@ task 1, lines 11-27: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 4795600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4795600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 29: //# run Test::M1::no_emit --sender A --args 0 mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 31: //# run Test::M1::emit_2 --sender A --args 2 events: Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [2, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [3, 0, 0, 0, 0, 0, 0, 0] } mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 4, line 33: //# run Test::M1::emit_2 --sender B --args 4 events: Event { package_id: Test, transaction_module: Identifier("M1"), sender: B, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [4, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: B, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [5, 0, 0, 0, 0, 0, 0, 0] } mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 0, non_refundable_storage_fee: 0 task 5, line 35: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/event_connection/type_filter.exp b/crates/iota-graphql-e2e-tests/tests/event_connection/type_filter.exp index ff74717b3ca..7523249de2c 100644 --- a/crates/iota-graphql-e2e-tests/tests/event_connection/type_filter.exp +++ b/crates/iota-graphql-e2e-tests/tests/event_connection/type_filter.exp @@ -7,13 +7,13 @@ task 1, lines 7-35: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 6604400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6604400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 37: //# run Test::M2::emit_emit_a --sender A --args 20 events: Event { package_id: Test, transaction_module: Identifier("M2"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [20, 0, 0, 0, 0, 0, 0, 0] } mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 39: //# create-checkpoint @@ -49,13 +49,13 @@ task 5, line 60: //# run Test::M2::emit_b --sender A --args 42 events: Event { package_id: Test, transaction_module: Identifier("M2"), sender: A, type_: StructTag { address: Test, module: Identifier("M2"), name: Identifier("EventB"), type_params: [] }, contents: [42, 0, 0, 0, 0, 0, 0, 0] } mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 6, line 62: //# run Test::M2::emit_b --sender B --args 43 events: Event { package_id: Test, transaction_module: Identifier("M2"), sender: B, type_: StructTag { address: Test, module: Identifier("M2"), name: Identifier("EventB"), type_params: [] }, contents: [43, 0, 0, 0, 0, 0, 0, 0] } mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 0, non_refundable_storage_fee: 0 task 7, line 64: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/event_connection/type_param_filter.exp b/crates/iota-graphql-e2e-tests/tests/event_connection/type_param_filter.exp index bb10e9510cd..2c7e2e34c4d 100644 --- a/crates/iota-graphql-e2e-tests/tests/event_connection/type_param_filter.exp +++ b/crates/iota-graphql-e2e-tests/tests/event_connection/type_param_filter.exp @@ -7,25 +7,25 @@ task 1, lines 7-30: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 5996400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5996400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 33: //# run Test::M1::emit_T1 --sender A events: Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [Struct(StructTag { address: Test, module: Identifier("M1"), name: Identifier("T1"), type_params: [] })] }, contents: [0] } mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 35: //# run Test::M1::emit_T2 --sender A events: Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [Struct(StructTag { address: Test, module: Identifier("M1"), name: Identifier("T2"), type_params: [] })] }, contents: [0] } mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 4, line 37: //# run Test::M1::emit_both --sender A events: Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [Struct(StructTag { address: Test, module: Identifier("M1"), name: Identifier("T1"), type_params: [] })] }, contents: [0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [Struct(StructTag { address: Test, module: Identifier("M1"), name: Identifier("T2"), type_params: [] })] }, contents: [0] } mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 5, line 39: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/limits/directives.exp b/crates/iota-graphql-e2e-tests/tests/limits/directives.exp index 7127ef4b2f8..963f0cf8917 100644 --- a/crates/iota-graphql-e2e-tests/tests/limits/directives.exp +++ b/crates/iota-graphql-e2e-tests/tests/limits/directives.exp @@ -73,7 +73,7 @@ task 5, lines 59-63: //# run-graphql Response: { "data": { - "chainIdentifier": "08ff9a17" + "chainIdentifier": "10b3fc91" } } @@ -81,7 +81,7 @@ task 6, lines 65-69: //# run-graphql Response: { "data": { - "chainIdentifier": "08ff9a17" + "chainIdentifier": "10b3fc91" } } diff --git a/crates/iota-graphql-e2e-tests/tests/objects/coin.exp b/crates/iota-graphql-e2e-tests/tests/objects/coin.exp index 210d775ee2c..a14891bae7c 100644 --- a/crates/iota-graphql-e2e-tests/tests/objects/coin.exp +++ b/crates/iota-graphql-e2e-tests/tests/objects/coin.exp @@ -8,7 +8,7 @@ task 1, lines 7-34: created: object(1,0), object(1,1), object(1,2), object(1,3), object(1,4), object(1,5) mutated: object(0,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 15663600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 15663600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 36: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/objects/data.exp b/crates/iota-graphql-e2e-tests/tests/objects/data.exp index a55c269d8d4..a7e7ce84fe3 100644 --- a/crates/iota-graphql-e2e-tests/tests/objects/data.exp +++ b/crates/iota-graphql-e2e-tests/tests/objects/data.exp @@ -7,7 +7,7 @@ task 1, lines 7-40: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 7622800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7622800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 42-44: //# programmable --inputs @A @@ -15,7 +15,7 @@ task 2, lines 42-44: //> TransferObjects([Result(0)], Input(0)) created: object(2,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2910800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2910800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 3, line 46: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/objects/display.exp b/crates/iota-graphql-e2e-tests/tests/objects/display.exp index f21368482bb..f353c959883 100644 --- a/crates/iota-graphql-e2e-tests/tests/objects/display.exp +++ b/crates/iota-graphql-e2e-tests/tests/objects/display.exp @@ -8,7 +8,7 @@ task 1, lines 7-131: events: Event { package_id: Test, transaction_module: Identifier("boars"), sender: A, type_: StructTag { address: iota, module: Identifier("display"), name: Identifier("DisplayCreated"), type_params: [Struct(StructTag { address: Test, module: Identifier("boars"), name: Identifier("Boar"), type_params: [] })] }, contents: [45, 198, 118, 89, 25, 59, 63, 15, 172, 84, 131, 28, 154, 55, 104, 81, 60, 196, 90, 4, 49, 136, 231, 75, 196, 127, 52, 48, 126, 156, 18, 227] } created: object(1,0), object(1,1), object(1,2) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 21470000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 21470000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 133: //# create-checkpoint @@ -16,20 +16,20 @@ Checkpoint created: 1 task 3, line 135: //# view-checkpoint -CheckpointSummary { epoch: 0, seq: 1, content_digest: 3dvEAumcNUKy7sveksovXvSCGVgkauvgfEEY2bKTQTB7, - epoch_rolling_gas_cost_summary: GasCostSummary { computation_cost: 1000000, storage_cost: 21470000, storage_rebate: 0, non_refundable_storage_fee: 0 }} +CheckpointSummary { epoch: 0, seq: 1, content_digest: 7kLCsxTiWkQDELn7Z9pPWbXNrMfj2e8MLZDACViZzS7a, + epoch_rolling_gas_cost_summary: GasCostSummary { computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 21470000, storage_rebate: 0, non_refundable_storage_fee: 0 }} task 4, line 137: //# run Test::boars::create_bear --sender A created: object(4,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3556800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3556800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 5, line 139: //# run Test::boars::update_display_faulty --sender A --args object(1,1) events: Event { package_id: Test, transaction_module: Identifier("boars"), sender: A, type_: StructTag { address: iota, module: Identifier("display"), name: Identifier("VersionUpdated"), type_params: [Struct(StructTag { address: Test, module: Identifier("boars"), name: Identifier("Boar"), type_params: [] })] }, contents: [45, 198, 118, 89, 25, 59, 63, 15, 172, 84, 131, 28, 154, 55, 104, 81, 60, 196, 90, 4, 49, 136, 231, 75, 196, 127, 52, 48, 126, 156, 18, 227, 1, 0, 3, 7, 118, 101, 99, 116, 111, 114, 115, 5, 123, 118, 101, 99, 125, 3, 105, 100, 100, 5, 123, 105, 100, 100, 125, 5, 110, 97, 109, 101, 101, 7, 123, 110, 97, 109, 101, 101, 125] } mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 2941200, storage_rebate: 2652400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2941200, storage_rebate: 2652400, non_refundable_storage_fee: 0 task 6, line 141: //# create-checkpoint @@ -37,8 +37,8 @@ Checkpoint created: 2 task 7, line 143: //# view-checkpoint -CheckpointSummary { epoch: 0, seq: 2, content_digest: FwvP3KaQW7qg7WBvf5wrv1X565dt5taQ6BGoXVkTUpcz, - epoch_rolling_gas_cost_summary: GasCostSummary { computation_cost: 3000000, storage_cost: 27968000, storage_rebate: 3640400, non_refundable_storage_fee: 0 }} +CheckpointSummary { epoch: 0, seq: 2, content_digest: 8Nc9NbgSLpjhoWKJs96VNGspdotAuwn4yJkcwiduj9FA, + epoch_rolling_gas_cost_summary: GasCostSummary { computation_cost: 3000000, computation_cost_burned: 3000000, storage_cost: 27968000, storage_rebate: 3640400, non_refundable_storage_fee: 0 }} task 8, lines 145-158: //# run-graphql @@ -76,7 +76,7 @@ task 9, line 160: //# run Test::boars::single_add --sender A --args object(1,1) events: Event { package_id: Test, transaction_module: Identifier("boars"), sender: A, type_: StructTag { address: iota, module: Identifier("display"), name: Identifier("VersionUpdated"), type_params: [Struct(StructTag { address: Test, module: Identifier("boars"), name: Identifier("Boar"), type_params: [] })] }, contents: [45, 198, 118, 89, 25, 59, 63, 15, 172, 84, 131, 28, 154, 55, 104, 81, 60, 196, 90, 4, 49, 136, 231, 75, 196, 127, 52, 48, 126, 156, 18, 227, 2, 0, 4, 7, 118, 101, 99, 116, 111, 114, 115, 5, 123, 118, 101, 99, 125, 3, 105, 100, 100, 5, 123, 105, 100, 100, 125, 5, 110, 97, 109, 101, 101, 7, 123, 110, 97, 109, 101, 101, 125, 4, 110, 117, 109, 115, 6, 123, 110, 117, 109, 115, 125] } mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 3032400, storage_rebate: 2941200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3032400, storage_rebate: 2941200, non_refundable_storage_fee: 0 task 10, line 162: //# create-checkpoint @@ -84,8 +84,8 @@ Checkpoint created: 3 task 11, line 164: //# view-checkpoint -CheckpointSummary { epoch: 0, seq: 3, content_digest: 9Bp6PrWcsMVx7KXc3GQzVYqq9jFrdtzpC84ALe3frFye, - epoch_rolling_gas_cost_summary: GasCostSummary { computation_cost: 4000000, storage_cost: 31000400, storage_rebate: 6581600, non_refundable_storage_fee: 0 }} +CheckpointSummary { epoch: 0, seq: 3, content_digest: 6Jbra32rwqb6rEqrMmpigDRKzuEaqP6Zqo3fBNCyLr18, + epoch_rolling_gas_cost_summary: GasCostSummary { computation_cost: 4000000, computation_cost_burned: 4000000, storage_cost: 31000400, storage_rebate: 6581600, non_refundable_storage_fee: 0 }} task 12, lines 166-179: //# run-graphql @@ -128,7 +128,7 @@ task 13, line 181: //# run Test::boars::multi_add --sender A --args object(1,1) events: Event { package_id: Test, transaction_module: Identifier("boars"), sender: A, type_: StructTag { address: iota, module: Identifier("display"), name: Identifier("VersionUpdated"), type_params: [Struct(StructTag { address: Test, module: Identifier("boars"), name: Identifier("Boar"), type_params: [] })] }, contents: [45, 198, 118, 89, 25, 59, 63, 15, 172, 84, 131, 28, 154, 55, 104, 81, 60, 196, 90, 4, 49, 136, 231, 75, 196, 127, 52, 48, 126, 156, 18, 227, 3, 0, 15, 7, 118, 101, 99, 116, 111, 114, 115, 5, 123, 118, 101, 99, 125, 3, 105, 100, 100, 5, 123, 105, 100, 100, 125, 5, 110, 97, 109, 101, 101, 7, 123, 110, 97, 109, 101, 101, 125, 4, 110, 117, 109, 115, 6, 123, 110, 117, 109, 115, 125, 5, 98, 111, 111, 108, 115, 7, 123, 98, 111, 111, 108, 115, 125, 5, 98, 117, 121, 101, 114, 7, 123, 98, 117, 121, 101, 114, 125, 4, 110, 97, 109, 101, 6, 123, 110, 97, 109, 101, 125, 7, 99, 114, 101, 97, 116, 111, 114, 9, 123, 99, 114, 101, 97, 116, 111, 114, 125, 5, 112, 114, 105, 99, 101, 7, 123, 112, 114, 105, 99, 101, 125, 11, 112, 114, 111, 106, 101, 99, 116, 95, 117, 114, 108, 58, 85, 110, 105, 113, 117, 101, 32, 66, 111, 97, 114, 32, 102, 114, 111, 109, 32, 116, 104, 101, 32, 66, 111, 97, 114, 115, 32, 99, 111, 108, 108, 101, 99, 116, 105, 111, 110, 32, 119, 105, 116, 104, 32, 123, 110, 97, 109, 101, 125, 32, 97, 110, 100, 32, 123, 105, 100, 125, 8, 98, 97, 115, 101, 95, 117, 114, 108, 32, 104, 116, 116, 112, 115, 58, 47, 47, 103, 101, 116, 45, 97, 45, 98, 111, 97, 114, 46, 99, 111, 109, 47, 123, 105, 109, 103, 95, 117, 114, 108, 125, 11, 110, 111, 95, 116, 101, 109, 112, 108, 97, 116, 101, 23, 104, 116, 116, 112, 115, 58, 47, 47, 103, 101, 116, 45, 97, 45, 98, 111, 97, 114, 46, 99, 111, 109, 47, 3, 97, 103, 101, 21, 123, 109, 101, 116, 97, 100, 97, 116, 97, 46, 110, 101, 115, 116, 101, 100, 46, 97, 103, 101, 125, 8, 102, 117, 108, 108, 95, 117, 114, 108, 10, 123, 102, 117, 108, 108, 95, 117, 114, 108, 125, 13, 101, 115, 99, 97, 112, 101, 95, 115, 121, 110, 116, 97, 120, 8, 92, 123, 110, 97, 109, 101, 92, 125] } mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 5236400, storage_rebate: 3032400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5236400, storage_rebate: 3032400, non_refundable_storage_fee: 0 task 14, line 183: //# create-checkpoint @@ -136,8 +136,8 @@ Checkpoint created: 4 task 15, line 185: //# view-checkpoint -CheckpointSummary { epoch: 0, seq: 4, content_digest: BUktWMWFSWFXiKwCtLJoRtb9nPh7vDWTUWk2hyGHWWfP, - epoch_rolling_gas_cost_summary: GasCostSummary { computation_cost: 5000000, storage_cost: 36236800, storage_rebate: 9614000, non_refundable_storage_fee: 0 }} +CheckpointSummary { epoch: 0, seq: 4, content_digest: 6t8frtYetoMad5s2t7vtHrkdCZuAQv16cKVKiZ5G85yc, + epoch_rolling_gas_cost_summary: GasCostSummary { computation_cost: 5000000, computation_cost_burned: 5000000, storage_cost: 36236800, storage_rebate: 9614000, non_refundable_storage_fee: 0 }} task 16, lines 187-200: //# run-graphql diff --git a/crates/iota-graphql-e2e-tests/tests/objects/enum_data.exp b/crates/iota-graphql-e2e-tests/tests/objects/enum_data.exp index 20f8e38dd4f..58bf8c7521c 100644 --- a/crates/iota-graphql-e2e-tests/tests/objects/enum_data.exp +++ b/crates/iota-graphql-e2e-tests/tests/objects/enum_data.exp @@ -7,7 +7,7 @@ task 1, lines 7-55: //# publish --upgradeable --sender A created: object(1,0), object(1,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 10510800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 10510800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 57-59: //# programmable --inputs @A @@ -15,7 +15,7 @@ task 2, lines 57-59: //> TransferObjects([Result(0)], Input(0)) created: object(2,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 3032400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3032400, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 61: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/objects/filter_by_type.exp b/crates/iota-graphql-e2e-tests/tests/objects/filter_by_type.exp index de7ec399151..92916acf1a0 100644 --- a/crates/iota-graphql-e2e-tests/tests/objects/filter_by_type.exp +++ b/crates/iota-graphql-e2e-tests/tests/objects/filter_by_type.exp @@ -17,7 +17,7 @@ task 3, lines 12-14: //> TransferObjects([Result(0)], Input(1)) created: object(3,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 1976000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 1976000, storage_rebate: 0, non_refundable_storage_fee: 0 task 4, lines 16-18: //# run 0x3::iota_system::request_add_stake --args object(0x5) object(3,0) @validator_0 --sender C @@ -25,7 +25,7 @@ events: Event { package_id: iota_system, transaction_module: Identifier("iota_sy created: object(4,0) mutated: object(_), 0x0000000000000000000000000000000000000000000000000000000000000005, object(0,0) deleted: object(3,0) -gas summary: computation_cost: 1000000, storage_cost: 14523600, storage_rebate: 1976000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 14523600, storage_rebate: 1976000, non_refundable_storage_fee: 0 task 5, line 19: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/objects/pagination.exp b/crates/iota-graphql-e2e-tests/tests/objects/pagination.exp index de39fe4966e..99b4c00b86a 100644 --- a/crates/iota-graphql-e2e-tests/tests/objects/pagination.exp +++ b/crates/iota-graphql-e2e-tests/tests/objects/pagination.exp @@ -4,37 +4,37 @@ task 1, lines 7-20: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5175600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5175600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 22-23: //# run Test::M1::create --args 0 @A created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 3, lines 25-26: //# run Test::M1::create --args 1 @A created: object(3,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 4, lines 28-29: //# run Test::M1::create --args 2 @A created: object(4,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 5, lines 31-32: //# run Test::M1::create --args 3 @A created: object(5,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 6, lines 34-35: //# run Test::M1::create --args 4 @A created: object(6,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 7, line 37: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/objects/public_transfer.exp b/crates/iota-graphql-e2e-tests/tests/objects/public_transfer.exp index a8490459adb..c6b5cd11c8c 100644 --- a/crates/iota-graphql-e2e-tests/tests/objects/public_transfer.exp +++ b/crates/iota-graphql-e2e-tests/tests/objects/public_transfer.exp @@ -7,7 +7,7 @@ task 1, lines 7-27: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 5570800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5570800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 29-32: //# programmable --inputs @A @@ -16,7 +16,7 @@ task 2, lines 29-32: //> TransferObjects([Result(0)], Input(0)) created: object(2,0), object(2,1) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 3435200, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3435200, storage_rebate: 988000, non_refundable_storage_fee: 0 task 3, line 34: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/objects/received.exp b/crates/iota-graphql-e2e-tests/tests/objects/received.exp index d1a09dc0ea4..1e220739916 100644 --- a/crates/iota-graphql-e2e-tests/tests/objects/received.exp +++ b/crates/iota-graphql-e2e-tests/tests/objects/received.exp @@ -16,7 +16,7 @@ task 2, lines 18-28: //# publish created: object(2,0), object(2,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 6353600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6353600, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 30: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/objects/staked_iota.exp b/crates/iota-graphql-e2e-tests/tests/objects/staked_iota.exp index 2f83f2c4c24..d21d350c5e3 100644 --- a/crates/iota-graphql-e2e-tests/tests/objects/staked_iota.exp +++ b/crates/iota-graphql-e2e-tests/tests/objects/staked_iota.exp @@ -35,7 +35,7 @@ task 2, lines 34-36: //> TransferObjects([Result(0)], Input(1)) created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 1976000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 1976000, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 38: //# run 0x3::iota_system::request_add_stake --args object(0x5) object(2,0) @validator_0 --sender C @@ -43,7 +43,7 @@ events: Event { package_id: iota_system, transaction_module: Identifier("iota_sy created: object(3,0) mutated: object(_), 0x0000000000000000000000000000000000000000000000000000000000000005, object(0,0) deleted: object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 14523600, storage_rebate: 1976000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 14523600, storage_rebate: 1976000, non_refundable_storage_fee: 0 task 4, line 40: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/owner/downcasts.exp b/crates/iota-graphql-e2e-tests/tests/owner/downcasts.exp index db71fb7324c..3f1ba80b6fa 100644 --- a/crates/iota-graphql-e2e-tests/tests/owner/downcasts.exp +++ b/crates/iota-graphql-e2e-tests/tests/owner/downcasts.exp @@ -9,7 +9,7 @@ task 1, lines 8-10: //> TransferObjects([Result(0)], Input(1)) created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 1976000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 1976000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 12: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/owner/root_version.exp b/crates/iota-graphql-e2e-tests/tests/owner/root_version.exp index 867a6027734..7a74e716f54 100644 --- a/crates/iota-graphql-e2e-tests/tests/owner/root_version.exp +++ b/crates/iota-graphql-e2e-tests/tests/owner/root_version.exp @@ -7,38 +7,38 @@ task 1, lines 7-87: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 10586800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 10586800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 89-90: //# run P0::M::new_o created: object(2,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2264800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2264800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 3, lines 92-93: //# run P0::M::new_w created: object(3,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2257200, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2257200, storage_rebate: 988000, non_refundable_storage_fee: 0 task 4, lines 95-96: //# run P0::M::new_dof created: object(4,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2272400, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2272400, storage_rebate: 988000, non_refundable_storage_fee: 0 task 5, lines 98-99: //# run P0::M::new_dof created: object(5,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2272400, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2272400, storage_rebate: 988000, non_refundable_storage_fee: 0 task 6, lines 102-105: //# run P0::M::connect --args object(2,0) object(3,0) object(4,0) object(5,0) created: object(6,0), object(6,1) mutated: object(0,1), object(2,0), object(4,0), object(5,0) wrapped: object(3,0) -gas summary: computation_cost: 1000000, storage_cost: 9940800, storage_rebate: 6102800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 9940800, storage_rebate: 6102800, non_refundable_storage_fee: 0 task 7, lines 107-109: //# view-object 2,0 @@ -68,22 +68,22 @@ Contents: P0::M::O { task 8, lines 111-112: //# run P0::M::touch_root --args object(2,0) mutated: object(0,1), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2568800, storage_rebate: 2568800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2568800, storage_rebate: 2568800, non_refundable_storage_fee: 0 task 9, lines 114-115: //# run P0::M::touch_wrapped --args object(2,0) mutated: object(0,1), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2568800, storage_rebate: 2568800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2568800, storage_rebate: 2568800, non_refundable_storage_fee: 0 task 10, lines 117-118: //# run P0::M::touch_inner --args object(2,0) mutated: object(0,1), object(2,0), object(4,0) -gas summary: computation_cost: 1000000, storage_cost: 3853200, storage_rebate: 3853200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3853200, storage_rebate: 3853200, non_refundable_storage_fee: 0 task 11, lines 120-121: //# run P0::M::touch_outer --args object(2,0) mutated: object(0,1), object(2,0), object(5,0) -gas summary: computation_cost: 1000000, storage_cost: 3853200, storage_rebate: 3853200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3853200, storage_rebate: 3853200, non_refundable_storage_fee: 0 task 12, line 123: //# view-object 2,0 diff --git a/crates/iota-graphql-e2e-tests/tests/packages/datatypes.exp b/crates/iota-graphql-e2e-tests/tests/packages/datatypes.exp index cc1dc1e78cc..e220601cc3c 100644 --- a/crates/iota-graphql-e2e-tests/tests/packages/datatypes.exp +++ b/crates/iota-graphql-e2e-tests/tests/packages/datatypes.exp @@ -140,7 +140,7 @@ task 2, lines 57-67: //# publish --upgradeable --sender A created: object(2,0), object(2,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5981200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5981200, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 69: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/packages/enums.exp b/crates/iota-graphql-e2e-tests/tests/packages/enums.exp index 07315f0899c..886fda7839b 100644 --- a/crates/iota-graphql-e2e-tests/tests/packages/enums.exp +++ b/crates/iota-graphql-e2e-tests/tests/packages/enums.exp @@ -7,7 +7,7 @@ task 1, lines 7-18: //# publish --upgradeable --sender A created: object(1,0), object(1,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5783600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5783600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 20: //# create-checkpoint @@ -107,7 +107,7 @@ task 4, lines 69-82: //# upgrade --package P0 --upgrade-capability 1,0 --sender A created: object(4,0) mutated: object(0,0), object(1,0) -gas summary: computation_cost: 1000000, storage_cost: 6657600, storage_rebate: 2622000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6657600, storage_rebate: 2622000, non_refundable_storage_fee: 0 task 5, line 84: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/packages/friends.exp b/crates/iota-graphql-e2e-tests/tests/packages/friends.exp index a1b40d7f362..6c2952bdcd7 100644 --- a/crates/iota-graphql-e2e-tests/tests/packages/friends.exp +++ b/crates/iota-graphql-e2e-tests/tests/packages/friends.exp @@ -7,7 +7,7 @@ task 1, lines 7-15: //# publish --upgradeable --sender A created: object(1,0), object(1,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 7379600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7379600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 17: //# create-checkpoint @@ -288,7 +288,7 @@ task 6, lines 175-184: //# upgrade --package P0 --upgrade-capability 1,0 --sender A created: object(6,0) mutated: object(0,0), object(1,0) -gas summary: computation_cost: 1000000, storage_cost: 8139600, storage_rebate: 2622000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 8139600, storage_rebate: 2622000, non_refundable_storage_fee: 0 task 7, line 186: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/packages/functions.exp b/crates/iota-graphql-e2e-tests/tests/packages/functions.exp index e2f843e9272..07911452bd5 100644 --- a/crates/iota-graphql-e2e-tests/tests/packages/functions.exp +++ b/crates/iota-graphql-e2e-tests/tests/packages/functions.exp @@ -77,7 +77,7 @@ task 2, lines 41-45: //# publish --upgradeable --sender A created: object(2,0), object(2,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5183200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5183200, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 47: //# create-checkpoint @@ -157,7 +157,7 @@ task 5, lines 89-94: //# upgrade --package P0 --upgrade-capability 2,0 --sender A created: object(5,0) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 5418800, storage_rebate: 2622000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5418800, storage_rebate: 2622000, non_refundable_storage_fee: 0 task 6, line 96: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/packages/modules.exp b/crates/iota-graphql-e2e-tests/tests/packages/modules.exp index 0c3e5a60167..304a58f5226 100644 --- a/crates/iota-graphql-e2e-tests/tests/packages/modules.exp +++ b/crates/iota-graphql-e2e-tests/tests/packages/modules.exp @@ -4,7 +4,7 @@ task 1, lines 7-32: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 6019200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6019200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 34: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/packages/structs.exp b/crates/iota-graphql-e2e-tests/tests/packages/structs.exp index ac930953794..29a0a7f9179 100644 --- a/crates/iota-graphql-e2e-tests/tests/packages/structs.exp +++ b/crates/iota-graphql-e2e-tests/tests/packages/structs.exp @@ -136,7 +136,7 @@ task 2, lines 53-57: //# publish --upgradeable --sender A created: object(2,0), object(2,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5213600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5213600, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 59: //# create-checkpoint @@ -206,7 +206,7 @@ task 5, lines 105-111: //# upgrade --package P0 --upgrade-capability 2,0 --sender A created: object(5,0) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 6049600, storage_rebate: 2622000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6049600, storage_rebate: 2622000, non_refundable_storage_fee: 0 task 6, line 113: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/packages/types.exp b/crates/iota-graphql-e2e-tests/tests/packages/types.exp index 41039c43d50..8e8f78a13e5 100644 --- a/crates/iota-graphql-e2e-tests/tests/packages/types.exp +++ b/crates/iota-graphql-e2e-tests/tests/packages/types.exp @@ -263,7 +263,7 @@ task 9, lines 124-141: //# publish created: object(9,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4461200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4461200, storage_rebate: 0, non_refundable_storage_fee: 0 task 10, line 143: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/packages/versioning.exp b/crates/iota-graphql-e2e-tests/tests/packages/versioning.exp index c219f87eea3..97cc1ff1ea0 100644 --- a/crates/iota-graphql-e2e-tests/tests/packages/versioning.exp +++ b/crates/iota-graphql-e2e-tests/tests/packages/versioning.exp @@ -7,7 +7,7 @@ task 1, lines 7-10: //# publish --upgradeable --sender A created: object(1,0), object(1,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5076800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5076800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 12: //# create-checkpoint @@ -93,7 +93,7 @@ task 4, lines 53-57: //# upgrade --package P0 --upgrade-capability 1,0 --sender A created: object(4,0) mutated: object(0,0), object(1,0) -gas summary: computation_cost: 1000000, storage_cost: 5251600, storage_rebate: 2622000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5251600, storage_rebate: 2622000, non_refundable_storage_fee: 0 task 5, line 59: //# create-checkpoint @@ -194,7 +194,7 @@ task 7, lines 100-105: //# upgrade --package P1 --upgrade-capability 1,0 --sender A created: object(7,0) mutated: object(0,0), object(1,0) -gas summary: computation_cost: 1000000, storage_cost: 5426400, storage_rebate: 2622000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5426400, storage_rebate: 2622000, non_refundable_storage_fee: 0 task 8, line 107: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/transaction_block_effects/balance_changes.exp b/crates/iota-graphql-e2e-tests/tests/transaction_block_effects/balance_changes.exp index 31f232a4fd7..0ec644b1e4c 100644 --- a/crates/iota-graphql-e2e-tests/tests/transaction_block_effects/balance_changes.exp +++ b/crates/iota-graphql-e2e-tests/tests/transaction_block_effects/balance_changes.exp @@ -9,7 +9,7 @@ task 1, lines 7-9: //> TransferObjects([NestedResult(0,0), NestedResult(0,1), NestedResult(0,2), NestedResult(0,3), NestedResult(0,4)], Input(0)); created: object(1,0), object(1,1), object(1,2), object(1,3), object(1,4) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5928000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5928000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 11-16: //# programmable --sender C --inputs object(1,0) object(1,1) object(1,2) object(1,3) object(1,4) @O @P @Q @R @S @@ -19,7 +19,7 @@ task 2, lines 11-16: //> TransferObjects([Input(3)], Input(8)); //> TransferObjects([Input(4)], Input(9)); mutated: object(0,0), object(1,0), object(1,1), object(1,2), object(1,3), object(1,4) -gas summary: computation_cost: 1000000, storage_cost: 5928000, storage_rebate: 5928000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5928000, storage_rebate: 5928000, non_refundable_storage_fee: 0 task 3, line 18: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/transaction_block_effects/dependencies.exp b/crates/iota-graphql-e2e-tests/tests/transaction_block_effects/dependencies.exp index 866bde0a891..ef395c18719 100644 --- a/crates/iota-graphql-e2e-tests/tests/transaction_block_effects/dependencies.exp +++ b/crates/iota-graphql-e2e-tests/tests/transaction_block_effects/dependencies.exp @@ -7,37 +7,37 @@ task 1, lines 7-34: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 6194000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6194000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 36: //# run Test::M1::create --args 2 @A created: object(2,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 3, line 38: //# run Test::M1::create --args 3 @A created: object(3,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 4, line 40: //# run Test::M1::create --args 4 @A created: object(4,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 5, line 42: //# run Test::M1::create --args 5 @A created: object(5,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 6, line 44: //# run Test::M1::create --args 6 @A created: object(6,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 7, lines 46-50: //# programmable --sender A --inputs object(2,0) object(3,0) object(4,0) object(5,0) object(6,0) @A @@ -47,12 +47,12 @@ task 7, lines 46-50: //> 3: Test::M1::create(Result(2), Input(5)); created: object(7,0) mutated: object(0,0), object(2,0), object(3,0), object(4,0), object(5,0), object(6,0) -gas summary: computation_cost: 1000000, storage_cost: 8876800, storage_rebate: 6574000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 8876800, storage_rebate: 6574000, non_refundable_storage_fee: 0 task 8, line 52: //# run Test::M1::increment --sender A --args object(7,0) 100 mutated: object(0,0), object(7,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 2302800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 2302800, non_refundable_storage_fee: 0 task 9, line 54: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/transaction_block_effects/events.exp b/crates/iota-graphql-e2e-tests/tests/transaction_block_effects/events.exp index 825a05769f7..a0b53e1aa15 100644 --- a/crates/iota-graphql-e2e-tests/tests/transaction_block_effects/events.exp +++ b/crates/iota-graphql-e2e-tests/tests/transaction_block_effects/events.exp @@ -7,25 +7,25 @@ task 1, lines 7-29: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 5251600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5251600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 31: //# run Test::M1::emit_1 --sender A --args 1 events: Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [1, 0, 0, 0, 0, 0, 0, 0] } mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 33: //# run Test::M1::emit_2 --sender A --args 10 events: Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [10, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [11, 0, 0, 0, 0, 0, 0, 0] } mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 4, line 35: //# run Test::M1::emit_3 --sender A --args 100 events: Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [100, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [101, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [102, 0, 0, 0, 0, 0, 0, 0] } mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 5, line 37: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/transaction_block_effects/object_changes.exp b/crates/iota-graphql-e2e-tests/tests/transaction_block_effects/object_changes.exp index 14d776b9cae..ef2565666a7 100644 --- a/crates/iota-graphql-e2e-tests/tests/transaction_block_effects/object_changes.exp +++ b/crates/iota-graphql-e2e-tests/tests/transaction_block_effects/object_changes.exp @@ -7,13 +7,13 @@ task 1, lines 7-26: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 5570800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5570800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 28: //# run Test::M1::create --args 0 @A --gas-price 1000 created: object(2,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 3, line 30: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/transactions/at_checkpoint.exp b/crates/iota-graphql-e2e-tests/tests/transactions/at_checkpoint.exp index 068bdd27a7f..db002f7ccc8 100644 --- a/crates/iota-graphql-e2e-tests/tests/transactions/at_checkpoint.exp +++ b/crates/iota-graphql-e2e-tests/tests/transactions/at_checkpoint.exp @@ -9,7 +9,7 @@ task 2, lines 11-13: //> TransferObjects([Result(0)], Input(1)) created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 1976000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 1976000, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 15: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/transactions/errors.exp b/crates/iota-graphql-e2e-tests/tests/transactions/errors.exp index a490e991f1e..910a08837f6 100644 --- a/crates/iota-graphql-e2e-tests/tests/transactions/errors.exp +++ b/crates/iota-graphql-e2e-tests/tests/transactions/errors.exp @@ -4,7 +4,7 @@ task 1, lines 7-12: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3663200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3663200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 14-15: //# programmable diff --git a/crates/iota-graphql-e2e-tests/tests/transactions/filters/kind.exp b/crates/iota-graphql-e2e-tests/tests/transactions/filters/kind.exp index 1b4b64c39c5..33944f6da3a 100644 --- a/crates/iota-graphql-e2e-tests/tests/transactions/filters/kind.exp +++ b/crates/iota-graphql-e2e-tests/tests/transactions/filters/kind.exp @@ -7,7 +7,7 @@ task 1, lines 7-20: //# publish created: object(1,0) mutated: object(0,5) -gas summary: computation_cost: 1000000, storage_cost: 5175600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5175600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 22: //# create-checkpoint @@ -17,31 +17,31 @@ task 3, line 24: //# run Test::M1::create --args 0 @A --sender A created: object(3,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 0, non_refundable_storage_fee: 0 task 4, line 26: //# run Test::M1::create --args 1 @A --sender B created: object(4,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 0, non_refundable_storage_fee: 0 task 5, line 28: //# run Test::M1::create --args 2 @A --sender C created: object(5,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 0, non_refundable_storage_fee: 0 task 6, line 30: //# run Test::M1::create --args 3 @A --sender D created: object(6,0) mutated: object(0,3) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 0, non_refundable_storage_fee: 0 task 7, line 32: //# run Test::M1::create --args 4 @A --sender E created: object(7,0) mutated: object(0,4) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 0, non_refundable_storage_fee: 0 task 8, line 34: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/transactions/filters/transaction_ids.exp b/crates/iota-graphql-e2e-tests/tests/transactions/filters/transaction_ids.exp index b780f05f826..008a1d58693 100644 --- a/crates/iota-graphql-e2e-tests/tests/transactions/filters/transaction_ids.exp +++ b/crates/iota-graphql-e2e-tests/tests/transactions/filters/transaction_ids.exp @@ -7,7 +7,7 @@ task 1, lines 7-20: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 5175600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5175600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 22: //# create-checkpoint @@ -17,7 +17,7 @@ task 3, line 24: //# run Test::M1::create --args 0 @A --sender A created: object(3,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 0, non_refundable_storage_fee: 0 task 4, line 26: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/transactions/programmable.exp b/crates/iota-graphql-e2e-tests/tests/transactions/programmable.exp index 9f30fb98699..dd96707d208 100644 --- a/crates/iota-graphql-e2e-tests/tests/transactions/programmable.exp +++ b/crates/iota-graphql-e2e-tests/tests/transactions/programmable.exp @@ -7,7 +7,7 @@ task 1, lines 7-17: //# publish --upgradeable --sender A created: object(1,0), object(1,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 6315600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6315600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 19: //# create-checkpoint @@ -177,7 +177,7 @@ task 4, lines 202-217: //# upgrade --package P0 --upgrade-capability 1,0 --sender A created: object(4,0) mutated: object(0,0), object(1,0) -gas summary: computation_cost: 1000000, storage_cost: 6589200, storage_rebate: 2622000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6589200, storage_rebate: 2622000, non_refundable_storage_fee: 0 task 5, line 219: //# create-checkpoint @@ -454,7 +454,7 @@ task 7, lines 402-405: //> iota::transfer::public_transfer(Result(1), Input(1)) created: object(7,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2280000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2280000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 8, lines 407-416: //# programmable --sender A --inputs 42u64 43u64 1000 @A @@ -469,7 +469,7 @@ task 8, lines 407-416: //> TransferObjects([NestedResult(2,0)], Input(3)) created: object(8,0), object(8,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3328800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3328800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 9, line 418: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/alternating.exp b/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/alternating.exp index 769b0da3a60..ef9065d2904 100644 --- a/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/alternating.exp +++ b/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/alternating.exp @@ -7,7 +7,7 @@ task 1, lines 9-30: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 5798800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5798800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 32: //# create-checkpoint @@ -17,31 +17,31 @@ task 3, line 34: //# run Test::M1::create --args 0 @A --sender A created: object(3,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 0, non_refundable_storage_fee: 0 task 4, line 36: //# run Test::M1::create --args 1 @B --sender B created: object(4,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 0, non_refundable_storage_fee: 0 task 5, line 38: //# run Test::M1::create --args 2 @A --sender A created: object(5,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 6, line 40: //# run Test::M1::create --args 3 @B --sender B created: object(6,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 7, line 42: //# run Test::M1::create --args 4 @A --sender A created: object(7,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 8, line 44: //# create-checkpoint @@ -51,31 +51,31 @@ task 9, line 46: //# run Test::M1::create --args 100 @B --sender B created: object(9,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 10, line 48: //# run Test::M1::create --args 101 @A --sender A created: object(10,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 11, line 50: //# run Test::M1::create --args 102 @B --sender B created: object(11,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 12, line 52: //# run Test::M1::create --args 103 @A --sender A created: object(12,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 13, line 54: //# run Test::M1::create --args 104 @B --sender B created: object(13,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 14, line 56: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/both_cursors.exp b/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/both_cursors.exp index 215b7169dd1..a3e8b08cf43 100644 --- a/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/both_cursors.exp +++ b/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/both_cursors.exp @@ -7,7 +7,7 @@ task 1, lines 10-31: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 5798800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5798800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 33: //# create-checkpoint @@ -17,31 +17,31 @@ task 3, line 35: //# run Test::M1::create --args 0 @B --sender A created: object(3,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 0, non_refundable_storage_fee: 0 task 4, line 37: //# run Test::M1::create --args 1 @A --sender A created: object(4,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 5, line 39: //# run Test::M1::create --args 2 @B --sender A created: object(5,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 6, line 41: //# run Test::M1::create --args 3 @A --sender A created: object(6,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 7, line 43: //# run Test::M1::create --args 4 @B --sender A created: object(7,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 8, line 45: //# create-checkpoint @@ -51,31 +51,31 @@ task 9, line 47: //# run Test::M1::create --args 100 @A --sender A created: object(9,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 10, line 49: //# run Test::M1::create --args 101 @A --sender A created: object(10,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 11, line 51: //# run Test::M1::create --args 102 @A --sender A created: object(11,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 12, line 53: //# run Test::M1::create --args 103 @B --sender A created: object(12,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 13, line 55: //# run Test::M1::create --args 104 @B --sender A created: object(13,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 14, line 57: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/equal/first.exp b/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/equal/first.exp index 35a0deed246..dc51c6c72e8 100644 --- a/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/equal/first.exp +++ b/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/equal/first.exp @@ -7,7 +7,7 @@ task 1, lines 10-31: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 5798800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5798800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 33: //# create-checkpoint @@ -17,31 +17,31 @@ task 3, line 35: //# run Test::M1::create --args 0 @B --sender A created: object(3,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 0, non_refundable_storage_fee: 0 task 4, line 37: //# run Test::M1::create --args 1 @A --sender A created: object(4,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 5, line 39: //# run Test::M1::create --args 2 @B --sender A created: object(5,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 6, line 41: //# run Test::M1::create --args 3 @A --sender A created: object(6,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 7, line 43: //# run Test::M1::create --args 4 @B --sender A created: object(7,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 8, line 45: //# create-checkpoint @@ -51,31 +51,31 @@ task 9, line 47: //# run Test::M1::create --args 100 @A --sender A created: object(9,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 10, line 49: //# run Test::M1::create --args 101 @A --sender A created: object(10,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 11, line 51: //# run Test::M1::create --args 102 @A --sender A created: object(11,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 12, line 53: //# run Test::M1::create --args 103 @B --sender A created: object(12,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 13, line 55: //# run Test::M1::create --args 104 @B --sender A created: object(13,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 14, line 57: //# create-checkpoint @@ -296,7 +296,7 @@ task 21, line 223: //# run Test::M1::create --args 105 @A --sender A created: object(21,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 22, line 225: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/equal/last.exp b/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/equal/last.exp index 9bb922e4f06..604c1f69827 100644 --- a/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/equal/last.exp +++ b/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/equal/last.exp @@ -7,7 +7,7 @@ task 1, lines 9-30: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 5798800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5798800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 32: //# create-checkpoint @@ -17,31 +17,31 @@ task 3, line 34: //# run Test::M1::create --args 0 @B --sender A created: object(3,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 0, non_refundable_storage_fee: 0 task 4, line 36: //# run Test::M1::create --args 1 @B --sender A created: object(4,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 5, line 38: //# run Test::M1::create --args 2 @A --sender A created: object(5,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 6, line 40: //# run Test::M1::create --args 3 @A --sender A created: object(6,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 7, line 42: //# run Test::M1::create --args 4 @A --sender A created: object(7,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 8, line 44: //# create-checkpoint @@ -51,31 +51,31 @@ task 9, line 46: //# run Test::M1::create --args 100 @B --sender A created: object(9,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 10, line 48: //# run Test::M1::create --args 101 @A --sender A created: object(10,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 11, line 50: //# run Test::M1::create --args 102 @B --sender A created: object(11,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 12, line 52: //# run Test::M1::create --args 103 @A --sender A created: object(12,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 13, line 54: //# run Test::M1::create --args 104 @B --sender A created: object(13,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 14, line 56: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/ge_page/first.exp b/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/ge_page/first.exp index 14d6184d8fa..7cf1150d3ad 100644 --- a/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/ge_page/first.exp +++ b/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/ge_page/first.exp @@ -7,7 +7,7 @@ task 1, lines 7-28: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 5798800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5798800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 30: //# create-checkpoint @@ -17,31 +17,31 @@ task 3, line 32: //# run Test::M1::create --args 0 @A --sender A created: object(3,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 0, non_refundable_storage_fee: 0 task 4, line 34: //# run Test::M1::create --args 1 @A --sender A created: object(4,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 5, line 36: //# run Test::M1::create --args 2 @B --sender B created: object(5,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 0, non_refundable_storage_fee: 0 task 6, line 38: //# run Test::M1::create --args 3 @B --sender B created: object(6,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 7, line 40: //# run Test::M1::create --args 4 @B --sender B created: object(7,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 8, line 42: //# create-checkpoint @@ -51,31 +51,31 @@ task 9, line 44: //# run Test::M1::create --args 100 @B --sender B created: object(9,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 10, line 46: //# run Test::M1::create --args 101 @B --sender B created: object(10,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 11, line 48: //# run Test::M1::create --args 102 @B --sender B created: object(11,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 12, line 50: //# run Test::M1::create --args 103 @B --sender B created: object(12,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 13, line 52: //# run Test::M1::create --args 104 @B --sender B created: object(13,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 14, line 54: //# create-checkpoint @@ -85,31 +85,31 @@ task 15, line 56: //# run Test::M1::create --args 100 @B --sender B created: object(15,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 16, line 58: //# run Test::M1::create --args 101 @B --sender B created: object(16,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 17, line 60: //# run Test::M1::create --args 102 @B --sender B created: object(17,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 18, line 62: //# run Test::M1::create --args 103 @B --sender B created: object(18,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 19, line 64: //# run Test::M1::create --args 104 @B --sender B created: object(19,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 20, line 66: //# create-checkpoint @@ -119,31 +119,31 @@ task 21, line 68: //# run Test::M1::create --args 200 @A --sender A created: object(21,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 22, line 70: //# run Test::M1::create --args 201 @B --sender A created: object(22,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 23, line 72: //# run Test::M1::create --args 202 @B --sender B created: object(23,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 24, line 74: //# run Test::M1::create --args 203 @B --sender B created: object(24,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 25, line 76: //# run Test::M1::create --args 204 @A --sender A created: object(25,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 26, line 78: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/ge_page/last.exp b/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/ge_page/last.exp index 71b62034b72..7c86f72fb6b 100644 --- a/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/ge_page/last.exp +++ b/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/ge_page/last.exp @@ -7,7 +7,7 @@ task 1, lines 7-28: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 5798800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5798800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 30: //# create-checkpoint @@ -17,31 +17,31 @@ task 3, line 32: //# run Test::M1::create --args 0 @A --sender A created: object(3,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 0, non_refundable_storage_fee: 0 task 4, line 34: //# run Test::M1::create --args 1 @A --sender A created: object(4,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 5, line 36: //# run Test::M1::create --args 2 @B --sender B created: object(5,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 0, non_refundable_storage_fee: 0 task 6, line 38: //# run Test::M1::create --args 3 @B --sender B created: object(6,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 7, line 40: //# run Test::M1::create --args 4 @B --sender B created: object(7,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 8, line 42: //# create-checkpoint @@ -51,31 +51,31 @@ task 9, line 44: //# run Test::M1::create --args 100 @B --sender B created: object(9,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 10, line 46: //# run Test::M1::create --args 101 @B --sender B created: object(10,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 11, line 48: //# run Test::M1::create --args 102 @B --sender B created: object(11,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 12, line 50: //# run Test::M1::create --args 103 @B --sender B created: object(12,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 13, line 52: //# run Test::M1::create --args 104 @B --sender B created: object(13,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 14, line 54: //# create-checkpoint @@ -85,31 +85,31 @@ task 15, line 56: //# run Test::M1::create --args 100 @B --sender B created: object(15,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 16, line 58: //# run Test::M1::create --args 101 @B --sender B created: object(16,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 17, line 60: //# run Test::M1::create --args 102 @B --sender B created: object(17,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 18, line 62: //# run Test::M1::create --args 103 @B --sender B created: object(18,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 19, line 64: //# run Test::M1::create --args 104 @B --sender B created: object(19,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 20, line 66: //# create-checkpoint @@ -119,31 +119,31 @@ task 21, line 68: //# run Test::M1::create --args 200 @A --sender A created: object(21,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 22, line 70: //# run Test::M1::create --args 201 @B --sender B created: object(22,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 23, line 72: //# run Test::M1::create --args 202 @B --sender B created: object(23,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 24, line 74: //# run Test::M1::create --args 203 @B --sender B created: object(24,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 25, line 76: //# run Test::M1::create --args 204 @A --sender A created: object(25,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 26, line 78: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/invalid_limits.exp b/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/invalid_limits.exp index 8c5615c2715..c8e300d918c 100644 --- a/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/invalid_limits.exp +++ b/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/invalid_limits.exp @@ -7,7 +7,7 @@ task 1, lines 9-30: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 5798800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5798800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 32: //# create-checkpoint @@ -17,31 +17,31 @@ task 3, line 34: //# run Test::M1::create --args 0 @B --sender A created: object(3,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 0, non_refundable_storage_fee: 0 task 4, line 36: //# run Test::M1::create --args 1 @A --sender A created: object(4,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 5, line 38: //# run Test::M1::create --args 2 @B --sender A created: object(5,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 6, line 40: //# run Test::M1::create --args 3 @A --sender A created: object(6,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 7, line 42: //# run Test::M1::create --args 4 @B --sender A created: object(7,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 8, line 44: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/le_page/first.exp b/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/le_page/first.exp index 9e6afbdee81..1a380f92000 100644 --- a/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/le_page/first.exp +++ b/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/le_page/first.exp @@ -7,7 +7,7 @@ task 1, lines 11-32: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 5798800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5798800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 34: //# create-checkpoint @@ -17,31 +17,31 @@ task 3, line 36: //# run Test::M1::create --args 0 @A --sender A created: object(3,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 0, non_refundable_storage_fee: 0 task 4, line 38: //# run Test::M1::create --args 1 @B --sender B created: object(4,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 0, non_refundable_storage_fee: 0 task 5, line 40: //# run Test::M1::create --args 2 @A --sender A created: object(5,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 6, line 42: //# run Test::M1::create --args 3 @B --sender B created: object(6,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 7, line 44: //# run Test::M1::create --args 4 @A --sender A created: object(7,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 8, line 46: //# create-checkpoint @@ -51,31 +51,31 @@ task 9, line 48: //# run Test::M1::create --args 100 @B --sender B created: object(9,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 10, line 50: //# run Test::M1::create --args 101 @A --sender A created: object(10,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 11, line 52: //# run Test::M1::create --args 102 @B --sender B created: object(11,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 12, line 54: //# run Test::M1::create --args 103 @A --sender A created: object(12,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 13, line 56: //# run Test::M1::create --args 104 @B --sender B created: object(13,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 14, line 58: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/le_page/last.exp b/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/le_page/last.exp index 0abc38060a4..b7597d19137 100644 --- a/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/le_page/last.exp +++ b/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/le_page/last.exp @@ -7,7 +7,7 @@ task 1, lines 11-32: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 5798800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5798800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 34: //# create-checkpoint @@ -17,31 +17,31 @@ task 3, line 36: //# run Test::M1::create --args 0 @A --sender A created: object(3,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 0, non_refundable_storage_fee: 0 task 4, line 38: //# run Test::M1::create --args 1 @B --sender B created: object(4,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 0, non_refundable_storage_fee: 0 task 5, line 40: //# run Test::M1::create --args 2 @A --sender A created: object(5,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 6, line 42: //# run Test::M1::create --args 3 @B --sender B created: object(6,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 7, line 44: //# run Test::M1::create --args 4 @A --sender A created: object(7,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 8, line 46: //# create-checkpoint @@ -51,31 +51,31 @@ task 9, line 48: //# run Test::M1::create --args 100 @B --sender B created: object(9,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 10, line 50: //# run Test::M1::create --args 101 @A --sender A created: object(10,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 11, line 52: //# run Test::M1::create --args 102 @B --sender B created: object(11,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 12, line 54: //# run Test::M1::create --args 103 @A --sender A created: object(12,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 13, line 56: //# run Test::M1::create --args 104 @B --sender B created: object(13,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 14, line 58: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/require.exp b/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/require.exp index af4e3c5dc2d..8b49dec0447 100644 --- a/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/require.exp +++ b/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/require.exp @@ -7,7 +7,7 @@ task 1, lines 7-28: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 5798800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5798800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 30: //# create-checkpoint @@ -17,31 +17,31 @@ task 3, line 32: //# run Test::M1::create --args 0 @B --sender A created: object(3,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 0, non_refundable_storage_fee: 0 task 4, line 34: //# run Test::M1::create --args 1 @B --sender A created: object(4,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 5, line 36: //# run Test::M1::create --args 2 @B --sender A created: object(5,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 6, line 38: //# run Test::M1::create --args 3 @B --sender A created: object(6,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 7, line 40: //# run Test::M1::create --args 4 @B --sender A created: object(7,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 8, line 42: //# create-checkpoint @@ -51,31 +51,31 @@ task 9, line 44: //# run Test::M1::create --args 100 @B --sender A created: object(9,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 10, line 46: //# run Test::M1::create --args 101 @B --sender A created: object(10,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 11, line 48: //# run Test::M1::create --args 102 @B --sender A created: object(11,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 12, line 50: //# run Test::M1::create --args 103 @B --sender A created: object(12,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 13, line 52: //# run Test::M1::create --args 104 @B --sender A created: object(13,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 14, line 54: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/transactions/shared.exp b/crates/iota-graphql-e2e-tests/tests/transactions/shared.exp index 2c1ba5b563d..6849ee8f9bb 100644 --- a/crates/iota-graphql-e2e-tests/tests/transactions/shared.exp +++ b/crates/iota-graphql-e2e-tests/tests/transactions/shared.exp @@ -4,27 +4,27 @@ task 1, lines 7-23: //# publish created: object(1,0), object(1,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 6862800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6862800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 25-26: //# programmable --inputs immshared(1,0) //> 0: P0::m::get(Input(0)) mutated: object(0,0) unchanged_shared: object(1,0) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 3, lines 28-29: //# programmable --inputs object(1,0) //> 0: P0::m::inc(Input(0)) mutated: object(0,0), object(1,0) -gas summary: computation_cost: 1000000, storage_cost: 2272400, storage_rebate: 2272400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2272400, storage_rebate: 2272400, non_refundable_storage_fee: 0 task 4, lines 31-33: //# programmable --inputs object(1,0) //> 0: P0::m::get(Input(0)); //> P0::m::inc(Input(0)) mutated: object(0,0), object(1,0) -gas summary: computation_cost: 1000000, storage_cost: 2272400, storage_rebate: 2272400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2272400, storage_rebate: 2272400, non_refundable_storage_fee: 0 task 5, line 35: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/validator/validator.exp b/crates/iota-graphql-e2e-tests/tests/validator/validator.exp index 7e0878ca87a..28dda5a89ea 100644 --- a/crates/iota-graphql-e2e-tests/tests/validator/validator.exp +++ b/crates/iota-graphql-e2e-tests/tests/validator/validator.exp @@ -15,31 +15,31 @@ task 3, lines 13-38: //# publish --sender A --gas-budget 9999999999 created: object(3,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5920400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5920400, storage_rebate: 0, non_refundable_storage_fee: 0 task 4, line 40: //# run P0::m::new --sender A created: object(4,0) mutated: object(0,0) -gas summary: computation_cost: 1441000000, storage_cost: 1932269600, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1441000000, computation_cost_burned: 1441000000, storage_cost: 1932269600, storage_rebate: 988000, non_refundable_storage_fee: 0 task 5, line 42: //# run P0::m::new --sender A created: object(5,0) mutated: object(0,0) -gas summary: computation_cost: 1441000000, storage_cost: 1932269600, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1441000000, computation_cost_burned: 1441000000, storage_cost: 1932269600, storage_rebate: 988000, non_refundable_storage_fee: 0 task 6, line 44: //# run P0::m::new --sender A created: object(6,0) mutated: object(0,0) -gas summary: computation_cost: 1441000000, storage_cost: 1932269600, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1441000000, computation_cost_burned: 1441000000, storage_cost: 1932269600, storage_rebate: 988000, non_refundable_storage_fee: 0 task 7, line 46: //# run P0::m::new --sender A created: object(7,0) mutated: object(0,0) -gas summary: computation_cost: 1441000000, storage_cost: 1932269600, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1441000000, computation_cost_burned: 1441000000, storage_cost: 1932269600, storage_rebate: 988000, non_refundable_storage_fee: 0 task 8, line 48: //# create-checkpoint @@ -71,91 +71,91 @@ task 11, line 65: //# run P0::m::new --sender A created: object(11,0) mutated: object(0,0) -gas summary: computation_cost: 1441000000, storage_cost: 1932269600, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1441000000, computation_cost_burned: 1441000000, storage_cost: 1932269600, storage_rebate: 988000, non_refundable_storage_fee: 0 task 12, line 67: //# run P0::m::new --sender A created: object(12,0) mutated: object(0,0) -gas summary: computation_cost: 1441000000, storage_cost: 1932269600, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1441000000, computation_cost_burned: 1441000000, storage_cost: 1932269600, storage_rebate: 988000, non_refundable_storage_fee: 0 task 13, line 69: //# run P0::m::new --sender A created: object(13,0) mutated: object(0,0) -gas summary: computation_cost: 1441000000, storage_cost: 1932269600, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1441000000, computation_cost_burned: 1441000000, storage_cost: 1932269600, storage_rebate: 988000, non_refundable_storage_fee: 0 task 14, line 71: //# run P0::m::new --sender A created: object(14,0) mutated: object(0,0) -gas summary: computation_cost: 1441000000, storage_cost: 1932269600, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1441000000, computation_cost_burned: 1441000000, storage_cost: 1932269600, storage_rebate: 988000, non_refundable_storage_fee: 0 task 15, line 73: //# run P0::m::new --sender A created: object(15,0) mutated: object(0,0) -gas summary: computation_cost: 1441000000, storage_cost: 1932269600, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1441000000, computation_cost_burned: 1441000000, storage_cost: 1932269600, storage_rebate: 988000, non_refundable_storage_fee: 0 task 16, line 75: //# run P0::m::new --sender A created: object(16,0) mutated: object(0,0) -gas summary: computation_cost: 1441000000, storage_cost: 1932269600, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1441000000, computation_cost_burned: 1441000000, storage_cost: 1932269600, storage_rebate: 988000, non_refundable_storage_fee: 0 task 17, line 77: //# run P0::m::new --sender A created: object(17,0) mutated: object(0,0) -gas summary: computation_cost: 1441000000, storage_cost: 1932269600, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1441000000, computation_cost_burned: 1441000000, storage_cost: 1932269600, storage_rebate: 988000, non_refundable_storage_fee: 0 task 18, line 79: //# run P0::m::new --sender A created: object(18,0) mutated: object(0,0) -gas summary: computation_cost: 1441000000, storage_cost: 1932269600, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1441000000, computation_cost_burned: 1441000000, storage_cost: 1932269600, storage_rebate: 988000, non_refundable_storage_fee: 0 task 19, line 81: //# run P0::m::new --sender A created: object(19,0) mutated: object(0,0) -gas summary: computation_cost: 1441000000, storage_cost: 1932269600, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1441000000, computation_cost_burned: 1441000000, storage_cost: 1932269600, storage_rebate: 988000, non_refundable_storage_fee: 0 task 20, line 83: //# run P0::m::new --sender A created: object(20,0) mutated: object(0,0) -gas summary: computation_cost: 1441000000, storage_cost: 1932269600, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1441000000, computation_cost_burned: 1441000000, storage_cost: 1932269600, storage_rebate: 988000, non_refundable_storage_fee: 0 task 21, line 85: //# run P0::m::new --sender A created: object(21,0) mutated: object(0,0) -gas summary: computation_cost: 1441000000, storage_cost: 1932269600, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1441000000, computation_cost_burned: 1441000000, storage_cost: 1932269600, storage_rebate: 988000, non_refundable_storage_fee: 0 task 22, line 87: //# run P0::m::new --sender A created: object(22,0) mutated: object(0,0) -gas summary: computation_cost: 1441000000, storage_cost: 1932269600, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1441000000, computation_cost_burned: 1441000000, storage_cost: 1932269600, storage_rebate: 988000, non_refundable_storage_fee: 0 task 23, line 89: //# run P0::m::new --sender A created: object(23,0) mutated: object(0,0) -gas summary: computation_cost: 1441000000, storage_cost: 1932269600, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1441000000, computation_cost_burned: 1441000000, storage_cost: 1932269600, storage_rebate: 988000, non_refundable_storage_fee: 0 task 24, line 91: //# run P0::m::new --sender A created: object(24,0) mutated: object(0,0) -gas summary: computation_cost: 1441000000, storage_cost: 1932269600, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1441000000, computation_cost_burned: 1441000000, storage_cost: 1932269600, storage_rebate: 988000, non_refundable_storage_fee: 0 task 25, line 93: //# run P0::m::new --sender A created: object(25,0) mutated: object(0,0) -gas summary: computation_cost: 1441000000, storage_cost: 1932269600, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1441000000, computation_cost_burned: 1441000000, storage_cost: 1932269600, storage_rebate: 988000, non_refundable_storage_fee: 0 task 26, line 95: //# create-checkpoint From cead30c5307caebadd274d9f8199362efd15fbdd Mon Sep 17 00:00:00 2001 From: miker83z Date: Thu, 7 Nov 2024 16:59:58 +0100 Subject: [PATCH 06/25] fix fmt --- crates/iota-core/src/checkpoints/mod.rs | 3 ++- crates/iota-indexer/src/models/checkpoints.rs | 3 ++- crates/iota-types/src/gas.rs | 14 ++++++------- crates/iota/src/keytool.rs | 21 +++++++++---------- 4 files changed, 21 insertions(+), 20 deletions(-) diff --git a/crates/iota-core/src/checkpoints/mod.rs b/crates/iota-core/src/checkpoints/mod.rs index a629f9e6927..1277b5d4c51 100644 --- a/crates/iota-core/src/checkpoints/mod.rs +++ b/crates/iota-core/src/checkpoints/mod.rs @@ -1559,7 +1559,8 @@ impl CheckpointBuilder { // sum only when we are within the same epoch GasCostSummary::new( previous_gas_costs.computation_cost + current_gas_costs.computation_cost, - previous_gas_costs.computation_cost_burned + current_gas_costs.computation_cost_burned, + previous_gas_costs.computation_cost_burned + + current_gas_costs.computation_cost_burned, previous_gas_costs.storage_cost + current_gas_costs.storage_cost, previous_gas_costs.storage_rebate + current_gas_costs.storage_rebate, previous_gas_costs.non_refundable_storage_fee diff --git a/crates/iota-indexer/src/models/checkpoints.rs b/crates/iota-indexer/src/models/checkpoints.rs index a3456b5d41a..7a31dd50596 100644 --- a/crates/iota-indexer/src/models/checkpoints.rs +++ b/crates/iota-indexer/src/models/checkpoints.rs @@ -203,7 +203,8 @@ impl TryFrom for RpcCheckpoint { end_of_epoch_data, epoch_rolling_gas_cost_summary: GasCostSummary { computation_cost: checkpoint.computation_cost as u64, - // TODO_FIXED_BASE_FEE: update computation cost burned in checkpoint to be used here. + // TODO_FIXED_BASE_FEE: update computation cost burned in checkpoint to be used + // here. computation_cost_burned: checkpoint.computation_cost as u64, storage_cost: checkpoint.storage_cost as u64, storage_rebate: checkpoint.storage_rebate as u64, diff --git a/crates/iota-types/src/gas.rs b/crates/iota-types/src/gas.rs index f49e44b4921..4c05c215a98 100644 --- a/crates/iota-types/src/gas.rs +++ b/crates/iota-types/src/gas.rs @@ -204,13 +204,13 @@ pub mod checked { pub fn new_from_txn_effects<'a>( transactions: impl Iterator, ) -> GasCostSummary { - let (storage_costs, computation_costs, computation_costs_burned, storage_rebates, non_refundable_storage_fee): ( - Vec, - Vec, - Vec, - Vec, - Vec, - ) = transactions + let ( + storage_costs, + computation_costs, + computation_costs_burned, + storage_rebates, + non_refundable_storage_fee, + ): (Vec, Vec, Vec, Vec, Vec) = transactions .map(|e| { ( e.gas_cost_summary().storage_cost, diff --git a/crates/iota/src/keytool.rs b/crates/iota/src/keytool.rs index 4d6dea3c898..246848e4c10 100644 --- a/crates/iota/src/keytool.rs +++ b/crates/iota/src/keytool.rs @@ -605,14 +605,14 @@ impl KeyToolCommand { )); } keystore.import_from_seed(&seed, key_scheme, derivation_path, alias)? - }, + } Err(_) => { info!("Importing mnemonic to keystore"); keystore.import_from_mnemonic( &input_string, key_scheme, derivation_path, - alias + alias, )? } }; @@ -621,7 +621,7 @@ impl KeyToolCommand { let key = Key::from(ikp); CommandOutput::Import(key) } - } + }, KeyToolCommand::Export { key_identity } => { let address = get_identity_address_from_keystore(key_identity, keystore)?; let ikp = keystore.get_key(&address)?; @@ -798,8 +798,7 @@ impl KeyToolCommand { CommandOutput::SignKMS(SerializedSig { serialized_sig_base64: serialized_sig, }) - } - /* Commented for now: https://github.com/iotaledger/iota/issues/1777 + } /* Commented for now: https://github.com/iotaledger/iota/issues/1777 * KeyToolCommand::ZkLoginInsecureSignPersonalMessage { data, max_epoch } => { * let msg = PersonalMessage { * message: data.as_bytes().to_vec(), @@ -1106,10 +1105,10 @@ impl KeyToolCommand { * e))?, )?; */ /* let sig = - * GenericSignature::ZkLoginAuthenticator(zk.clone()); - * let res = sig.verify_authenticator( - * &IntentMessage::new( - * Intent::iota_transaction(), + * GenericSignature::ZkLoginAuthenticator(zk.clone()); + * let res = sig.verify_authenticator( + * &IntentMessage::new( + * Intent::iota_transaction(), * tx_data.clone(), ), * tx_data.execution_parts().1, * cur_epoch.unwrap(), @@ -1126,8 +1125,8 @@ impl KeyToolCommand { * }; */ /* let sig = - * GenericSignature::ZkLoginAuthenticator(zk.clone()); - * let res = sig.verify_authenticator( + * GenericSignature::ZkLoginAuthenticator(zk.clone()); + * let res = sig.verify_authenticator( * &IntentMessage::new(Intent::personal_message(), data.clone()), * (&zk).try_into()?, * cur_epoch.unwrap(), From f339bf950c0f5fbc32316c5af4ff337ade543958 Mon Sep 17 00:00:00 2001 From: miker83z Date: Thu, 7 Nov 2024 17:10:44 +0100 Subject: [PATCH 07/25] fix(iota-graphql-e2e-tests): update baselines after merge --- .../tests/available_range/available_range.exp | 16 ++++++++-------- .../iota-graphql-e2e-tests/tests/call/simple.exp | 2 +- .../tests/consistency/staked_iota.exp | 4 ++-- .../tests/epoch/chain_identifier.exp | 2 +- .../iota-graphql-e2e-tests/tests/epoch/epoch.exp | 2 +- .../tests/epoch/system_state.exp | 4 ++-- .../tests/limits/directives.exp | 4 ++-- .../tests/objects/display.exp | 8 ++++---- .../tests/objects/filter_by_type.exp | 2 +- .../tests/objects/staked_iota.exp | 2 +- 10 files changed, 23 insertions(+), 23 deletions(-) diff --git a/crates/iota-graphql-e2e-tests/tests/available_range/available_range.exp b/crates/iota-graphql-e2e-tests/tests/available_range/available_range.exp index 7b55df71201..3b98acbdaa0 100644 --- a/crates/iota-graphql-e2e-tests/tests/available_range/available_range.exp +++ b/crates/iota-graphql-e2e-tests/tests/available_range/available_range.exp @@ -6,20 +6,20 @@ Response: { "data": { "availableRange": { "first": { - "digest": "6bcKLwLh2YqRrtemWRC8KsaKsjFjZ1Xiivo7J4viV7w2", + "digest": "Bix9qfZVFK7aWzpsdaSowV3gFTxrfnGonkHepmtju6y2", "sequenceNumber": 0 }, "last": { - "digest": "6bcKLwLh2YqRrtemWRC8KsaKsjFjZ1Xiivo7J4viV7w2", + "digest": "Bix9qfZVFK7aWzpsdaSowV3gFTxrfnGonkHepmtju6y2", "sequenceNumber": 0 } }, "first": { - "digest": "6bcKLwLh2YqRrtemWRC8KsaKsjFjZ1Xiivo7J4viV7w2", + "digest": "Bix9qfZVFK7aWzpsdaSowV3gFTxrfnGonkHepmtju6y2", "sequenceNumber": 0 }, "last": { - "digest": "6bcKLwLh2YqRrtemWRC8KsaKsjFjZ1Xiivo7J4viV7w2", + "digest": "Bix9qfZVFK7aWzpsdaSowV3gFTxrfnGonkHepmtju6y2", "sequenceNumber": 0 } } @@ -39,20 +39,20 @@ Response: { "data": { "availableRange": { "first": { - "digest": "6bcKLwLh2YqRrtemWRC8KsaKsjFjZ1Xiivo7J4viV7w2", + "digest": "Bix9qfZVFK7aWzpsdaSowV3gFTxrfnGonkHepmtju6y2", "sequenceNumber": 0 }, "last": { - "digest": "D9KfHWBEcPWAtQyFU6d2KetRykyPZiYXGnavBFc5xXGa", + "digest": "GKJTp8Ne94xVy5oRiXYr1JR2FvsA1vHrrbmdgpGG4tqf", "sequenceNumber": 2 } }, "first": { - "digest": "6bcKLwLh2YqRrtemWRC8KsaKsjFjZ1Xiivo7J4viV7w2", + "digest": "Bix9qfZVFK7aWzpsdaSowV3gFTxrfnGonkHepmtju6y2", "sequenceNumber": 0 }, "last": { - "digest": "D9KfHWBEcPWAtQyFU6d2KetRykyPZiYXGnavBFc5xXGa", + "digest": "GKJTp8Ne94xVy5oRiXYr1JR2FvsA1vHrrbmdgpGG4tqf", "sequenceNumber": 2 } } diff --git a/crates/iota-graphql-e2e-tests/tests/call/simple.exp b/crates/iota-graphql-e2e-tests/tests/call/simple.exp index 4b49a804b90..6bed427d47d 100644 --- a/crates/iota-graphql-e2e-tests/tests/call/simple.exp +++ b/crates/iota-graphql-e2e-tests/tests/call/simple.exp @@ -77,7 +77,7 @@ Epoch advanced: 5 task 10, line 44: //# view-checkpoint -CheckpointSummary { epoch: 5, seq: 10, content_digest: 2tpcrXbKLVRmsaprpdrDbbteuhZmeLFBshCSBy2r2KFn, +CheckpointSummary { epoch: 5, seq: 10, content_digest: 3W8sSUZfgrsEpeS68kJvPim2EGvZniDkPzGmEK4pmFXA, epoch_rolling_gas_cost_summary: GasCostSummary { computation_cost: 0, computation_cost_burned: 0, storage_cost: 0, storage_rebate: 0, non_refundable_storage_fee: 0 }} task 11, lines 46-51: diff --git a/crates/iota-graphql-e2e-tests/tests/consistency/staked_iota.exp b/crates/iota-graphql-e2e-tests/tests/consistency/staked_iota.exp index e9264efd3da..974c3133eb9 100644 --- a/crates/iota-graphql-e2e-tests/tests/consistency/staked_iota.exp +++ b/crates/iota-graphql-e2e-tests/tests/consistency/staked_iota.exp @@ -29,7 +29,7 @@ events: Event { package_id: iota_system, transaction_module: Identifier("iota_sy created: object(3,0) mutated: object(_), 0x0000000000000000000000000000000000000000000000000000000000000005, object(0,0) deleted: object(2,0) -gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 14523600, storage_rebate: 1976000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 14531200, storage_rebate: 1976000, non_refundable_storage_fee: 0 task 4, line 27: //# create-checkpoint @@ -53,7 +53,7 @@ events: Event { package_id: iota_system, transaction_module: Identifier("iota_sy created: object(7,0) mutated: object(_), 0x0000000000000000000000000000000000000000000000000000000000000005, object(0,0) deleted: object(6,0) -gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 14523600, storage_rebate: 14219600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 14531200, storage_rebate: 14227200, non_refundable_storage_fee: 0 task 8, line 37: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/epoch/chain_identifier.exp b/crates/iota-graphql-e2e-tests/tests/epoch/chain_identifier.exp index c3295dfcbae..ea9cb643eaa 100644 --- a/crates/iota-graphql-e2e-tests/tests/epoch/chain_identifier.exp +++ b/crates/iota-graphql-e2e-tests/tests/epoch/chain_identifier.exp @@ -11,6 +11,6 @@ task 2, lines 10-13: //# run-graphql Response: { "data": { - "chainIdentifier": "10b3fc91" + "chainIdentifier": "3af7030a" } } diff --git a/crates/iota-graphql-e2e-tests/tests/epoch/epoch.exp b/crates/iota-graphql-e2e-tests/tests/epoch/epoch.exp index 6aab680e243..109f6433b69 100644 --- a/crates/iota-graphql-e2e-tests/tests/epoch/epoch.exp +++ b/crates/iota-graphql-e2e-tests/tests/epoch/epoch.exp @@ -25,7 +25,7 @@ events: Event { package_id: iota_system, transaction_module: Identifier("iota_sy created: object(4,0) mutated: object(_), 0x0000000000000000000000000000000000000000000000000000000000000005, object(0,0) deleted: object(3,0) -gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 14523600, storage_rebate: 1976000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 14531200, storage_rebate: 1976000, non_refundable_storage_fee: 0 task 5, line 20: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/epoch/system_state.exp b/crates/iota-graphql-e2e-tests/tests/epoch/system_state.exp index 2485ac8a746..e61d796bdf6 100644 --- a/crates/iota-graphql-e2e-tests/tests/epoch/system_state.exp +++ b/crates/iota-graphql-e2e-tests/tests/epoch/system_state.exp @@ -25,7 +25,7 @@ events: Event { package_id: iota_system, transaction_module: Identifier("iota_sy created: object(4,0) mutated: object(_), 0x0000000000000000000000000000000000000000000000000000000000000005, object(0,0) deleted: object(3,0) -gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 14523600, storage_rebate: 1976000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 14531200, storage_rebate: 1976000, non_refundable_storage_fee: 0 task 5, line 21: //# create-checkpoint @@ -65,7 +65,7 @@ events: Event { package_id: iota_system, transaction_module: Identifier("iota_sy created: object(12,0) mutated: object(_), 0x0000000000000000000000000000000000000000000000000000000000000005, object(0,0) deleted: object(4,0) -gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 14219600, storage_rebate: 14523600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 14227200, storage_rebate: 14531200, non_refundable_storage_fee: 0 task 13, line 39: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/limits/directives.exp b/crates/iota-graphql-e2e-tests/tests/limits/directives.exp index 963f0cf8917..e79e1e09146 100644 --- a/crates/iota-graphql-e2e-tests/tests/limits/directives.exp +++ b/crates/iota-graphql-e2e-tests/tests/limits/directives.exp @@ -73,7 +73,7 @@ task 5, lines 59-63: //# run-graphql Response: { "data": { - "chainIdentifier": "10b3fc91" + "chainIdentifier": "3af7030a" } } @@ -81,7 +81,7 @@ task 6, lines 65-69: //# run-graphql Response: { "data": { - "chainIdentifier": "10b3fc91" + "chainIdentifier": "3af7030a" } } diff --git a/crates/iota-graphql-e2e-tests/tests/objects/display.exp b/crates/iota-graphql-e2e-tests/tests/objects/display.exp index 4e1ebb42419..89c7540580f 100644 --- a/crates/iota-graphql-e2e-tests/tests/objects/display.exp +++ b/crates/iota-graphql-e2e-tests/tests/objects/display.exp @@ -16,7 +16,7 @@ Checkpoint created: 1 task 3, line 135: //# view-checkpoint -CheckpointSummary { epoch: 0, seq: 1, content_digest: 7kLCsxTiWkQDELn7Z9pPWbXNrMfj2e8MLZDACViZzS7a, +CheckpointSummary { epoch: 0, seq: 1, content_digest: 3CMJvrvCxA6AoVhADFJi48KehKBEh5raLtYP6XfQRZU5, epoch_rolling_gas_cost_summary: GasCostSummary { computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 21470000, storage_rebate: 0, non_refundable_storage_fee: 0 }} task 4, line 137: @@ -37,7 +37,7 @@ Checkpoint created: 2 task 7, line 143: //# view-checkpoint -CheckpointSummary { epoch: 0, seq: 2, content_digest: 8Nc9NbgSLpjhoWKJs96VNGspdotAuwn4yJkcwiduj9FA, +CheckpointSummary { epoch: 0, seq: 2, content_digest: 7P4S9VNdfQMYeSMvL85EQcA7eMqRBSoxCWn1je6AYccy, epoch_rolling_gas_cost_summary: GasCostSummary { computation_cost: 3000000, computation_cost_burned: 3000000, storage_cost: 27968000, storage_rebate: 3640400, non_refundable_storage_fee: 0 }} task 8, lines 145-158: @@ -84,7 +84,7 @@ Checkpoint created: 3 task 11, line 164: //# view-checkpoint -CheckpointSummary { epoch: 0, seq: 3, content_digest: 6Jbra32rwqb6rEqrMmpigDRKzuEaqP6Zqo3fBNCyLr18, +CheckpointSummary { epoch: 0, seq: 3, content_digest: BXsfacpgNMAkMBq94dv3xydeR8dVoSExzuZi3HhSs6zC, epoch_rolling_gas_cost_summary: GasCostSummary { computation_cost: 4000000, computation_cost_burned: 4000000, storage_cost: 31000400, storage_rebate: 6581600, non_refundable_storage_fee: 0 }} task 12, lines 166-179: @@ -136,7 +136,7 @@ Checkpoint created: 4 task 15, line 185: //# view-checkpoint -CheckpointSummary { epoch: 0, seq: 4, content_digest: 6t8frtYetoMad5s2t7vtHrkdCZuAQv16cKVKiZ5G85yc, +CheckpointSummary { epoch: 0, seq: 4, content_digest: 3vqe9G5az7aJd5n1HkSZ4k528ga4jNYfca9j9WadCBFp, epoch_rolling_gas_cost_summary: GasCostSummary { computation_cost: 5000000, computation_cost_burned: 5000000, storage_cost: 36236800, storage_rebate: 9614000, non_refundable_storage_fee: 0 }} task 16, lines 187-200: diff --git a/crates/iota-graphql-e2e-tests/tests/objects/filter_by_type.exp b/crates/iota-graphql-e2e-tests/tests/objects/filter_by_type.exp index c3f6510dc9c..e2ff38e83fc 100644 --- a/crates/iota-graphql-e2e-tests/tests/objects/filter_by_type.exp +++ b/crates/iota-graphql-e2e-tests/tests/objects/filter_by_type.exp @@ -25,7 +25,7 @@ events: Event { package_id: iota_system, transaction_module: Identifier("iota_sy created: object(4,0) mutated: object(_), 0x0000000000000000000000000000000000000000000000000000000000000005, object(0,0) deleted: object(3,0) -gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 14523600, storage_rebate: 1976000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 14531200, storage_rebate: 1976000, non_refundable_storage_fee: 0 task 5, line 19: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/objects/staked_iota.exp b/crates/iota-graphql-e2e-tests/tests/objects/staked_iota.exp index 3e0471caada..25b94033a43 100644 --- a/crates/iota-graphql-e2e-tests/tests/objects/staked_iota.exp +++ b/crates/iota-graphql-e2e-tests/tests/objects/staked_iota.exp @@ -43,7 +43,7 @@ events: Event { package_id: iota_system, transaction_module: Identifier("iota_sy created: object(3,0) mutated: object(_), 0x0000000000000000000000000000000000000000000000000000000000000005, object(0,0) deleted: object(2,0) -gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 14523600, storage_rebate: 1976000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 14531200, storage_rebate: 1976000, non_refundable_storage_fee: 0 task 4, line 40: //# create-checkpoint From c2025a71a7b36f2f4b28cb9d3c411d39618f88e3 Mon Sep 17 00:00:00 2001 From: miker83z Date: Thu, 7 Nov 2024 17:31:44 +0100 Subject: [PATCH 08/25] fix clippy --- crates/iota-types/src/gas.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/iota-types/src/gas.rs b/crates/iota-types/src/gas.rs index 4c05c215a98..5763c16de35 100644 --- a/crates/iota-types/src/gas.rs +++ b/crates/iota-types/src/gas.rs @@ -201,6 +201,7 @@ pub mod checked { self.gas_used() as i64 - self.storage_rebate as i64 } + #[allow(clippy::type_complexity)] pub fn new_from_txn_effects<'a>( transactions: impl Iterator, ) -> GasCostSummary { From 5bbed20854577c8d37c56578a42bc02414c31690 Mon Sep 17 00:00:00 2001 From: miker83z Date: Thu, 7 Nov 2024 18:38:18 +0100 Subject: [PATCH 09/25] fix(iota-adapter-transactional-tests): update baselines --- .../tests/call/simple.exp | 4 +-- .../tests/child_count/count_decremented.exp | 20 +++++++------- .../tests/child_count/delete_by_wrap.exp | 8 +++--- .../child_count/delete_by_wrap_one_txn.exp | 4 +-- .../child_count/delete_parent_invalid.exp | 8 +++--- .../tests/child_count/delete_parent_valid.exp | 10 +++---- .../delete_parent_valid_one_txn.exp | 8 +++--- .../child_count/freeze_parent_invalid.exp | 8 +++--- .../tests/child_count/freeze_parent_valid.exp | 10 +++---- .../freeze_parent_valid_one_txn.exp | 8 +++--- .../non_zero_child_count_valid.exp | 12 ++++----- .../non_zero_child_count_valid_one_txn.exp | 4 +-- .../tests/child_count/temp_parent_invalid.exp | 4 +-- .../tests/child_count/unwrap_never_stored.exp | 6 ++--- .../unwrap_never_stored_transfer.exp | 6 ++--- .../unwrap_then_delete_invalid.exp | 8 +++--- .../tests/children/child_of_shared_object.exp | 10 +++---- .../coin_deny_and_undeny_receiver.exp | 12 ++++----- .../coin_deny_and_undeny_sender.exp | 14 +++++----- .../coin_deny_multiple_coin_types.exp | 4 +-- .../tests/deny_list_v1/coin_global_pause.exp | 24 ++++++++--------- .../delete_setting_object_same_epoch.exp | 14 +++++----- .../delete_setting_object_set_once.exp | 18 ++++++------- .../delete_setting_object_set_twice.exp | 22 ++++++++-------- .../tests/deny_list_v1/double_add.exp | 16 ++++++------ .../send_many_coins_unregulated.exp | 8 +++--- .../tests/dev_inspect/load_old_object.exp | 10 +++---- .../tests/dynamic_fields/add_duplicate.exp | 4 +-- .../dynamic_fields/add_duplicate_object.exp | 4 +-- .../tests/dynamic_fields/bench.exp | 4 +-- .../dynamic_fields/borrow_wrong_type.exp | 4 +-- .../borrow_wrong_type_object.exp | 4 +-- .../dynamic_object_field_swap.exp | 10 +++---- .../tests/dynamic_fields/exhaustive.exp | 20 +++++++------- .../dynamic_fields/exhaustive_object.exp | 20 +++++++------- .../read_field_from_immutable.exp | 6 ++--- ...eceive_remove_add_back_and_remove_type.exp | 18 ++++++------- .../remove_add_back_and_remove.exp | 16 ++++++------ .../remove_add_back_and_remove_type.exp | 8 +++--- .../dynamic_fields/remove_wrong_type.exp | 4 +-- .../remove_wrong_type_object.exp | 4 +-- .../tests/dynamic_fields/shared_object.exp | 6 ++--- .../tests/dynamic_fields/transfer_object.exp | 18 ++++++------- .../tests/dynamic_fields/unwrap_object.exp | 14 +++++----- .../tests/dynamic_fields/wrap_object.exp | 14 +++++----- .../wrapped_uid_after_delete.exp | 14 +++++----- .../tests/entry_points/ascii.exp | 8 +++--- .../tests/entry_points/generic_by_ref.exp | 2 +- .../tests/entry_points/imm_txn_context.exp | 8 +++--- .../tests/entry_points/large_enum.exp | 4 +-- .../tests/entry_points/missing_type.exp | 2 +- .../tests/entry_points/no_txn_context.exp | 6 ++--- .../tests/entry_points/obj_vector.exp | 26 +++++++++---------- .../tests/entry_points/obj_vector_generic.exp | 24 ++++++++--------- .../tests/entry_points/utf8.exp | 14 +++++----- .../tests/entry_points/wrong_visibility.exp | 2 +- .../tests/enums/basic_enums.exp | 6 ++--- .../tests/enums/coin_wrapper.exp | 4 +-- .../tests/enums/enum_events.exp | 10 +++---- .../tests/enums/enum_otw_check.exp | 4 +-- .../tests/enums/enums_upgrade.exp | 10 +++---- .../tests/enums/enums_upgrade_add_variant.exp | 6 ++--- .../tests/epoch/advance.exp | 8 +++--- .../tests/iota/coin_in_vec.exp | 8 +++--- .../tests/iota/coin_transfer.exp | 4 +-- .../tests/iota/freeze.exp | 6 ++--- .../iota/move_call_args_type_mismatch.exp | 2 +- .../iota/move_call_incorrect_function.exp | 2 +- .../tests/iota/object_basics.exp | 12 ++++----- .../tests/iota/unwrap.exp | 8 +++--- .../tests/iota/unwrap_then_delete.exp | 12 ++++----- .../tests/iota/unwrap_then_freeze.exp | 8 +++--- .../tests/mvcc/child_of_child.exp | 14 +++++----- .../tests/mvcc/find_all_uids.exp | 14 +++++----- .../tests/mvcc/find_all_uids_dof.exp | 14 +++++----- .../tests/mvcc/find_all_uids_dof_enum.exp | 14 +++++----- .../tests/mvcc/find_all_uids_enums.exp | 14 +++++----- .../tests/mvcc/find_all_uids_on_child.exp | 14 +++++----- .../mvcc/find_all_uids_on_child_enum.exp | 14 +++++----- .../mvcc/middle_version_less_than_child.exp | 8 +++--- .../middle_version_less_than_child_enum.exp | 8 +++--- .../tests/mvcc/not_root_version.exp | 16 ++++++------ .../mvcc/not_root_version_flipped_case.exp | 12 ++++----- ...eceive_object_access_through_parent_df.exp | 8 +++--- ...ceive_object_access_through_parent_dof.exp | 8 +++--- .../tests/mvcc/receive_object_dof.exp | 16 ++++++------ .../tests/mvcc/v0/child_of_child.exp | 14 +++++----- .../tests/mvcc/v0/find_all_uids.exp | 14 +++++----- .../tests/mvcc/v0/find_all_uids_dof.exp | 14 +++++----- .../tests/mvcc/v0/find_all_uids_on_child.exp | 14 +++++----- .../v0/middle_version_less_than_child.exp | 8 +++--- .../tests/mvcc/v0/not_root_version.exp | 16 ++++++------ .../mvcc/v0/not_root_version_flipped_case.exp | 12 ++++----- .../borrowed_arg_copyable_invalid.exp | 2 +- .../borrowed_arg_non_copyable_invalid.exp | 2 +- .../borrowed_arg_primitives_invalid.exp | 2 +- .../tests/programmable/borrowed_arg_valid.exp | 6 ++--- .../tests/programmable/cannot_call_emit.exp | 2 +- .../tests/programmable/cannot_call_init.exp | 2 +- .../programmable/cannot_call_private.exp | 2 +- .../tests/programmable/coin_negative.exp | 4 +-- .../coin_operations_custom_coin.exp | 6 ++--- .../coin_operations_non_coins.exp | 2 +- .../tests/programmable/coin_overflow.exp | 4 +-- .../delayed_invalid_gas_by_value.exp | 2 +- .../delayed_invalid_object_by_value.exp | 6 ++--- .../programmable/gas_coin_by_reference.exp | 16 ++++++------ .../tests/programmable/gas_coin_by_value.exp | 2 +- .../gas_coin_by_value_invalid.exp | 2 +- .../programmable/generics_substitution.exp | 4 +-- .../tests/programmable/invalid_option.exp | 2 +- .../invalid_public_function_return.exp | 2 +- .../programmable/invalid_result_arity.exp | 2 +- .../tests/programmable/make_vec_objects.exp | 12 ++++----- .../make_vec_special_validation_invalid.exp | 2 +- .../merge_coin_mismatched_coin.exp | 4 +-- .../programmable/nested_result_zero_zero.exp | 4 +-- .../non_primitive_non_object_arguments.exp | 4 +-- .../programmable/out_of_bounds_input.exp | 2 +- .../programmable/out_of_bounds_nested.exp | 2 +- .../programmable/out_of_bounds_result.exp | 2 +- ...value_restriction_by_ref_input_invalid.exp | 4 +-- ...y_value_restriction_by_ref_input_valid.exp | 8 +++--- ...y_value_restriction_copied_input_valid.exp | 4 +-- ...alue_restriction_make_move_vec_invalid.exp | 4 +-- ..._value_restriction_make_move_vec_valid.exp | 8 +++--- ...lue_restriction_non_pure_input_invalid.exp | 2 +- ...e_entry_value_restriction_per_argument.exp | 4 +-- ...ate_entry_value_restriction_type_check.exp | 4 +-- .../programmable/private_transfer_invalid.exp | 2 +- .../programmable/private_transfer_valid.exp | 8 +++--- .../programmable/pure_arg_type_change.exp | 2 +- .../tests/programmable/split_coins.exp | 14 +++++----- .../programmable/split_coins_invalid.exp | 6 ++--- .../tests/programmable/transfer_objects.exp | 10 +++---- .../transfer_objects_invalid_address.exp | 2 +- .../transfer_objects_invalid_object.exp | 2 +- .../programmable/unused_values_invalid.exp | 2 +- .../programmable/unused_values_valid.exp | 10 +++---- .../coin_limit.exp | 6 ++--- .../make_vec.exp | 10 +++---- .../make_vec_shared.exp | 6 ++--- .../merge_coin_shared.exp | 4 +-- .../merge_coin_shared_real_coin.exp | 6 ++--- .../publish.exp | 8 +++--- .../receipt.exp | 4 +-- .../split_coin_share.exp | 10 +++---- .../transfer_shared.exp | 4 +-- .../upgrade.exp | 14 +++++----- .../tests/publish/init.exp | 2 +- .../tests/publish/multi_module_publish.exp | 2 +- .../tests/publish/publish_with_upgrade.exp | 2 +- .../tests/random/happy_flows.exp | 14 +++++----- .../random/move_call_clock_after_random.exp | 2 +- ...e_call_clock_after_random_and_transfer.exp | 2 +- .../random/move_call_u64_after_random.exp | 2 +- .../random/two_move_calls_with_random.exp | 2 +- .../tests/receive_object/basic_receive.exp | 6 ++--- .../tests/receive_object/drop_receiving.exp | 10 +++---- .../duplicate_receive_argument.exp | 6 ++--- .../move_vec_receiving_types.exp | 8 +++--- .../pass_receiver_immut_then_reuse.exp | 6 ++--- .../pass_receiver_mut_then_reuse.exp | 6 ++--- .../receive_object/pt_receive_type_fixing.exp | 6 ++--- .../receive_add_dof_and_mutate.exp | 6 ++--- .../receive_object/receive_and_abort.exp | 4 +-- .../receive_object/receive_and_deleted.exp | 6 ++--- .../receive_object/receive_and_send_back.exp | 6 ++--- .../tests/receive_object/receive_and_wrap.exp | 6 ++--- .../tests/receive_object/receive_by_ref.exp | 10 +++---- .../receive_by_value_flow_through.exp | 8 +++--- .../receive_object/receive_dof_and_mutate.exp | 6 ++--- .../receive_object/receive_duo_struct.exp | 8 +++--- .../receive_invalid_param_ty.exp | 6 ++--- .../receive_object/receive_invalid_type.exp | 4 +-- .../receive_object/receive_many_move_vec.exp | 22 ++++++++-------- .../receive_multiple_times_in_row.exp | 12 ++++----- .../receive_object/receive_object_id.exp | 10 +++---- .../receive_object/receive_object_owner.exp | 4 +-- .../receive_return_object_dont_touch.exp | 4 +-- .../receive_return_object_then_transfer.exp | 6 ++--- .../receive_ticket_coin_operations.exp | 4 +-- .../shared_parent/basic_receive.exp | 6 ++--- .../shared_parent/drop_receiving.exp | 10 +++---- .../shared_parent/receive_dof_and_mutate.exp | 6 ++--- .../receive_multiple_times_in_row.exp | 12 ++++----- .../shared_parent/transfer_then_share.exp | 6 ++--- .../take_receiver_then_try_to_reuse.exp | 4 +-- .../receive_object/transfer_object_cyclic.exp | 4 +-- .../runtime_behavior/error_locations.exp | 2 +- .../versioned_check_swap_loc_new.exp | 6 ++--- .../tests/shared/add_dynamic_field.exp | 10 +++---- .../tests/shared/become_dynamic_field.exp | 8 +++--- .../shared/become_dynamic_object_field.exp | 8 +++--- .../by_value_shared_object_deletion.exp | 12 ++++----- ...ared_object_deletion_via_make_move_vec.exp | 12 ++++----- ...bject_deletion_via_make_move_vec_fails.exp | 8 +++--- ...value_shared_object_deletion_via_merge.exp | 24 ++++++++--------- ...shared_object_deletion_via_merge_fails.exp | 14 +++++----- ...e_shared_object_deletion_via_move_call.exp | 14 +++++----- ...ed_object_deletion_via_move_call_fails.exp | 8 +++--- .../tests/shared/freeze.exp | 4 +-- .../tests/shared/re_share.exp | 12 ++++----- .../tests/shared/transfer.exp | 4 +-- .../tests/shared/upgrade.exp | 4 +-- .../tests/shared/wrap.exp | 4 +-- .../size_limits/deleted_id_limits_tests.exp | 8 +++--- .../tests/size_limits/event_limits_tests.exp | 10 +++---- .../event_limits_tests_out_of_gas.exp | 2 +- .../size_limits/identitifer_len_limits.exp | 2 +- .../size_limits/move_object_size_limit.exp | 6 ++--- .../tests/size_limits/new_id_limits_tests.exp | 8 +++--- .../size_limits/object_runtime_limits.exp | 6 ++--- .../transfered_id_limits_tests.exp | 8 +++--- .../tests/size_limits/vector_len_limits.exp | 8 +++--- .../transfer_object/does_not_have_store.exp | 6 ++--- .../does_not_have_store_receive.exp | 16 ++++++------ .../tests/transfer_object/has_store.exp | 10 +++---- .../tests/transfer_object/immutable.exp | 4 +-- .../tests/transfer_object/package.exp | 2 +- .../tests/transfer_object/quasi_shared.exp | 6 ++--- .../tests/transfer_object/shared.exp | 6 ++--- .../tests/transfer_object/transfer_coin.exp | 4 +-- .../tests/transfer_object/wrap_unwrap.exp | 8 +++--- .../tests/upgrade/abort_code_resolution.exp | 6 ++--- .../upgrade/add_ability_during_upgrade.exp | 2 +- .../add_ability_during_upgrade_enum.exp | 2 +- .../add_ability_during_upgrade_generics.exp | 2 +- ...d_ability_during_upgrade_generics_enum.exp | 2 +- .../tests/upgrade/add_key_during_upgrade.exp | 2 +- .../tests/upgrade/add_new_type_with_key.exp | 4 +-- .../tests/upgrade/basic.exp | 2 +- .../tests/upgrade/constants.exp | 14 +++++----- .../tests/upgrade/dep_override.exp | 24 ++++++++--------- .../tests/upgrade/enum_struct_swap.exp | 2 +- .../tests/upgrade/enums.exp | 2 +- .../tests/upgrade/friend_fun_changes.exp | 12 ++++----- .../upgrade/large_module_inclusion_checks.exp | 10 +++---- .../tests/upgrade/linkage.exp | 8 +++--- .../tests/upgrade/modules.exp | 2 +- .../tests/upgrade/multi_version.exp | 4 +-- .../tests/upgrade/new_types.exp | 18 ++++++------- .../tests/upgrade/private_fun_changes.exp | 16 ++++++------ .../tests/upgrade/public_fun_changes.exp | 6 ++--- .../tests/upgrade/publisher.exp | 8 +++--- ...ve_ability_during_upgrade_fun_generics.exp | 8 +++--- ...remove_ability_during_upgrade_generics.exp | 2 +- .../tests/upgrade/remove_phantom.exp | 2 +- .../tests/upgrade/remove_phantom_enum.exp | 2 +- .../tests/upgrade/struct_enum_swap.exp | 2 +- .../tests/upgrade/structs.exp | 2 +- .../tests/upgrade/transitive_linkage.exp | 12 ++++----- .../tests/upgrade/type_names.exp | 22 ++++++++-------- .../tests/upgrade/upgrade_ratchet.exp | 16 ++++++------ 254 files changed, 981 insertions(+), 981 deletions(-) diff --git a/crates/iota-adapter-transactional-tests/tests/call/simple.exp b/crates/iota-adapter-transactional-tests/tests/call/simple.exp index 64bb257cd87..501f696f186 100644 --- a/crates/iota-adapter-transactional-tests/tests/call/simple.exp +++ b/crates/iota-adapter-transactional-tests/tests/call/simple.exp @@ -4,13 +4,13 @@ task 1, lines 7-26: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5570800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5570800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 28: //# run Test::M1::create --args 0 @A created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2302800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 3, line 30: //# view-object 2,0 diff --git a/crates/iota-adapter-transactional-tests/tests/child_count/count_decremented.exp b/crates/iota-adapter-transactional-tests/tests/child_count/count_decremented.exp index cce8c2c77be..d7bc2c99a58 100644 --- a/crates/iota-adapter-transactional-tests/tests/child_count/count_decremented.exp +++ b/crates/iota-adapter-transactional-tests/tests/child_count/count_decremented.exp @@ -7,13 +7,13 @@ task 1, lines 10-52: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 7516400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7516400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 54: //# run test::m::mint --sender A created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2196400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2196400, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 56: //# view-object 2,0 @@ -31,13 +31,13 @@ task 4, line 58: //# run test::m::add --sender A --args object(2,0) 1 created: object(4,0), object(4,1) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 5859600, storage_rebate: 2196400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5859600, storage_rebate: 2196400, non_refundable_storage_fee: 0 task 5, line 60: //# run test::m::remove --sender A --args object(2,0) 1 mutated: object(0,0), object(2,0) deleted: object(4,0), object(4,1) -gas summary: computation_cost: 1000000, storage_cost: 2196400, storage_rebate: 5859600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2196400, storage_rebate: 5859600, non_refundable_storage_fee: 0 task 6, lines 62-66: //# view-object 2,0 @@ -55,7 +55,7 @@ task 7, line 68: //# run test::m::mint --sender A created: object(7,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2196400, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2196400, storage_rebate: 988000, non_refundable_storage_fee: 0 task 8, line 70: //# view-object 7,0 @@ -73,12 +73,12 @@ task 9, line 72: //# run test::m::add --sender A --args object(7,0) 1 created: object(9,0), object(9,1) mutated: object(0,0), object(7,0) -gas summary: computation_cost: 1000000, storage_cost: 5859600, storage_rebate: 2196400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5859600, storage_rebate: 2196400, non_refundable_storage_fee: 0 task 10, line 74: //# run test::m::remove_and_add --sender A --args object(7,0) 1 mutated: object(0,0), object(7,0), object(9,0), object(9,1) -gas summary: computation_cost: 1000000, storage_cost: 5859600, storage_rebate: 5859600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5859600, storage_rebate: 5859600, non_refundable_storage_fee: 0 task 11, lines 76-80: //# view-object 7,0 @@ -96,7 +96,7 @@ task 12, line 82: //# run test::m::mint --sender A created: object(12,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2196400, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2196400, storage_rebate: 988000, non_refundable_storage_fee: 0 task 13, line 84: //# view-object 12,0 @@ -114,14 +114,14 @@ task 14, line 86: //# run test::m::add --sender A --args object(12,0) 1 created: object(14,0), object(14,1) mutated: object(0,0), object(12,0) -gas summary: computation_cost: 1000000, storage_cost: 5859600, storage_rebate: 2196400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5859600, storage_rebate: 2196400, non_refundable_storage_fee: 0 task 15, line 88: //# run test::m::remove_and_wrap --sender A --args object(12,0) 1 created: object(15,0) mutated: object(0,0), object(12,0), object(14,0) wrapped: object(14,1) -gas summary: computation_cost: 1000000, storage_cost: 6102800, storage_rebate: 5859600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6102800, storage_rebate: 5859600, non_refundable_storage_fee: 0 task 16, line 90: //# view-object 12,0 diff --git a/crates/iota-adapter-transactional-tests/tests/child_count/delete_by_wrap.exp b/crates/iota-adapter-transactional-tests/tests/child_count/delete_by_wrap.exp index 136edc2cfaf..715ffc81434 100644 --- a/crates/iota-adapter-transactional-tests/tests/child_count/delete_by_wrap.exp +++ b/crates/iota-adapter-transactional-tests/tests/child_count/delete_by_wrap.exp @@ -7,19 +7,19 @@ task 1, lines 10-38: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 6513200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6513200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 40: //# run test::m::mint --sender A created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2196400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2196400, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 42: //# run test::m::add --sender A --args object(2,0) 0 created: object(3,0), object(3,1) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 5859600, storage_rebate: 2196400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5859600, storage_rebate: 2196400, non_refundable_storage_fee: 0 task 4, line 44: //# view-object 2,0 @@ -38,4 +38,4 @@ task 5, line 46: created: object(5,0) mutated: object(0,0) wrapped: object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2439600, storage_rebate: 2196400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2439600, storage_rebate: 2196400, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/child_count/delete_by_wrap_one_txn.exp b/crates/iota-adapter-transactional-tests/tests/child_count/delete_by_wrap_one_txn.exp index 362546a26b6..bcb03316153 100644 --- a/crates/iota-adapter-transactional-tests/tests/child_count/delete_by_wrap_one_txn.exp +++ b/crates/iota-adapter-transactional-tests/tests/child_count/delete_by_wrap_one_txn.exp @@ -7,10 +7,10 @@ task 1, lines 10-32: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 6102800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6102800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 34: //# run test::m::test_wrap --sender A created: object(2,0), object(2,1), object(2,2) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 6102800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6102800, storage_rebate: 0, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/child_count/delete_parent_invalid.exp b/crates/iota-adapter-transactional-tests/tests/child_count/delete_parent_invalid.exp index 105d6047190..a5e6ee2b082 100644 --- a/crates/iota-adapter-transactional-tests/tests/child_count/delete_parent_invalid.exp +++ b/crates/iota-adapter-transactional-tests/tests/child_count/delete_parent_invalid.exp @@ -7,19 +7,19 @@ task 1, lines 10-33: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 6026800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6026800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 35: //# run test::m::mint --sender A created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2196400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2196400, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 37: //# run test::m::add --sender A --args object(2,0) 0 created: object(3,0), object(3,1) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 5859600, storage_rebate: 2196400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5859600, storage_rebate: 2196400, non_refundable_storage_fee: 0 task 4, line 39: //# view-object 2,0 @@ -37,4 +37,4 @@ task 5, line 41: //# run test::m::delete --sender A --args object(2,0) mutated: object(0,0) deleted: object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 2196400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 2196400, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/child_count/delete_parent_valid.exp b/crates/iota-adapter-transactional-tests/tests/child_count/delete_parent_valid.exp index 84aee844360..55fb0bdd228 100644 --- a/crates/iota-adapter-transactional-tests/tests/child_count/delete_parent_valid.exp +++ b/crates/iota-adapter-transactional-tests/tests/child_count/delete_parent_valid.exp @@ -7,19 +7,19 @@ task 1, lines 10-58: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 7987600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7987600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 59: //# run test::m::mint --sender A created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2196400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2196400, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 61: //# run test::m::add --sender A --args object(2,0) 0 created: object(3,0), object(3,1) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 5859600, storage_rebate: 2196400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5859600, storage_rebate: 2196400, non_refundable_storage_fee: 0 task 4, line 63: //# view-object 2,0 @@ -37,10 +37,10 @@ task 5, line 65: //# run test::m::remove --sender A --args object(2,0) 0 mutated: object(0,0), object(2,0) deleted: object(3,0), object(3,1) -gas summary: computation_cost: 1000000, storage_cost: 2196400, storage_rebate: 5859600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2196400, storage_rebate: 5859600, non_refundable_storage_fee: 0 task 6, line 67: //# run test::m::delete --sender A --args object(2,0) mutated: object(0,0) deleted: object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 2196400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 2196400, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/child_count/delete_parent_valid_one_txn.exp b/crates/iota-adapter-transactional-tests/tests/child_count/delete_parent_valid_one_txn.exp index f2c9cd7c23b..d4e750c9e48 100644 --- a/crates/iota-adapter-transactional-tests/tests/child_count/delete_parent_valid_one_txn.exp +++ b/crates/iota-adapter-transactional-tests/tests/child_count/delete_parent_valid_one_txn.exp @@ -7,19 +7,19 @@ task 1, lines 11-70: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 8382800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 8382800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 72: //# run test::m::mint --sender A created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2196400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2196400, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 74: //# run test::m::add --sender A --args object(2,0) 0 created: object(3,0), object(3,1) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 5859600, storage_rebate: 2196400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5859600, storage_rebate: 2196400, non_refundable_storage_fee: 0 task 4, line 76: //# view-object 2,0 @@ -37,4 +37,4 @@ task 5, line 78: //# run test::m::remove_and_delete --sender A --args object(2,0) 0 mutated: object(0,0) deleted: object(2,0), object(3,0), object(3,1) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 5859600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 5859600, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/child_count/freeze_parent_invalid.exp b/crates/iota-adapter-transactional-tests/tests/child_count/freeze_parent_invalid.exp index d34d21fb66c..e3cb36a6dd1 100644 --- a/crates/iota-adapter-transactional-tests/tests/child_count/freeze_parent_invalid.exp +++ b/crates/iota-adapter-transactional-tests/tests/child_count/freeze_parent_invalid.exp @@ -7,19 +7,19 @@ task 1, lines 10-62: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 8458800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 8458800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 64: //# run test::m::mint --sender A created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2196400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2196400, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 66: //# run test::m::add --sender A --args object(2,0) 0 created: object(3,0), object(3,1) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 5859600, storage_rebate: 2196400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5859600, storage_rebate: 2196400, non_refundable_storage_fee: 0 task 4, line 68: //# view-object 2,0 @@ -36,4 +36,4 @@ Contents: test::m::S { task 5, line 70: //# run test::m::freeze_object --sender A --args object(2,0) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2196400, storage_rebate: 2196400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2196400, storage_rebate: 2196400, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/child_count/freeze_parent_valid.exp b/crates/iota-adapter-transactional-tests/tests/child_count/freeze_parent_valid.exp index 9566c8febc2..37d1b9ead15 100644 --- a/crates/iota-adapter-transactional-tests/tests/child_count/freeze_parent_valid.exp +++ b/crates/iota-adapter-transactional-tests/tests/child_count/freeze_parent_valid.exp @@ -7,19 +7,19 @@ task 1, lines 10-62: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 8458800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 8458800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 64: //# run test::m::mint --sender A created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2196400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2196400, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 66: //# run test::m::add --sender A --args object(2,0) 0 created: object(3,0), object(3,1) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 5859600, storage_rebate: 2196400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5859600, storage_rebate: 2196400, non_refundable_storage_fee: 0 task 4, line 68: //# view-object 2,0 @@ -37,9 +37,9 @@ task 5, line 70: //# run test::m::remove --sender A --args object(2,0) 0 mutated: object(0,0), object(2,0) deleted: object(3,0), object(3,1) -gas summary: computation_cost: 1000000, storage_cost: 2196400, storage_rebate: 5859600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2196400, storage_rebate: 5859600, non_refundable_storage_fee: 0 task 6, line 72: //# run test::m::freeze_object --sender A --args object(2,0) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2196400, storage_rebate: 2196400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2196400, storage_rebate: 2196400, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/child_count/freeze_parent_valid_one_txn.exp b/crates/iota-adapter-transactional-tests/tests/child_count/freeze_parent_valid_one_txn.exp index ba8e93a292e..ee0a9b554c0 100644 --- a/crates/iota-adapter-transactional-tests/tests/child_count/freeze_parent_valid_one_txn.exp +++ b/crates/iota-adapter-transactional-tests/tests/child_count/freeze_parent_valid_one_txn.exp @@ -7,19 +7,19 @@ task 1, lines 11-65: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 8610800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 8610800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 67: //# run test::m::mint --sender A created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2196400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2196400, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 69: //# run test::m::add --sender A --args object(2,0) 0 created: object(3,0), object(3,1) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 5859600, storage_rebate: 2196400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5859600, storage_rebate: 2196400, non_refundable_storage_fee: 0 task 4, line 71: //# view-object 2,0 @@ -37,4 +37,4 @@ task 5, line 73: //# run test::m::remove_and_freeze --sender A --args object(2,0) 0 mutated: object(0,0), object(2,0) deleted: object(3,0), object(3,1) -gas summary: computation_cost: 1000000, storage_cost: 2196400, storage_rebate: 5859600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2196400, storage_rebate: 5859600, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/child_count/non_zero_child_count_valid.exp b/crates/iota-adapter-transactional-tests/tests/child_count/non_zero_child_count_valid.exp index fead3e353ae..3522c0e7956 100644 --- a/crates/iota-adapter-transactional-tests/tests/child_count/non_zero_child_count_valid.exp +++ b/crates/iota-adapter-transactional-tests/tests/child_count/non_zero_child_count_valid.exp @@ -7,13 +7,13 @@ task 1, lines 10-46: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 6976800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6976800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 48: //# run test::m::mint_and_share --sender A created: object(2,0), object(2,1), object(2,2) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5859600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5859600, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, lines 50-54: //# view-object 2,1 @@ -31,12 +31,12 @@ task 4, line 56: //# run test::m::mint --sender A created: object(4,0), object(4,1), object(4,2) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5859600, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5859600, storage_rebate: 988000, non_refundable_storage_fee: 0 task 5, line 58: //# run test::m::transfer --sender A --args object(4,2) @B mutated: object(0,0), object(4,2) -gas summary: computation_cost: 1000000, storage_cost: 2196400, storage_rebate: 2196400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2196400, storage_rebate: 2196400, non_refundable_storage_fee: 0 task 6, lines 60-64: //# view-object 4,2 @@ -54,12 +54,12 @@ task 7, line 66: //# run test::m::mint --sender A created: object(7,0), object(7,1), object(7,2) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5859600, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5859600, storage_rebate: 988000, non_refundable_storage_fee: 0 task 8, line 68: //# transfer-object 7,1 --sender A --recipient B mutated: object(0,0), object(7,1) -gas summary: computation_cost: 1000000, storage_cost: 2196400, storage_rebate: 2196400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2196400, storage_rebate: 2196400, non_refundable_storage_fee: 0 task 9, line 70: //# view-object 7,1 diff --git a/crates/iota-adapter-transactional-tests/tests/child_count/non_zero_child_count_valid_one_txn.exp b/crates/iota-adapter-transactional-tests/tests/child_count/non_zero_child_count_valid_one_txn.exp index 9af799437e9..8d1790732fc 100644 --- a/crates/iota-adapter-transactional-tests/tests/child_count/non_zero_child_count_valid_one_txn.exp +++ b/crates/iota-adapter-transactional-tests/tests/child_count/non_zero_child_count_valid_one_txn.exp @@ -7,13 +7,13 @@ task 1, lines 11-36: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 5950800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5950800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 38: //# run test::m::share --sender A created: object(2,0), object(2,1), object(2,2) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5859600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5859600, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 40: //# view-object 2,1 diff --git a/crates/iota-adapter-transactional-tests/tests/child_count/temp_parent_invalid.exp b/crates/iota-adapter-transactional-tests/tests/child_count/temp_parent_invalid.exp index ab385579363..be47e9e89cc 100644 --- a/crates/iota-adapter-transactional-tests/tests/child_count/temp_parent_invalid.exp +++ b/crates/iota-adapter-transactional-tests/tests/child_count/temp_parent_invalid.exp @@ -7,10 +7,10 @@ task 1, lines 10-23: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 5266800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5266800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 25: //# run test::m::t --sender A created: object(2,0), object(2,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4651200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4651200, storage_rebate: 0, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/child_count/unwrap_never_stored.exp b/crates/iota-adapter-transactional-tests/tests/child_count/unwrap_never_stored.exp index f3a54108b3f..353f095f47d 100644 --- a/crates/iota-adapter-transactional-tests/tests/child_count/unwrap_never_stored.exp +++ b/crates/iota-adapter-transactional-tests/tests/child_count/unwrap_never_stored.exp @@ -7,17 +7,17 @@ task 1, lines 10-38: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 5836800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5836800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 40: //# run test::m::create --sender A created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2439600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2439600, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 42: //# run test::m::delete --args object(2,0) --sender A mutated: object(0,0) deleted: object(2,0) unwrapped_then_deleted: object(_) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 2439600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 2439600, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/child_count/unwrap_never_stored_transfer.exp b/crates/iota-adapter-transactional-tests/tests/child_count/unwrap_never_stored_transfer.exp index b4d70a99ee9..93627dd1e65 100644 --- a/crates/iota-adapter-transactional-tests/tests/child_count/unwrap_never_stored_transfer.exp +++ b/crates/iota-adapter-transactional-tests/tests/child_count/unwrap_never_stored_transfer.exp @@ -7,17 +7,17 @@ task 1, lines 10-37: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 6072400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6072400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 39: //# run test::m::create --sender A created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2439600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2439600, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 41: //# run test::m::unwrap_and_transfer --args object(2,0) --sender A mutated: object(0,0) unwrapped: object(3,0) deleted: object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2196400, storage_rebate: 2439600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2196400, storage_rebate: 2439600, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/child_count/unwrap_then_delete_invalid.exp b/crates/iota-adapter-transactional-tests/tests/child_count/unwrap_then_delete_invalid.exp index e0a4742fc97..6334f2b707a 100644 --- a/crates/iota-adapter-transactional-tests/tests/child_count/unwrap_then_delete_invalid.exp +++ b/crates/iota-adapter-transactional-tests/tests/child_count/unwrap_then_delete_invalid.exp @@ -7,23 +7,23 @@ task 1, lines 10-45: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 6688000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6688000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 47: //# run test::m::mint --sender A created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2196400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2196400, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 49: //# run test::m::add --sender A --args object(2,0) 0 created: object(3,0), object(3,1) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 5859600, storage_rebate: 2196400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5859600, storage_rebate: 2196400, non_refundable_storage_fee: 0 task 4, line 51: //# run test::m::wrap --sender A --args object(2,0) created: object(4,0) mutated: object(0,0) wrapped: object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2439600, storage_rebate: 2196400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2439600, storage_rebate: 2196400, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/children/child_of_shared_object.exp b/crates/iota-adapter-transactional-tests/tests/children/child_of_shared_object.exp index 05053dbaa45..fb24bcf2e16 100644 --- a/crates/iota-adapter-transactional-tests/tests/children/child_of_shared_object.exp +++ b/crates/iota-adapter-transactional-tests/tests/children/child_of_shared_object.exp @@ -7,31 +7,31 @@ task 1, lines 7-18: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 5183200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5183200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 20-46: //# publish --dependencies t3 created: object(2,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 7668400, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7668400, storage_rebate: 988000, non_refundable_storage_fee: 0 task 3, lines 49-73: //# publish --dependencies t2 t3 created: object(3,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 8215600, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 8215600, storage_rebate: 988000, non_refundable_storage_fee: 0 task 4, line 75: //# run t3::o3::create --sender A created: object(4,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2226800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2226800, storage_rebate: 0, non_refundable_storage_fee: 0 task 5, line 77: //# run t2::o2::create_shared --args object(4,0) --sender A created: object(5,0), object(5,1) mutated: object(0,0), object(4,0) -gas summary: computation_cost: 1000000, storage_cost: 5920400, storage_rebate: 2226800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5920400, storage_rebate: 2226800, non_refundable_storage_fee: 0 task 6, line 79: //# view-object 4,0 diff --git a/crates/iota-adapter-transactional-tests/tests/deny_list_v1/coin_deny_and_undeny_receiver.exp b/crates/iota-adapter-transactional-tests/tests/deny_list_v1/coin_deny_and_undeny_receiver.exp index fff443fa24b..5347513da8f 100644 --- a/crates/iota-adapter-transactional-tests/tests/deny_list_v1/coin_deny_and_undeny_receiver.exp +++ b/crates/iota-adapter-transactional-tests/tests/deny_list_v1/coin_deny_and_undeny_receiver.exp @@ -8,28 +8,28 @@ task 1, lines 13-38: created: object(1,0), object(1,1), object(1,2), object(1,3), object(1,4), object(1,5) mutated: object(0,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 18392000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 18392000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 39-41: //# run iota::pay::split_and_transfer --args object(1,0) 1 @B --type-args test::regulated_coin::REGULATED_COIN --sender A created: object(2,0) mutated: object(0,0), object(1,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 3936800, storage_rebate: 2462400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3936800, storage_rebate: 2462400, non_refundable_storage_fee: 0 task 3, lines 42-44: //# run iota::coin::deny_list_v1_add --args object(0x403) object(1,2) @B --type-args test::regulated_coin::REGULATED_COIN --sender A events: Event { package_id: iota, transaction_module: Identifier("coin"), sender: A, type_: StructTag { address: iota, module: Identifier("deny_list"), name: Identifier("PerTypeConfigCreated"), type_params: [] }, contents: [0, 0, 0, 0, 0, 0, 0, 0, 96, 57, 54, 51, 101, 51, 51, 55, 54, 100, 49, 48, 51, 98, 51, 50, 50, 99, 56, 50, 51, 53, 54, 51, 55, 55, 101, 100, 53, 54, 57, 51, 99, 50, 55, 51, 49, 53, 56, 48, 48, 52, 49, 53, 51, 54, 50, 57, 97, 97, 101, 50, 102, 100, 51, 56, 49, 49, 55, 50, 99, 56, 50, 100, 99, 58, 58, 114, 101, 103, 117, 108, 97, 116, 101, 100, 95, 99, 111, 105, 110, 58, 58, 82, 69, 71, 85, 76, 65, 84, 69, 68, 95, 67, 79, 73, 78, 190, 151, 1, 134, 198, 237, 153, 240, 113, 249, 57, 50, 254, 147, 131, 191, 242, 203, 140, 120, 90, 188, 242, 88, 218, 175, 150, 221, 187, 90, 104, 81] } created: object(3,0), object(3,1), object(3,2) mutated: 0x0000000000000000000000000000000000000000000000000000000000000403, object(0,0), object(1,2) -gas summary: computation_cost: 1000000, storage_cost: 12190400, storage_rebate: 2774000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 12190400, storage_rebate: 2774000, non_refundable_storage_fee: 0 task 4, line 45: //# run iota::pay::split_and_transfer --args object(1,0) 1 @B --type-args test::regulated_coin::REGULATED_COIN --sender A created: object(4,0) mutated: object(0,0), object(1,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 3936800, storage_rebate: 2462400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3936800, storage_rebate: 2462400, non_refundable_storage_fee: 0 task 5, lines 47-49: //# advance-epoch @@ -43,7 +43,7 @@ Execution Error: ExecutionError: ExecutionError { inner: ExecutionErrorInner { k task 7, lines 53-55: //# run iota::coin::deny_list_v1_remove --args object(0x403) object(1,2) @B --type-args test::regulated_coin::REGULATED_COIN --sender A mutated: 0x0000000000000000000000000000000000000000000000000000000000000403, object(0,0), object(1,2), object(3,1) -gas summary: computation_cost: 1000000, storage_cost: 6862800, storage_rebate: 6862800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6862800, storage_rebate: 6862800, non_refundable_storage_fee: 0 task 8, line 56: //# run iota::pay::split_and_transfer --args object(1,0) 1 @B --type-args test::regulated_coin::REGULATED_COIN --sender A @@ -59,4 +59,4 @@ task 10, line 61: created: object(10,0) mutated: object(0,0), object(1,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 3936800, storage_rebate: 2462400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3936800, storage_rebate: 2462400, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/deny_list_v1/coin_deny_and_undeny_sender.exp b/crates/iota-adapter-transactional-tests/tests/deny_list_v1/coin_deny_and_undeny_sender.exp index 67e31d439db..bda6a9dfea1 100644 --- a/crates/iota-adapter-transactional-tests/tests/deny_list_v1/coin_deny_and_undeny_sender.exp +++ b/crates/iota-adapter-transactional-tests/tests/deny_list_v1/coin_deny_and_undeny_sender.exp @@ -8,7 +8,7 @@ task 1, lines 14-49: created: object(1,0), object(1,1), object(1,2), object(1,3), object(1,4), object(1,5) mutated: object(0,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 19471200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 19471200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 50-52: //# view-object 1,2 @@ -28,20 +28,20 @@ task 3, lines 53-55: created: object(3,0) mutated: object(0,0), object(1,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 3936800, storage_rebate: 2462400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3936800, storage_rebate: 2462400, non_refundable_storage_fee: 0 task 4, lines 56-58: //# run iota::coin::deny_list_v1_add --args object(0x403) object(1,2) @B --type-args test::regulated_coin::REGULATED_COIN --sender A events: Event { package_id: iota, transaction_module: Identifier("coin"), sender: A, type_: StructTag { address: iota, module: Identifier("deny_list"), name: Identifier("PerTypeConfigCreated"), type_params: [] }, contents: [0, 0, 0, 0, 0, 0, 0, 0, 96, 50, 48, 97, 98, 51, 98, 49, 97, 54, 56, 102, 54, 102, 100, 101, 57, 102, 52, 57, 99, 98, 48, 102, 57, 101, 54, 100, 99, 101, 49, 49, 97, 48, 56, 53, 101, 50, 48, 98, 54, 57, 48, 50, 97, 57, 53, 98, 51, 56, 52, 97, 102, 101, 102, 57, 54, 101, 49, 52, 56, 98, 52, 57, 99, 58, 58, 114, 101, 103, 117, 108, 97, 116, 101, 100, 95, 99, 111, 105, 110, 58, 58, 82, 69, 71, 85, 76, 65, 84, 69, 68, 95, 67, 79, 73, 78, 207, 152, 64, 239, 97, 39, 104, 98, 56, 15, 144, 8, 112, 132, 182, 14, 69, 169, 195, 61, 160, 176, 71, 170, 239, 201, 25, 100, 59, 153, 46, 160] } created: object(4,0), object(4,1), object(4,2) mutated: 0x0000000000000000000000000000000000000000000000000000000000000403, object(0,0), object(1,2) -gas summary: computation_cost: 1000000, storage_cost: 12190400, storage_rebate: 2774000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 12190400, storage_rebate: 2774000, non_refundable_storage_fee: 0 task 5, lines 59-61: //# run test::regulated_coin::assert_address_deny_status --args immshared(0x403) @B true --sender A mutated: object(0,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 6, lines 62-64: //# transfer-object 3,0 --sender B --recipient A @@ -55,16 +55,16 @@ task 8, lines 68-70: //# run iota::coin::deny_list_v1_remove --args object(0x403) object(1,2) @B --type-args test::regulated_coin::REGULATED_COIN --sender A mutated: 0x0000000000000000000000000000000000000000000000000000000000000403, object(0,0), object(1,2) deleted: object(4,1) -gas summary: computation_cost: 1000000, storage_cost: 4400400, storage_rebate: 6862800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4400400, storage_rebate: 6862800, non_refundable_storage_fee: 0 task 9, lines 71-73: //# run test::regulated_coin::assert_address_deny_status --args immshared(0x403) @B false --sender A mutated: object(0,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 10, line 74: //# transfer-object 3,0 --sender B --recipient A mutated: object(0,1), object(3,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 2462400, storage_rebate: 1474400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2462400, storage_rebate: 1474400, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/deny_list_v1/coin_deny_multiple_coin_types.exp b/crates/iota-adapter-transactional-tests/tests/deny_list_v1/coin_deny_multiple_coin_types.exp index dcb5ba22141..e4e669b88b9 100644 --- a/crates/iota-adapter-transactional-tests/tests/deny_list_v1/coin_deny_multiple_coin_types.exp +++ b/crates/iota-adapter-transactional-tests/tests/deny_list_v1/coin_deny_multiple_coin_types.exp @@ -8,7 +8,7 @@ task 1, lines 12-61: created: object(1,0), object(1,1), object(1,2), object(1,3), object(1,4), object(1,5), object(1,6), object(1,7), object(1,8), object(1,9), object(1,10) mutated: object(0,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 34260800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 34260800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 62-64: //# view-object 1,0 @@ -45,7 +45,7 @@ task 4, line 68: events: Event { package_id: iota, transaction_module: Identifier("coin"), sender: A, type_: StructTag { address: iota, module: Identifier("deny_list"), name: Identifier("PerTypeConfigCreated"), type_params: [] }, contents: [0, 0, 0, 0, 0, 0, 0, 0, 98, 99, 56, 98, 102, 54, 55, 50, 56, 49, 97, 51, 50, 97, 52, 100, 48, 56, 99, 48, 49, 99, 102, 55, 57, 55, 98, 52, 102, 49, 98, 55, 50, 48, 101, 57, 102, 101, 100, 48, 100, 97, 53, 102, 57, 50, 57, 54, 54, 52, 52, 55, 99, 49, 97, 97, 57, 56, 48, 55, 54, 55, 56, 54, 48, 58, 58, 114, 101, 103, 117, 108, 97, 116, 101, 100, 95, 99, 111, 105, 110, 50, 58, 58, 82, 69, 71, 85, 76, 65, 84, 69, 68, 95, 67, 79, 73, 78, 50, 202, 55, 194, 7, 175, 188, 246, 46, 205, 113, 73, 247, 78, 28, 206, 6, 231, 187, 186, 54, 232, 26, 58, 45, 180, 250, 202, 56, 192, 114, 218, 100] } created: object(4,0), object(4,1), object(4,2) mutated: 0x0000000000000000000000000000000000000000000000000000000000000403, object(0,0), object(1,5) -gas summary: computation_cost: 1000000, storage_cost: 12220800, storage_rebate: 2789200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 12220800, storage_rebate: 2789200, non_refundable_storage_fee: 0 task 5, lines 70-71: //# programmable --sender A --inputs object(1,0) object(1,1) @A diff --git a/crates/iota-adapter-transactional-tests/tests/deny_list_v1/coin_global_pause.exp b/crates/iota-adapter-transactional-tests/tests/deny_list_v1/coin_global_pause.exp index f376d167327..d9ef4c682be 100644 --- a/crates/iota-adapter-transactional-tests/tests/deny_list_v1/coin_global_pause.exp +++ b/crates/iota-adapter-transactional-tests/tests/deny_list_v1/coin_global_pause.exp @@ -8,41 +8,41 @@ task 1, lines 11-73: created: object(1,0), object(1,1), object(1,2), object(1,3), object(1,4), object(1,5) mutated: object(0,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 21964000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 21964000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 74-76: //# run iota::pay::split_and_transfer --args object(1,0) 1 @B --type-args test::regulated_coin::REGULATED_COIN --sender A created: object(2,0) mutated: object(0,0), object(1,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 3936800, storage_rebate: 2462400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3936800, storage_rebate: 2462400, non_refundable_storage_fee: 0 task 3, lines 77-79: //# run test::regulated_coin::partial_wrap --args object(1,0) --sender A created: object(3,0) mutated: object(0,0), object(1,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 4119200, storage_rebate: 2462400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4119200, storage_rebate: 2462400, non_refundable_storage_fee: 0 task 4, lines 80-82: //# run test::regulated_coin::partial_wrap --args object(1,0) --sender A created: object(4,0) mutated: object(0,0), object(1,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 4119200, storage_rebate: 2462400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4119200, storage_rebate: 2462400, non_refundable_storage_fee: 0 task 5, lines 83-85: //# run iota::coin::deny_list_v1_enable_global_pause --args object(0x403) object(1,2) --type-args test::regulated_coin::REGULATED_COIN --sender A events: Event { package_id: iota, transaction_module: Identifier("coin"), sender: A, type_: StructTag { address: iota, module: Identifier("deny_list"), name: Identifier("PerTypeConfigCreated"), type_params: [] }, contents: [0, 0, 0, 0, 0, 0, 0, 0, 96, 99, 54, 97, 101, 54, 51, 52, 57, 50, 101, 102, 97, 99, 102, 102, 101, 53, 52, 52, 101, 50, 48, 102, 99, 98, 53, 54, 97, 97, 53, 100, 50, 50, 100, 55, 57, 53, 55, 55, 50, 102, 51, 48, 53, 57, 102, 54, 56, 53, 100, 99, 99, 100, 57, 102, 99, 52, 51, 57, 53, 99, 99, 100, 51, 58, 58, 114, 101, 103, 117, 108, 97, 116, 101, 100, 95, 99, 111, 105, 110, 58, 58, 82, 69, 71, 85, 76, 65, 84, 69, 68, 95, 67, 79, 73, 78, 195, 206, 136, 5, 6, 49, 247, 11, 4, 73, 177, 199, 37, 211, 119, 247, 197, 163, 62, 153, 73, 22, 179, 71, 7, 165, 10, 8, 80, 114, 124, 5] } created: object(5,0), object(5,1), object(5,2) mutated: 0x0000000000000000000000000000000000000000000000000000000000000403, object(0,0), object(1,2) -gas summary: computation_cost: 1000000, storage_cost: 11985200, storage_rebate: 2774000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 11985200, storage_rebate: 2774000, non_refundable_storage_fee: 0 task 6, lines 86-88: //# run test::regulated_coin::assert_global_pause_status --args immshared(0x403) true --sender A mutated: object(0,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 7, lines 89-91: //# run iota::pay::split_and_transfer --args object(1,0) 1 @B --type-args test::regulated_coin::REGULATED_COIN --sender A @@ -62,7 +62,7 @@ mutated: object(0,0) unwrapped: object(10,0) deleted: object(3,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 2462400, storage_rebate: 2644800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2462400, storage_rebate: 2644800, non_refundable_storage_fee: 0 task 11, lines 101-104: //# advance-epoch @@ -81,18 +81,18 @@ task 14, lines 111-113: //# run test::regulated_coin::assert_global_pause_status --args immshared(0x403) true --sender A mutated: object(0,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 15, lines 114-116: //# run iota::coin::deny_list_v1_disable_global_pause --args object(0x403) object(1,2) --type-args test::regulated_coin::REGULATED_COIN --sender A mutated: 0x0000000000000000000000000000000000000000000000000000000000000403, object(0,0), object(1,2), object(5,1) -gas summary: computation_cost: 1000000, storage_cost: 6657600, storage_rebate: 6657600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6657600, storage_rebate: 6657600, non_refundable_storage_fee: 0 task 16, lines 117-119: //# run test::regulated_coin::assert_global_pause_status --args immshared(0x403) false --sender A mutated: object(0,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 17, lines 120-122: //# run iota::pay::split_and_transfer --args object(1,0) 1 @B --type-args test::regulated_coin::REGULATED_COIN --sender A @@ -104,7 +104,7 @@ task 18, lines 123-126: created: object(18,0) mutated: object(0,0) wrapped: object(1,0) -gas summary: computation_cost: 1000000, storage_cost: 2644800, storage_rebate: 2462400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2644800, storage_rebate: 2462400, non_refundable_storage_fee: 0 task 19, line 127: //# run test::regulated_coin::unwrap --args object(18,0) --sender A @@ -121,4 +121,4 @@ mutated: object(0,0) unwrapped: object(1,0) deleted: object(18,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 2462400, storage_rebate: 2644800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2462400, storage_rebate: 2644800, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/deny_list_v1/delete_setting_object_same_epoch.exp b/crates/iota-adapter-transactional-tests/tests/deny_list_v1/delete_setting_object_same_epoch.exp index 8b91fc81e15..eba84c3364a 100644 --- a/crates/iota-adapter-transactional-tests/tests/deny_list_v1/delete_setting_object_same_epoch.exp +++ b/crates/iota-adapter-transactional-tests/tests/deny_list_v1/delete_setting_object_same_epoch.exp @@ -8,20 +8,20 @@ task 1, lines 10-54: created: object(1,0), object(1,1), object(1,2), object(1,3), object(1,4), object(1,5) mutated: object(0,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 20428800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 20428800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 55-57: //# run iota::coin::deny_list_v1_add --args object(0x403) object(1,2) @B --type-args test::regulated_coin::REGULATED_COIN --sender A events: Event { package_id: iota, transaction_module: Identifier("coin"), sender: A, type_: StructTag { address: iota, module: Identifier("deny_list"), name: Identifier("PerTypeConfigCreated"), type_params: [] }, contents: [0, 0, 0, 0, 0, 0, 0, 0, 96, 56, 97, 102, 99, 50, 53, 53, 100, 98, 49, 55, 55, 102, 56, 56, 102, 52, 49, 55, 54, 101, 98, 57, 53, 49, 100, 55, 99, 50, 102, 100, 49, 52, 54, 52, 51, 99, 52, 55, 56, 56, 55, 55, 97, 57, 51, 100, 101, 102, 101, 99, 54, 100, 101, 53, 56, 98, 52, 102, 102, 48, 57, 57, 54, 58, 58, 114, 101, 103, 117, 108, 97, 116, 101, 100, 95, 99, 111, 105, 110, 58, 58, 82, 69, 71, 85, 76, 65, 84, 69, 68, 95, 67, 79, 73, 78, 200, 43, 69, 14, 230, 177, 181, 7, 175, 120, 189, 53, 103, 99, 234, 147, 102, 94, 137, 176, 121, 164, 12, 14, 220, 228, 228, 153, 21, 48, 176, 221] } created: object(2,0), object(2,1), object(2,2) mutated: 0x0000000000000000000000000000000000000000000000000000000000000403, object(0,0), object(1,2) -gas summary: computation_cost: 1000000, storage_cost: 12190400, storage_rebate: 2774000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 12190400, storage_rebate: 2774000, non_refundable_storage_fee: 0 task 3, lines 58-60: //# run iota::coin::deny_list_v1_enable_global_pause --args object(0x403) object(1,2) --type-args test::regulated_coin::REGULATED_COIN --sender A created: object(3,0) mutated: 0x0000000000000000000000000000000000000000000000000000000000000403, object(0,0), object(1,2) -gas summary: computation_cost: 1000000, storage_cost: 6657600, storage_rebate: 4400400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6657600, storage_rebate: 4400400, non_refundable_storage_fee: 0 task 4, line 61: //# view-object 2,1 @@ -91,13 +91,13 @@ task 6, lines 66-68: //# run iota::coin::deny_list_v1_remove --args object(0x403) object(1,2) @B --type-args test::regulated_coin::REGULATED_COIN --sender A mutated: 0x0000000000000000000000000000000000000000000000000000000000000403, object(0,0), object(1,2) deleted: object(2,1) -gas summary: computation_cost: 1000000, storage_cost: 4400400, storage_rebate: 6862800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4400400, storage_rebate: 6862800, non_refundable_storage_fee: 0 task 7, lines 69-71: //# run iota::coin::deny_list_v1_disable_global_pause --args object(0x403) object(1,2) --type-args test::regulated_coin::REGULATED_COIN --sender A mutated: 0x0000000000000000000000000000000000000000000000000000000000000403, object(0,0), object(1,2) deleted: object(3,0) -gas summary: computation_cost: 1000000, storage_cost: 4400400, storage_rebate: 6657600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4400400, storage_rebate: 6657600, non_refundable_storage_fee: 0 task 8, line 72: //# view-object 2,1 @@ -111,10 +111,10 @@ task 10, lines 77-79: //# run test::regulated_coin::assert_address_deny_status --args immshared(0x403) @B false --sender A mutated: object(0,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 11, line 80: //# run test::regulated_coin::assert_global_pause_status --args immshared(0x403) false --sender A mutated: object(0,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/deny_list_v1/delete_setting_object_set_once.exp b/crates/iota-adapter-transactional-tests/tests/deny_list_v1/delete_setting_object_set_once.exp index 5b481e25ecf..31b882e33db 100644 --- a/crates/iota-adapter-transactional-tests/tests/deny_list_v1/delete_setting_object_set_once.exp +++ b/crates/iota-adapter-transactional-tests/tests/deny_list_v1/delete_setting_object_set_once.exp @@ -8,20 +8,20 @@ task 1, lines 10-54: created: object(1,0), object(1,1), object(1,2), object(1,3), object(1,4), object(1,5) mutated: object(0,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 20428800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 20428800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 55-57: //# run iota::coin::deny_list_v1_add --args object(0x403) object(1,2) @B --type-args test::regulated_coin::REGULATED_COIN --sender A events: Event { package_id: iota, transaction_module: Identifier("coin"), sender: A, type_: StructTag { address: iota, module: Identifier("deny_list"), name: Identifier("PerTypeConfigCreated"), type_params: [] }, contents: [0, 0, 0, 0, 0, 0, 0, 0, 96, 56, 97, 102, 99, 50, 53, 53, 100, 98, 49, 55, 55, 102, 56, 56, 102, 52, 49, 55, 54, 101, 98, 57, 53, 49, 100, 55, 99, 50, 102, 100, 49, 52, 54, 52, 51, 99, 52, 55, 56, 56, 55, 55, 97, 57, 51, 100, 101, 102, 101, 99, 54, 100, 101, 53, 56, 98, 52, 102, 102, 48, 57, 57, 54, 58, 58, 114, 101, 103, 117, 108, 97, 116, 101, 100, 95, 99, 111, 105, 110, 58, 58, 82, 69, 71, 85, 76, 65, 84, 69, 68, 95, 67, 79, 73, 78, 200, 43, 69, 14, 230, 177, 181, 7, 175, 120, 189, 53, 103, 99, 234, 147, 102, 94, 137, 176, 121, 164, 12, 14, 220, 228, 228, 153, 21, 48, 176, 221] } created: object(2,0), object(2,1), object(2,2) mutated: 0x0000000000000000000000000000000000000000000000000000000000000403, object(0,0), object(1,2) -gas summary: computation_cost: 1000000, storage_cost: 12190400, storage_rebate: 2774000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 12190400, storage_rebate: 2774000, non_refundable_storage_fee: 0 task 3, lines 58-60: //# run iota::coin::deny_list_v1_enable_global_pause --args object(0x403) object(1,2) --type-args test::regulated_coin::REGULATED_COIN --sender A created: object(3,0) mutated: 0x0000000000000000000000000000000000000000000000000000000000000403, object(0,0), object(1,2) -gas summary: computation_cost: 1000000, storage_cost: 6657600, storage_rebate: 4400400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6657600, storage_rebate: 4400400, non_refundable_storage_fee: 0 task 4, line 61: //# view-object 2,1 @@ -94,12 +94,12 @@ Epoch advanced: 1 task 7, lines 68-70: //# run iota::coin::deny_list_v1_remove --args object(0x403) object(1,2) @B --type-args test::regulated_coin::REGULATED_COIN --sender A mutated: 0x0000000000000000000000000000000000000000000000000000000000000403, object(0,0), object(1,2), object(2,1) -gas summary: computation_cost: 1000000, storage_cost: 6862800, storage_rebate: 6862800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6862800, storage_rebate: 6862800, non_refundable_storage_fee: 0 task 8, lines 71-73: //# run iota::coin::deny_list_v1_disable_global_pause --args object(0x403) object(1,2) --type-args test::regulated_coin::REGULATED_COIN --sender A mutated: 0x0000000000000000000000000000000000000000000000000000000000000403, object(0,0), object(1,2), object(3,0) -gas summary: computation_cost: 1000000, storage_cost: 6657600, storage_rebate: 6657600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6657600, storage_rebate: 6657600, non_refundable_storage_fee: 0 task 9, line 74: //# view-object 2,1 @@ -173,13 +173,13 @@ task 12, lines 81-83: //# run iota::coin::deny_list_v1_remove --args object(0x403) object(1,2) @B --type-args test::regulated_coin::REGULATED_COIN --sender A mutated: 0x0000000000000000000000000000000000000000000000000000000000000403, object(0,0), object(1,2) deleted: object(2,1) -gas summary: computation_cost: 1000000, storage_cost: 4400400, storage_rebate: 6862800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4400400, storage_rebate: 6862800, non_refundable_storage_fee: 0 task 13, lines 84-86: //# run iota::coin::deny_list_v1_disable_global_pause --args object(0x403) object(1,2) --type-args test::regulated_coin::REGULATED_COIN --sender A mutated: 0x0000000000000000000000000000000000000000000000000000000000000403, object(0,0), object(1,2) deleted: object(3,0) -gas summary: computation_cost: 1000000, storage_cost: 4400400, storage_rebate: 6657600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4400400, storage_rebate: 6657600, non_refundable_storage_fee: 0 task 14, line 87: //# view-object 2,1 @@ -193,10 +193,10 @@ task 16, lines 92-94: //# run test::regulated_coin::assert_address_deny_status --args immshared(0x403) @B false --sender A mutated: object(0,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 17, line 95: //# run test::regulated_coin::assert_global_pause_status --args immshared(0x403) false --sender A mutated: object(0,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/deny_list_v1/delete_setting_object_set_twice.exp b/crates/iota-adapter-transactional-tests/tests/deny_list_v1/delete_setting_object_set_twice.exp index 503e057963b..dc5bb98c5e2 100644 --- a/crates/iota-adapter-transactional-tests/tests/deny_list_v1/delete_setting_object_set_twice.exp +++ b/crates/iota-adapter-transactional-tests/tests/deny_list_v1/delete_setting_object_set_twice.exp @@ -8,20 +8,20 @@ task 1, lines 10-54: created: object(1,0), object(1,1), object(1,2), object(1,3), object(1,4), object(1,5) mutated: object(0,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 20428800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 20428800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 55-57: //# run iota::coin::deny_list_v1_add --args object(0x403) object(1,2) @B --type-args test::regulated_coin::REGULATED_COIN --sender A events: Event { package_id: iota, transaction_module: Identifier("coin"), sender: A, type_: StructTag { address: iota, module: Identifier("deny_list"), name: Identifier("PerTypeConfigCreated"), type_params: [] }, contents: [0, 0, 0, 0, 0, 0, 0, 0, 96, 56, 97, 102, 99, 50, 53, 53, 100, 98, 49, 55, 55, 102, 56, 56, 102, 52, 49, 55, 54, 101, 98, 57, 53, 49, 100, 55, 99, 50, 102, 100, 49, 52, 54, 52, 51, 99, 52, 55, 56, 56, 55, 55, 97, 57, 51, 100, 101, 102, 101, 99, 54, 100, 101, 53, 56, 98, 52, 102, 102, 48, 57, 57, 54, 58, 58, 114, 101, 103, 117, 108, 97, 116, 101, 100, 95, 99, 111, 105, 110, 58, 58, 82, 69, 71, 85, 76, 65, 84, 69, 68, 95, 67, 79, 73, 78, 200, 43, 69, 14, 230, 177, 181, 7, 175, 120, 189, 53, 103, 99, 234, 147, 102, 94, 137, 176, 121, 164, 12, 14, 220, 228, 228, 153, 21, 48, 176, 221] } created: object(2,0), object(2,1), object(2,2) mutated: 0x0000000000000000000000000000000000000000000000000000000000000403, object(0,0), object(1,2) -gas summary: computation_cost: 1000000, storage_cost: 12190400, storage_rebate: 2774000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 12190400, storage_rebate: 2774000, non_refundable_storage_fee: 0 task 3, lines 58-60: //# run iota::coin::deny_list_v1_enable_global_pause --args object(0x403) object(1,2) --type-args test::regulated_coin::REGULATED_COIN --sender A created: object(3,0) mutated: 0x0000000000000000000000000000000000000000000000000000000000000403, object(0,0), object(1,2) -gas summary: computation_cost: 1000000, storage_cost: 6657600, storage_rebate: 4400400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6657600, storage_rebate: 4400400, non_refundable_storage_fee: 0 task 4, line 61: //# view-object 2,1 @@ -94,12 +94,12 @@ Epoch advanced: 1 task 7, lines 68-70: //# run iota::coin::deny_list_v1_add --args object(0x403) object(1,2) @B --type-args test::regulated_coin::REGULATED_COIN --sender A mutated: 0x0000000000000000000000000000000000000000000000000000000000000403, object(0,0), object(1,2), object(2,1) -gas summary: computation_cost: 1000000, storage_cost: 6870400, storage_rebate: 6862800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6870400, storage_rebate: 6862800, non_refundable_storage_fee: 0 task 8, lines 71-73: //# run iota::coin::deny_list_v1_enable_global_pause --args object(0x403) object(1,2) --type-args test::regulated_coin::REGULATED_COIN --sender A mutated: 0x0000000000000000000000000000000000000000000000000000000000000403, object(0,0), object(1,2), object(3,0) -gas summary: computation_cost: 1000000, storage_cost: 6665200, storage_rebate: 6657600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6665200, storage_rebate: 6657600, non_refundable_storage_fee: 0 task 9, line 74: //# view-object 2,1 @@ -176,12 +176,12 @@ Epoch advanced: 2 task 12, lines 81-83: //# run iota::coin::deny_list_v1_remove --args object(0x403) object(1,2) @B --type-args test::regulated_coin::REGULATED_COIN --sender A mutated: 0x0000000000000000000000000000000000000000000000000000000000000403, object(0,0), object(1,2), object(2,1) -gas summary: computation_cost: 1000000, storage_cost: 6862800, storage_rebate: 6870400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6862800, storage_rebate: 6870400, non_refundable_storage_fee: 0 task 13, lines 84-86: //# run iota::coin::deny_list_v1_disable_global_pause --args object(0x403) object(1,2) --type-args test::regulated_coin::REGULATED_COIN --sender A mutated: 0x0000000000000000000000000000000000000000000000000000000000000403, object(0,0), object(1,2), object(3,0) -gas summary: computation_cost: 1000000, storage_cost: 6657600, storage_rebate: 6665200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6657600, storage_rebate: 6665200, non_refundable_storage_fee: 0 task 14, line 87: //# view-object 2,1 @@ -255,13 +255,13 @@ task 17, lines 94-96: //# run iota::coin::deny_list_v1_remove --args object(0x403) object(1,2) @B --type-args test::regulated_coin::REGULATED_COIN --sender A mutated: 0x0000000000000000000000000000000000000000000000000000000000000403, object(0,0), object(1,2) deleted: object(2,1) -gas summary: computation_cost: 1000000, storage_cost: 4400400, storage_rebate: 6862800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4400400, storage_rebate: 6862800, non_refundable_storage_fee: 0 task 18, lines 97-99: //# run iota::coin::deny_list_v1_disable_global_pause --args object(0x403) object(1,2) --type-args test::regulated_coin::REGULATED_COIN --sender A mutated: 0x0000000000000000000000000000000000000000000000000000000000000403, object(0,0), object(1,2) deleted: object(3,0) -gas summary: computation_cost: 1000000, storage_cost: 4400400, storage_rebate: 6657600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4400400, storage_rebate: 6657600, non_refundable_storage_fee: 0 task 19, line 100: //# view-object 2,1 @@ -275,10 +275,10 @@ task 21, lines 105-107: //# run test::regulated_coin::assert_address_deny_status --args immshared(0x403) @B false --sender A mutated: object(0,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 22, line 108: //# run test::regulated_coin::assert_global_pause_status --args immshared(0x403) false --sender A mutated: object(0,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/deny_list_v1/double_add.exp b/crates/iota-adapter-transactional-tests/tests/deny_list_v1/double_add.exp index 03b8b239a27..63c5150faa6 100644 --- a/crates/iota-adapter-transactional-tests/tests/deny_list_v1/double_add.exp +++ b/crates/iota-adapter-transactional-tests/tests/deny_list_v1/double_add.exp @@ -8,32 +8,32 @@ task 1, lines 10-45: created: object(1,0), object(1,1), object(1,2), object(1,3), object(1,4), object(1,5) mutated: object(0,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 19471200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 19471200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 46-48: //# run iota::pay::split_and_transfer --args object(1,0) 1 @B --type-args test::regulated_coin::REGULATED_COIN --sender A created: object(2,0) mutated: object(0,0), object(1,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 3936800, storage_rebate: 2462400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3936800, storage_rebate: 2462400, non_refundable_storage_fee: 0 task 3, lines 49-51: //# run iota::coin::deny_list_v1_add --args object(0x403) object(1,2) @B --type-args test::regulated_coin::REGULATED_COIN --sender A events: Event { package_id: iota, transaction_module: Identifier("coin"), sender: A, type_: StructTag { address: iota, module: Identifier("deny_list"), name: Identifier("PerTypeConfigCreated"), type_params: [] }, contents: [0, 0, 0, 0, 0, 0, 0, 0, 96, 50, 48, 97, 98, 51, 98, 49, 97, 54, 56, 102, 54, 102, 100, 101, 57, 102, 52, 57, 99, 98, 48, 102, 57, 101, 54, 100, 99, 101, 49, 49, 97, 48, 56, 53, 101, 50, 48, 98, 54, 57, 48, 50, 97, 57, 53, 98, 51, 56, 52, 97, 102, 101, 102, 57, 54, 101, 49, 52, 56, 98, 52, 57, 99, 58, 58, 114, 101, 103, 117, 108, 97, 116, 101, 100, 95, 99, 111, 105, 110, 58, 58, 82, 69, 71, 85, 76, 65, 84, 69, 68, 95, 67, 79, 73, 78, 207, 152, 64, 239, 97, 39, 104, 98, 56, 15, 144, 8, 112, 132, 182, 14, 69, 169, 195, 61, 160, 176, 71, 170, 239, 201, 25, 100, 59, 153, 46, 160] } created: object(3,0), object(3,1), object(3,2) mutated: 0x0000000000000000000000000000000000000000000000000000000000000403, object(0,0), object(1,2) -gas summary: computation_cost: 1000000, storage_cost: 12190400, storage_rebate: 2774000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 12190400, storage_rebate: 2774000, non_refundable_storage_fee: 0 task 4, lines 52-54: //# run iota::coin::deny_list_v1_add --args object(0x403) object(1,2) @B --type-args test::regulated_coin::REGULATED_COIN --sender A mutated: 0x0000000000000000000000000000000000000000000000000000000000000403, object(0,0), object(1,2), object(3,1) -gas summary: computation_cost: 1000000, storage_cost: 6862800, storage_rebate: 6862800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6862800, storage_rebate: 6862800, non_refundable_storage_fee: 0 task 5, lines 55-57: //# run test::regulated_coin::assert_address_deny_status --args immshared(0x403) @B true --sender A mutated: object(0,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 6, lines 58-60: //# transfer-object 2,0 --sender B --recipient A @@ -47,16 +47,16 @@ task 8, lines 64-66: //# run iota::coin::deny_list_v1_remove --args object(0x403) object(1,2) @B --type-args test::regulated_coin::REGULATED_COIN --sender A mutated: 0x0000000000000000000000000000000000000000000000000000000000000403, object(0,0), object(1,2) deleted: object(3,1) -gas summary: computation_cost: 1000000, storage_cost: 4400400, storage_rebate: 6862800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4400400, storage_rebate: 6862800, non_refundable_storage_fee: 0 task 9, lines 67-69: //# run test::regulated_coin::assert_address_deny_status --args immshared(0x403) @B false --sender A mutated: object(0,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 10, line 70: //# transfer-object 2,0 --sender B --recipient A mutated: object(0,1), object(2,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 2462400, storage_rebate: 1474400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2462400, storage_rebate: 1474400, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/deny_list_v1/send_many_coins_unregulated.exp b/crates/iota-adapter-transactional-tests/tests/deny_list_v1/send_many_coins_unregulated.exp index bf6d242e920..5f15dccc64b 100644 --- a/crates/iota-adapter-transactional-tests/tests/deny_list_v1/send_many_coins_unregulated.exp +++ b/crates/iota-adapter-transactional-tests/tests/deny_list_v1/send_many_coins_unregulated.exp @@ -8,7 +8,7 @@ task 1, lines 7-53: created: object(1,0), object(1,1), object(1,2), object(1,3) mutated: object(0,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 15048000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 15048000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 55: //# view-object 1,1 @@ -30,18 +30,18 @@ task 3, line 57: created: object(3,0) mutated: object(0,0), object(1,1) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 3632800, storage_rebate: 2310400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3632800, storage_rebate: 2310400, non_refundable_storage_fee: 0 task 4, line 59: //# run test::coin::send_10 --args object(1,1) --sender A created: object(4,0), object(4,1), object(4,2), object(4,3), object(4,4), object(4,5), object(4,6), object(4,7), object(4,8), object(4,9) mutated: object(0,0), object(1,1) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 2000000, storage_cost: 15534400, storage_rebate: 2310400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 2000000, computation_cost_burned: 2000000, storage_cost: 15534400, storage_rebate: 2310400, non_refundable_storage_fee: 0 task 5, line 61: //# run test::coin::send_100 --args object(1,1) --sender A created: object(5,0), object(5,1), object(5,2), object(5,3), object(5,4), object(5,5), object(5,6), object(5,7), object(5,8), object(5,9), object(5,10), object(5,11), object(5,12), object(5,13), object(5,14), object(5,15), object(5,16), object(5,17), object(5,18), object(5,19), object(5,20), object(5,21), object(5,22), object(5,23), object(5,24), object(5,25), object(5,26), object(5,27), object(5,28), object(5,29), object(5,30), object(5,31), object(5,32), object(5,33), object(5,34), object(5,35), object(5,36), object(5,37), object(5,38), object(5,39), object(5,40), object(5,41), object(5,42), object(5,43), object(5,44), object(5,45), object(5,46), object(5,47), object(5,48), object(5,49), object(5,50), object(5,51), object(5,52), object(5,53), object(5,54), object(5,55), object(5,56), object(5,57), object(5,58), object(5,59), object(5,60), object(5,61), object(5,62), object(5,63), object(5,64), object(5,65), object(5,66), object(5,67), object(5,68), object(5,69), object(5,70), object(5,71), object(5,72), object(5,73), object(5,74), object(5,75), object(5,76), object(5,77), object(5,78), object(5,79), object(5,80), object(5,81), object(5,82), object(5,83), object(5,84), object(5,85), object(5,86), object(5,87), object(5,88), object(5,89), object(5,90), object(5,91), object(5,92), object(5,93), object(5,94), object(5,95), object(5,96), object(5,97), object(5,98), object(5,99) mutated: object(0,0), object(1,1) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 16000000, storage_cost: 134550400, storage_rebate: 2310400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 16000000, computation_cost_burned: 16000000, storage_cost: 134550400, storage_rebate: 2310400, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/dev_inspect/load_old_object.exp b/crates/iota-adapter-transactional-tests/tests/dev_inspect/load_old_object.exp index b95d01203af..37491a84e95 100644 --- a/crates/iota-adapter-transactional-tests/tests/dev_inspect/load_old_object.exp +++ b/crates/iota-adapter-transactional-tests/tests/dev_inspect/load_old_object.exp @@ -7,7 +7,7 @@ task 1, lines 9-31: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 5274400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5274400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 33-35: //# programmable --sender A --inputs @A @@ -15,7 +15,7 @@ task 2, lines 33-35: //> TransferObjects([Result(0)], Input(0)) created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2257200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2257200, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 37: //# view-object 2,0 @@ -34,7 +34,7 @@ task 4, lines 39-40: //# programmable --sender A --inputs object(2,0) 112 //> test::m::set(Input(0), Input(1)) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2257200, storage_rebate: 2257200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2257200, storage_rebate: 2257200, non_refundable_storage_fee: 0 task 5, lines 42-45: //# view-object 2,0 @@ -53,14 +53,14 @@ task 6, lines 47-48: //# programmable --sender A --inputs object(2,0)@2 0 --dev-inspect //> test::m::check(Input(0), Input(1)) mutated: object(_), object(2,0) -gas summary: computation_cost: 500000, storage_cost: 2257200, storage_rebate: 1269200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 2257200, storage_rebate: 1269200, non_refundable_storage_fee: 0 task 7, lines 50-54: //# programmable --sender A --inputs object(2,0)@3 112 --dev-inspect //> test::m::check(Input(0), Input(1)) // dev-inspect with 'check' and _incorrect_ values mutated: object(_), object(2,0) -gas summary: computation_cost: 500000, storage_cost: 2257200, storage_rebate: 1269200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 2257200, storage_rebate: 1269200, non_refundable_storage_fee: 0 task 8, lines 56-57: //# programmable --sender A --inputs object(2,0)@2 112 --dev-inspect diff --git a/crates/iota-adapter-transactional-tests/tests/dynamic_fields/add_duplicate.exp b/crates/iota-adapter-transactional-tests/tests/dynamic_fields/add_duplicate.exp index 942c30193ae..e42a63b44ea 100644 --- a/crates/iota-adapter-transactional-tests/tests/dynamic_fields/add_duplicate.exp +++ b/crates/iota-adapter-transactional-tests/tests/dynamic_fields/add_duplicate.exp @@ -7,13 +7,13 @@ task 1, lines 10-29: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 5867200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5867200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 31: //# run a::m::t1 --sender A created: object(2,0), object(2,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3678400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3678400, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 33: //# run a::m::t2 --sender A --args object(2,0) diff --git a/crates/iota-adapter-transactional-tests/tests/dynamic_fields/add_duplicate_object.exp b/crates/iota-adapter-transactional-tests/tests/dynamic_fields/add_duplicate_object.exp index 7065424815e..86b8a9d43ea 100644 --- a/crates/iota-adapter-transactional-tests/tests/dynamic_fields/add_duplicate_object.exp +++ b/crates/iota-adapter-transactional-tests/tests/dynamic_fields/add_duplicate_object.exp @@ -7,13 +7,13 @@ task 1, lines 11-30: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 6026800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6026800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 32: //# run a::m::t1 --sender A created: object(2,0), object(2,1), object(2,2) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5890000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5890000, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 34: //# run a::m::t2 --sender A --args object(2,1) diff --git a/crates/iota-adapter-transactional-tests/tests/dynamic_fields/bench.exp b/crates/iota-adapter-transactional-tests/tests/dynamic_fields/bench.exp index 5a4a66edc22..dd8cd2846fa 100644 --- a/crates/iota-adapter-transactional-tests/tests/dynamic_fields/bench.exp +++ b/crates/iota-adapter-transactional-tests/tests/dynamic_fields/bench.exp @@ -7,10 +7,10 @@ task 1, lines 10-61: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 8603200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 8603200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 63: //# run a::m::t0 --sender A created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2211600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2211600, storage_rebate: 0, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/dynamic_fields/borrow_wrong_type.exp b/crates/iota-adapter-transactional-tests/tests/dynamic_fields/borrow_wrong_type.exp index 934e354e8e9..c049dd04c2e 100644 --- a/crates/iota-adapter-transactional-tests/tests/dynamic_fields/borrow_wrong_type.exp +++ b/crates/iota-adapter-transactional-tests/tests/dynamic_fields/borrow_wrong_type.exp @@ -7,13 +7,13 @@ task 1, lines 10-33: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 6505600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6505600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 35: //# run a::m::t1 --sender A created: object(2,0), object(2,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3678400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3678400, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 37: //# run a::m::t2 --sender A --args object(2,0) diff --git a/crates/iota-adapter-transactional-tests/tests/dynamic_fields/borrow_wrong_type_object.exp b/crates/iota-adapter-transactional-tests/tests/dynamic_fields/borrow_wrong_type_object.exp index 2ec805de8b3..579f4d5a7a7 100644 --- a/crates/iota-adapter-transactional-tests/tests/dynamic_fields/borrow_wrong_type_object.exp +++ b/crates/iota-adapter-transactional-tests/tests/dynamic_fields/borrow_wrong_type_object.exp @@ -7,13 +7,13 @@ task 1, lines 11-38: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 7075600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7075600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 40: //# run a::m::t1 --sender A created: object(2,0), object(2,1), object(2,2) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5890000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5890000, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 42: //# run a::m::t2 --sender A --args object(2,0) diff --git a/crates/iota-adapter-transactional-tests/tests/dynamic_fields/dynamic_object_field_swap.exp b/crates/iota-adapter-transactional-tests/tests/dynamic_fields/dynamic_object_field_swap.exp index fd44d68d8d1..c2f53790d2f 100644 --- a/crates/iota-adapter-transactional-tests/tests/dynamic_fields/dynamic_object_field_swap.exp +++ b/crates/iota-adapter-transactional-tests/tests/dynamic_fields/dynamic_object_field_swap.exp @@ -7,25 +7,25 @@ task 1, lines 7-60: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 8937600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 8937600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 62: //# run test::m::parent --sender A created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2470000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2470000, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 64: //# run test::m::child --sender A created: object(3,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 988000, non_refundable_storage_fee: 0 task 4, line 66: //# run test::m::add_field --sender A --args object(2,0) object(3,0) created: object(4,0) mutated: object(0,0), object(2,0), object(3,0) -gas summary: computation_cost: 1000000, storage_cost: 6224400, storage_rebate: 3769600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6224400, storage_rebate: 3769600, non_refundable_storage_fee: 0 task 5, line 68: //# view-object 3,0 @@ -45,7 +45,7 @@ task 6, line 70: created: object(6,0) mutated: object(0,0), object(2,0), object(3,0) deleted: object(4,0) -gas summary: computation_cost: 1000000, storage_cost: 5251600, storage_rebate: 6224400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5251600, storage_rebate: 6224400, non_refundable_storage_fee: 0 task 7, line 72: //# view-object 3,0 diff --git a/crates/iota-adapter-transactional-tests/tests/dynamic_fields/exhaustive.exp b/crates/iota-adapter-transactional-tests/tests/dynamic_fields/exhaustive.exp index 35dff53c465..88e593aa3e7 100644 --- a/crates/iota-adapter-transactional-tests/tests/dynamic_fields/exhaustive.exp +++ b/crates/iota-adapter-transactional-tests/tests/dynamic_fields/exhaustive.exp @@ -7,53 +7,53 @@ task 1, lines 10-78: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 12205600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 12205600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 80: //# run a::m::t0 --sender A created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2211600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2211600, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 82: //# run a::m::t1 --sender A --args object(2,0) created: object(3,0), object(3,1), object(3,2) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 6513200, storage_rebate: 2211600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6513200, storage_rebate: 2211600, non_refundable_storage_fee: 0 task 4, line 84: //# run a::m::t2 --sender A --args object(2,0) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2211600, storage_rebate: 2211600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2211600, storage_rebate: 2211600, non_refundable_storage_fee: 0 task 5, line 86: //# run a::m::t3 --sender A --args object(2,0) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2211600, storage_rebate: 2211600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2211600, storage_rebate: 2211600, non_refundable_storage_fee: 0 task 6, line 88: //# run a::m::t4 --sender A --args object(2,0) mutated: object(0,0), object(2,0), object(3,0), object(3,1), object(3,2) -gas summary: computation_cost: 1000000, storage_cost: 6513200, storage_rebate: 6513200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6513200, storage_rebate: 6513200, non_refundable_storage_fee: 0 task 7, line 90: //# run a::m::t5 --sender A --args object(2,0) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2211600, storage_rebate: 2211600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2211600, storage_rebate: 2211600, non_refundable_storage_fee: 0 task 8, line 92: //# run a::m::t6 --sender A --args object(2,0) mutated: object(0,0), object(2,0) deleted: object(3,1), object(3,2) -gas summary: computation_cost: 1000000, storage_cost: 2211600, storage_rebate: 5099600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2211600, storage_rebate: 5099600, non_refundable_storage_fee: 0 task 9, line 94: //# run a::m::t7 --sender A --args object(2,0) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2211600, storage_rebate: 2211600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2211600, storage_rebate: 2211600, non_refundable_storage_fee: 0 task 10, line 96: //# run a::m::t8 --sender A --args object(2,0) mutated: object(0,0) deleted: object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 2211600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 2211600, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/dynamic_fields/exhaustive_object.exp b/crates/iota-adapter-transactional-tests/tests/dynamic_fields/exhaustive_object.exp index e41df19232d..e10ece5a333 100644 --- a/crates/iota-adapter-transactional-tests/tests/dynamic_fields/exhaustive_object.exp +++ b/crates/iota-adapter-transactional-tests/tests/dynamic_fields/exhaustive_object.exp @@ -7,53 +7,53 @@ task 1, lines 11-103: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 13482400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 13482400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 105: //# run a::m::t0 --sender A created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2211600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2211600, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 107: //# run a::m::t1 --sender A --args object(2,0) created: object(3,0), object(3,1), object(3,2), object(3,3), object(3,4), object(3,5) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 13421600, storage_rebate: 2211600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 13421600, storage_rebate: 2211600, non_refundable_storage_fee: 0 task 4, line 109: //# run a::m::t2 --sender A --args object(2,0) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2211600, storage_rebate: 2211600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2211600, storage_rebate: 2211600, non_refundable_storage_fee: 0 task 5, line 111: //# run a::m::t3 --sender A --args object(2,0) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2211600, storage_rebate: 2211600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2211600, storage_rebate: 2211600, non_refundable_storage_fee: 0 task 6, line 113: //# run a::m::t4 --sender A --args object(2,0) mutated: object(0,0), object(2,0), object(3,0), object(3,1), object(3,2) -gas summary: computation_cost: 1000000, storage_cost: 6156000, storage_rebate: 6156000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6156000, storage_rebate: 6156000, non_refundable_storage_fee: 0 task 7, line 115: //# run a::m::t5 --sender A --args object(2,0) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2211600, storage_rebate: 2211600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2211600, storage_rebate: 2211600, non_refundable_storage_fee: 0 task 8, line 117: //# run a::m::t6 --sender A --args object(2,0) mutated: object(0,0), object(2,0) deleted: object(3,1), object(3,2), object(3,4), object(3,5) -gas summary: computation_cost: 1000000, storage_cost: 2211600, storage_rebate: 9705200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2211600, storage_rebate: 9705200, non_refundable_storage_fee: 0 task 9, line 119: //# run a::m::t7 --sender A --args object(2,0) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2211600, storage_rebate: 2211600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2211600, storage_rebate: 2211600, non_refundable_storage_fee: 0 task 10, line 121: //# run a::m::t8 --sender A --args object(2,0) mutated: object(0,0) deleted: object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 2211600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 2211600, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/dynamic_fields/read_field_from_immutable.exp b/crates/iota-adapter-transactional-tests/tests/dynamic_fields/read_field_from_immutable.exp index 45115223dae..ce16fefb17b 100644 --- a/crates/iota-adapter-transactional-tests/tests/dynamic_fields/read_field_from_immutable.exp +++ b/crates/iota-adapter-transactional-tests/tests/dynamic_fields/read_field_from_immutable.exp @@ -7,15 +7,15 @@ task 1, lines 10-29: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 6133200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6133200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 31: //# run a::m::add_then_freeze --sender A created: object(2,0), object(2,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3678400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3678400, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 33: //# run a::m::read_from_frozen --sender A --args object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/dynamic_fields/receive_remove_add_back_and_remove_type.exp b/crates/iota-adapter-transactional-tests/tests/dynamic_fields/receive_remove_add_back_and_remove_type.exp index 925273ac814..fdb335c3269 100644 --- a/crates/iota-adapter-transactional-tests/tests/dynamic_fields/receive_remove_add_back_and_remove_type.exp +++ b/crates/iota-adapter-transactional-tests/tests/dynamic_fields/receive_remove_add_back_and_remove_type.exp @@ -7,54 +7,54 @@ task 1, lines 12-88: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 12897200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 12897200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 90: //# run test::m1::create --sender A created: object(2,0), object(2,1), object(2,2) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4689200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4689200, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 92: //# run test::m1::test_dof --args object(2,2) receiving(2,0) receiving(2,1) --sender A mutated: object(0,0), object(2,0), object(2,2) deleted: object(2,1) -gas summary: computation_cost: 1000000, storage_cost: 3465600, storage_rebate: 4689200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3465600, storage_rebate: 4689200, non_refundable_storage_fee: 0 task 4, line 94: //# run test::m1::create --sender A created: object(4,0), object(4,1), object(4,2) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4689200, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4689200, storage_rebate: 988000, non_refundable_storage_fee: 0 task 5, line 96: //# run test::m1::test_df --args object(4,2) receiving(4,0) receiving(4,1) --sender A mutated: object(0,0), object(4,0), object(4,2) deleted: object(4,1) -gas summary: computation_cost: 1000000, storage_cost: 3465600, storage_rebate: 4689200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3465600, storage_rebate: 4689200, non_refundable_storage_fee: 0 task 6, line 98: //# run test::m1::create --sender A created: object(6,0), object(6,1), object(6,2) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4689200, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4689200, storage_rebate: 988000, non_refundable_storage_fee: 0 task 7, line 100: //# run test::m1::test_dof_wrapper --args object(6,2) receiving(6,0) receiving(6,1) --sender A created: object(7,0) mutated: object(0,0), object(6,2) wrapped: object(6,0) -gas summary: computation_cost: 1000000, storage_cost: 4050800, storage_rebate: 3465600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4050800, storage_rebate: 3465600, non_refundable_storage_fee: 0 task 8, line 102: //# run test::m1::create --sender A created: object(8,0), object(8,1), object(8,2) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4689200, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4689200, storage_rebate: 988000, non_refundable_storage_fee: 0 task 9, line 104: //# run test::m1::test_df_wrapper --args object(8,2) receiving(8,0) receiving(8,1) --sender A created: object(9,0) mutated: object(0,0), object(8,2) wrapped: object(8,0) -gas summary: computation_cost: 1000000, storage_cost: 4050800, storage_rebate: 3465600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4050800, storage_rebate: 3465600, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/dynamic_fields/remove_add_back_and_remove.exp b/crates/iota-adapter-transactional-tests/tests/dynamic_fields/remove_add_back_and_remove.exp index 7ca37d8248e..5ac6ec96272 100644 --- a/crates/iota-adapter-transactional-tests/tests/dynamic_fields/remove_add_back_and_remove.exp +++ b/crates/iota-adapter-transactional-tests/tests/dynamic_fields/remove_add_back_and_remove.exp @@ -7,47 +7,47 @@ task 1, lines 12-53: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 9614000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 9614000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 55-57: //# run test::m1::create --sender A created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2249600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2249600, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 58: //# run test::m1::add_child --args object(2,0) --sender A created: object(3,0), object(3,1) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 5950800, storage_rebate: 2249600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5950800, storage_rebate: 2249600, non_refundable_storage_fee: 0 task 4, lines 60-62: //# run test::m1::transfer_child --args object(2,0) --sender A mutated: object(0,0), object(2,0), object(3,1) deleted: object(3,0) -gas summary: computation_cost: 1000000, storage_cost: 3496000, storage_rebate: 5950800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3496000, storage_rebate: 5950800, non_refundable_storage_fee: 0 task 5, line 63: //# run test::m1::add_child --args object(2,0) --sender A created: object(3,0), object(5,0) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 5950800, storage_rebate: 2249600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5950800, storage_rebate: 2249600, non_refundable_storage_fee: 0 task 6, lines 65-67: //# run test::m1::delete_child --args object(2,0) --sender A mutated: object(0,0), object(2,0) deleted: object(3,0), object(5,0) -gas summary: computation_cost: 1000000, storage_cost: 2249600, storage_rebate: 5950800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2249600, storage_rebate: 5950800, non_refundable_storage_fee: 0 task 7, line 68: //# run test::m1::add_child --args object(2,0) --sender A created: object(3,0), object(7,0) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 5950800, storage_rebate: 2249600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5950800, storage_rebate: 2249600, non_refundable_storage_fee: 0 task 8, line 70: //# run test::m1::wrap_child --args object(2,0) --sender A mutated: object(0,0), object(2,0) deleted: object(3,0) wrapped: object(7,0) -gas summary: computation_cost: 1000000, storage_cost: 2492800, storage_rebate: 5950800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2492800, storage_rebate: 5950800, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/dynamic_fields/remove_add_back_and_remove_type.exp b/crates/iota-adapter-transactional-tests/tests/dynamic_fields/remove_add_back_and_remove_type.exp index 51054692d3d..29612fd92c9 100644 --- a/crates/iota-adapter-transactional-tests/tests/dynamic_fields/remove_add_back_and_remove_type.exp +++ b/crates/iota-adapter-transactional-tests/tests/dynamic_fields/remove_add_back_and_remove_type.exp @@ -7,20 +7,20 @@ task 1, lines 12-49: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 8762800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 8762800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 51: //# run test::m1::create --sender A created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2242000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2242000, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 53: //# run test::m1::test_dof --args object(2,0) --sender A mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2242000, storage_rebate: 2242000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2242000, storage_rebate: 2242000, non_refundable_storage_fee: 0 task 4, line 55: //# run test::m1::test_df --args object(2,0) --sender A mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2242000, storage_rebate: 2242000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2242000, storage_rebate: 2242000, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/dynamic_fields/remove_wrong_type.exp b/crates/iota-adapter-transactional-tests/tests/dynamic_fields/remove_wrong_type.exp index f2c566e3090..085e8b111b9 100644 --- a/crates/iota-adapter-transactional-tests/tests/dynamic_fields/remove_wrong_type.exp +++ b/crates/iota-adapter-transactional-tests/tests/dynamic_fields/remove_wrong_type.exp @@ -7,13 +7,13 @@ task 1, lines 10-30: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 6019200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6019200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 32: //# run a::m::t1 --sender A created: object(2,0), object(2,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3678400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3678400, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 34: //# run a::m::t2 --sender A --args object(2,0) diff --git a/crates/iota-adapter-transactional-tests/tests/dynamic_fields/remove_wrong_type_object.exp b/crates/iota-adapter-transactional-tests/tests/dynamic_fields/remove_wrong_type_object.exp index c0ae7a7242a..6d2b0f4911b 100644 --- a/crates/iota-adapter-transactional-tests/tests/dynamic_fields/remove_wrong_type_object.exp +++ b/crates/iota-adapter-transactional-tests/tests/dynamic_fields/remove_wrong_type_object.exp @@ -7,13 +7,13 @@ task 1, lines 11-35: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 6695600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6695600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 37: //# run a::m::t1 --sender A created: object(2,0), object(2,1), object(2,2) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5890000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5890000, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 39: //# run a::m::t2 --sender A --args object(2,0) diff --git a/crates/iota-adapter-transactional-tests/tests/dynamic_fields/shared_object.exp b/crates/iota-adapter-transactional-tests/tests/dynamic_fields/shared_object.exp index a508c1c3c1a..40614f37e6b 100644 --- a/crates/iota-adapter-transactional-tests/tests/dynamic_fields/shared_object.exp +++ b/crates/iota-adapter-transactional-tests/tests/dynamic_fields/shared_object.exp @@ -7,19 +7,19 @@ task 1, lines 9-73: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 9690000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 9690000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 75: //# run test::m::parent --sender A created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2470000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2470000, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, lines 77-79: //# run test::m::child --sender A created: object(3,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 988000, non_refundable_storage_fee: 0 task 4, line 80: //# run test::m::add_field --sender A --args object(2,0) object(3,0) diff --git a/crates/iota-adapter-transactional-tests/tests/dynamic_fields/transfer_object.exp b/crates/iota-adapter-transactional-tests/tests/dynamic_fields/transfer_object.exp index f0e76edae2f..7e0d7d5274d 100644 --- a/crates/iota-adapter-transactional-tests/tests/dynamic_fields/transfer_object.exp +++ b/crates/iota-adapter-transactional-tests/tests/dynamic_fields/transfer_object.exp @@ -7,52 +7,52 @@ task 1, lines 11-66: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 9317600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 9317600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 68: //# run a::m::create --sender A created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2211600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2211600, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 70: //# run a::m::create --sender A created: object(3,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2211600, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2211600, storage_rebate: 988000, non_refundable_storage_fee: 0 task 4, line 72: //# run a::m::add_counter --sender A --args object(2,0) created: object(4,0), object(4,1) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 5981200, storage_rebate: 2211600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5981200, storage_rebate: 2211600, non_refundable_storage_fee: 0 task 5, line 74: //# run a::m::obj_bump --sender A --args object(2,0) mutated: object(0,0), object(2,0), object(4,0) -gas summary: computation_cost: 1000000, storage_cost: 3526400, storage_rebate: 3526400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3526400, storage_rebate: 3526400, non_refundable_storage_fee: 0 task 6, line 76: //# run a::m::assert_count --sender A --args object(2,0) 1 mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2211600, storage_rebate: 2211600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2211600, storage_rebate: 2211600, non_refundable_storage_fee: 0 task 7, line 78: //# run a::m::transfer --sender A --args object(2,0) object(3,0) created: object(7,0) mutated: object(0,0), object(2,0), object(3,0), object(4,0) deleted: object(4,1) -gas summary: computation_cost: 1000000, storage_cost: 7204800, storage_rebate: 7204800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7204800, storage_rebate: 7204800, non_refundable_storage_fee: 0 task 8, line 80: //# run a::m::obj_bump --sender A --args object(3,0) mutated: object(0,0), object(3,0), object(4,0) -gas summary: computation_cost: 1000000, storage_cost: 3526400, storage_rebate: 3526400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3526400, storage_rebate: 3526400, non_refundable_storage_fee: 0 task 9, line 82: //# run a::m::assert_count --sender A --args object(3,0) 2 mutated: object(0,0), object(3,0) -gas summary: computation_cost: 1000000, storage_cost: 2211600, storage_rebate: 2211600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2211600, storage_rebate: 2211600, non_refundable_storage_fee: 0 task 10, line 84: //# run a::m::obj_bump --sender A --args object(2,0) diff --git a/crates/iota-adapter-transactional-tests/tests/dynamic_fields/unwrap_object.exp b/crates/iota-adapter-transactional-tests/tests/dynamic_fields/unwrap_object.exp index abae59b47a8..016e117c609 100644 --- a/crates/iota-adapter-transactional-tests/tests/dynamic_fields/unwrap_object.exp +++ b/crates/iota-adapter-transactional-tests/tests/dynamic_fields/unwrap_object.exp @@ -7,13 +7,13 @@ task 1, lines 9-40: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 7478400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7478400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 42: //# run a::m::mint --sender A created: object(2,0), object(2,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4157200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4157200, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 44: //# run a::m::take_and_wrap --sender A --args object(2,0) @@ -21,7 +21,7 @@ created: object(3,1) mutated: object(0,0), object(2,0) unwrapped: object(3,0) deleted: object(2,1) -gas summary: computation_cost: 1000000, storage_cost: 5890000, storage_rebate: 4157200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5890000, storage_rebate: 4157200, non_refundable_storage_fee: 0 task 4, line 46: //# view-object 3,0 @@ -39,27 +39,27 @@ task 5, line 49: //# run a::m::mint --sender A created: object(5,0), object(5,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4157200, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4157200, storage_rebate: 988000, non_refundable_storage_fee: 0 task 6, line 51: //# run a::m::take_and_destroy --sender A --args object(5,0) mutated: object(0,0), object(5,0) deleted: object(5,1) unwrapped_then_deleted: object(_) -gas summary: computation_cost: 1000000, storage_cost: 2211600, storage_rebate: 4157200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2211600, storage_rebate: 4157200, non_refundable_storage_fee: 0 task 7, line 54: //# run a::m::mint --sender A created: object(7,0), object(7,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4157200, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4157200, storage_rebate: 988000, non_refundable_storage_fee: 0 task 8, line 57: //# run a::m::take_and_take --sender A --args object(7,0) mutated: object(0,0), object(7,0) unwrapped: object(8,0) deleted: object(7,1) -gas summary: computation_cost: 1000000, storage_cost: 3435200, storage_rebate: 4157200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3435200, storage_rebate: 4157200, non_refundable_storage_fee: 0 task 9, line 59: //# view-object 7,0 diff --git a/crates/iota-adapter-transactional-tests/tests/dynamic_fields/wrap_object.exp b/crates/iota-adapter-transactional-tests/tests/dynamic_fields/wrap_object.exp index e61a06d5349..fcdb1c14148 100644 --- a/crates/iota-adapter-transactional-tests/tests/dynamic_fields/wrap_object.exp +++ b/crates/iota-adapter-transactional-tests/tests/dynamic_fields/wrap_object.exp @@ -7,13 +7,13 @@ task 1, lines 9-40: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 7478400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7478400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 42: //# run a::m::mint --sender A created: object(2,0), object(2,1), object(2,2) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5890000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5890000, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 44: //# view-object 2,1 @@ -33,13 +33,13 @@ created: object(4,0) mutated: object(0,0), object(2,0) deleted: object(2,2) wrapped: object(2,1) -gas summary: computation_cost: 1000000, storage_cost: 4157200, storage_rebate: 5890000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4157200, storage_rebate: 5890000, non_refundable_storage_fee: 0 task 5, line 49: //# run a::m::mint --sender A created: object(5,0), object(5,1), object(5,2) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5890000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5890000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 6, line 51: //# view-object 5,2 @@ -63,13 +63,13 @@ task 7, line 53: //# run a::m::take_and_destroy --sender A --args object(5,0) mutated: object(0,0), object(5,0) deleted: object(5,1), object(5,2) -gas summary: computation_cost: 1000000, storage_cost: 2211600, storage_rebate: 5890000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2211600, storage_rebate: 5890000, non_refundable_storage_fee: 0 task 8, line 56: //# run a::m::mint --sender A created: object(8,0), object(8,1), object(8,2) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5890000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5890000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 9, line 58: //# view-object 8,2 @@ -93,7 +93,7 @@ task 10, line 60: //# run a::m::take_and_take --sender A --args object(8,0) mutated: object(0,0), object(8,0), object(8,1) deleted: object(8,2) -gas summary: computation_cost: 1000000, storage_cost: 3435200, storage_rebate: 5890000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3435200, storage_rebate: 5890000, non_refundable_storage_fee: 0 task 11, line 62: //# view-object 8,2 diff --git a/crates/iota-adapter-transactional-tests/tests/dynamic_fields/wrapped_uid_after_delete.exp b/crates/iota-adapter-transactional-tests/tests/dynamic_fields/wrapped_uid_after_delete.exp index f3830351605..e28002d1f38 100644 --- a/crates/iota-adapter-transactional-tests/tests/dynamic_fields/wrapped_uid_after_delete.exp +++ b/crates/iota-adapter-transactional-tests/tests/dynamic_fields/wrapped_uid_after_delete.exp @@ -7,31 +7,31 @@ task 1, lines 11-83: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 10229600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 10229600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 85: //# run a::m::t0 --sender A created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2211600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2211600, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 87: //# run a::m::t1 --sender A --args object(2,0) created: object(3,0) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 4248400, storage_rebate: 2211600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4248400, storage_rebate: 2211600, non_refundable_storage_fee: 0 task 4, line 89: //# run a::m::t2 --sender A --args object(2,0) mutated: object(0,0), object(2,0), object(3,0) -gas summary: computation_cost: 1000000, storage_cost: 4248400, storage_rebate: 4248400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4248400, storage_rebate: 4248400, non_refundable_storage_fee: 0 task 5, line 91: //# run a::m::t3 --sender A --args object(2,0) created: object(5,0) mutated: object(0,0) wrapped: object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2485200, storage_rebate: 2211600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2485200, storage_rebate: 2211600, non_refundable_storage_fee: 0 task 6, line 93: //# view-object 3,0 @@ -57,14 +57,14 @@ Contents: iota::dynamic_field::Field { task 7, line 95: //# run a::m::t4 --sender A --args object(5,0) mutated: object(0,0), object(5,0) -gas summary: computation_cost: 1000000, storage_cost: 2485200, storage_rebate: 2485200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2485200, storage_rebate: 2485200, non_refundable_storage_fee: 0 task 8, line 97: //# run a::m::t5 --sender A --args object(5,0) mutated: object(0,0) deleted: object(5,0) unwrapped_then_deleted: object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 2485200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 2485200, non_refundable_storage_fee: 0 task 9, line 99: //# view-object 3,0 diff --git a/crates/iota-adapter-transactional-tests/tests/entry_points/ascii.exp b/crates/iota-adapter-transactional-tests/tests/entry_points/ascii.exp index e9ad13fe574..e320eb181ae 100644 --- a/crates/iota-adapter-transactional-tests/tests/entry_points/ascii.exp +++ b/crates/iota-adapter-transactional-tests/tests/entry_points/ascii.exp @@ -7,22 +7,22 @@ task 1, lines 7-26: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 5745600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5745600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 28-31: //# run Test::M::ascii_arg --sender A --args b"SomeString" mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, lines 33-36: //# run Test::M::ascii_arg --sender A --args "SomeString" mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 4, lines 38-46: //# run Test::M::ascii_vec_arg --sender A --args vector[b"Some",b"String"] mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 5, line 48: //# run Test::M::ascii_arg --sender A --args "Some∫tring" diff --git a/crates/iota-adapter-transactional-tests/tests/entry_points/generic_by_ref.exp b/crates/iota-adapter-transactional-tests/tests/entry_points/generic_by_ref.exp index bd31643cb6a..559b09b90f0 100644 --- a/crates/iota-adapter-transactional-tests/tests/entry_points/generic_by_ref.exp +++ b/crates/iota-adapter-transactional-tests/tests/entry_points/generic_by_ref.exp @@ -7,4 +7,4 @@ task 1, lines 7-15: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 4149600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4149600, storage_rebate: 0, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/entry_points/imm_txn_context.exp b/crates/iota-adapter-transactional-tests/tests/entry_points/imm_txn_context.exp index c8e2949117a..a7dc8421955 100644 --- a/crates/iota-adapter-transactional-tests/tests/entry_points/imm_txn_context.exp +++ b/crates/iota-adapter-transactional-tests/tests/entry_points/imm_txn_context.exp @@ -7,20 +7,20 @@ task 1, lines 7-28: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 6034400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6034400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 30: //# run Test::M::mint --sender A created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2272400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2272400, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 32: //# run Test::M::set_to_epoch --sender A --args object(2,0) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2272400, storage_rebate: 2272400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2272400, storage_rebate: 2272400, non_refundable_storage_fee: 0 task 4, line 34: //# run Test::M::check_is_epoch --sender A --args object(2,0) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2272400, storage_rebate: 2272400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2272400, storage_rebate: 2272400, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/entry_points/large_enum.exp b/crates/iota-adapter-transactional-tests/tests/entry_points/large_enum.exp index 1471d956148..a1c8df0876f 100644 --- a/crates/iota-adapter-transactional-tests/tests/entry_points/large_enum.exp +++ b/crates/iota-adapter-transactional-tests/tests/entry_points/large_enum.exp @@ -7,13 +7,13 @@ task 1, lines 9-36: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 6452400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6452400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 38-39: //# programmable --sender A //> test::m::x1() mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, lines 41-42: //# programmable --sender A diff --git a/crates/iota-adapter-transactional-tests/tests/entry_points/missing_type.exp b/crates/iota-adapter-transactional-tests/tests/entry_points/missing_type.exp index bad8a0a26a9..85b9af91448 100644 --- a/crates/iota-adapter-transactional-tests/tests/entry_points/missing_type.exp +++ b/crates/iota-adapter-transactional-tests/tests/entry_points/missing_type.exp @@ -7,7 +7,7 @@ task 1, lines 9-16: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 3876000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3876000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 18: //# run test::m::foo --type-args test::x::x diff --git a/crates/iota-adapter-transactional-tests/tests/entry_points/no_txn_context.exp b/crates/iota-adapter-transactional-tests/tests/entry_points/no_txn_context.exp index fea5de209e4..9ce0a010550 100644 --- a/crates/iota-adapter-transactional-tests/tests/entry_points/no_txn_context.exp +++ b/crates/iota-adapter-transactional-tests/tests/entry_points/no_txn_context.exp @@ -7,15 +7,15 @@ task 1, lines 7-24: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 5494800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5494800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 26: //# run Test::M::mint --sender A created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2272400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2272400, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 28: //# run Test::M::incr --sender A --args object(2,0) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2272400, storage_rebate: 2272400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2272400, storage_rebate: 2272400, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/entry_points/obj_vector.exp b/crates/iota-adapter-transactional-tests/tests/entry_points/obj_vector.exp index 145d6e5138b..f5faaa8252c 100644 --- a/crates/iota-adapter-transactional-tests/tests/entry_points/obj_vector.exp +++ b/crates/iota-adapter-transactional-tests/tests/entry_points/obj_vector.exp @@ -7,36 +7,36 @@ task 1, lines 9-112: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 12646400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 12646400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 114: //# run Test::M::prim_vec_len --sender A --args vector[7,42] mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, lines 116-120: //# run Test::M::mint --sender A --args 42 created: object(3,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2272400, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2272400, storage_rebate: 988000, non_refundable_storage_fee: 0 task 4, line 122: //# run Test::M::obj_vec_destroy --sender A --args vector[object(3,0)] mutated: object(0,0) deleted: object(3,0) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 2272400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 2272400, non_refundable_storage_fee: 0 task 5, line 124: //# run Test::M::mint --sender A --args 42 created: object(5,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2272400, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2272400, storage_rebate: 988000, non_refundable_storage_fee: 0 task 6, line 126: //# run Test::M::mint_child --sender A --args 42 object(5,0) created: object(6,0), object(6,1) mutated: object(0,0), object(5,0) -gas summary: computation_cost: 1000000, storage_cost: 6011600, storage_rebate: 2272400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6011600, storage_rebate: 2272400, non_refundable_storage_fee: 0 task 7, lines 128-132: //# run Test::M::child_access --sender A --args object(5,0) vector[object(6,0)] @@ -46,7 +46,7 @@ task 8, line 134: //# run Test::M::mint_another --sender A --args 42 created: object(8,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2325600, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2325600, storage_rebate: 988000, non_refundable_storage_fee: 0 task 9, lines 136-139: //# run Test::M::obj_vec_destroy --sender A --args vector[object(8,0)] @@ -57,13 +57,13 @@ task 10, line 141: //# run Test::M::mint_another --sender A --args 42 created: object(10,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2325600, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2325600, storage_rebate: 988000, non_refundable_storage_fee: 0 task 11, line 143: //# run Test::M::mint --sender A --args 42 created: object(11,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2272400, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2272400, storage_rebate: 988000, non_refundable_storage_fee: 0 task 12, lines 145-148: //# run Test::M::two_obj_vec_destroy --sender A --args vector[object(10,0),object(11,0)] @@ -74,19 +74,19 @@ task 13, line 150: //# run Test::M::mint_shared --sender A --args 42 created: object(13,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2272400, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2272400, storage_rebate: 988000, non_refundable_storage_fee: 0 task 14, lines 152-155: //# run Test::M::obj_vec_destroy --sender A --args vector[object(13,0)] mutated: object(0,0) deleted: object(13,0) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 2272400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 2272400, non_refundable_storage_fee: 0 task 15, line 157: //# run Test::M::mint --sender A --args 42 created: object(15,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2272400, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2272400, storage_rebate: 988000, non_refundable_storage_fee: 0 task 16, lines 159-162: //# run Test::M::same_objects --sender A --args object(15,0) vector[object(15,0)] @@ -97,7 +97,7 @@ task 17, line 164: //# run Test::M::mint --sender A --args 42 created: object(17,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2272400, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2272400, storage_rebate: 988000, non_refundable_storage_fee: 0 task 18, line 166: //# run Test::M::same_objects_ref --sender A --args object(17,0) vector[object(17,0)] diff --git a/crates/iota-adapter-transactional-tests/tests/entry_points/obj_vector_generic.exp b/crates/iota-adapter-transactional-tests/tests/entry_points/obj_vector_generic.exp index ab91515cef8..ce54c4a006b 100644 --- a/crates/iota-adapter-transactional-tests/tests/entry_points/obj_vector_generic.exp +++ b/crates/iota-adapter-transactional-tests/tests/entry_points/obj_vector_generic.exp @@ -7,31 +7,31 @@ task 1, lines 9-111: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 13452000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 13452000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 113: //# run Test::M::mint_any --sender A --type-args Test::M::Any --args 42 created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2599200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2599200, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, lines 115-119: //# run Test::M::obj_vec_destroy_any --sender A --type-args Test::M::Any --args vector[object(2,0)] mutated: object(0,0) deleted: object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 2599200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 2599200, non_refundable_storage_fee: 0 task 4, line 121: //# run Test::M::mint_any --sender A --type-args Test::M::Any --args 42 created: object(4,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2599200, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2599200, storage_rebate: 988000, non_refundable_storage_fee: 0 task 5, line 123: //# run Test::M::mint_child_any --sender A --type-args Test::M::Any --args 42 object(4,0) created: object(5,0), object(5,1) mutated: object(0,0), object(4,0) -gas summary: computation_cost: 1000000, storage_cost: 6665200, storage_rebate: 2599200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6665200, storage_rebate: 2599200, non_refundable_storage_fee: 0 task 6, lines 125-129: //# run Test::M::child_access_any --sender A --type-args Test::M::Any --args object(4,0) vector[object(5,0)] @@ -41,7 +41,7 @@ task 7, line 131: //# run Test::M::mint_another_any --type-args Test::M::Any --sender A --args 42 created: object(7,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2652400, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2652400, storage_rebate: 988000, non_refundable_storage_fee: 0 task 8, lines 133-136: //# run Test::M::obj_vec_destroy_any --sender A --type-args Test::M::Any --args vector[object(7,0)] @@ -52,13 +52,13 @@ task 9, line 138: //# run Test::M::mint_another_any --sender A --type-args Test::M::Any --args 42 created: object(9,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2652400, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2652400, storage_rebate: 988000, non_refundable_storage_fee: 0 task 10, line 140: //# run Test::M::mint_any --sender A --type-args Test::M::Any --args 42 created: object(10,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2599200, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2599200, storage_rebate: 988000, non_refundable_storage_fee: 0 task 11, lines 142-145: //# run Test::M::two_obj_vec_destroy_any --sender A --type-args Test::M::Any --args vector[object(9,0),object(10,0)] @@ -69,19 +69,19 @@ task 12, line 147: //# run Test::M::mint_shared_any --sender A --type-args Test::M::Any --args 42 created: object(12,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2599200, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2599200, storage_rebate: 988000, non_refundable_storage_fee: 0 task 13, lines 149-152: //# run Test::M::obj_vec_destroy_any --sender A --type-args Test::M::Any --args vector[object(12,0)] mutated: object(0,0) deleted: object(12,0) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 2599200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 2599200, non_refundable_storage_fee: 0 task 14, line 154: //# run Test::M::mint_any --sender A --type-args Test::M::Any --args 42 created: object(14,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2599200, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2599200, storage_rebate: 988000, non_refundable_storage_fee: 0 task 15, lines 156-159: //# run Test::M::same_objects_any --sender A --type-args Test::M::Any --args object(14,0) vector[object(14,0)] @@ -92,7 +92,7 @@ task 16, line 161: //# run Test::M::mint_any --sender A --type-args Test::M::Any --args 42 created: object(16,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2599200, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2599200, storage_rebate: 988000, non_refundable_storage_fee: 0 task 17, line 163: //# run Test::M::same_objects_ref_any --sender A --type-args Test::M::Any --args object(16,0) vector[object(16,0)] diff --git a/crates/iota-adapter-transactional-tests/tests/entry_points/utf8.exp b/crates/iota-adapter-transactional-tests/tests/entry_points/utf8.exp index e142604a413..ab41581f256 100644 --- a/crates/iota-adapter-transactional-tests/tests/entry_points/utf8.exp +++ b/crates/iota-adapter-transactional-tests/tests/entry_points/utf8.exp @@ -7,34 +7,34 @@ task 1, lines 7-25: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 6011600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6011600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 27-30: //# run Test::M::utf8_arg --sender A --args b"SomeStringPlusSomeString" mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, lines 32-35: //# run Test::M::utf8_arg --sender A --args "SomeStringPlusSomeString" mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 4, lines 37-40: //# run Test::M::utf8_arg --sender A --args "çå∞≠¢õß∂ƒ∫" mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 5, lines 42-45: //# run Test::M::utf8_vec_arg --sender A --args vector[b"SomeStringPlus",b"SomeString"] mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 6, lines 47-50: //# run Test::M::utf8_vec_arg --sender A --args vector["SomeStringPlus","SomeString"] mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 7, line 52: //# run Test::M::utf8_vec_arg --sender A --args vector["çå∞≠¢","õß∂ƒ∫"] mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/entry_points/wrong_visibility.exp b/crates/iota-adapter-transactional-tests/tests/entry_points/wrong_visibility.exp index 3a58b1dfe1c..12d5e9f015f 100644 --- a/crates/iota-adapter-transactional-tests/tests/entry_points/wrong_visibility.exp +++ b/crates/iota-adapter-transactional-tests/tests/entry_points/wrong_visibility.exp @@ -4,7 +4,7 @@ task 1, lines 9-27: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4522000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4522000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 29: //# run Test::M::t2 diff --git a/crates/iota-adapter-transactional-tests/tests/enums/basic_enums.exp b/crates/iota-adapter-transactional-tests/tests/enums/basic_enums.exp index 3b79770c48a..611ddea0107 100644 --- a/crates/iota-adapter-transactional-tests/tests/enums/basic_enums.exp +++ b/crates/iota-adapter-transactional-tests/tests/enums/basic_enums.exp @@ -4,13 +4,13 @@ task 1, lines 7-32: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 6262400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6262400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 34: //# run Test::f::create_and_test created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2204000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2204000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 3, line 36: //# view-object 2,0 @@ -28,7 +28,7 @@ Contents: Test::f::S { task 4, line 38: //# run Test::f::update_inner --args object(2,0) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2264800, storage_rebate: 2204000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2264800, storage_rebate: 2204000, non_refundable_storage_fee: 0 task 5, line 40: //# view-object 2,0 diff --git a/crates/iota-adapter-transactional-tests/tests/enums/coin_wrapper.exp b/crates/iota-adapter-transactional-tests/tests/enums/coin_wrapper.exp index 609c220f509..30787a28bf3 100644 --- a/crates/iota-adapter-transactional-tests/tests/enums/coin_wrapper.exp +++ b/crates/iota-adapter-transactional-tests/tests/enums/coin_wrapper.exp @@ -7,7 +7,7 @@ task 1, lines 7-49: //# publish --upgradeable --sender A created: object(1,0), object(1,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 9522800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 9522800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 51-53: //# programmable --sender A --inputs 10 @A @@ -15,4 +15,4 @@ task 2, lines 51-53: //> 1: TransferObjects([Result(0)], Input(1)) created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2576400, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2576400, storage_rebate: 988000, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/enums/enum_events.exp b/crates/iota-adapter-transactional-tests/tests/enums/enum_events.exp index e13962c9e74..50d9679899c 100644 --- a/crates/iota-adapter-transactional-tests/tests/enums/enum_events.exp +++ b/crates/iota-adapter-transactional-tests/tests/enums/enum_events.exp @@ -4,28 +4,28 @@ task 1, lines 7-33: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5213600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5213600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 35: //# run Test::f::f1 events: Event { package_id: Test, transaction_module: Identifier("f"), sender: _, type_: StructTag { address: Test, module: Identifier("f"), name: Identifier("F"), type_params: [] }, contents: [0] } mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 3, line 37: //# run Test::f::f2 --args 42 events: Event { package_id: Test, transaction_module: Identifier("f"), sender: _, type_: StructTag { address: Test, module: Identifier("f"), name: Identifier("F"), type_params: [] }, contents: [1, 42, 0, 0, 0, 0, 0, 0, 0] } mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 4, line 39: //# run Test::f::f3 --args 42 43 events: Event { package_id: Test, transaction_module: Identifier("f"), sender: _, type_: StructTag { address: Test, module: Identifier("f"), name: Identifier("F"), type_params: [] }, contents: [2, 42, 0, 0, 0, 0, 0, 0, 0, 43, 0, 0, 0, 0, 0, 0, 0] } mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 5, line 41: //# run Test::f::f4 --args 42 events: Event { package_id: Test, transaction_module: Identifier("f"), sender: _, type_: StructTag { address: Test, module: Identifier("f"), name: Identifier("F"), type_params: [] }, contents: [3, 42, 0, 0, 0, 0, 0, 0, 0] } mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/enums/enum_otw_check.exp b/crates/iota-adapter-transactional-tests/tests/enums/enum_otw_check.exp index 9388846ace5..778544c1bd4 100644 --- a/crates/iota-adapter-transactional-tests/tests/enums/enum_otw_check.exp +++ b/crates/iota-adapter-transactional-tests/tests/enums/enum_otw_check.exp @@ -4,9 +4,9 @@ task 1, lines 7-16: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4636000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4636000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 18: //# run Test::f::test mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/enums/enums_upgrade.exp b/crates/iota-adapter-transactional-tests/tests/enums/enums_upgrade.exp index f84f75ceb3a..8158e1610ac 100644 --- a/crates/iota-adapter-transactional-tests/tests/enums/enums_upgrade.exp +++ b/crates/iota-adapter-transactional-tests/tests/enums/enums_upgrade.exp @@ -7,13 +7,13 @@ task 1, lines 7-32: //# publish --upgradeable --sender A created: object(1,0), object(1,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 7896400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7896400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 34: //# run Test::f::create_and_test created: object(2,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2204000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2204000, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 36: //# view-object 2,0 @@ -31,7 +31,7 @@ Contents: Test::f::S { task 4, line 38: //# run Test::f::update_inner --args object(2,0) mutated: object(0,1), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2264800, storage_rebate: 2204000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2264800, storage_rebate: 2204000, non_refundable_storage_fee: 0 task 5, line 40: //# view-object 2,0 @@ -52,7 +52,7 @@ task 6, lines 42-71: //# upgrade --package Test --upgrade-capability 1,1 --sender A created: object(6,0) mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 8314400, storage_rebate: 2622000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 8314400, storage_rebate: 2622000, non_refundable_storage_fee: 0 task 7, line 73: //# view-object 2,0 @@ -72,7 +72,7 @@ Contents: fake(1,0)::f::S { task 8, line 75: //# run Test::f::update_inner2 --args object(2,0) mutated: object(0,1), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2325600, storage_rebate: 2264800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2325600, storage_rebate: 2264800, non_refundable_storage_fee: 0 task 9, line 77: //# view-object 2,0 diff --git a/crates/iota-adapter-transactional-tests/tests/enums/enums_upgrade_add_variant.exp b/crates/iota-adapter-transactional-tests/tests/enums/enums_upgrade_add_variant.exp index d6760edf428..14b40e978d5 100644 --- a/crates/iota-adapter-transactional-tests/tests/enums/enums_upgrade_add_variant.exp +++ b/crates/iota-adapter-transactional-tests/tests/enums/enums_upgrade_add_variant.exp @@ -7,13 +7,13 @@ task 1, lines 7-32: //# publish --upgradeable --sender A created: object(1,0), object(1,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 7896400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7896400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 34: //# run Test::f::create_and_test created: object(2,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2204000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2204000, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 36: //# view-object 2,0 @@ -31,7 +31,7 @@ Contents: Test::f::S { task 4, line 38: //# run Test::f::update_inner --args object(2,0) mutated: object(0,1), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2264800, storage_rebate: 2204000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2264800, storage_rebate: 2204000, non_refundable_storage_fee: 0 task 5, line 40: //# view-object 2,0 diff --git a/crates/iota-adapter-transactional-tests/tests/epoch/advance.exp b/crates/iota-adapter-transactional-tests/tests/epoch/advance.exp index fdf88981b3e..22d8dbbf7dc 100644 --- a/crates/iota-adapter-transactional-tests/tests/epoch/advance.exp +++ b/crates/iota-adapter-transactional-tests/tests/epoch/advance.exp @@ -4,18 +4,18 @@ task 1, lines 7-25: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5639200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5639200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 27: //# run test::m::create created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2257200, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2257200, storage_rebate: 988000, non_refundable_storage_fee: 0 task 3, line 29: //# run test::m::check --args object(2,0) 0 mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2257200, storage_rebate: 2257200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2257200, storage_rebate: 2257200, non_refundable_storage_fee: 0 task 4, line 31: //# advance-epoch @@ -24,4 +24,4 @@ Epoch advanced: 1 task 5, line 33: //# run test::m::check --args object(2,0) 1 mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2257200, storage_rebate: 2257200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2257200, storage_rebate: 2257200, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/iota/coin_in_vec.exp b/crates/iota-adapter-transactional-tests/tests/iota/coin_in_vec.exp index 1f9089e3e0f..d27e1066bd4 100644 --- a/crates/iota-adapter-transactional-tests/tests/iota/coin_in_vec.exp +++ b/crates/iota-adapter-transactional-tests/tests/iota/coin_in_vec.exp @@ -7,7 +7,7 @@ task 1, lines 7-29: //# publish --sender A created: object(1,0), object(1,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 7942000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7942000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 31-33: //# programmable --sender A --inputs 10 @A @@ -15,16 +15,16 @@ task 2, lines 31-33: //> TransferObjects([Result(0)], Input(1)) created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 1976000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 1976000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 3, line 35: //# run test::coin_in_vec::deposit --args object(1,0) object(2,0) --sender A mutated: object(0,0), object(1,0) wrapped: object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2629600, storage_rebate: 3313600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2629600, storage_rebate: 3313600, non_refundable_storage_fee: 0 task 4, line 37: //# run test::coin_in_vec::withdraw --args object(1,0) --sender A mutated: object(0,0), object(1,0) unwrapped: object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 3313600, storage_rebate: 2629600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3313600, storage_rebate: 2629600, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/iota/coin_transfer.exp b/crates/iota-adapter-transactional-tests/tests/iota/coin_transfer.exp index 0ce2a0963b2..f9def3c1a25 100644 --- a/crates/iota-adapter-transactional-tests/tests/iota/coin_transfer.exp +++ b/crates/iota-adapter-transactional-tests/tests/iota/coin_transfer.exp @@ -9,7 +9,7 @@ task 1, lines 9-11: //> TransferObjects([Result(0)], Input(1)) created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 1976000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 1976000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 13: //# view-object 1,0 @@ -30,7 +30,7 @@ task 3, line 15: //# run iota::pay::split_and_transfer --type-args iota::iota::IOTA --args object(1,0) 10 @A --sender B created: object(3,0) mutated: object(0,1), object(1,0) -gas summary: computation_cost: 1000000, storage_cost: 2964000, storage_rebate: 1976000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2964000, storage_rebate: 1976000, non_refundable_storage_fee: 0 task 4, line 17: //# view-object 1,0 diff --git a/crates/iota-adapter-transactional-tests/tests/iota/freeze.exp b/crates/iota-adapter-transactional-tests/tests/iota/freeze.exp index 30aad20b89f..f63dd1fabc5 100644 --- a/crates/iota-adapter-transactional-tests/tests/iota/freeze.exp +++ b/crates/iota-adapter-transactional-tests/tests/iota/freeze.exp @@ -7,18 +7,18 @@ task 1, lines 9-68: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 9317600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 9317600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 70: //# run test::object_basics::create --args 10 @A --sender A created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2386400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2386400, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 72: //# run test::object_basics::freeze_object --args object(2,0) --sender A mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2386400, storage_rebate: 2386400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2386400, storage_rebate: 2386400, non_refundable_storage_fee: 0 task 4, line 74: //# run test::object_basics::transfer_ --args object(2,0) @A --sender A diff --git a/crates/iota-adapter-transactional-tests/tests/iota/move_call_args_type_mismatch.exp b/crates/iota-adapter-transactional-tests/tests/iota/move_call_args_type_mismatch.exp index 3872e67bc39..bd68e88d6c0 100644 --- a/crates/iota-adapter-transactional-tests/tests/iota/move_call_args_type_mismatch.exp +++ b/crates/iota-adapter-transactional-tests/tests/iota/move_call_args_type_mismatch.exp @@ -4,7 +4,7 @@ task 1, lines 7-14: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3420000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3420000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 15-17: //# run Test::M::create --args 10 diff --git a/crates/iota-adapter-transactional-tests/tests/iota/move_call_incorrect_function.exp b/crates/iota-adapter-transactional-tests/tests/iota/move_call_incorrect_function.exp index c1bc455a465..914068844bd 100644 --- a/crates/iota-adapter-transactional-tests/tests/iota/move_call_incorrect_function.exp +++ b/crates/iota-adapter-transactional-tests/tests/iota/move_call_incorrect_function.exp @@ -4,7 +4,7 @@ task 1, lines 9-16: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3420000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3420000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 17-19: //# run 0x242::M::create diff --git a/crates/iota-adapter-transactional-tests/tests/iota/object_basics.exp b/crates/iota-adapter-transactional-tests/tests/iota/object_basics.exp index 11022c84d95..e5b3c1cd78b 100644 --- a/crates/iota-adapter-transactional-tests/tests/iota/object_basics.exp +++ b/crates/iota-adapter-transactional-tests/tests/iota/object_basics.exp @@ -7,13 +7,13 @@ task 1, lines 9-68: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 9317600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 9317600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 70: //# run test::object_basics::create --sender A --args 10 @A created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2386400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2386400, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 72: //# view-object 2,0 @@ -31,7 +31,7 @@ Contents: test::object_basics::Object { task 4, line 74: //# run test::object_basics::transfer_ --sender A --args object(2,0) @B mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2386400, storage_rebate: 2386400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2386400, storage_rebate: 2386400, non_refundable_storage_fee: 0 task 5, line 76: //# view-object 2,0 @@ -50,16 +50,16 @@ task 6, line 78: //# run test::object_basics::create --sender B --args 20 @B created: object(6,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2386400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2386400, storage_rebate: 0, non_refundable_storage_fee: 0 task 7, line 80: //# run test::object_basics::update --sender B --args object(2,0) object(6,0) events: Event { package_id: test, transaction_module: Identifier("object_basics"), sender: B, type_: StructTag { address: test, module: Identifier("object_basics"), name: Identifier("NewValueEvent"), type_params: [] }, contents: [20, 0, 0, 0, 0, 0, 0, 0] } mutated: object(0,1), object(2,0), object(6,0) -gas summary: computation_cost: 1000000, storage_cost: 3784800, storage_rebate: 3784800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3784800, storage_rebate: 3784800, non_refundable_storage_fee: 0 task 8, line 82: //# run test::object_basics::delete --sender B --args object(2,0) mutated: object(0,1) deleted: object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 2386400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 2386400, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/iota/unwrap.exp b/crates/iota-adapter-transactional-tests/tests/iota/unwrap.exp index b1452b394dd..7a19211e06a 100644 --- a/crates/iota-adapter-transactional-tests/tests/iota/unwrap.exp +++ b/crates/iota-adapter-transactional-tests/tests/iota/unwrap.exp @@ -7,13 +7,13 @@ task 1, lines 10-69: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 9150400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 9150400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 71: //# run test::object_basics::create --args 10 @A created: object(2,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2386400, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2386400, storage_rebate: 988000, non_refundable_storage_fee: 0 task 3, line 73: //# view-object 2,0 @@ -33,14 +33,14 @@ task 4, line 75: created: object(4,0) mutated: object(0,0) wrapped: object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2637200, storage_rebate: 1398400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2637200, storage_rebate: 1398400, non_refundable_storage_fee: 0 task 5, line 77: //# run test::object_basics::unwrap --args object(4,0) --sender A mutated: object(0,0) unwrapped: object(2,0) deleted: object(4,0) -gas summary: computation_cost: 1000000, storage_cost: 2386400, storage_rebate: 2637200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2386400, storage_rebate: 2637200, non_refundable_storage_fee: 0 task 6, line 79: //# view-object 2,0 diff --git a/crates/iota-adapter-transactional-tests/tests/iota/unwrap_then_delete.exp b/crates/iota-adapter-transactional-tests/tests/iota/unwrap_then_delete.exp index cabb5c5b4da..00abca4a64d 100644 --- a/crates/iota-adapter-transactional-tests/tests/iota/unwrap_then_delete.exp +++ b/crates/iota-adapter-transactional-tests/tests/iota/unwrap_then_delete.exp @@ -7,37 +7,37 @@ task 1, lines 15-62: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 7516400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7516400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 64: //# run test::object_basics::create --args 10 created: object(2,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2386400, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2386400, storage_rebate: 988000, non_refundable_storage_fee: 0 task 3, line 66: //# run test::object_basics::wrap --args object(2,0) created: object(3,0) mutated: object(0,1) wrapped: object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2637200, storage_rebate: 2386400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2637200, storage_rebate: 2386400, non_refundable_storage_fee: 0 task 4, line 68: //# run test::object_basics::unwrap_and_delete --args object(3,0) mutated: object(0,1) deleted: object(3,0) unwrapped_then_deleted: object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 2637200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 2637200, non_refundable_storage_fee: 0 task 5, line 70: //# run test::object_basics::create_and_wrap --args 10 created: object(5,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2637200, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2637200, storage_rebate: 988000, non_refundable_storage_fee: 0 task 6, line 72: //# run test::object_basics::unwrap_and_delete --args object(5,0) mutated: object(0,1) deleted: object(5,0) unwrapped_then_deleted: object(_) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 2637200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 2637200, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/iota/unwrap_then_freeze.exp b/crates/iota-adapter-transactional-tests/tests/iota/unwrap_then_freeze.exp index c1ccc148f9e..0d0a2ca6075 100644 --- a/crates/iota-adapter-transactional-tests/tests/iota/unwrap_then_freeze.exp +++ b/crates/iota-adapter-transactional-tests/tests/iota/unwrap_then_freeze.exp @@ -7,13 +7,13 @@ task 1, lines 10-39: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 6946400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6946400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 41: //# run test::object_basics::create --args 10 @A created: object(2,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2386400, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2386400, storage_rebate: 988000, non_refundable_storage_fee: 0 task 3, line 43: //# view-object 2,0 @@ -33,14 +33,14 @@ task 4, line 45: created: object(4,0) mutated: object(0,0) wrapped: object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2637200, storage_rebate: 1398400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2637200, storage_rebate: 1398400, non_refundable_storage_fee: 0 task 5, line 47: //# run test::object_basics::unwrap_and_freeze --args object(4,0) --sender A mutated: object(0,0) unwrapped: object(2,0) deleted: object(4,0) -gas summary: computation_cost: 1000000, storage_cost: 2386400, storage_rebate: 2637200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2386400, storage_rebate: 2637200, non_refundable_storage_fee: 0 task 6, line 49: //# view-object 2,0 diff --git a/crates/iota-adapter-transactional-tests/tests/mvcc/child_of_child.exp b/crates/iota-adapter-transactional-tests/tests/mvcc/child_of_child.exp index 6be3b2877e4..1eb7fc4f84d 100644 --- a/crates/iota-adapter-transactional-tests/tests/mvcc/child_of_child.exp +++ b/crates/iota-adapter-transactional-tests/tests/mvcc/child_of_child.exp @@ -7,7 +7,7 @@ task 1, lines 9-67: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 9218800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 9218800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 69-71: //# programmable --sender A --inputs @A @@ -15,7 +15,7 @@ task 2, lines 69-71: //> TransferObjects([Result(0)], Input(0)) created: object(2,0), object(2,1), object(2,2), object(2,3), object(2,4) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 9750800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 9750800, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 73: //# view-object 2,4 @@ -34,7 +34,7 @@ task 4, lines 75-76: //# programmable --sender A --inputs object(2,4) 1 2 3 //> test::m::set(Input(0), Input(1), Input(2), Input(3)) mutated: object(0,0), object(2,2), object(2,3), object(2,4) -gas summary: computation_cost: 1000000, storage_cost: 4841200, storage_rebate: 4841200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4841200, storage_rebate: 4841200, non_refundable_storage_fee: 0 task 5, line 78: //# view-object 2,4 @@ -54,7 +54,7 @@ task 6, lines 80-81: //> test::m::remove(Input(0)) mutated: object(0,0), object(2,4) deleted: object(2,1), object(2,3) -gas summary: computation_cost: 1000000, storage_cost: 2272400, storage_rebate: 6011600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2272400, storage_rebate: 6011600, non_refundable_storage_fee: 0 task 7, lines 83-86: //# view-object 2,4 @@ -73,20 +73,20 @@ task 8, lines 88-89: //# programmable --sender A --inputs object(2,4)@2 0 0 vector[0] --dev-inspect //> test::m::check(Input(0), Input(1), Input(2), Input(3)) mutated: object(_), object(2,4) -gas summary: computation_cost: 500000, storage_cost: 2272400, storage_rebate: 1284400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 2272400, storage_rebate: 1284400, non_refundable_storage_fee: 0 task 9, lines 91-92: //# programmable --sender A --inputs object(2,4)@3 1 2 vector[3] --dev-inspect //> test::m::check(Input(0), Input(1), Input(2), Input(3)) mutated: object(_), object(2,4) -gas summary: computation_cost: 500000, storage_cost: 2272400, storage_rebate: 1284400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 2272400, storage_rebate: 1284400, non_refundable_storage_fee: 0 task 10, lines 94-98: //# programmable --sender A --inputs object(2,4)@4 1 2 vector[] --dev-inspect //> test::m::check(Input(0), Input(1), Input(2), Input(3)) // dev-inspect with 'check' and _incorrect_ values mutated: object(_), object(2,4) -gas summary: computation_cost: 500000, storage_cost: 2272400, storage_rebate: 1284400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 2272400, storage_rebate: 1284400, non_refundable_storage_fee: 0 task 11, lines 100-101: //# programmable --sender A --inputs object(2,4)@3 0 0 vector[0] --dev-inspect diff --git a/crates/iota-adapter-transactional-tests/tests/mvcc/find_all_uids.exp b/crates/iota-adapter-transactional-tests/tests/mvcc/find_all_uids.exp index adc294dbbc0..bbecc84eefb 100644 --- a/crates/iota-adapter-transactional-tests/tests/mvcc/find_all_uids.exp +++ b/crates/iota-adapter-transactional-tests/tests/mvcc/find_all_uids.exp @@ -7,7 +7,7 @@ task 1, lines 9-118: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 12205600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 12205600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 120-122: //# programmable --sender A --inputs @A @@ -15,7 +15,7 @@ task 2, lines 120-122: //> TransferObjects([Result(0)], Input(0)) created: object(2,0), object(2,1), object(2,2), object(2,3), object(2,4), object(2,5), object(2,6), object(2,7), object(2,8) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 15640800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 15640800, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 124: //# view-object 2,8 @@ -76,7 +76,7 @@ task 4, lines 126-127: //# programmable --sender A --inputs object(2,8) 112 //> test::m::set(Input(0), Input(1)) mutated: object(0,0), object(2,0), object(2,1), object(2,2), object(2,3), object(2,4), object(2,5), object(2,6), object(2,7), object(2,8) -gas summary: computation_cost: 1000000, storage_cost: 15640800, storage_rebate: 15640800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 15640800, storage_rebate: 15640800, non_refundable_storage_fee: 0 task 5, line 129: //# view-object 2,8 @@ -138,7 +138,7 @@ task 6, lines 131-132: //> test::m::remove(Input(0)) mutated: object(0,0), object(2,8) deleted: object(2,0), object(2,1), object(2,2), object(2,3), object(2,4), object(2,5), object(2,6), object(2,7) -gas summary: computation_cost: 1000000, storage_cost: 3906400, storage_rebate: 15640800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3906400, storage_rebate: 15640800, non_refundable_storage_fee: 0 task 7, lines 134-137: //# view-object 2,8 @@ -199,20 +199,20 @@ task 8, lines 139-140: //# programmable --sender A --inputs object(2,8)@2 vector[0] --dev-inspect //> test::m::check(Input(0), Input(1)) mutated: object(_), object(2,8) -gas summary: computation_cost: 500000, storage_cost: 3906400, storage_rebate: 2918400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 3906400, storage_rebate: 2918400, non_refundable_storage_fee: 0 task 9, lines 142-143: //# programmable --sender A --inputs object(2,8)@3 vector[112] --dev-inspect //> test::m::check(Input(0), Input(1)) mutated: object(_), object(2,8) -gas summary: computation_cost: 500000, storage_cost: 3906400, storage_rebate: 2918400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 3906400, storage_rebate: 2918400, non_refundable_storage_fee: 0 task 10, lines 145-149: //# programmable --sender A --inputs object(2,8)@4 vector[] --dev-inspect //> test::m::check(Input(0), Input(1)) // dev-inspect with 'check' and _incorrect_ values mutated: object(_), object(2,8) -gas summary: computation_cost: 500000, storage_cost: 3906400, storage_rebate: 2918400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 3906400, storage_rebate: 2918400, non_refundable_storage_fee: 0 task 11, lines 151-152: //# programmable --sender A --inputs object(2,8)@3 vector[0] --dev-inspect diff --git a/crates/iota-adapter-transactional-tests/tests/mvcc/find_all_uids_dof.exp b/crates/iota-adapter-transactional-tests/tests/mvcc/find_all_uids_dof.exp index b00c36b8044..663d57b4e1d 100644 --- a/crates/iota-adapter-transactional-tests/tests/mvcc/find_all_uids_dof.exp +++ b/crates/iota-adapter-transactional-tests/tests/mvcc/find_all_uids_dof.exp @@ -7,7 +7,7 @@ task 1, lines 9-131: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 13353200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 13353200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 133-135: //# programmable --sender A --inputs @A @@ -15,7 +15,7 @@ task 2, lines 133-135: //> TransferObjects([Result(0)], Input(0)) created: object(2,0), object(2,1), object(2,2), object(2,3), object(2,4), object(2,5), object(2,6), object(2,7), object(2,8), object(2,9), object(2,10), object(2,11), object(2,12), object(2,13), object(2,14), object(2,15), object(2,16) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 33941600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 33941600, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 137: //# view-object 2,8 @@ -76,7 +76,7 @@ task 4, lines 139-140: //# programmable --sender A --inputs object(2,8) 112 //> test::m::set(Input(0), Input(1)) mutated: object(0,0), object(2,8), object(2,9), object(2,10), object(2,11), object(2,12), object(2,13), object(2,14), object(2,15), object(2,16) -gas summary: computation_cost: 1000000, storage_cost: 14303200, storage_rebate: 14303200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 14303200, storage_rebate: 14303200, non_refundable_storage_fee: 0 task 5, line 142: //# view-object 2,8 @@ -138,7 +138,7 @@ task 6, lines 144-145: //> test::m::remove(Input(0)) mutated: object(0,0), object(2,8) deleted: object(2,0), object(2,1), object(2,2), object(2,3), object(2,4), object(2,5), object(2,6), object(2,7), object(2,9), object(2,10), object(2,11), object(2,12), object(2,13), object(2,14), object(2,15), object(2,16) -gas summary: computation_cost: 1000000, storage_cost: 3906400, storage_rebate: 33941600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3906400, storage_rebate: 33941600, non_refundable_storage_fee: 0 task 7, lines 147-150: //# view-object 2,8 @@ -199,20 +199,20 @@ task 8, lines 152-153: //# programmable --sender A --inputs object(2,8)@2 vector[0] --dev-inspect //> test::m::check(Input(0), Input(1)) mutated: object(_), object(2,8) -gas summary: computation_cost: 500000, storage_cost: 3906400, storage_rebate: 2918400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 3906400, storage_rebate: 2918400, non_refundable_storage_fee: 0 task 9, lines 155-156: //# programmable --sender A --inputs object(2,8)@3 vector[112] --dev-inspect //> test::m::check(Input(0), Input(1)) mutated: object(_), object(2,8) -gas summary: computation_cost: 500000, storage_cost: 3906400, storage_rebate: 2918400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 3906400, storage_rebate: 2918400, non_refundable_storage_fee: 0 task 10, lines 158-162: //# programmable --sender A --inputs object(2,8)@4 vector[] --dev-inspect //> test::m::check(Input(0), Input(1)) // dev-inspect with 'check' and _incorrect_ values mutated: object(_), object(2,8) -gas summary: computation_cost: 500000, storage_cost: 3906400, storage_rebate: 2918400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 3906400, storage_rebate: 2918400, non_refundable_storage_fee: 0 task 11, lines 164-165: //# programmable --sender A --inputs object(2,8)@3 vector[0] --dev-inspect diff --git a/crates/iota-adapter-transactional-tests/tests/mvcc/find_all_uids_dof_enum.exp b/crates/iota-adapter-transactional-tests/tests/mvcc/find_all_uids_dof_enum.exp index 76d2678ef20..f0d2fe59b9a 100644 --- a/crates/iota-adapter-transactional-tests/tests/mvcc/find_all_uids_dof_enum.exp +++ b/crates/iota-adapter-transactional-tests/tests/mvcc/find_all_uids_dof_enum.exp @@ -7,7 +7,7 @@ task 1, lines 9-168: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 18164000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 18164000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 170-172: //# programmable --sender A --inputs @A @@ -15,7 +15,7 @@ task 2, lines 170-172: //> TransferObjects([Result(0)], Input(0)) created: object(2,0), object(2,1), object(2,2), object(2,3), object(2,4), object(2,5), object(2,6), object(2,7), object(2,8), object(2,9), object(2,10), object(2,11), object(2,12), object(2,13), object(2,14), object(2,15), object(2,16) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 34002400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 34002400, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 174: //# view-object 2,8 @@ -92,7 +92,7 @@ task 4, lines 176-177: //# programmable --sender A --inputs object(2,8) 112 //> test::m::set(Input(0), Input(1)) mutated: object(0,0), object(2,8), object(2,9), object(2,10), object(2,11), object(2,12), object(2,13), object(2,14), object(2,15), object(2,16) -gas summary: computation_cost: 1000000, storage_cost: 14364000, storage_rebate: 14364000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 14364000, storage_rebate: 14364000, non_refundable_storage_fee: 0 task 5, line 179: //# view-object 2,8 @@ -170,7 +170,7 @@ task 6, lines 181-182: //> test::m::remove(Input(0)) mutated: object(0,0), object(2,8) deleted: object(2,0), object(2,1), object(2,2), object(2,3), object(2,4), object(2,5), object(2,6), object(2,7), object(2,9), object(2,10), object(2,11), object(2,12), object(2,13), object(2,14), object(2,15), object(2,16) -gas summary: computation_cost: 1000000, storage_cost: 3967200, storage_rebate: 34002400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3967200, storage_rebate: 34002400, non_refundable_storage_fee: 0 task 7, lines 184-186: //# view-object 2,8 @@ -247,13 +247,13 @@ task 8, lines 188-189: //# programmable --sender A --inputs object(2,8)@2 vector[0] --dev-inspect //> test::m::check(Input(0), Input(1)) mutated: object(_), object(2,8) -gas summary: computation_cost: 500000, storage_cost: 3967200, storage_rebate: 2979200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 3967200, storage_rebate: 2979200, non_refundable_storage_fee: 0 task 9, lines 191-192: //# programmable --sender A --inputs object(2,8)@3 vector[112] --dev-inspect //> test::m::check(Input(0), Input(1)) mutated: object(_), object(2,8) -gas summary: computation_cost: 500000, storage_cost: 3967200, storage_rebate: 2979200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 3967200, storage_rebate: 2979200, non_refundable_storage_fee: 0 task 10, lines 194-199: //# programmable --sender A --inputs object(2,8)@4 vector[] --dev-inspect @@ -261,7 +261,7 @@ task 10, lines 194-199: // dev-inspect with 'check' and _incorrect_ values // Should fail since the field exists but with a different field. mutated: object(_), object(2,8) -gas summary: computation_cost: 500000, storage_cost: 3967200, storage_rebate: 2979200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 3967200, storage_rebate: 2979200, non_refundable_storage_fee: 0 task 11, lines 200-203: //# programmable --sender A --inputs object(2,8)@3 vector[0] --dev-inspect diff --git a/crates/iota-adapter-transactional-tests/tests/mvcc/find_all_uids_enums.exp b/crates/iota-adapter-transactional-tests/tests/mvcc/find_all_uids_enums.exp index cc92ac553b4..0e6158c9408 100644 --- a/crates/iota-adapter-transactional-tests/tests/mvcc/find_all_uids_enums.exp +++ b/crates/iota-adapter-transactional-tests/tests/mvcc/find_all_uids_enums.exp @@ -7,7 +7,7 @@ task 1, lines 9-135: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 14136000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 14136000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 137-139: //# programmable --sender A --inputs @A @@ -15,7 +15,7 @@ task 2, lines 137-139: //> TransferObjects([Result(0)], Input(0)) created: object(2,0), object(2,1), object(2,2), object(2,3), object(2,4), object(2,5), object(2,6), object(2,7), object(2,8) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 15671200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 15671200, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 141: //# view-object 2,8 @@ -84,7 +84,7 @@ task 4, lines 143-144: //# programmable --sender A --inputs object(2,8) 112 //> test::m::set(Input(0), Input(1)) mutated: object(0,0), object(2,0), object(2,1), object(2,2), object(2,3), object(2,4), object(2,5), object(2,6), object(2,7), object(2,8) -gas summary: computation_cost: 1000000, storage_cost: 15671200, storage_rebate: 15671200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 15671200, storage_rebate: 15671200, non_refundable_storage_fee: 0 task 5, line 146: //# view-object 2,8 @@ -154,7 +154,7 @@ task 6, lines 148-149: //> test::m::remove(Input(0)) mutated: object(0,0), object(2,8) deleted: object(2,0), object(2,1), object(2,2), object(2,3), object(2,4), object(2,5), object(2,6), object(2,7) -gas summary: computation_cost: 1000000, storage_cost: 3936800, storage_rebate: 15671200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3936800, storage_rebate: 15671200, non_refundable_storage_fee: 0 task 7, lines 151-153: //# view-object 2,8 @@ -223,13 +223,13 @@ task 8, lines 155-156: //# programmable --sender A --inputs object(2,8)@2 vector[0] --dev-inspect //> test::m::check(Input(0), Input(1)) mutated: object(_), object(2,8) -gas summary: computation_cost: 500000, storage_cost: 3936800, storage_rebate: 2948800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 3936800, storage_rebate: 2948800, non_refundable_storage_fee: 0 task 9, lines 158-159: //# programmable --sender A --inputs object(2,8)@3 vector[112] --dev-inspect //> test::m::check(Input(0), Input(1)) mutated: object(_), object(2,8) -gas summary: computation_cost: 500000, storage_cost: 3936800, storage_rebate: 2948800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 3936800, storage_rebate: 2948800, non_refundable_storage_fee: 0 task 10, lines 161-166: //# programmable --sender A --inputs object(2,8)@4 vector[] --dev-inspect @@ -237,7 +237,7 @@ task 10, lines 161-166: // dev-inspect with 'check' and _incorrect_ values // Should fail since the field exists but with a different field. mutated: object(_), object(2,8) -gas summary: computation_cost: 500000, storage_cost: 3936800, storage_rebate: 2948800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 3936800, storage_rebate: 2948800, non_refundable_storage_fee: 0 task 11, lines 167-170: //# programmable --sender A --inputs object(2,8)@3 vector[0] --dev-inspect diff --git a/crates/iota-adapter-transactional-tests/tests/mvcc/find_all_uids_on_child.exp b/crates/iota-adapter-transactional-tests/tests/mvcc/find_all_uids_on_child.exp index a5cec26d5a3..1c3391cdf86 100644 --- a/crates/iota-adapter-transactional-tests/tests/mvcc/find_all_uids_on_child.exp +++ b/crates/iota-adapter-transactional-tests/tests/mvcc/find_all_uids_on_child.exp @@ -7,7 +7,7 @@ task 1, lines 9-141: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 13862400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 13862400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 143-145: //# programmable --sender A --inputs @A @@ -15,7 +15,7 @@ task 2, lines 143-145: //> TransferObjects([Result(0)], Input(0)) created: object(2,0), object(2,1), object(2,2), object(2,3), object(2,4), object(2,5), object(2,6), object(2,7), object(2,8), object(2,9) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 17609200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 17609200, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 147: //# view-object 2,9 @@ -33,7 +33,7 @@ task 4, lines 149-150: //# programmable --sender A --inputs object(2,9) 112 //> test::m::set(Input(0), Input(1)) mutated: object(0,0), object(2,1), object(2,2), object(2,3), object(2,4), object(2,5), object(2,6), object(2,7), object(2,8), object(2,9) -gas summary: computation_cost: 1000000, storage_cost: 13968800, storage_rebate: 13968800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 13968800, storage_rebate: 13968800, non_refundable_storage_fee: 0 task 5, line 152: //# view-object 2,9 @@ -52,7 +52,7 @@ task 6, lines 154-155: //> test::m::remove(Input(0)) mutated: object(0,0), object(2,9) deleted: object(2,1), object(2,2), object(2,3), object(2,4), object(2,5), object(2,6), object(2,7), object(2,8) -gas summary: computation_cost: 1000000, storage_cost: 2234400, storage_rebate: 13968800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2234400, storage_rebate: 13968800, non_refundable_storage_fee: 0 task 7, lines 157-160: //# view-object 2,9 @@ -70,20 +70,20 @@ task 8, lines 162-163: //# programmable --sender A --inputs object(2,9)@2 vector[0] --dev-inspect //> test::m::check(Input(0), Input(1)) mutated: object(_), object(2,9) -gas summary: computation_cost: 500000, storage_cost: 2234400, storage_rebate: 1246400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 2234400, storage_rebate: 1246400, non_refundable_storage_fee: 0 task 9, lines 165-166: //# programmable --sender A --inputs object(2,9)@3 vector[112] --dev-inspect //> test::m::check(Input(0), Input(1)) mutated: object(_), object(2,9) -gas summary: computation_cost: 500000, storage_cost: 2234400, storage_rebate: 1246400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 2234400, storage_rebate: 1246400, non_refundable_storage_fee: 0 task 10, lines 168-172: //# programmable --sender A --inputs object(2,9)@4 vector[] --dev-inspect //> test::m::check(Input(0), Input(1)) // dev-inspect with 'check' and _incorrect_ values mutated: object(_), object(2,9) -gas summary: computation_cost: 500000, storage_cost: 2234400, storage_rebate: 1246400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 2234400, storage_rebate: 1246400, non_refundable_storage_fee: 0 task 11, lines 174-175: //# programmable --sender A --inputs object(2,9)@3 vector[0] --dev-inspect diff --git a/crates/iota-adapter-transactional-tests/tests/mvcc/find_all_uids_on_child_enum.exp b/crates/iota-adapter-transactional-tests/tests/mvcc/find_all_uids_on_child_enum.exp index f85c838e4b3..30c53978bdf 100644 --- a/crates/iota-adapter-transactional-tests/tests/mvcc/find_all_uids_on_child_enum.exp +++ b/crates/iota-adapter-transactional-tests/tests/mvcc/find_all_uids_on_child_enum.exp @@ -7,7 +7,7 @@ task 1, lines 9-220: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 20869600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 20869600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 222-224: //# programmable --sender A --inputs @A @@ -15,7 +15,7 @@ task 2, lines 222-224: //> TransferObjects([Result(0)], Input(0)) created: object(2,0), object(2,1), object(2,2), object(2,3), object(2,4), object(2,5), object(2,6), object(2,7), object(2,8), object(2,9) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 17654800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 17654800, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 226: //# view-object 2,9 @@ -33,7 +33,7 @@ task 4, lines 228-229: //# programmable --sender A --inputs object(2,9) 112 //> test::m::set(Input(0), Input(1)) mutated: object(0,0), object(2,1), object(2,2), object(2,3), object(2,4), object(2,5), object(2,6), object(2,7), object(2,8), object(2,9) -gas summary: computation_cost: 1000000, storage_cost: 13968800, storage_rebate: 13968800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 13968800, storage_rebate: 13968800, non_refundable_storage_fee: 0 task 5, line 231: //# view-object 2,9 @@ -52,7 +52,7 @@ task 6, lines 233-234: //> test::m::remove(Input(0)) mutated: object(0,0), object(2,9) deleted: object(2,1), object(2,2), object(2,3), object(2,4), object(2,5), object(2,6), object(2,7), object(2,8) -gas summary: computation_cost: 1000000, storage_cost: 2234400, storage_rebate: 13968800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2234400, storage_rebate: 13968800, non_refundable_storage_fee: 0 task 7, lines 236-239: //# view-object 2,9 @@ -70,13 +70,13 @@ task 8, lines 241-242: //# programmable --sender A --inputs object(2,9)@2 vector[0] --dev-inspect //> test::m::check(Input(0), Input(1)) mutated: object(_), object(2,9) -gas summary: computation_cost: 500000, storage_cost: 2234400, storage_rebate: 1246400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 2234400, storage_rebate: 1246400, non_refundable_storage_fee: 0 task 9, lines 244-245: //# programmable --sender A --inputs object(2,9)@3 vector[112] --dev-inspect //> test::m::check(Input(0), Input(1)) mutated: object(_), object(2,9) -gas summary: computation_cost: 500000, storage_cost: 2234400, storage_rebate: 1246400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 2234400, storage_rebate: 1246400, non_refundable_storage_fee: 0 task 10, lines 247-252: //# programmable --sender A --inputs object(2,9)@4 vector[] --dev-inspect @@ -84,7 +84,7 @@ task 10, lines 247-252: // dev-inspect with 'check' and _incorrect_ values // Should fail since the field exists but with a different field. mutated: object(_), object(2,9) -gas summary: computation_cost: 500000, storage_cost: 2234400, storage_rebate: 1246400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 2234400, storage_rebate: 1246400, non_refundable_storage_fee: 0 task 11, lines 253-256: //# programmable --sender A --inputs object(2,9)@3 vector[0] --dev-inspect diff --git a/crates/iota-adapter-transactional-tests/tests/mvcc/middle_version_less_than_child.exp b/crates/iota-adapter-transactional-tests/tests/mvcc/middle_version_less_than_child.exp index 5f0f7f88a1a..df99c161214 100644 --- a/crates/iota-adapter-transactional-tests/tests/mvcc/middle_version_less_than_child.exp +++ b/crates/iota-adapter-transactional-tests/tests/mvcc/middle_version_less_than_child.exp @@ -7,7 +7,7 @@ task 1, lines 9-52: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 7493600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7493600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 54-58: //# programmable --sender A --inputs @A @@ -16,7 +16,7 @@ task 2, lines 54-58: // All 3 objects have version 2 created: object(2,0), object(2,1), object(2,2) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 6285200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6285200, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 60: //# view-object 2,0 @@ -78,7 +78,7 @@ task 6, lines 66-69: //> test::m::set(Input(0), Input(1)) // The middle object has version 2, while the root and modified leaf have version 3 mutated: object(0,0), object(2,1), object(2,2) -gas summary: computation_cost: 1000000, storage_cost: 4278800, storage_rebate: 4278800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4278800, storage_rebate: 4278800, non_refundable_storage_fee: 0 task 7, line 71: //# view-object 2,0 @@ -139,4 +139,4 @@ task 10, lines 80-81: //# programmable --sender A --inputs object(2,2) 112 //> test::m::check(Input(0), Input(1)) mutated: object(0,0), object(2,2) -gas summary: computation_cost: 1000000, storage_cost: 2272400, storage_rebate: 2272400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2272400, storage_rebate: 2272400, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/mvcc/middle_version_less_than_child_enum.exp b/crates/iota-adapter-transactional-tests/tests/mvcc/middle_version_less_than_child_enum.exp index 8dc108e9ba6..ef98bdc877f 100644 --- a/crates/iota-adapter-transactional-tests/tests/mvcc/middle_version_less_than_child_enum.exp +++ b/crates/iota-adapter-transactional-tests/tests/mvcc/middle_version_less_than_child_enum.exp @@ -7,7 +7,7 @@ task 1, lines 9-77: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 9317600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 9317600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 79-83: //# programmable --sender A --inputs @A @@ -16,7 +16,7 @@ task 2, lines 79-83: // All 3 objects have version 2 created: object(2,0), object(2,1), object(2,2) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 6315600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6315600, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 85: //# view-object 2,0 @@ -78,7 +78,7 @@ task 6, lines 91-94: //> test::m::set(Input(0), Input(1)) // The middle object has version 2, while the root and modified leaf have version 3 mutated: object(0,0), object(2,0), object(2,2) -gas summary: computation_cost: 1000000, storage_cost: 4294000, storage_rebate: 4294000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4294000, storage_rebate: 4294000, non_refundable_storage_fee: 0 task 7, line 96: //# view-object 2,0 @@ -139,4 +139,4 @@ task 10, lines 105-106: //# programmable --sender A --inputs object(2,2) 112 //> test::m::check(Input(0), Input(1)) mutated: object(0,0), object(2,2) -gas summary: computation_cost: 1000000, storage_cost: 2272400, storage_rebate: 2272400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2272400, storage_rebate: 2272400, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/mvcc/not_root_version.exp b/crates/iota-adapter-transactional-tests/tests/mvcc/not_root_version.exp index 45d93579fec..e07f842ca30 100644 --- a/crates/iota-adapter-transactional-tests/tests/mvcc/not_root_version.exp +++ b/crates/iota-adapter-transactional-tests/tests/mvcc/not_root_version.exp @@ -7,7 +7,7 @@ task 1, lines 9-54: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 7432800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7432800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 56-58: //# programmable --sender P1 --inputs @P1 @@ -15,19 +15,19 @@ task 2, lines 56-58: //> TransferObjects([Result(0)], Input(0)) created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2196400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2196400, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, lines 60-61: //# programmable --sender P1 --inputs object(2,0) //> test::m::nop(); mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2196400, storage_rebate: 2196400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2196400, storage_rebate: 2196400, non_refundable_storage_fee: 0 task 4, lines 63-64: //# programmable --sender P1 --inputs object(2,0) //> test::m::nop(); mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2196400, storage_rebate: 2196400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2196400, storage_rebate: 2196400, non_refundable_storage_fee: 0 task 5, lines 66-69: //# view-object 2,0 @@ -47,7 +47,7 @@ task 6, lines 71-73: //> TransferObjects([Result(0)], Input(0)) created: object(6,0), object(6,1) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 3663200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3663200, storage_rebate: 0, non_refundable_storage_fee: 0 task 7, line 75: //# view-object 6,0 @@ -67,7 +67,7 @@ task 8, lines 77-78: //# programmable --sender P2 --inputs object(6,1) //> 0: test::m::bump(Input(0)); mutated: object(0,1), object(6,0), object(6,1) -gas summary: computation_cost: 1000000, storage_cost: 3663200, storage_rebate: 3663200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3663200, storage_rebate: 3663200, non_refundable_storage_fee: 0 task 9, lines 80-84: //# view-object 6,0 @@ -92,7 +92,7 @@ task 10, lines 86-91: created: object(10,0) mutated: object(_), object(2,0) wrapped: object(6,1) -gas summary: computation_cost: 500000, storage_cost: 4126800, storage_rebate: 2416800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 4126800, storage_rebate: 2416800, non_refundable_storage_fee: 0 task 11, lines 93-97: //# programmable --sender P2 --inputs object(2,0)@4 object(6,1)@3 1 --dev-inspect @@ -102,7 +102,7 @@ task 11, lines 93-97: created: object(10,0) mutated: object(_), object(2,0) wrapped: object(6,1) -gas summary: computation_cost: 500000, storage_cost: 4126800, storage_rebate: 2416800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 4126800, storage_rebate: 2416800, non_refundable_storage_fee: 0 task 12, lines 99-103: //# programmable --sender P2 --inputs object(2,0)@4 object(6,1)@2 1 --dev-inspect diff --git a/crates/iota-adapter-transactional-tests/tests/mvcc/not_root_version_flipped_case.exp b/crates/iota-adapter-transactional-tests/tests/mvcc/not_root_version_flipped_case.exp index be4131d3a43..98749a64405 100644 --- a/crates/iota-adapter-transactional-tests/tests/mvcc/not_root_version_flipped_case.exp +++ b/crates/iota-adapter-transactional-tests/tests/mvcc/not_root_version_flipped_case.exp @@ -7,7 +7,7 @@ task 1, lines 9-54: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 7432800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7432800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 56-58: //# programmable --sender P1 --inputs @P1 @@ -15,7 +15,7 @@ task 2, lines 56-58: //> TransferObjects([Result(0)], Input(0)) created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2196400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2196400, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, lines 61-64: //# view-object 2,0 @@ -35,7 +35,7 @@ task 4, lines 66-68: //> TransferObjects([Result(0)], Input(0)) created: object(4,0), object(4,1) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 3663200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3663200, storage_rebate: 0, non_refundable_storage_fee: 0 task 5, line 70: //# view-object 4,0 @@ -55,7 +55,7 @@ task 6, lines 72-73: //# programmable --sender P2 --inputs object(4,1) //> 0: test::m::bump(Input(0)); mutated: object(0,1), object(4,0), object(4,1) -gas summary: computation_cost: 1000000, storage_cost: 3663200, storage_rebate: 3663200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3663200, storage_rebate: 3663200, non_refundable_storage_fee: 0 task 7, lines 75-78: //# view-object 4,0 @@ -80,7 +80,7 @@ task 8, lines 80-85: created: object(8,0) mutated: object(_), object(2,0) wrapped: object(4,1) -gas summary: computation_cost: 500000, storage_cost: 4126800, storage_rebate: 2416800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 4126800, storage_rebate: 2416800, non_refundable_storage_fee: 0 task 9, lines 87-91: //# programmable --sender P2 --inputs object(2,0)@2 object(4,1)@2 0 --dev-inspect @@ -90,7 +90,7 @@ task 9, lines 87-91: created: object(8,0) mutated: object(_), object(2,0) wrapped: object(4,1) -gas summary: computation_cost: 500000, storage_cost: 4126800, storage_rebate: 2416800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 4126800, storage_rebate: 2416800, non_refundable_storage_fee: 0 task 10, lines 93-97: //# programmable --sender P2 --inputs object(2,0)@2 object(4,1)@2 1 --dev-inspect diff --git a/crates/iota-adapter-transactional-tests/tests/mvcc/receive_object_access_through_parent_df.exp b/crates/iota-adapter-transactional-tests/tests/mvcc/receive_object_access_through_parent_df.exp index 7b855db372a..2872164096c 100644 --- a/crates/iota-adapter-transactional-tests/tests/mvcc/receive_object_access_through_parent_df.exp +++ b/crates/iota-adapter-transactional-tests/tests/mvcc/receive_object_access_through_parent_df.exp @@ -7,13 +7,13 @@ task 1, lines 7-77: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 12524800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 12524800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 79: //# run tto::M1::start --sender A created: object(2,0), object(2,1), object(2,2), object(2,3), object(2,4), object(2,5), object(2,6), object(2,7) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 15298800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 15298800, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 81: //# view-object 2,0 @@ -243,11 +243,11 @@ task 12, line 101: created: object(12,0) mutated: object(0,0), object(2,6) wrapped: object(2,5) -gas summary: computation_cost: 1000000, storage_cost: 4278800, storage_rebate: 3556800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4278800, storage_rebate: 3556800, non_refundable_storage_fee: 0 task 13, line 103: //# run tto::M1::receive_wrapped --args object(2,6) receiving(2,7) --sender A created: object(13,0) mutated: object(0,0), object(2,6) wrapped: object(2,7) -gas summary: computation_cost: 1000000, storage_cost: 4856400, storage_rebate: 4134400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4856400, storage_rebate: 4134400, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/mvcc/receive_object_access_through_parent_dof.exp b/crates/iota-adapter-transactional-tests/tests/mvcc/receive_object_access_through_parent_dof.exp index 204b9e90947..237bf60c441 100644 --- a/crates/iota-adapter-transactional-tests/tests/mvcc/receive_object_access_through_parent_dof.exp +++ b/crates/iota-adapter-transactional-tests/tests/mvcc/receive_object_access_through_parent_dof.exp @@ -7,13 +7,13 @@ task 1, lines 7-77: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 12509600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 12509600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 79: //# run tto::M1::start --sender A created: object(2,0), object(2,1), object(2,2), object(2,3), object(2,4), object(2,5), object(2,6), object(2,7), object(2,8), object(2,9) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 18749200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 18749200, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 81: //# view-object 2,0 @@ -260,10 +260,10 @@ task 14, line 105: //# run tto::M1::receive_b_parent --args object(2,8) receiving(2,7) --sender A created: object(14,0) mutated: object(0,0), object(2,7), object(2,8) -gas summary: computation_cost: 1000000, storage_cost: 6011600, storage_rebate: 3556800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6011600, storage_rebate: 3556800, non_refundable_storage_fee: 0 task 15, line 107: //# run tto::M1::receive_wrapped --args object(2,8) receiving(2,9) --sender A created: object(15,0) mutated: object(0,0), object(2,8), object(2,9) -gas summary: computation_cost: 1000000, storage_cost: 6589200, storage_rebate: 4134400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6589200, storage_rebate: 4134400, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/mvcc/receive_object_dof.exp b/crates/iota-adapter-transactional-tests/tests/mvcc/receive_object_dof.exp index e2ef2263c2a..ad71d80d5ed 100644 --- a/crates/iota-adapter-transactional-tests/tests/mvcc/receive_object_dof.exp +++ b/crates/iota-adapter-transactional-tests/tests/mvcc/receive_object_dof.exp @@ -7,13 +7,13 @@ task 1, lines 7-59: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 10533600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 10533600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 61: //# run tto::M1::start --sender A created: object(2,0), object(2,1), object(2,2), object(2,3) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 7273200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7273200, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 63: //# view-object 2,0 @@ -76,7 +76,7 @@ task 7, line 71: //# run tto::M1::receive --args object(2,2) receiving(2,3) --sender A created: object(7,0) mutated: object(0,0), object(2,2), object(2,3) -gas summary: computation_cost: 1000000, storage_cost: 5996400, storage_rebate: 3541600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5996400, storage_rebate: 3541600, non_refundable_storage_fee: 0 task 8, lines 73-75: //# view-object 2,0 @@ -139,7 +139,7 @@ task 12, lines 82-83: //# programmable --sender A --inputs object(2,2) 1 2 3 //> tto::M1::set(Input(0), Input(1), Input(2), Input(3)) mutated: object(0,0), object(2,1), object(2,2), object(2,3) -gas summary: computation_cost: 1000000, storage_cost: 4818400, storage_rebate: 4818400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4818400, storage_rebate: 4818400, non_refundable_storage_fee: 0 task 13, lines 85-87: //# view-object 2,0 @@ -204,26 +204,26 @@ task 17, lines 94-97: // dev-inspect with 'check' and correct values mutated: object(0,0), object(2,2) deleted: object(2,0), object(2,1) -gas summary: computation_cost: 1000000, storage_cost: 2264800, storage_rebate: 5996400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2264800, storage_rebate: 5996400, non_refundable_storage_fee: 0 task 18, lines 99-100: //# programmable --sender A --inputs object(2,2)@3 0 0 vector[0] --dev-inspect //> tto::M1::check(Input(0), Input(1), Input(2), Input(3)) mutated: object(_), object(2,2) -gas summary: computation_cost: 500000, storage_cost: 2264800, storage_rebate: 1276800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 2264800, storage_rebate: 1276800, non_refundable_storage_fee: 0 task 19, lines 102-103: //# programmable --sender A --inputs object(2,2)@4 1 2 vector[3] --dev-inspect //> tto::M1::check(Input(0), Input(1), Input(2), Input(3)) mutated: object(_), object(2,2) -gas summary: computation_cost: 500000, storage_cost: 2264800, storage_rebate: 1276800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 2264800, storage_rebate: 1276800, non_refundable_storage_fee: 0 task 20, lines 105-108: //# programmable --sender A --inputs object(2,2)@5 1 2 vector[] --dev-inspect //> tto::M1::check(Input(0), Input(1), Input(2), Input(3)) // dev-inspect with 'check' and _incorrect_ values mutated: object(_), object(2,2) -gas summary: computation_cost: 500000, storage_cost: 2264800, storage_rebate: 1276800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 2264800, storage_rebate: 1276800, non_refundable_storage_fee: 0 task 21, lines 110-111: //# programmable --sender A --inputs object(2,2)@4 0 0 vector[0] --dev-inspect diff --git a/crates/iota-adapter-transactional-tests/tests/mvcc/v0/child_of_child.exp b/crates/iota-adapter-transactional-tests/tests/mvcc/v0/child_of_child.exp index 6be3b2877e4..1eb7fc4f84d 100644 --- a/crates/iota-adapter-transactional-tests/tests/mvcc/v0/child_of_child.exp +++ b/crates/iota-adapter-transactional-tests/tests/mvcc/v0/child_of_child.exp @@ -7,7 +7,7 @@ task 1, lines 9-67: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 9218800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 9218800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 69-71: //# programmable --sender A --inputs @A @@ -15,7 +15,7 @@ task 2, lines 69-71: //> TransferObjects([Result(0)], Input(0)) created: object(2,0), object(2,1), object(2,2), object(2,3), object(2,4) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 9750800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 9750800, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 73: //# view-object 2,4 @@ -34,7 +34,7 @@ task 4, lines 75-76: //# programmable --sender A --inputs object(2,4) 1 2 3 //> test::m::set(Input(0), Input(1), Input(2), Input(3)) mutated: object(0,0), object(2,2), object(2,3), object(2,4) -gas summary: computation_cost: 1000000, storage_cost: 4841200, storage_rebate: 4841200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4841200, storage_rebate: 4841200, non_refundable_storage_fee: 0 task 5, line 78: //# view-object 2,4 @@ -54,7 +54,7 @@ task 6, lines 80-81: //> test::m::remove(Input(0)) mutated: object(0,0), object(2,4) deleted: object(2,1), object(2,3) -gas summary: computation_cost: 1000000, storage_cost: 2272400, storage_rebate: 6011600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2272400, storage_rebate: 6011600, non_refundable_storage_fee: 0 task 7, lines 83-86: //# view-object 2,4 @@ -73,20 +73,20 @@ task 8, lines 88-89: //# programmable --sender A --inputs object(2,4)@2 0 0 vector[0] --dev-inspect //> test::m::check(Input(0), Input(1), Input(2), Input(3)) mutated: object(_), object(2,4) -gas summary: computation_cost: 500000, storage_cost: 2272400, storage_rebate: 1284400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 2272400, storage_rebate: 1284400, non_refundable_storage_fee: 0 task 9, lines 91-92: //# programmable --sender A --inputs object(2,4)@3 1 2 vector[3] --dev-inspect //> test::m::check(Input(0), Input(1), Input(2), Input(3)) mutated: object(_), object(2,4) -gas summary: computation_cost: 500000, storage_cost: 2272400, storage_rebate: 1284400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 2272400, storage_rebate: 1284400, non_refundable_storage_fee: 0 task 10, lines 94-98: //# programmable --sender A --inputs object(2,4)@4 1 2 vector[] --dev-inspect //> test::m::check(Input(0), Input(1), Input(2), Input(3)) // dev-inspect with 'check' and _incorrect_ values mutated: object(_), object(2,4) -gas summary: computation_cost: 500000, storage_cost: 2272400, storage_rebate: 1284400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 2272400, storage_rebate: 1284400, non_refundable_storage_fee: 0 task 11, lines 100-101: //# programmable --sender A --inputs object(2,4)@3 0 0 vector[0] --dev-inspect diff --git a/crates/iota-adapter-transactional-tests/tests/mvcc/v0/find_all_uids.exp b/crates/iota-adapter-transactional-tests/tests/mvcc/v0/find_all_uids.exp index adc294dbbc0..bbecc84eefb 100644 --- a/crates/iota-adapter-transactional-tests/tests/mvcc/v0/find_all_uids.exp +++ b/crates/iota-adapter-transactional-tests/tests/mvcc/v0/find_all_uids.exp @@ -7,7 +7,7 @@ task 1, lines 9-118: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 12205600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 12205600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 120-122: //# programmable --sender A --inputs @A @@ -15,7 +15,7 @@ task 2, lines 120-122: //> TransferObjects([Result(0)], Input(0)) created: object(2,0), object(2,1), object(2,2), object(2,3), object(2,4), object(2,5), object(2,6), object(2,7), object(2,8) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 15640800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 15640800, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 124: //# view-object 2,8 @@ -76,7 +76,7 @@ task 4, lines 126-127: //# programmable --sender A --inputs object(2,8) 112 //> test::m::set(Input(0), Input(1)) mutated: object(0,0), object(2,0), object(2,1), object(2,2), object(2,3), object(2,4), object(2,5), object(2,6), object(2,7), object(2,8) -gas summary: computation_cost: 1000000, storage_cost: 15640800, storage_rebate: 15640800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 15640800, storage_rebate: 15640800, non_refundable_storage_fee: 0 task 5, line 129: //# view-object 2,8 @@ -138,7 +138,7 @@ task 6, lines 131-132: //> test::m::remove(Input(0)) mutated: object(0,0), object(2,8) deleted: object(2,0), object(2,1), object(2,2), object(2,3), object(2,4), object(2,5), object(2,6), object(2,7) -gas summary: computation_cost: 1000000, storage_cost: 3906400, storage_rebate: 15640800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3906400, storage_rebate: 15640800, non_refundable_storage_fee: 0 task 7, lines 134-137: //# view-object 2,8 @@ -199,20 +199,20 @@ task 8, lines 139-140: //# programmable --sender A --inputs object(2,8)@2 vector[0] --dev-inspect //> test::m::check(Input(0), Input(1)) mutated: object(_), object(2,8) -gas summary: computation_cost: 500000, storage_cost: 3906400, storage_rebate: 2918400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 3906400, storage_rebate: 2918400, non_refundable_storage_fee: 0 task 9, lines 142-143: //# programmable --sender A --inputs object(2,8)@3 vector[112] --dev-inspect //> test::m::check(Input(0), Input(1)) mutated: object(_), object(2,8) -gas summary: computation_cost: 500000, storage_cost: 3906400, storage_rebate: 2918400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 3906400, storage_rebate: 2918400, non_refundable_storage_fee: 0 task 10, lines 145-149: //# programmable --sender A --inputs object(2,8)@4 vector[] --dev-inspect //> test::m::check(Input(0), Input(1)) // dev-inspect with 'check' and _incorrect_ values mutated: object(_), object(2,8) -gas summary: computation_cost: 500000, storage_cost: 3906400, storage_rebate: 2918400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 3906400, storage_rebate: 2918400, non_refundable_storage_fee: 0 task 11, lines 151-152: //# programmable --sender A --inputs object(2,8)@3 vector[0] --dev-inspect diff --git a/crates/iota-adapter-transactional-tests/tests/mvcc/v0/find_all_uids_dof.exp b/crates/iota-adapter-transactional-tests/tests/mvcc/v0/find_all_uids_dof.exp index b00c36b8044..663d57b4e1d 100644 --- a/crates/iota-adapter-transactional-tests/tests/mvcc/v0/find_all_uids_dof.exp +++ b/crates/iota-adapter-transactional-tests/tests/mvcc/v0/find_all_uids_dof.exp @@ -7,7 +7,7 @@ task 1, lines 9-131: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 13353200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 13353200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 133-135: //# programmable --sender A --inputs @A @@ -15,7 +15,7 @@ task 2, lines 133-135: //> TransferObjects([Result(0)], Input(0)) created: object(2,0), object(2,1), object(2,2), object(2,3), object(2,4), object(2,5), object(2,6), object(2,7), object(2,8), object(2,9), object(2,10), object(2,11), object(2,12), object(2,13), object(2,14), object(2,15), object(2,16) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 33941600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 33941600, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 137: //# view-object 2,8 @@ -76,7 +76,7 @@ task 4, lines 139-140: //# programmable --sender A --inputs object(2,8) 112 //> test::m::set(Input(0), Input(1)) mutated: object(0,0), object(2,8), object(2,9), object(2,10), object(2,11), object(2,12), object(2,13), object(2,14), object(2,15), object(2,16) -gas summary: computation_cost: 1000000, storage_cost: 14303200, storage_rebate: 14303200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 14303200, storage_rebate: 14303200, non_refundable_storage_fee: 0 task 5, line 142: //# view-object 2,8 @@ -138,7 +138,7 @@ task 6, lines 144-145: //> test::m::remove(Input(0)) mutated: object(0,0), object(2,8) deleted: object(2,0), object(2,1), object(2,2), object(2,3), object(2,4), object(2,5), object(2,6), object(2,7), object(2,9), object(2,10), object(2,11), object(2,12), object(2,13), object(2,14), object(2,15), object(2,16) -gas summary: computation_cost: 1000000, storage_cost: 3906400, storage_rebate: 33941600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3906400, storage_rebate: 33941600, non_refundable_storage_fee: 0 task 7, lines 147-150: //# view-object 2,8 @@ -199,20 +199,20 @@ task 8, lines 152-153: //# programmable --sender A --inputs object(2,8)@2 vector[0] --dev-inspect //> test::m::check(Input(0), Input(1)) mutated: object(_), object(2,8) -gas summary: computation_cost: 500000, storage_cost: 3906400, storage_rebate: 2918400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 3906400, storage_rebate: 2918400, non_refundable_storage_fee: 0 task 9, lines 155-156: //# programmable --sender A --inputs object(2,8)@3 vector[112] --dev-inspect //> test::m::check(Input(0), Input(1)) mutated: object(_), object(2,8) -gas summary: computation_cost: 500000, storage_cost: 3906400, storage_rebate: 2918400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 3906400, storage_rebate: 2918400, non_refundable_storage_fee: 0 task 10, lines 158-162: //# programmable --sender A --inputs object(2,8)@4 vector[] --dev-inspect //> test::m::check(Input(0), Input(1)) // dev-inspect with 'check' and _incorrect_ values mutated: object(_), object(2,8) -gas summary: computation_cost: 500000, storage_cost: 3906400, storage_rebate: 2918400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 3906400, storage_rebate: 2918400, non_refundable_storage_fee: 0 task 11, lines 164-165: //# programmable --sender A --inputs object(2,8)@3 vector[0] --dev-inspect diff --git a/crates/iota-adapter-transactional-tests/tests/mvcc/v0/find_all_uids_on_child.exp b/crates/iota-adapter-transactional-tests/tests/mvcc/v0/find_all_uids_on_child.exp index a5cec26d5a3..1c3391cdf86 100644 --- a/crates/iota-adapter-transactional-tests/tests/mvcc/v0/find_all_uids_on_child.exp +++ b/crates/iota-adapter-transactional-tests/tests/mvcc/v0/find_all_uids_on_child.exp @@ -7,7 +7,7 @@ task 1, lines 9-141: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 13862400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 13862400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 143-145: //# programmable --sender A --inputs @A @@ -15,7 +15,7 @@ task 2, lines 143-145: //> TransferObjects([Result(0)], Input(0)) created: object(2,0), object(2,1), object(2,2), object(2,3), object(2,4), object(2,5), object(2,6), object(2,7), object(2,8), object(2,9) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 17609200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 17609200, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 147: //# view-object 2,9 @@ -33,7 +33,7 @@ task 4, lines 149-150: //# programmable --sender A --inputs object(2,9) 112 //> test::m::set(Input(0), Input(1)) mutated: object(0,0), object(2,1), object(2,2), object(2,3), object(2,4), object(2,5), object(2,6), object(2,7), object(2,8), object(2,9) -gas summary: computation_cost: 1000000, storage_cost: 13968800, storage_rebate: 13968800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 13968800, storage_rebate: 13968800, non_refundable_storage_fee: 0 task 5, line 152: //# view-object 2,9 @@ -52,7 +52,7 @@ task 6, lines 154-155: //> test::m::remove(Input(0)) mutated: object(0,0), object(2,9) deleted: object(2,1), object(2,2), object(2,3), object(2,4), object(2,5), object(2,6), object(2,7), object(2,8) -gas summary: computation_cost: 1000000, storage_cost: 2234400, storage_rebate: 13968800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2234400, storage_rebate: 13968800, non_refundable_storage_fee: 0 task 7, lines 157-160: //# view-object 2,9 @@ -70,20 +70,20 @@ task 8, lines 162-163: //# programmable --sender A --inputs object(2,9)@2 vector[0] --dev-inspect //> test::m::check(Input(0), Input(1)) mutated: object(_), object(2,9) -gas summary: computation_cost: 500000, storage_cost: 2234400, storage_rebate: 1246400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 2234400, storage_rebate: 1246400, non_refundable_storage_fee: 0 task 9, lines 165-166: //# programmable --sender A --inputs object(2,9)@3 vector[112] --dev-inspect //> test::m::check(Input(0), Input(1)) mutated: object(_), object(2,9) -gas summary: computation_cost: 500000, storage_cost: 2234400, storage_rebate: 1246400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 2234400, storage_rebate: 1246400, non_refundable_storage_fee: 0 task 10, lines 168-172: //# programmable --sender A --inputs object(2,9)@4 vector[] --dev-inspect //> test::m::check(Input(0), Input(1)) // dev-inspect with 'check' and _incorrect_ values mutated: object(_), object(2,9) -gas summary: computation_cost: 500000, storage_cost: 2234400, storage_rebate: 1246400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 2234400, storage_rebate: 1246400, non_refundable_storage_fee: 0 task 11, lines 174-175: //# programmable --sender A --inputs object(2,9)@3 vector[0] --dev-inspect diff --git a/crates/iota-adapter-transactional-tests/tests/mvcc/v0/middle_version_less_than_child.exp b/crates/iota-adapter-transactional-tests/tests/mvcc/v0/middle_version_less_than_child.exp index 5f0f7f88a1a..df99c161214 100644 --- a/crates/iota-adapter-transactional-tests/tests/mvcc/v0/middle_version_less_than_child.exp +++ b/crates/iota-adapter-transactional-tests/tests/mvcc/v0/middle_version_less_than_child.exp @@ -7,7 +7,7 @@ task 1, lines 9-52: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 7493600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7493600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 54-58: //# programmable --sender A --inputs @A @@ -16,7 +16,7 @@ task 2, lines 54-58: // All 3 objects have version 2 created: object(2,0), object(2,1), object(2,2) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 6285200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6285200, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 60: //# view-object 2,0 @@ -78,7 +78,7 @@ task 6, lines 66-69: //> test::m::set(Input(0), Input(1)) // The middle object has version 2, while the root and modified leaf have version 3 mutated: object(0,0), object(2,1), object(2,2) -gas summary: computation_cost: 1000000, storage_cost: 4278800, storage_rebate: 4278800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4278800, storage_rebate: 4278800, non_refundable_storage_fee: 0 task 7, line 71: //# view-object 2,0 @@ -139,4 +139,4 @@ task 10, lines 80-81: //# programmable --sender A --inputs object(2,2) 112 //> test::m::check(Input(0), Input(1)) mutated: object(0,0), object(2,2) -gas summary: computation_cost: 1000000, storage_cost: 2272400, storage_rebate: 2272400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2272400, storage_rebate: 2272400, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/mvcc/v0/not_root_version.exp b/crates/iota-adapter-transactional-tests/tests/mvcc/v0/not_root_version.exp index 45d93579fec..e07f842ca30 100644 --- a/crates/iota-adapter-transactional-tests/tests/mvcc/v0/not_root_version.exp +++ b/crates/iota-adapter-transactional-tests/tests/mvcc/v0/not_root_version.exp @@ -7,7 +7,7 @@ task 1, lines 9-54: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 7432800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7432800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 56-58: //# programmable --sender P1 --inputs @P1 @@ -15,19 +15,19 @@ task 2, lines 56-58: //> TransferObjects([Result(0)], Input(0)) created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2196400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2196400, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, lines 60-61: //# programmable --sender P1 --inputs object(2,0) //> test::m::nop(); mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2196400, storage_rebate: 2196400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2196400, storage_rebate: 2196400, non_refundable_storage_fee: 0 task 4, lines 63-64: //# programmable --sender P1 --inputs object(2,0) //> test::m::nop(); mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2196400, storage_rebate: 2196400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2196400, storage_rebate: 2196400, non_refundable_storage_fee: 0 task 5, lines 66-69: //# view-object 2,0 @@ -47,7 +47,7 @@ task 6, lines 71-73: //> TransferObjects([Result(0)], Input(0)) created: object(6,0), object(6,1) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 3663200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3663200, storage_rebate: 0, non_refundable_storage_fee: 0 task 7, line 75: //# view-object 6,0 @@ -67,7 +67,7 @@ task 8, lines 77-78: //# programmable --sender P2 --inputs object(6,1) //> 0: test::m::bump(Input(0)); mutated: object(0,1), object(6,0), object(6,1) -gas summary: computation_cost: 1000000, storage_cost: 3663200, storage_rebate: 3663200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3663200, storage_rebate: 3663200, non_refundable_storage_fee: 0 task 9, lines 80-84: //# view-object 6,0 @@ -92,7 +92,7 @@ task 10, lines 86-91: created: object(10,0) mutated: object(_), object(2,0) wrapped: object(6,1) -gas summary: computation_cost: 500000, storage_cost: 4126800, storage_rebate: 2416800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 4126800, storage_rebate: 2416800, non_refundable_storage_fee: 0 task 11, lines 93-97: //# programmable --sender P2 --inputs object(2,0)@4 object(6,1)@3 1 --dev-inspect @@ -102,7 +102,7 @@ task 11, lines 93-97: created: object(10,0) mutated: object(_), object(2,0) wrapped: object(6,1) -gas summary: computation_cost: 500000, storage_cost: 4126800, storage_rebate: 2416800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 4126800, storage_rebate: 2416800, non_refundable_storage_fee: 0 task 12, lines 99-103: //# programmable --sender P2 --inputs object(2,0)@4 object(6,1)@2 1 --dev-inspect diff --git a/crates/iota-adapter-transactional-tests/tests/mvcc/v0/not_root_version_flipped_case.exp b/crates/iota-adapter-transactional-tests/tests/mvcc/v0/not_root_version_flipped_case.exp index be4131d3a43..98749a64405 100644 --- a/crates/iota-adapter-transactional-tests/tests/mvcc/v0/not_root_version_flipped_case.exp +++ b/crates/iota-adapter-transactional-tests/tests/mvcc/v0/not_root_version_flipped_case.exp @@ -7,7 +7,7 @@ task 1, lines 9-54: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 7432800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7432800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 56-58: //# programmable --sender P1 --inputs @P1 @@ -15,7 +15,7 @@ task 2, lines 56-58: //> TransferObjects([Result(0)], Input(0)) created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2196400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2196400, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, lines 61-64: //# view-object 2,0 @@ -35,7 +35,7 @@ task 4, lines 66-68: //> TransferObjects([Result(0)], Input(0)) created: object(4,0), object(4,1) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 3663200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3663200, storage_rebate: 0, non_refundable_storage_fee: 0 task 5, line 70: //# view-object 4,0 @@ -55,7 +55,7 @@ task 6, lines 72-73: //# programmable --sender P2 --inputs object(4,1) //> 0: test::m::bump(Input(0)); mutated: object(0,1), object(4,0), object(4,1) -gas summary: computation_cost: 1000000, storage_cost: 3663200, storage_rebate: 3663200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3663200, storage_rebate: 3663200, non_refundable_storage_fee: 0 task 7, lines 75-78: //# view-object 4,0 @@ -80,7 +80,7 @@ task 8, lines 80-85: created: object(8,0) mutated: object(_), object(2,0) wrapped: object(4,1) -gas summary: computation_cost: 500000, storage_cost: 4126800, storage_rebate: 2416800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 4126800, storage_rebate: 2416800, non_refundable_storage_fee: 0 task 9, lines 87-91: //# programmable --sender P2 --inputs object(2,0)@2 object(4,1)@2 0 --dev-inspect @@ -90,7 +90,7 @@ task 9, lines 87-91: created: object(8,0) mutated: object(_), object(2,0) wrapped: object(4,1) -gas summary: computation_cost: 500000, storage_cost: 4126800, storage_rebate: 2416800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 4126800, storage_rebate: 2416800, non_refundable_storage_fee: 0 task 10, lines 93-97: //# programmable --sender P2 --inputs object(2,0)@2 object(4,1)@2 1 --dev-inspect diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/borrowed_arg_copyable_invalid.exp b/crates/iota-adapter-transactional-tests/tests/programmable/borrowed_arg_copyable_invalid.exp index 84e17c89c41..1e699237405 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/borrowed_arg_copyable_invalid.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/borrowed_arg_copyable_invalid.exp @@ -7,7 +7,7 @@ task 1, lines 9-16: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 4461200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4461200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 18-19: //# programmable --inputs 0 diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/borrowed_arg_non_copyable_invalid.exp b/crates/iota-adapter-transactional-tests/tests/programmable/borrowed_arg_non_copyable_invalid.exp index a85379dfec6..aadfcb03e41 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/borrowed_arg_non_copyable_invalid.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/borrowed_arg_non_copyable_invalid.exp @@ -7,7 +7,7 @@ task 1, lines 9-25: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 6414400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6414400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 27-29: //# programmable diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/borrowed_arg_primitives_invalid.exp b/crates/iota-adapter-transactional-tests/tests/programmable/borrowed_arg_primitives_invalid.exp index fde5fdf278d..fea35da6cce 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/borrowed_arg_primitives_invalid.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/borrowed_arg_primitives_invalid.exp @@ -13,7 +13,7 @@ task 2, lines 12-13: //# programmable --sender B --inputs @A //> TransferObjects([Gas], Input(0)) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, lines 15-16: //# programmable --sender A --inputs object(0,1) diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/borrowed_arg_valid.exp b/crates/iota-adapter-transactional-tests/tests/programmable/borrowed_arg_valid.exp index 29d39303c90..ac5231862a6 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/borrowed_arg_valid.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/borrowed_arg_valid.exp @@ -7,7 +7,7 @@ task 1, lines 9-25: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 5388400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5388400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 27-36: //# programmable --inputs 0 @@ -21,7 +21,7 @@ task 2, lines 27-36: // mix all and borrow multiple times //> test::m1::multiple_copy(Input(0), Input(0), Input(0), Input(0)); mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 3, lines 38-41: //# programmable @@ -29,4 +29,4 @@ task 3, lines 38-41: // double borrow without copy //> test::m1::double_r(Result(0), Result(0)) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/cannot_call_emit.exp b/crates/iota-adapter-transactional-tests/tests/programmable/cannot_call_emit.exp index e39a5e9b343..fc1900b4647 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/cannot_call_emit.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/cannot_call_emit.exp @@ -7,7 +7,7 @@ task 1, lines 9-13: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 3906400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3906400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 15-17: //# programmable diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/cannot_call_init.exp b/crates/iota-adapter-transactional-tests/tests/programmable/cannot_call_init.exp index 74f84117609..c5ca47c8a29 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/cannot_call_init.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/cannot_call_init.exp @@ -7,7 +7,7 @@ task 1, lines 9-12: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 3898800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3898800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 14-15: //# programmable diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/cannot_call_private.exp b/crates/iota-adapter-transactional-tests/tests/programmable/cannot_call_private.exp index be5efb8dc31..83df8c40717 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/cannot_call_private.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/cannot_call_private.exp @@ -7,7 +7,7 @@ task 1, lines 9-12: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 3898800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3898800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 14-15: //# programmable diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/coin_negative.exp b/crates/iota-adapter-transactional-tests/tests/programmable/coin_negative.exp index 14ddc0c9b14..241a48edb33 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/coin_negative.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/coin_negative.exp @@ -7,7 +7,7 @@ task 1, lines 9-21: //# publish --sender A created: object(1,0), object(1,1), object(1,2) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 10617200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 10617200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 23-25: //# programmable --sender A --inputs object(1,2) 1 @A @@ -16,7 +16,7 @@ task 2, lines 23-25: created: object(2,0) mutated: object(0,0), object(1,2) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 4012800, storage_rebate: 2690400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4012800, storage_rebate: 2690400, non_refundable_storage_fee: 0 task 3, lines 27-28: //# programmable --sender A --inputs object(2,0) 2 diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/coin_operations_custom_coin.exp b/crates/iota-adapter-transactional-tests/tests/programmable/coin_operations_custom_coin.exp index bfbc7fabd07..777f630530b 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/coin_operations_custom_coin.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/coin_operations_custom_coin.exp @@ -7,7 +7,7 @@ task 1, lines 9-21: //# publish --sender A created: object(1,0), object(1,1), object(1,2) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 10617200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 10617200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 23-25: //# programmable --sender A --inputs object(1,2) 100 @A @@ -16,7 +16,7 @@ task 2, lines 23-25: created: object(2,0) mutated: object(0,0), object(1,2) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 4012800, storage_rebate: 2690400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4012800, storage_rebate: 2690400, non_refundable_storage_fee: 0 task 3, line 27: //# view-object 2,0 @@ -45,4 +45,4 @@ created: object(4,0) mutated: object(0,0), object(1,2) deleted: object(2,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 4012800, storage_rebate: 4012800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4012800, storage_rebate: 4012800, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/coin_operations_non_coins.exp b/crates/iota-adapter-transactional-tests/tests/programmable/coin_operations_non_coins.exp index 231f2023dc2..4eeaba5c168 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/coin_operations_non_coins.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/coin_operations_non_coins.exp @@ -7,7 +7,7 @@ task 1, lines 9-26: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 4894400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4894400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 27-31: //# programmable --sender A --inputs 0 diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/coin_overflow.exp b/crates/iota-adapter-transactional-tests/tests/programmable/coin_overflow.exp index 76b704da179..e698fc59437 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/coin_overflow.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/coin_overflow.exp @@ -7,7 +7,7 @@ task 1, lines 9-21: //# publish --sender A created: object(1,0), object(1,1), object(1,2) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 10617200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 10617200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 23-25: //# programmable --sender A --inputs object(1,2) 18446744073709551614 @A @@ -16,7 +16,7 @@ task 2, lines 23-25: created: object(2,0) mutated: object(0,0), object(1,2) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 4012800, storage_rebate: 2690400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4012800, storage_rebate: 2690400, non_refundable_storage_fee: 0 task 3, lines 27-29: //# programmable --sender A --inputs object(1,2) 1 @A diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/delayed_invalid_gas_by_value.exp b/crates/iota-adapter-transactional-tests/tests/programmable/delayed_invalid_gas_by_value.exp index e5a9d15c06e..a1d995f635e 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/delayed_invalid_gas_by_value.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/delayed_invalid_gas_by_value.exp @@ -7,7 +7,7 @@ task 1, lines 9-14: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 3990000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3990000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 16-18: //# programmable --sender A --inputs @A diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/delayed_invalid_object_by_value.exp b/crates/iota-adapter-transactional-tests/tests/programmable/delayed_invalid_object_by_value.exp index ea4a42b20fa..2ca4885af29 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/delayed_invalid_object_by_value.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/delayed_invalid_object_by_value.exp @@ -7,14 +7,14 @@ task 1, lines 9-29: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 5760800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5760800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 31-32: //# programmable //> test::m1::share_r(); created: object(2,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2204000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2204000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 3, lines 34-35: //# programmable --inputs object(2,0) @@ -33,7 +33,7 @@ task 5, lines 40-41: //> test::m1::freeze_r(); created: object(5,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2204000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2204000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 6, lines 43-44: //# programmable --inputs object(5,0) diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/gas_coin_by_reference.exp b/crates/iota-adapter-transactional-tests/tests/programmable/gas_coin_by_reference.exp index 5b63583e499..ffe22d0de38 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/gas_coin_by_reference.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/gas_coin_by_reference.exp @@ -7,48 +7,48 @@ task 1, lines 9-25: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 4058400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4058400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 26-27: //# programmable --sender A //> test::m1::t1>(Gas) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, lines 29-30: //# programmable --sender A //> test::m1::t2>(Gas) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 4, lines 32-33: //# programmable --sender A //> test::m1::t2>(Gas) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 5, lines 35-36: //# programmable --sender A //> test::m1::t4>(Gas) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 6, lines 38-39: //# programmable --sender A //> test::m1::t5>(Gas) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 7, lines 41-44: //# programmable --sender A //> test::m1::t6>(Gas) // can pass to merge and split mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 8, lines 45-47: //# programmable --sender A --inputs 10 --gas-budget 10000000000 //> 0: SplitCoins(Gas, [Input(0)]); //> MergeCoins(Gas, [Result(0)]) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/gas_coin_by_value.exp b/crates/iota-adapter-transactional-tests/tests/programmable/gas_coin_by_value.exp index 7fa85ef9544..69ea6dd5b28 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/gas_coin_by_value.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/gas_coin_by_value.exp @@ -7,7 +7,7 @@ task 1, lines 9-10: //# programmable --sender A --inputs @B //> TransferObjects([Gas], Input(0)) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 12: //# view-object 0,0 diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/gas_coin_by_value_invalid.exp b/crates/iota-adapter-transactional-tests/tests/programmable/gas_coin_by_value_invalid.exp index 58defb657e6..1d4fda2f561 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/gas_coin_by_value_invalid.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/gas_coin_by_value_invalid.exp @@ -7,7 +7,7 @@ task 1, lines 9-24: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 3860800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3860800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 25-26: //# programmable --sender A diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/generics_substitution.exp b/crates/iota-adapter-transactional-tests/tests/programmable/generics_substitution.exp index 1a00ba0d85a..301c9dafb79 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/generics_substitution.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/generics_substitution.exp @@ -7,7 +7,7 @@ task 1, lines 9-27: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 5456800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5456800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 28-37: //# programmable @@ -20,7 +20,7 @@ task 2, lines 28-37: //> test::m1::eat(NestedResult(4,1), NestedResult(4,0), NestedResult(4,1)); // invalid mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 3, lines 38-45: //# programmable diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/invalid_option.exp b/crates/iota-adapter-transactional-tests/tests/programmable/invalid_option.exp index 312390bbef0..a50b41ed419 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/invalid_option.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/invalid_option.exp @@ -7,7 +7,7 @@ task 1, lines 9-16: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 4423200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4423200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 18-19: //# programmable --inputs vector[false,true] diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/invalid_public_function_return.exp b/crates/iota-adapter-transactional-tests/tests/programmable/invalid_public_function_return.exp index 5bd2e30b283..4ff43ab6df4 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/invalid_public_function_return.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/invalid_public_function_return.exp @@ -7,7 +7,7 @@ task 1, lines 9-17: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 4681600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4681600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 19-20: //# programmable diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/invalid_result_arity.exp b/crates/iota-adapter-transactional-tests/tests/programmable/invalid_result_arity.exp index 1729f49af6c..54345a08a9f 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/invalid_result_arity.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/invalid_result_arity.exp @@ -7,7 +7,7 @@ task 1, lines 9-16: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 4544800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4544800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 18-20: //# programmable diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/make_vec_objects.exp b/crates/iota-adapter-transactional-tests/tests/programmable/make_vec_objects.exp index 273038c4369..7fd8906bed2 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/make_vec_objects.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/make_vec_objects.exp @@ -7,7 +7,7 @@ task 1, lines 9-45: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 7159200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7159200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 46-53: //# programmable --sender A @@ -18,7 +18,7 @@ task 2, lines 46-53: //> test::m1::pubs(Result(3)); // annotated objects mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, lines 54-61: //# programmable --sender A @@ -29,7 +29,7 @@ task 3, lines 54-61: //> test::m1::pubs(Result(3)); // empty objects mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 4, lines 62-66: //# programmable --sender A @@ -37,7 +37,7 @@ task 4, lines 62-66: //> test::m1::pubs(Result(0)); // mixed new and old. Send an object to A and mix it in a vector with the newly created ones. mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 5, lines 67-69: //# programmable --sender A --inputs @A @@ -45,7 +45,7 @@ task 5, lines 67-69: //> TransferObjects([Result(0)], Input(0)); created: object(5,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2280000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2280000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 6, line 71: //# view-object 5,0 @@ -70,4 +70,4 @@ task 7, lines 73-79: //> test::m1::pubs(Result(3)); mutated: object(0,0) deleted: object(5,0) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 2280000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 2280000, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/make_vec_special_validation_invalid.exp b/crates/iota-adapter-transactional-tests/tests/programmable/make_vec_special_validation_invalid.exp index 27862819259..944a97d93b1 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/make_vec_special_validation_invalid.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/make_vec_special_validation_invalid.exp @@ -7,7 +7,7 @@ task 1, lines 9-30: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 6072400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6072400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 32-35: //# programmable --inputs vector[0u64,0u64] diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/merge_coin_mismatched_coin.exp b/crates/iota-adapter-transactional-tests/tests/programmable/merge_coin_mismatched_coin.exp index df56219cdd5..07159a0250f 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/merge_coin_mismatched_coin.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/merge_coin_mismatched_coin.exp @@ -7,7 +7,7 @@ task 1, lines 9-21: //# publish --sender A created: object(1,0), object(1,1), object(1,2) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 10617200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 10617200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 23-25: //# programmable --sender A --inputs object(1,2) 100 @A @@ -16,7 +16,7 @@ task 2, lines 23-25: created: object(2,0) mutated: object(0,0), object(1,2) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 4012800, storage_rebate: 2690400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4012800, storage_rebate: 2690400, non_refundable_storage_fee: 0 task 3, line 27: //# view-object 2,0 diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/nested_result_zero_zero.exp b/crates/iota-adapter-transactional-tests/tests/programmable/nested_result_zero_zero.exp index 88cef92df8b..e9795637bec 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/nested_result_zero_zero.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/nested_result_zero_zero.exp @@ -7,7 +7,7 @@ task 1, lines 9-14: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 4043200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4043200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 16-19: //# programmable @@ -15,4 +15,4 @@ task 2, lines 16-19: //> test::m1::copy_(Result(0)); //> test::m1::copy_(NestedResult(0, 0)); mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/non_primitive_non_object_arguments.exp b/crates/iota-adapter-transactional-tests/tests/programmable/non_primitive_non_object_arguments.exp index ce39b3d5cf5..a93e4d36e8b 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/non_primitive_non_object_arguments.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/non_primitive_non_object_arguments.exp @@ -7,7 +7,7 @@ task 1, lines 9-20: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 4666400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4666400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 22-27: //# programmable @@ -17,4 +17,4 @@ task 2, lines 22-27: //> test::m1::mut_(Result(1)); //> test::m1::otatop(Result(1)); mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/out_of_bounds_input.exp b/crates/iota-adapter-transactional-tests/tests/programmable/out_of_bounds_input.exp index 20ff8af9092..fe37714cd7b 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/out_of_bounds_input.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/out_of_bounds_input.exp @@ -7,7 +7,7 @@ task 1, lines 9-16: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 4666400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4666400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 18-19: //# programmable diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/out_of_bounds_nested.exp b/crates/iota-adapter-transactional-tests/tests/programmable/out_of_bounds_nested.exp index 514f3a4920b..e0968196d99 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/out_of_bounds_nested.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/out_of_bounds_nested.exp @@ -7,7 +7,7 @@ task 1, lines 9-17: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 4864000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4864000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 19-21: //# programmable diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/out_of_bounds_result.exp b/crates/iota-adapter-transactional-tests/tests/programmable/out_of_bounds_result.exp index fa1391ca296..e5e77efe8ff 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/out_of_bounds_result.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/out_of_bounds_result.exp @@ -7,7 +7,7 @@ task 1, lines 9-17: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 4795600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4795600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 19-20: //# programmable diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/private_entry_value_restriction_by_ref_input_invalid.exp b/crates/iota-adapter-transactional-tests/tests/programmable/private_entry_value_restriction_by_ref_input_invalid.exp index 51d7892e40d..e106e3da708 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/private_entry_value_restriction_by_ref_input_invalid.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/private_entry_value_restriction_by_ref_input_invalid.exp @@ -7,7 +7,7 @@ task 1, lines 10-19: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 5054000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5054000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 21-26: //# programmable --sender A --inputs @A @@ -16,7 +16,7 @@ task 2, lines 21-26: // cannot use results from other functions created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2204000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2204000, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, lines 28-30: //# programmable diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/private_entry_value_restriction_by_ref_input_valid.exp b/crates/iota-adapter-transactional-tests/tests/programmable/private_entry_value_restriction_by_ref_input_valid.exp index ea9f08b3ccc..e0041aa0958 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/private_entry_value_restriction_by_ref_input_valid.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/private_entry_value_restriction_by_ref_input_valid.exp @@ -7,7 +7,7 @@ task 1, lines 10-24: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 5517600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5517600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 26-28: //# programmable --sender A --inputs @A @@ -15,7 +15,7 @@ task 2, lines 26-28: //> TransferObjects([Result(0)], Input(0)) created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2204000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2204000, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, lines 30-37: //# programmable --sender A --inputs object(2,0) 200 @@ -27,7 +27,7 @@ task 3, lines 30-37: //> test::m1::priv(Input(0)); //> test::m1::priv(Input(0)); mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2204000, storage_rebate: 2204000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2204000, storage_rebate: 2204000, non_refundable_storage_fee: 0 task 4, lines 39-44: //# programmable --sender A --inputs @A --gas-budget 10000000000 @@ -38,4 +38,4 @@ task 4, lines 39-44: //> TransferObjects([Result(1)], Input(0)) created: object(4,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 1976000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 1976000, storage_rebate: 988000, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/private_entry_value_restriction_copied_input_valid.exp b/crates/iota-adapter-transactional-tests/tests/programmable/private_entry_value_restriction_copied_input_valid.exp index ee1253e555d..00d30a840d6 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/private_entry_value_restriction_copied_input_valid.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/private_entry_value_restriction_copied_input_valid.exp @@ -7,11 +7,11 @@ task 1, lines 10-14: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 3549200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3549200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 16-18: //# programmable --inputs 0 //> test::m1::clean(Input(0)); //> test::m1::priv(Input(0)); mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/private_entry_value_restriction_make_move_vec_invalid.exp b/crates/iota-adapter-transactional-tests/tests/programmable/private_entry_value_restriction_make_move_vec_invalid.exp index f5dffb16574..a1ee9f0194d 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/private_entry_value_restriction_make_move_vec_invalid.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/private_entry_value_restriction_make_move_vec_invalid.exp @@ -7,7 +7,7 @@ task 1, lines 10-19: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 5403600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5403600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 21-25: //# programmable --sender A --inputs @A @@ -17,7 +17,7 @@ task 2, lines 21-25: //> TransferObjects([Result(0), Result(1), Result(2)], Input(0)) created: object(2,0), object(2,1), object(2,2) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4636000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4636000, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, lines 27-30: //# programmable --sender A --inputs object(2,0) object(2,1) object(2,2) diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/private_entry_value_restriction_make_move_vec_valid.exp b/crates/iota-adapter-transactional-tests/tests/programmable/private_entry_value_restriction_make_move_vec_valid.exp index a9df0bd7afd..13713ac54bc 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/private_entry_value_restriction_make_move_vec_valid.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/private_entry_value_restriction_make_move_vec_valid.exp @@ -7,7 +7,7 @@ task 1, lines 10-27: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 6247200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6247200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 29-33: //# programmable --sender A --inputs @A @@ -17,7 +17,7 @@ task 2, lines 29-33: //> TransferObjects([Result(0), Result(1), Result(2)], Input(0)) created: object(2,0), object(2,1), object(2,2) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4636000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4636000, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, lines 35-39: //# programmable --sender A --inputs object(2,0) object(2,1) object(2,2) @@ -27,7 +27,7 @@ task 3, lines 35-39: //> test::m1::priv2(Result(2)) mutated: object(0,0) deleted: object(2,0), object(2,1), object(2,2) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 4636000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 4636000, non_refundable_storage_fee: 0 task 4, lines 41-44: //# programmable --sender A --inputs 0 0 0 @@ -35,4 +35,4 @@ task 4, lines 41-44: //> 1: MakeMoveVec([Input(0), Input(1), Input(2)]); //> test::m1::priv3(Result(1)) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/private_entry_value_restriction_non_pure_input_invalid.exp b/crates/iota-adapter-transactional-tests/tests/programmable/private_entry_value_restriction_non_pure_input_invalid.exp index 98fca718544..3442ceb6fd1 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/private_entry_value_restriction_non_pure_input_invalid.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/private_entry_value_restriction_non_pure_input_invalid.exp @@ -7,7 +7,7 @@ task 1, lines 9-17: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 4005200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4005200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 18-20: //# programmable diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/private_entry_value_restriction_per_argument.exp b/crates/iota-adapter-transactional-tests/tests/programmable/private_entry_value_restriction_per_argument.exp index 49d7889a07c..a6bcc80cbba 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/private_entry_value_restriction_per_argument.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/private_entry_value_restriction_per_argument.exp @@ -7,7 +7,7 @@ task 1, lines 9-16: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 4932400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4932400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 18-21: //# programmable --sender A --inputs @A @@ -16,7 +16,7 @@ task 2, lines 18-21: //> TransferObjects([Result(0), Result(1)], Input(0)) created: object(2,0), object(2,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3420000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3420000, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, lines 23-25: //# programmable --sender A --inputs object(2,0) object(2,1) diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/private_entry_value_restriction_type_check.exp b/crates/iota-adapter-transactional-tests/tests/programmable/private_entry_value_restriction_type_check.exp index e33b5485db7..a12ae020e13 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/private_entry_value_restriction_type_check.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/private_entry_value_restriction_type_check.exp @@ -7,7 +7,7 @@ task 1, lines 9-16: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 4902000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4902000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 18-20: //# programmable --sender A --inputs @A @@ -15,7 +15,7 @@ task 2, lines 18-20: //> TransferObjects([Result(0)], Input(0)) created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2204000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2204000, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, lines 22-24: //# programmable --sender A --inputs object(2,0) diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/private_transfer_invalid.exp b/crates/iota-adapter-transactional-tests/tests/programmable/private_transfer_invalid.exp index bd16380ddba..36550390e2d 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/private_transfer_invalid.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/private_transfer_invalid.exp @@ -7,7 +7,7 @@ task 1, lines 9-18: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 5228800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5228800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 20-22: //# programmable --sender A --inputs @A diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/private_transfer_valid.exp b/crates/iota-adapter-transactional-tests/tests/programmable/private_transfer_valid.exp index 182eef99dde..8e012177b48 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/private_transfer_valid.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/private_transfer_valid.exp @@ -7,7 +7,7 @@ task 1, lines 9-13: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 4628400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4628400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 15-17: //# programmable --sender A --inputs @A @@ -15,7 +15,7 @@ task 2, lines 15-17: //> iota::transfer::public_transfer(Result(0), Input(0)); created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2219200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2219200, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 19: //# view-object 2,0 @@ -35,7 +35,7 @@ task 4, lines 21-23: //> iota::transfer::public_share_object(Result(0)); created: object(4,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2219200, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2219200, storage_rebate: 988000, non_refundable_storage_fee: 0 task 5, line 25: //# view-object 4,0 @@ -55,7 +55,7 @@ task 6, lines 27-29: //> iota::transfer::public_freeze_object(Result(0)); created: object(6,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2219200, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2219200, storage_rebate: 988000, non_refundable_storage_fee: 0 task 7, line 31: //# view-object 6,0 diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/pure_arg_type_change.exp b/crates/iota-adapter-transactional-tests/tests/programmable/pure_arg_type_change.exp index 7a75d1c46cb..30d5da5c3d7 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/pure_arg_type_change.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/pure_arg_type_change.exp @@ -7,7 +7,7 @@ task 1, lines 9-26: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 5380800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5380800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 28-34: //# programmable --inputs "hello" diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/split_coins.exp b/crates/iota-adapter-transactional-tests/tests/programmable/split_coins.exp index dc405def620..3e75546ec88 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/split_coins.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/split_coins.exp @@ -7,7 +7,7 @@ task 1, lines 10-23: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 5692400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5692400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 25-29: //# programmable --sender A --inputs 100000 @A @@ -16,13 +16,13 @@ task 2, lines 25-29: // let's get ourselves a coin worth 1000 created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 1976000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 1976000, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 30: //# run iota::pay::split_and_transfer --type-args iota::iota::IOTA --args object(2,0) 1000 @A --sender A created: object(3,0) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2964000, storage_rebate: 1976000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2964000, storage_rebate: 1976000, non_refundable_storage_fee: 0 task 4, lines 32-34: //# view-object 3,0 @@ -45,7 +45,7 @@ task 5, lines 35-37: //> TransferObjects([NestedResult(0,0)], Input(2)); created: object(5,0) mutated: object(0,0), object(3,0) -gas summary: computation_cost: 1000000, storage_cost: 2964000, storage_rebate: 1976000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2964000, storage_rebate: 1976000, non_refundable_storage_fee: 0 task 6, line 39: //# view-object 3,0 @@ -83,7 +83,7 @@ task 8, lines 45-47: //> TransferObjects([NestedResult(0,0), NestedResult(0,1)], Input(2)); created: object(8,0), object(8,1) mutated: object(0,0), object(3,0) -gas summary: computation_cost: 1000000, storage_cost: 3952000, storage_rebate: 1976000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3952000, storage_rebate: 1976000, non_refundable_storage_fee: 0 task 9, line 49: //# view-object 3,0 @@ -137,7 +137,7 @@ task 12, lines 56-59: //> TransferObjects([NestedResult(1,0), NestedResult(1,1)], Input(2)); created: object(12,0), object(12,1) mutated: object(0,0), object(3,0) -gas summary: computation_cost: 1000000, storage_cost: 3952000, storage_rebate: 1976000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3952000, storage_rebate: 1976000, non_refundable_storage_fee: 0 task 13, line 61: //# view-object 3,0 @@ -192,7 +192,7 @@ task 16, lines 69-73: //> test::m1::transfer_(Result(2), Input(2)); created: object(16,0), object(16,1) mutated: object(0,0), object(3,0) -gas summary: computation_cost: 1000000, storage_cost: 3952000, storage_rebate: 1976000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3952000, storage_rebate: 1976000, non_refundable_storage_fee: 0 task 17, line 75: //# view-object 3,0 diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/split_coins_invalid.exp b/crates/iota-adapter-transactional-tests/tests/programmable/split_coins_invalid.exp index 7b12708c47d..d380070c36c 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/split_coins_invalid.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/split_coins_invalid.exp @@ -7,7 +7,7 @@ task 1, lines 10-25: //# publish created: object(1,0) mutated: object(0,3) -gas summary: computation_cost: 1000000, storage_cost: 5654400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5654400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 27-31: //# programmable --sender A --inputs 100000 @A @@ -16,13 +16,13 @@ task 2, lines 27-31: // let's get ourselves a coin worth 1000 created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 1976000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 1976000, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 32: //# run iota::pay::split_and_transfer --type-args iota::iota::IOTA --args object(2,0) 1000 @A --sender A created: object(3,0) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2964000, storage_rebate: 1976000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2964000, storage_rebate: 1976000, non_refundable_storage_fee: 0 task 4, lines 34-36: //# view-object 3,0 diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/transfer_objects.exp b/crates/iota-adapter-transactional-tests/tests/programmable/transfer_objects.exp index dc0ce505bbd..26345989983 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/transfer_objects.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/transfer_objects.exp @@ -7,7 +7,7 @@ task 1, lines 9-33: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 6004000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6004000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 34-36: //# programmable --sender A --inputs @A @@ -15,7 +15,7 @@ task 2, lines 34-36: //> TransferObjects([Result(0)], Input(0)); created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2280000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2280000, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, lines 38-40: //# view-object 0,0 @@ -39,7 +39,7 @@ task 4, lines 41-44: //> TransferObjects([Result(1)], Result(0)); created: object(4,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2280000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2280000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 5, lines 46-48: //# view-object 4,0 @@ -63,7 +63,7 @@ task 6, lines 49-54: //> TransferObjects([Result(2)], Result(3)); created: object(6,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2280000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2280000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 7, lines 56-58: //# view-object 6,0 @@ -89,7 +89,7 @@ task 8, lines 59-66: //> TransferObjects([Result(4), Result(2), Result(5)], Result(3)); created: object(8,0), object(8,1), object(8,2) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5388400, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5388400, storage_rebate: 988000, non_refundable_storage_fee: 0 task 9, line 68: //# view-object 8,0 diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/transfer_objects_invalid_address.exp b/crates/iota-adapter-transactional-tests/tests/programmable/transfer_objects_invalid_address.exp index c0e71fa05d1..420affdb9db 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/transfer_objects_invalid_address.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/transfer_objects_invalid_address.exp @@ -7,7 +7,7 @@ task 1, lines 9-29: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 5631600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5631600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 30-34: //# programmable --sender A --inputs 0u64 diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/transfer_objects_invalid_object.exp b/crates/iota-adapter-transactional-tests/tests/programmable/transfer_objects_invalid_object.exp index 1359bdd88b1..75179cd21a2 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/transfer_objects_invalid_object.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/transfer_objects_invalid_object.exp @@ -7,7 +7,7 @@ task 1, lines 9-36: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 6148400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6148400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 37-40: //# programmable --sender A --inputs @A diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/unused_values_invalid.exp b/crates/iota-adapter-transactional-tests/tests/programmable/unused_values_invalid.exp index 27292a13e3d..45583f937fc 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/unused_values_invalid.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/unused_values_invalid.exp @@ -7,7 +7,7 @@ task 1, lines 9-25: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 6604400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6604400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 27-32: //# programmable --sender A --inputs @A diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/unused_values_valid.exp b/crates/iota-adapter-transactional-tests/tests/programmable/unused_values_valid.exp index 3775f2f28dc..71bd517b024 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/unused_values_valid.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/unused_values_valid.exp @@ -7,7 +7,7 @@ task 1, lines 9-31: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 7242800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7242800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 32-36: //# programmable --sender A --inputs @A @@ -16,7 +16,7 @@ task 2, lines 32-36: // unused inputs and unused objects and unused results of various kinds created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2204000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2204000, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, lines 37-42: //# programmable --sender A --inputs object(2,0) 0 vector[@0,@0] @@ -25,7 +25,7 @@ task 3, lines 37-42: //> 2: test::m1::cup(Result(0)); // unconsumed copyable value, but most recent usage was by-value mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2204000, storage_rebate: 2204000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2204000, storage_rebate: 2204000, non_refundable_storage_fee: 0 task 4, lines 43-50: //# programmable --sender A @@ -36,10 +36,10 @@ task 4, lines 43-50: //> 4: test::m1::copy_(Result(0)); // unused pure that was cast mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 5, lines 51-52: //# programmable --sender A --inputs 0 //> test::m1::num_mut(Input(0)) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/programmable_transaction_examples/coin_limit.exp b/crates/iota-adapter-transactional-tests/tests/programmable_transaction_examples/coin_limit.exp index 80ce5fcd4fe..cd5650addf7 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable_transaction_examples/coin_limit.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable_transaction_examples/coin_limit.exp @@ -7,7 +7,7 @@ task 1, lines 7-26: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 6665200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6665200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 27-30: //# programmable --sender A --inputs 100 --gas-budget 10000000000 @@ -15,7 +15,7 @@ task 2, lines 27-30: //> 1: test::m1::purchase(Result(0)); created: object(2,0), object(2,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3260400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3260400, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 32: //# view-object 2,0 @@ -60,7 +60,7 @@ task 6, lines 43-48: //> TransferObjects([Result(1), Result(2)], Input(1)); created: object(6,0), object(6,1), object(6,2), object(6,3) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5532800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5532800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 7, line 50: //# view-object 6,0 diff --git a/crates/iota-adapter-transactional-tests/tests/programmable_transaction_examples/make_vec.exp b/crates/iota-adapter-transactional-tests/tests/programmable_transaction_examples/make_vec.exp index 6e28470220d..360a61f8c52 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable_transaction_examples/make_vec.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable_transaction_examples/make_vec.exp @@ -7,7 +7,7 @@ task 1, lines 7-50: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 8732400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 8732400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 52-58: //# programmable --inputs 112u64 @@ -18,7 +18,7 @@ task 2, lines 52-58: //> 2: MakeMoveVec>([Result(0), Result(0)]); //> 3: test::m1::vec_vec_u64(Result(2)); mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 3, lines 60-66: //# programmable --inputs vector[226u8,157u8,164u8,239u8,184u8,143u8] @@ -29,7 +29,7 @@ task 3, lines 60-66: //> 2: MakeMoveVec>([Result(0), Result(0)]); //> 3: test::m1::vec_vec_string(Result(2)); mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 4, lines 68-71: //# programmable --inputs vector[vector[226u8,157u8,164u8,239u8,184u8,143u8]] vector[] @@ -37,7 +37,7 @@ task 4, lines 68-71: //> 0: MakeMoveVec>([Input(0), Input(1)]); //> 1: test::m1::vec_option_string(Result(0)); mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 5, lines 73-76: //# programmable --inputs vector[255u8,157u8,164u8,239u8,184u8,143u8] @@ -54,4 +54,4 @@ task 6, lines 78-82: //> 2: MakeMoveVec([Result(0), Result(1)]); //> 3: test::m1::burn_markers(Result(2)); mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 0, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/programmable_transaction_examples/make_vec_shared.exp b/crates/iota-adapter-transactional-tests/tests/programmable_transaction_examples/make_vec_shared.exp index c64beb01fe8..e8ad93efae7 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable_transaction_examples/make_vec_shared.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable_transaction_examples/make_vec_shared.exp @@ -7,13 +7,13 @@ task 1, lines 9-30: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 6034400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6034400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 32: //# run t2::o2::create created: object(2,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 2226800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2226800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 3, line 34: //# view-object 2,0 @@ -33,4 +33,4 @@ task 4, lines 36-38: //> t2::o2::consume(Result(0)) mutated: object(0,0) deleted: object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 1238800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 1238800, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/programmable_transaction_examples/merge_coin_shared.exp b/crates/iota-adapter-transactional-tests/tests/programmable_transaction_examples/merge_coin_shared.exp index 876f7cb749a..4e9e3c5c79b 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable_transaction_examples/merge_coin_shared.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable_transaction_examples/merge_coin_shared.exp @@ -7,13 +7,13 @@ task 1, lines 9-27: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 5198400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5198400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 29: //# run test::m1::mint_shared created: object(2,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 988000, non_refundable_storage_fee: 0 task 3, line 31: //# view-object 2,0 diff --git a/crates/iota-adapter-transactional-tests/tests/programmable_transaction_examples/merge_coin_shared_real_coin.exp b/crates/iota-adapter-transactional-tests/tests/programmable_transaction_examples/merge_coin_shared_real_coin.exp index 7b17439c5d2..04c8d2be2f5 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable_transaction_examples/merge_coin_shared_real_coin.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable_transaction_examples/merge_coin_shared_real_coin.exp @@ -7,13 +7,13 @@ task 1, lines 9-18: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 4826000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4826000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 20: //# run test::m1::mint_shared created: object(2,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 1976000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 1976000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 3, line 22: //# view-object 2,0 @@ -35,4 +35,4 @@ task 4, lines 24-25: //> MergeCoins(Gas, [Input(0)]) mutated: object(0,0) deleted: object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/programmable_transaction_examples/publish.exp b/crates/iota-adapter-transactional-tests/tests/programmable_transaction_examples/publish.exp index f35bae093e1..4244c57cdb0 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable_transaction_examples/publish.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable_transaction_examples/publish.exp @@ -12,7 +12,7 @@ task 3, lines 29-34: //> TransferObjects([Result(1), Result(3)], Input(1)) created: object(3,0), object(3,1), object(3,2), object(3,3), object(3,4) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 8876800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 8876800, storage_rebate: 0, non_refundable_storage_fee: 0 task 4, line 36: //# view-object 3,3 @@ -27,15 +27,15 @@ task 8, lines 44-46: //> 0: q::m::x(); //> p::m::foo(Result(0)) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 9, lines 48-53: //# publish --dependencies p q created: object(9,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 5221200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5221200, storage_rebate: 0, non_refundable_storage_fee: 0 task 10, line 55: //# run r::all::foo_x mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/programmable_transaction_examples/receipt.exp b/crates/iota-adapter-transactional-tests/tests/programmable_transaction_examples/receipt.exp index d7888863205..5f350e09a8c 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable_transaction_examples/receipt.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable_transaction_examples/receipt.exp @@ -4,7 +4,7 @@ task 1, lines 7-24: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 6224400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6224400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 26-30: //# programmable @@ -13,7 +13,7 @@ task 2, lines 26-30: //> test::m1::epilogue(Result(0)); created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2249600, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2249600, storage_rebate: 988000, non_refundable_storage_fee: 0 task 3, line 32: //# view-object 2,0 diff --git a/crates/iota-adapter-transactional-tests/tests/programmable_transaction_examples/split_coin_share.exp b/crates/iota-adapter-transactional-tests/tests/programmable_transaction_examples/split_coin_share.exp index 02506be618b..9de3870904d 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable_transaction_examples/split_coin_share.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable_transaction_examples/split_coin_share.exp @@ -7,7 +7,7 @@ task 1, lines 7-19: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 5008400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5008400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 21-23: //# programmable --sender A --inputs 10 @@ -15,7 +15,7 @@ task 2, lines 21-23: //> 1: iota::transfer::public_share_object>(Result(0)); created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 1976000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 1976000, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, lines 25-27: //# programmable --sender A --inputs 10 @@ -23,13 +23,13 @@ task 3, lines 25-27: //> 1: p::m::sharer>(Result(0)); created: object(3,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 1976000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 1976000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 4, line 29: //# run p::m::mint_shared created: object(4,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 1976000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 1976000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 5, lines 31-33: //# view-object 4,0 @@ -53,7 +53,7 @@ task 6, lines 34-38: // This is not OK -- split off from a shared object and transfer shared object created: object(6,0) mutated: object(0,0), object(4,0) -gas summary: computation_cost: 1000000, storage_cost: 2964000, storage_rebate: 1976000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2964000, storage_rebate: 1976000, non_refundable_storage_fee: 0 task 7, lines 39-42: //# programmable --sender A --inputs 0 object(4,0) @A diff --git a/crates/iota-adapter-transactional-tests/tests/programmable_transaction_examples/transfer_shared.exp b/crates/iota-adapter-transactional-tests/tests/programmable_transaction_examples/transfer_shared.exp index 0e3554adfc4..a1a923f41e0 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable_transaction_examples/transfer_shared.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable_transaction_examples/transfer_shared.exp @@ -7,13 +7,13 @@ task 1, lines 9-23: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 5031200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5031200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 25: //# run t2::o2::create created: object(2,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 2226800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2226800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 3, line 27: //# view-object 2,0 diff --git a/crates/iota-adapter-transactional-tests/tests/programmable_transaction_examples/upgrade.exp b/crates/iota-adapter-transactional-tests/tests/programmable_transaction_examples/upgrade.exp index 129dd1e2478..1f5eed7dc8a 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable_transaction_examples/upgrade.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable_transaction_examples/upgrade.exp @@ -7,19 +7,19 @@ task 1, lines 9-19: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 4354800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4354800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 21-24: //# publish --upgradeable --sender A created: object(2,0), object(2,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5076800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5076800, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, lines 26-29: //# publish created: object(3,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 3442800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3442800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 5, lines 37-42: //# programmable --sender A --inputs 10 @A object(2,0) 0u8 digest(q_2) @@ -30,7 +30,7 @@ task 5, lines 37-42: //> iota::package::commit_upgrade(Input(2), Result(2)) created: object(5,0), object(5,1) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 7052800, storage_rebate: 2622000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7052800, storage_rebate: 2622000, non_refundable_storage_fee: 0 task 6, lines 44-46: //# programmable --sender A @@ -44,15 +44,15 @@ task 8, lines 50-52: //> 0: q_2::m::x(); //> p::m::foo(Result(0)) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 9, lines 54-59: //# publish --dependencies p q_2 r created: object(9,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 5768400, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5768400, storage_rebate: 988000, non_refundable_storage_fee: 0 task 10, line 61: //# run s::all::foo_x mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/publish/init.exp b/crates/iota-adapter-transactional-tests/tests/publish/init.exp index 5266ed4a781..f6e3d411b29 100644 --- a/crates/iota-adapter-transactional-tests/tests/publish/init.exp +++ b/crates/iota-adapter-transactional-tests/tests/publish/init.exp @@ -4,7 +4,7 @@ task 1, lines 7-20: //# publish created: object(1,0), object(1,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 6642400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6642400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 22: //# view-object 1,1 diff --git a/crates/iota-adapter-transactional-tests/tests/publish/multi_module_publish.exp b/crates/iota-adapter-transactional-tests/tests/publish/multi_module_publish.exp index 2a98709b6e4..5595461dd83 100644 --- a/crates/iota-adapter-transactional-tests/tests/publish/multi_module_publish.exp +++ b/crates/iota-adapter-transactional-tests/tests/publish/multi_module_publish.exp @@ -4,7 +4,7 @@ task 1, lines 7-14: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5046400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5046400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 16: //# view-object 1,0 diff --git a/crates/iota-adapter-transactional-tests/tests/publish/publish_with_upgrade.exp b/crates/iota-adapter-transactional-tests/tests/publish/publish_with_upgrade.exp index 22755505e6f..187d66181b1 100644 --- a/crates/iota-adapter-transactional-tests/tests/publish/publish_with_upgrade.exp +++ b/crates/iota-adapter-transactional-tests/tests/publish/publish_with_upgrade.exp @@ -4,7 +4,7 @@ task 1, lines 7-10: //# publish --upgradeable created: object(1,0), object(1,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5532800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5532800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 12: //# view-object 1,1 diff --git a/crates/iota-adapter-transactional-tests/tests/random/happy_flows.exp b/crates/iota-adapter-transactional-tests/tests/random/happy_flows.exp index a48ef645fc0..75fe4a93f97 100644 --- a/crates/iota-adapter-transactional-tests/tests/random/happy_flows.exp +++ b/crates/iota-adapter-transactional-tests/tests/random/happy_flows.exp @@ -7,7 +7,7 @@ task 1, lines 7-26: //# publish --sender A created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 6209200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6209200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 27-30: //# programmable --sender A --inputs immshared(8) @@ -15,7 +15,7 @@ task 2, lines 27-30: // Good tx - use Clock and then Random mutated: object(0,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000008 -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 3, lines 31-35: //# programmable --sender A --inputs immshared(6) immshared(8) @A @@ -24,7 +24,7 @@ task 3, lines 31-35: // Good tx - use value and then Random mutated: object(0,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000006, 0x0000000000000000000000000000000000000000000000000000000000000008 -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 4, lines 36-40: //# programmable --sender A --inputs 10 immshared(8) @A @@ -33,7 +33,7 @@ task 4, lines 36-40: // Good tx - use Clock, then Random, then transfer mutated: object(0,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000008 -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 5, lines 41-47: //# programmable --sender A --inputs 10 immshared(6) immshared(8) @B @@ -45,7 +45,7 @@ task 5, lines 41-47: created: object(5,0) mutated: object(0,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000006, 0x0000000000000000000000000000000000000000000000000000000000000008 -gas summary: computation_cost: 1000000, storage_cost: 1976000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 1976000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 6, lines 48-54: //# programmable --sender A --inputs 10 immshared(6) immshared(8) @B @@ -56,11 +56,11 @@ task 6, lines 48-54: // Good tx - use Random twice in the same call mutated: object(0,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000006, 0x0000000000000000000000000000000000000000000000000000000000000008 -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 7, lines 55-56: //# programmable --sender A --inputs immshared(8) //> test::random::use_random_twice(Input(0), Input(0)); mutated: object(0,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000008 -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/random/move_call_clock_after_random.exp b/crates/iota-adapter-transactional-tests/tests/random/move_call_clock_after_random.exp index 68bd4686b0c..88aa201bccb 100644 --- a/crates/iota-adapter-transactional-tests/tests/random/move_call_clock_after_random.exp +++ b/crates/iota-adapter-transactional-tests/tests/random/move_call_clock_after_random.exp @@ -7,7 +7,7 @@ task 1, lines 7-16: //# publish --sender A created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4240800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4240800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 17-19: //# programmable --sender A --inputs immshared(8) immshared(6) @A diff --git a/crates/iota-adapter-transactional-tests/tests/random/move_call_clock_after_random_and_transfer.exp b/crates/iota-adapter-transactional-tests/tests/random/move_call_clock_after_random_and_transfer.exp index 9593a6bb073..76ca5b6caea 100644 --- a/crates/iota-adapter-transactional-tests/tests/random/move_call_clock_after_random_and_transfer.exp +++ b/crates/iota-adapter-transactional-tests/tests/random/move_call_clock_after_random_and_transfer.exp @@ -7,7 +7,7 @@ task 1, lines 7-16: //# publish --sender A created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4240800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4240800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 17-21: //# programmable --sender A --inputs 10 immshared(8) immshared(6) @B diff --git a/crates/iota-adapter-transactional-tests/tests/random/move_call_u64_after_random.exp b/crates/iota-adapter-transactional-tests/tests/random/move_call_u64_after_random.exp index 368fb5b82a4..e67f708a176 100644 --- a/crates/iota-adapter-transactional-tests/tests/random/move_call_u64_after_random.exp +++ b/crates/iota-adapter-transactional-tests/tests/random/move_call_u64_after_random.exp @@ -7,7 +7,7 @@ task 1, lines 7-15: //# publish --sender A created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4081200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4081200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 16-18: //# programmable --sender A --inputs 16 immshared(8) diff --git a/crates/iota-adapter-transactional-tests/tests/random/two_move_calls_with_random.exp b/crates/iota-adapter-transactional-tests/tests/random/two_move_calls_with_random.exp index 3997e308694..b92a86c18f5 100644 --- a/crates/iota-adapter-transactional-tests/tests/random/two_move_calls_with_random.exp +++ b/crates/iota-adapter-transactional-tests/tests/random/two_move_calls_with_random.exp @@ -7,7 +7,7 @@ task 1, lines 7-14: //# publish --sender A created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3898800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3898800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 15-17: //# programmable --sender A --inputs immshared(8) @A diff --git a/crates/iota-adapter-transactional-tests/tests/receive_object/basic_receive.exp b/crates/iota-adapter-transactional-tests/tests/receive_object/basic_receive.exp index 908a74dc187..6369f914d87 100644 --- a/crates/iota-adapter-transactional-tests/tests/receive_object/basic_receive.exp +++ b/crates/iota-adapter-transactional-tests/tests/receive_object/basic_receive.exp @@ -4,13 +4,13 @@ task 1, lines 7-31: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 6923600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6923600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 33: //# run tto::M1::start created: object(2,0), object(2,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3420000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3420000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 3, line 35: //# view-object 2,0 @@ -39,7 +39,7 @@ Contents: tto::M1::B { task 5, line 40: //# run tto::M1::receiver --args object(2,0) receiving(2,1) mutated: object(0,0), object(2,0), object(2,1) -gas summary: computation_cost: 1000000, storage_cost: 3420000, storage_rebate: 3420000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3420000, storage_rebate: 3420000, non_refundable_storage_fee: 0 task 6, line 42: //# view-object 2,0 diff --git a/crates/iota-adapter-transactional-tests/tests/receive_object/drop_receiving.exp b/crates/iota-adapter-transactional-tests/tests/receive_object/drop_receiving.exp index 8663e1034d1..9e0c46132e2 100644 --- a/crates/iota-adapter-transactional-tests/tests/receive_object/drop_receiving.exp +++ b/crates/iota-adapter-transactional-tests/tests/receive_object/drop_receiving.exp @@ -4,20 +4,20 @@ task 1, lines 7-35: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 7144000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7144000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 37: //# run tto::M1::start created: object(2,0), object(2,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3420000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3420000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 3, lines 39-42: //# programmable --inputs object(2,0) receiving(2,1) //> tto::M1::send_back(Input(0), Input(1)) // Include the receiving argument, but don't use it at the PTB level mutated: object(0,0), object(2,0), object(2,1) -gas summary: computation_cost: 1000000, storage_cost: 3420000, storage_rebate: 3420000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3420000, storage_rebate: 3420000, non_refundable_storage_fee: 0 task 4, lines 43-47: //# programmable --inputs object(2,0) receiving(2,1) @@ -25,10 +25,10 @@ task 4, lines 43-47: // Include the receiving argument, but don't use it at the Move level. The // receiving object should not be mutated by this. mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2204000, storage_rebate: 2204000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2204000, storage_rebate: 2204000, non_refundable_storage_fee: 0 task 5, lines 48-49: //# programmable --inputs object(2,0) receiving(2,1) //> tto::M1::nop_with_receiver(Input(0), Input(1)) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2204000, storage_rebate: 2204000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2204000, storage_rebate: 2204000, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/receive_object/duplicate_receive_argument.exp b/crates/iota-adapter-transactional-tests/tests/receive_object/duplicate_receive_argument.exp index 60a402131d1..e3f37cc549c 100644 --- a/crates/iota-adapter-transactional-tests/tests/receive_object/duplicate_receive_argument.exp +++ b/crates/iota-adapter-transactional-tests/tests/receive_object/duplicate_receive_argument.exp @@ -4,20 +4,20 @@ task 1, lines 7-32: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 6756400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6756400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 34: //# run tto::M1::start created: object(2,0), object(2,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3420000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3420000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 3, lines 36-39: //# programmable --inputs object(2,0) receiving(2,1) //> tto::M1::send_back(Input(0), Input(1)) // Duplicate object ref in input mutated: object(0,0), object(2,0), object(2,1) -gas summary: computation_cost: 1000000, storage_cost: 3420000, storage_rebate: 3420000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3420000, storage_rebate: 3420000, non_refundable_storage_fee: 0 task 4, lines 40-43: //# programmable --inputs object(2,0) receiving(2,1) receiving(2,1) diff --git a/crates/iota-adapter-transactional-tests/tests/receive_object/move_vec_receiving_types.exp b/crates/iota-adapter-transactional-tests/tests/receive_object/move_vec_receiving_types.exp index cefbd15b833..f102e1a767f 100644 --- a/crates/iota-adapter-transactional-tests/tests/receive_object/move_vec_receiving_types.exp +++ b/crates/iota-adapter-transactional-tests/tests/receive_object/move_vec_receiving_types.exp @@ -4,13 +4,13 @@ task 1, lines 7-64: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 10579200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 10579200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 66: //# run tto::M1::start created: object(2,0), object(2,1), object(2,2), object(2,3), object(2,4) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 7068000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7068000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 3, line 68: //# view-object 2,0 @@ -77,7 +77,7 @@ task 8, lines 79-82: //> 0: MakeMoveVec>([Input(1), Input(2), Input(3), Input(4)]); // As long as you don't load the object the type will not be checked. mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2204000, storage_rebate: 2204000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2204000, storage_rebate: 2204000, non_refundable_storage_fee: 0 task 9, lines 83-87: //# programmable --inputs object(2,0) receiving(2,1) receiving(2,2) receiving(2,3) receiving(2,4) @@ -85,7 +85,7 @@ task 9, lines 83-87: //> 1: tto::M1::receive_none(Result(0)); // Try to pass the wrong-type move vec to the function mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2204000, storage_rebate: 2204000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2204000, storage_rebate: 2204000, non_refundable_storage_fee: 0 task 10, lines 88-93: //# programmable --inputs object(2,0) receiving(2,1) receiving(2,2) receiving(2,3) receiving(2,4) diff --git a/crates/iota-adapter-transactional-tests/tests/receive_object/pass_receiver_immut_then_reuse.exp b/crates/iota-adapter-transactional-tests/tests/receive_object/pass_receiver_immut_then_reuse.exp index 4ba3e8cd0f7..bf84982d993 100644 --- a/crates/iota-adapter-transactional-tests/tests/receive_object/pass_receiver_immut_then_reuse.exp +++ b/crates/iota-adapter-transactional-tests/tests/receive_object/pass_receiver_immut_then_reuse.exp @@ -4,13 +4,13 @@ task 1, lines 7-33: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 7174400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7174400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 35: //# run tto::M1::start created: object(2,0), object(2,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3420000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3420000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 3, line 37: //# view-object 2,0 @@ -41,4 +41,4 @@ task 5, lines 42-44: //> tto::M1::pass_through(Input(1)); //> tto::M1::receiver(Input(0), Input(1)); mutated: object(0,0), object(2,0), object(2,1) -gas summary: computation_cost: 1000000, storage_cost: 3420000, storage_rebate: 3420000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3420000, storage_rebate: 3420000, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/receive_object/pass_receiver_mut_then_reuse.exp b/crates/iota-adapter-transactional-tests/tests/receive_object/pass_receiver_mut_then_reuse.exp index 4ba3e8cd0f7..bf84982d993 100644 --- a/crates/iota-adapter-transactional-tests/tests/receive_object/pass_receiver_mut_then_reuse.exp +++ b/crates/iota-adapter-transactional-tests/tests/receive_object/pass_receiver_mut_then_reuse.exp @@ -4,13 +4,13 @@ task 1, lines 7-33: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 7174400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7174400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 35: //# run tto::M1::start created: object(2,0), object(2,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3420000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3420000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 3, line 37: //# view-object 2,0 @@ -41,4 +41,4 @@ task 5, lines 42-44: //> tto::M1::pass_through(Input(1)); //> tto::M1::receiver(Input(0), Input(1)); mutated: object(0,0), object(2,0), object(2,1) -gas summary: computation_cost: 1000000, storage_cost: 3420000, storage_rebate: 3420000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3420000, storage_rebate: 3420000, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/receive_object/pt_receive_type_fixing.exp b/crates/iota-adapter-transactional-tests/tests/receive_object/pt_receive_type_fixing.exp index e3dcf77656f..a935cb0f426 100644 --- a/crates/iota-adapter-transactional-tests/tests/receive_object/pt_receive_type_fixing.exp +++ b/crates/iota-adapter-transactional-tests/tests/receive_object/pt_receive_type_fixing.exp @@ -4,13 +4,13 @@ task 1, lines 7-51: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 8937600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 8937600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 53: //# run tto::M1::start created: object(2,0), object(2,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3420000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3420000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 3, line 55: //# view-object 2,0 @@ -41,7 +41,7 @@ task 5, lines 61-63: //> 0: tto::M1::pass_through(Input(1)); //> tto::M1::receiver(Input(0), Result(0)); mutated: object(0,0), object(2,0), object(2,1) -gas summary: computation_cost: 1000000, storage_cost: 3420000, storage_rebate: 3420000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3420000, storage_rebate: 3420000, non_refundable_storage_fee: 0 task 6, lines 65-67: //# programmable --inputs object(2,0) receiving(2,1) diff --git a/crates/iota-adapter-transactional-tests/tests/receive_object/receive_add_dof_and_mutate.exp b/crates/iota-adapter-transactional-tests/tests/receive_object/receive_add_dof_and_mutate.exp index a638507a60c..ccb6c3ac988 100644 --- a/crates/iota-adapter-transactional-tests/tests/receive_object/receive_add_dof_and_mutate.exp +++ b/crates/iota-adapter-transactional-tests/tests/receive_object/receive_add_dof_and_mutate.exp @@ -7,13 +7,13 @@ task 1, lines 7-37: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 7835600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7835600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 39: //# run tto::M1::start created: object(2,0), object(2,1) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 3541600, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3541600, storage_rebate: 988000, non_refundable_storage_fee: 0 task 3, line 41: //# view-object 2,0 @@ -45,7 +45,7 @@ task 5, line 45: //# run tto::M1::receive --args object(2,1) receiving(2,0) created: object(5,0), object(5,1), object(5,2) mutated: object(0,1), object(2,0), object(2,1) -gas summary: computation_cost: 1000000, storage_cost: 9728000, storage_rebate: 3541600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 9728000, storage_rebate: 3541600, non_refundable_storage_fee: 0 task 6, line 47: //# view-object 2,0 diff --git a/crates/iota-adapter-transactional-tests/tests/receive_object/receive_and_abort.exp b/crates/iota-adapter-transactional-tests/tests/receive_object/receive_and_abort.exp index 008b4c01dbc..426be59bb53 100644 --- a/crates/iota-adapter-transactional-tests/tests/receive_object/receive_and_abort.exp +++ b/crates/iota-adapter-transactional-tests/tests/receive_object/receive_and_abort.exp @@ -4,13 +4,13 @@ task 1, lines 7-31: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 6688000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6688000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 33: //# run tto::M1::start created: object(2,0), object(2,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3420000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3420000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 3, line 35: //# view-object 2,0 diff --git a/crates/iota-adapter-transactional-tests/tests/receive_object/receive_and_deleted.exp b/crates/iota-adapter-transactional-tests/tests/receive_object/receive_and_deleted.exp index 6b28a2e9003..91c3f55f210 100644 --- a/crates/iota-adapter-transactional-tests/tests/receive_object/receive_and_deleted.exp +++ b/crates/iota-adapter-transactional-tests/tests/receive_object/receive_and_deleted.exp @@ -4,13 +4,13 @@ task 1, lines 7-31: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 6726000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6726000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 33: //# run tto::M1::start created: object(2,0), object(2,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3420000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3420000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 3, line 35: //# view-object 2,0 @@ -40,7 +40,7 @@ task 5, line 40: //# run tto::M1::deleter --args object(2,0) receiving(2,1) mutated: object(0,0), object(2,0) deleted: object(2,1) -gas summary: computation_cost: 1000000, storage_cost: 2204000, storage_rebate: 3420000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2204000, storage_rebate: 3420000, non_refundable_storage_fee: 0 task 6, line 42: //# view-object 2,0 diff --git a/crates/iota-adapter-transactional-tests/tests/receive_object/receive_and_send_back.exp b/crates/iota-adapter-transactional-tests/tests/receive_object/receive_and_send_back.exp index b8d99293b18..db1d0e54a51 100644 --- a/crates/iota-adapter-transactional-tests/tests/receive_object/receive_and_send_back.exp +++ b/crates/iota-adapter-transactional-tests/tests/receive_object/receive_and_send_back.exp @@ -4,13 +4,13 @@ task 1, lines 7-32: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 6756400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6756400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 34: //# run tto::M1::start created: object(2,0), object(2,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3420000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3420000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 3, line 36: //# view-object 2,0 @@ -39,7 +39,7 @@ Contents: tto::M1::B { task 5, line 41: //# run tto::M1::send_back --args object(2,0) receiving(2,1) mutated: object(0,0), object(2,0), object(2,1) -gas summary: computation_cost: 1000000, storage_cost: 3420000, storage_rebate: 3420000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3420000, storage_rebate: 3420000, non_refundable_storage_fee: 0 task 6, line 43: //# view-object 2,0 diff --git a/crates/iota-adapter-transactional-tests/tests/receive_object/receive_and_wrap.exp b/crates/iota-adapter-transactional-tests/tests/receive_object/receive_and_wrap.exp index ed2a488b9de..63a4f024c27 100644 --- a/crates/iota-adapter-transactional-tests/tests/receive_object/receive_and_wrap.exp +++ b/crates/iota-adapter-transactional-tests/tests/receive_object/receive_and_wrap.exp @@ -4,13 +4,13 @@ task 1, lines 7-40: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 7569600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7569600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 42: //# run tto::M1::start created: object(2,0), object(2,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3420000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3420000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 3, line 44: //# view-object 2,0 @@ -41,7 +41,7 @@ task 5, line 49: created: object(5,0) mutated: object(0,0), object(2,0) wrapped: object(2,1) -gas summary: computation_cost: 1000000, storage_cost: 3708800, storage_rebate: 3420000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3708800, storage_rebate: 3420000, non_refundable_storage_fee: 0 task 6, line 51: //# view-object 2,0 diff --git a/crates/iota-adapter-transactional-tests/tests/receive_object/receive_by_ref.exp b/crates/iota-adapter-transactional-tests/tests/receive_object/receive_by_ref.exp index 592eb63529c..a5ae4145dbd 100644 --- a/crates/iota-adapter-transactional-tests/tests/receive_object/receive_by_ref.exp +++ b/crates/iota-adapter-transactional-tests/tests/receive_object/receive_by_ref.exp @@ -4,13 +4,13 @@ task 1, lines 7-40: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 9872400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 9872400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 42: //# run tto::M1::start created: object(2,0), object(2,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3420000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3420000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 3, line 44: //# view-object 2,0 @@ -39,12 +39,12 @@ Contents: tto::M1::B { task 5, line 48: //# run tto::M1::call_mut_ref --args object(2,0) receiving(2,1) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2204000, storage_rebate: 2204000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2204000, storage_rebate: 2204000, non_refundable_storage_fee: 0 task 6, line 50: //# run tto::M1::call_immut_ref --args object(2,0) receiving(2,1) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2204000, storage_rebate: 2204000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2204000, storage_rebate: 2204000, non_refundable_storage_fee: 0 task 7, line 52: //# run tto::M1::call_mut_ref_ret --args object(2,0) receiving(2,1) @@ -60,7 +60,7 @@ task 9, lines 56-57: //# programmable --inputs receiving(2,1) //> tto::M1::immut_immut_ref(Input(0), Input(0)) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 10, lines 59-60: //# programmable --inputs receiving(2,1) diff --git a/crates/iota-adapter-transactional-tests/tests/receive_object/receive_by_value_flow_through.exp b/crates/iota-adapter-transactional-tests/tests/receive_object/receive_by_value_flow_through.exp index 192285ee3d2..1ce233af3d2 100644 --- a/crates/iota-adapter-transactional-tests/tests/receive_object/receive_by_value_flow_through.exp +++ b/crates/iota-adapter-transactional-tests/tests/receive_object/receive_by_value_flow_through.exp @@ -4,13 +4,13 @@ task 1, lines 7-29: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 6437200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6437200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 31: //# run tto::M1::start created: object(2,0), object(2,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3420000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3420000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 3, line 33: //# view-object 2,0 @@ -39,9 +39,9 @@ Contents: tto::M1::B { task 5, lines 38-40: //# run tto::M1::flow --args object(2,0) receiving(2,1) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2204000, storage_rebate: 2204000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2204000, storage_rebate: 2204000, non_refundable_storage_fee: 0 task 6, line 41: //# run tto::M1::drop --args object(2,0) receiving(2,1) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2204000, storage_rebate: 2204000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2204000, storage_rebate: 2204000, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/receive_object/receive_dof_and_mutate.exp b/crates/iota-adapter-transactional-tests/tests/receive_object/receive_dof_and_mutate.exp index 6048d59c895..17040124afe 100644 --- a/crates/iota-adapter-transactional-tests/tests/receive_object/receive_dof_and_mutate.exp +++ b/crates/iota-adapter-transactional-tests/tests/receive_object/receive_dof_and_mutate.exp @@ -7,13 +7,13 @@ task 1, lines 7-35: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 7828000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7828000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 37: //# run tto::M1::start --sender A created: object(2,0), object(2,1), object(2,2), object(2,3) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 7273200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7273200, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 39: //# view-object 2,0 @@ -76,7 +76,7 @@ task 7, line 47: //# run tto::M1::receive --args object(2,2) receiving(2,3) --sender A created: object(7,0) mutated: object(0,0), object(2,2), object(2,3) -gas summary: computation_cost: 1000000, storage_cost: 5996400, storage_rebate: 3541600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5996400, storage_rebate: 3541600, non_refundable_storage_fee: 0 task 8, line 49: //# view-object 2,0 diff --git a/crates/iota-adapter-transactional-tests/tests/receive_object/receive_duo_struct.exp b/crates/iota-adapter-transactional-tests/tests/receive_object/receive_duo_struct.exp index 30abaca7589..276fea4345a 100644 --- a/crates/iota-adapter-transactional-tests/tests/receive_object/receive_duo_struct.exp +++ b/crates/iota-adapter-transactional-tests/tests/receive_object/receive_duo_struct.exp @@ -4,13 +4,13 @@ task 1, lines 7-45: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 8071200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 8071200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 47: //# run tto::M1::start created: object(2,0), object(2,1), object(2,2) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4636000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4636000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 3, line 49: //# view-object 2,0 @@ -53,7 +53,7 @@ task 6, lines 56-59: //> 0: tto::M1::make_duo(Input(1), Input(2)) // receive the objects and return them. Error since we need to do something with the returned objects mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2204000, storage_rebate: 2204000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2204000, storage_rebate: 2204000, non_refundable_storage_fee: 0 task 7, lines 60-64: //# programmable --inputs object(2,0) receiving(2,1) receiving(2,1) @@ -68,4 +68,4 @@ task 8, lines 65-68: //> 1: tto::M1::receive_duo(Input(0), Result(0)); //> 2: TransferObjects([NestedResult(1, 0), NestedResult(1, 1)], Input(3)); mutated: object(0,0), object(2,0), object(2,1), object(2,2) -gas summary: computation_cost: 1000000, storage_cost: 4636000, storage_rebate: 4636000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4636000, storage_rebate: 4636000, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/receive_object/receive_invalid_param_ty.exp b/crates/iota-adapter-transactional-tests/tests/receive_object/receive_invalid_param_ty.exp index 1cef307d7f1..f50cbfe5475 100644 --- a/crates/iota-adapter-transactional-tests/tests/receive_object/receive_invalid_param_ty.exp +++ b/crates/iota-adapter-transactional-tests/tests/receive_object/receive_invalid_param_ty.exp @@ -4,13 +4,13 @@ task 1, lines 7-42: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 8519600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 8519600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 44: //# run tto::M1::start created: object(2,0), object(2,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3420000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3420000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 3, line 46: //# view-object 2,0 @@ -73,7 +73,7 @@ Execution Error: ExecutionError: ExecutionError { inner: ExecutionErrorInner { k task 12, line 64: //# run tto::M1::receiver6 --args receiving(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 13, line 66: //# run tto::M1::receiver6 --args 0 diff --git a/crates/iota-adapter-transactional-tests/tests/receive_object/receive_invalid_type.exp b/crates/iota-adapter-transactional-tests/tests/receive_object/receive_invalid_type.exp index 74fafc9220a..ae7635c1f26 100644 --- a/crates/iota-adapter-transactional-tests/tests/receive_object/receive_invalid_type.exp +++ b/crates/iota-adapter-transactional-tests/tests/receive_object/receive_invalid_type.exp @@ -4,13 +4,13 @@ task 1, lines 7-31: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 6923600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6923600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 33: //# run tto::M1::start created: object(2,0), object(2,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3420000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3420000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 3, line 35: //# view-object 2,0 diff --git a/crates/iota-adapter-transactional-tests/tests/receive_object/receive_many_move_vec.exp b/crates/iota-adapter-transactional-tests/tests/receive_object/receive_many_move_vec.exp index c8cb8afd5b8..3f326af24e3 100644 --- a/crates/iota-adapter-transactional-tests/tests/receive_object/receive_many_move_vec.exp +++ b/crates/iota-adapter-transactional-tests/tests/receive_object/receive_many_move_vec.exp @@ -4,13 +4,13 @@ task 1, lines 7-78: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 11286000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 11286000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 80: //# run tto::M1::start created: object(2,0), object(2,1), object(2,2), object(2,3), object(2,4) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 7068000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7068000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 3, line 82: //# view-object 2,0 @@ -77,7 +77,7 @@ task 8, lines 93-96: //> 0: MakeMoveVec>([Input(1), Input(2), Input(3), Input(4)]); // Make the Move vec and pass, but never receive mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2204000, storage_rebate: 2204000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2204000, storage_rebate: 2204000, non_refundable_storage_fee: 0 task 9, lines 97-101: //# programmable --inputs object(2,0) receiving(2,1) receiving(2,2) receiving(2,3) receiving(2,4) @@ -85,7 +85,7 @@ task 9, lines 97-101: //> 1: tto::M1::receive_none(Input(0), Result(0)); // Make the Move vec of receiving arguments and then receive all but the last. Only the ince we receive should be mutated mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2204000, storage_rebate: 2204000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2204000, storage_rebate: 2204000, non_refundable_storage_fee: 0 task 10, lines 102-106: //# programmable --inputs object(2,0) receiving(2,1) receiving(2,2) receiving(2,3) receiving(2,4) @@ -93,7 +93,7 @@ task 10, lines 102-106: //> 1: tto::M1::receive_all_but_last(Input(0), Result(0)); // Make the Move vec of receiving arguments, pass to a function by immref, then later use the vec to receive all of them mutated: object(0,0), object(2,0), object(2,2), object(2,3), object(2,4) -gas summary: computation_cost: 1000000, storage_cost: 5852000, storage_rebate: 5852000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5852000, storage_rebate: 5852000, non_refundable_storage_fee: 0 task 11, lines 107-112: //# programmable --inputs object(2,0) receiving(2,1) receiving(2,2) receiving(2,3) receiving(2,4) @@ -102,7 +102,7 @@ task 11, lines 107-112: //> 2: tto::M1::receive_all_send_back(Input(0), Result(0)); // Make the Move vec of receiving arguments, pass to a function by mutref, then later use the vec to receive all of them mutated: object(0,0), object(2,0), object(2,1), object(2,2), object(2,3), object(2,4) -gas summary: computation_cost: 1000000, storage_cost: 7068000, storage_rebate: 7068000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7068000, storage_rebate: 7068000, non_refundable_storage_fee: 0 task 12, lines 113-118: //# programmable --inputs object(2,0) receiving(2,1) receiving(2,2) receiving(2,3) receiving(2,4) @@ -111,7 +111,7 @@ task 12, lines 113-118: //> 2: tto::M1::receive_all_send_back(Input(0), Result(0)); // Make the Move vec of receiving arguments, pass to a function by mutref and receive some mutated: object(0,0), object(2,0), object(2,1), object(2,2), object(2,3), object(2,4) -gas summary: computation_cost: 1000000, storage_cost: 7068000, storage_rebate: 7068000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7068000, storage_rebate: 7068000, non_refundable_storage_fee: 0 task 13, lines 119-124: //# programmable --inputs object(2,0) receiving(2,1) receiving(2,2) receiving(2,3) receiving(2,4) @@ -120,7 +120,7 @@ task 13, lines 119-124: //> 2: tto::M1::receive_all_by_mut_ref(Input(0), Result(0)); // Make the Move vec of receiving arguments, pass to a function by mutref, receive some, then pass by mutref again to receive the rest mutated: object(0,0), object(2,0), object(2,1), object(2,2), object(2,3), object(2,4) -gas summary: computation_cost: 1000000, storage_cost: 7068000, storage_rebate: 7068000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7068000, storage_rebate: 7068000, non_refundable_storage_fee: 0 task 14, lines 125-130: //# programmable --inputs object(2,0) receiving(2,1) receiving(2,2) receiving(2,3) receiving(2,4) @@ -129,7 +129,7 @@ task 14, lines 125-130: //> 2: tto::M1::receive_all_by_mut_ref(Input(0), Result(0)); // Make the Move vec of receiving arguments, pass to a function by mutref, receive some, then pass by value to receive the rest mutated: object(0,0), object(2,0), object(2,1), object(2,2), object(2,3), object(2,4) -gas summary: computation_cost: 1000000, storage_cost: 7068000, storage_rebate: 7068000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7068000, storage_rebate: 7068000, non_refundable_storage_fee: 0 task 15, lines 131-136: //# programmable --inputs object(2,0) receiving(2,1) receiving(2,2) receiving(2,3) receiving(2,4) @@ -138,14 +138,14 @@ task 15, lines 131-136: //> 2: tto::M1::receive_all_send_back(Input(0), Result(0)); // Make the Move vec of receiving arguments and then receive all of them mutated: object(0,0), object(2,0), object(2,1), object(2,2), object(2,3), object(2,4) -gas summary: computation_cost: 1000000, storage_cost: 7068000, storage_rebate: 7068000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7068000, storage_rebate: 7068000, non_refundable_storage_fee: 0 task 16, lines 137-139: //# programmable --inputs object(2,0) receiving(2,1) receiving(2,2) receiving(2,3) receiving(2,4) //> 0: MakeMoveVec>([Input(1), Input(2), Input(3), Input(4)]); //> 1: tto::M1::receive_all(Input(0), Result(0)); mutated: object(0,0), object(2,0), object(2,1), object(2,2), object(2,3), object(2,4) -gas summary: computation_cost: 1000000, storage_cost: 7068000, storage_rebate: 7068000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7068000, storage_rebate: 7068000, non_refundable_storage_fee: 0 task 17, line 141: //# view-object 2,0 diff --git a/crates/iota-adapter-transactional-tests/tests/receive_object/receive_multiple_times_in_row.exp b/crates/iota-adapter-transactional-tests/tests/receive_object/receive_multiple_times_in_row.exp index 0548f79bf28..70a52c05b18 100644 --- a/crates/iota-adapter-transactional-tests/tests/receive_object/receive_multiple_times_in_row.exp +++ b/crates/iota-adapter-transactional-tests/tests/receive_object/receive_multiple_times_in_row.exp @@ -7,19 +7,19 @@ task 1, lines 7-37: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 7007200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7007200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 39: //# run tto::M1::start created: object(2,0), object(2,1) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 3420000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3420000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 3, line 41: //# run tto::M1::middle --sender A created: object(3,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2204000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2204000, storage_rebate: 0, non_refundable_storage_fee: 0 task 4, line 43: //# view-object 2,0 @@ -48,7 +48,7 @@ Contents: tto::M1::B { task 6, line 48: //# run tto::M1::send_back --args object(2,0) receiving(2,1) mutated: object(0,1), object(2,0), object(2,1) -gas summary: computation_cost: 1000000, storage_cost: 3420000, storage_rebate: 3420000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3420000, storage_rebate: 3420000, non_refundable_storage_fee: 0 task 7, line 50: //# view-object 2,0 @@ -82,7 +82,7 @@ Execution Error: ExecutionError: ExecutionError { inner: ExecutionErrorInner { k task 10, lines 58-60: //# run tto::M1::send_back --args object(2,0) receiving(2,1)@4 mutated: object(0,1), object(2,0), object(2,1) -gas summary: computation_cost: 1000000, storage_cost: 3420000, storage_rebate: 3420000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3420000, storage_rebate: 3420000, non_refundable_storage_fee: 0 task 11, lines 61-63: //# run tto::M1::send_back --summarize --args object(3,0) receiving(2,1)@6 --sender A @@ -92,4 +92,4 @@ Execution Error: ExecutionError: ExecutionError { inner: ExecutionErrorInner { k task 12, line 64: //# run tto::M1::send_back --args object(2,0) receiving(2,1)@6 mutated: object(0,1), object(2,0), object(2,1) -gas summary: computation_cost: 1000000, storage_cost: 3420000, storage_rebate: 3420000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3420000, storage_rebate: 3420000, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/receive_object/receive_object_id.exp b/crates/iota-adapter-transactional-tests/tests/receive_object/receive_object_id.exp index 0d9a0ec982f..dfa6856fe2d 100644 --- a/crates/iota-adapter-transactional-tests/tests/receive_object/receive_object_id.exp +++ b/crates/iota-adapter-transactional-tests/tests/receive_object/receive_object_id.exp @@ -4,13 +4,13 @@ task 1, lines 7-30: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 6650000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6650000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 32: //# run tto::M1::start created: object(2,0), object(2,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3420000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3420000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 3, line 34: //# view-object 2,0 @@ -39,19 +39,19 @@ Contents: tto::M1::B { task 5, line 38: //# run tto::M1::receiver --args receiving(2,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 6, lines 40-41: //# programmable --inputs receiving(2,1) //> iota::transfer::receiving_object_id(Input(0)) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 7, lines 43-44: //# programmable --inputs receiving(2,1) //> tto::M1::receiver(Input(0)) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 8, line 46: //# view-object 2,0 diff --git a/crates/iota-adapter-transactional-tests/tests/receive_object/receive_object_owner.exp b/crates/iota-adapter-transactional-tests/tests/receive_object/receive_object_owner.exp index 2b00d3854db..498839fbea2 100644 --- a/crates/iota-adapter-transactional-tests/tests/receive_object/receive_object_owner.exp +++ b/crates/iota-adapter-transactional-tests/tests/receive_object/receive_object_owner.exp @@ -7,13 +7,13 @@ task 1, lines 7-29: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 6634800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6634800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 31: //# run tto::M1::start --sender A created: object(2,0), object(2,1), object(2,2) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5996400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5996400, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 33: //# view-object 2,0 diff --git a/crates/iota-adapter-transactional-tests/tests/receive_object/receive_return_object_dont_touch.exp b/crates/iota-adapter-transactional-tests/tests/receive_object/receive_return_object_dont_touch.exp index e4d034c641f..95d9c0b5039 100644 --- a/crates/iota-adapter-transactional-tests/tests/receive_object/receive_return_object_dont_touch.exp +++ b/crates/iota-adapter-transactional-tests/tests/receive_object/receive_return_object_dont_touch.exp @@ -4,13 +4,13 @@ task 1, lines 7-30: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 6604400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6604400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 32: //# run tto::M1::start created: object(2,0), object(2,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3420000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3420000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 3, line 34: //# view-object 2,0 diff --git a/crates/iota-adapter-transactional-tests/tests/receive_object/receive_return_object_then_transfer.exp b/crates/iota-adapter-transactional-tests/tests/receive_object/receive_return_object_then_transfer.exp index b9a0185cbe8..907a216b668 100644 --- a/crates/iota-adapter-transactional-tests/tests/receive_object/receive_return_object_then_transfer.exp +++ b/crates/iota-adapter-transactional-tests/tests/receive_object/receive_return_object_then_transfer.exp @@ -4,13 +4,13 @@ task 1, lines 7-30: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 6604400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6604400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 32: //# run tto::M1::start created: object(2,0), object(2,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3420000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3420000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 3, line 34: //# view-object 2,0 @@ -41,7 +41,7 @@ task 5, lines 39-41: //> 0: tto::M1::receiver(Input(0), Input(1)); //> TransferObjects([Result(0)], Input(2)) mutated: object(0,0), object(2,0), object(2,1) -gas summary: computation_cost: 1000000, storage_cost: 3420000, storage_rebate: 3420000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3420000, storage_rebate: 3420000, non_refundable_storage_fee: 0 task 6, line 43: //# view-object 2,0 diff --git a/crates/iota-adapter-transactional-tests/tests/receive_object/receive_ticket_coin_operations.exp b/crates/iota-adapter-transactional-tests/tests/receive_object/receive_ticket_coin_operations.exp index 54332050b8b..8bbedfcdb5c 100644 --- a/crates/iota-adapter-transactional-tests/tests/receive_object/receive_ticket_coin_operations.exp +++ b/crates/iota-adapter-transactional-tests/tests/receive_object/receive_ticket_coin_operations.exp @@ -4,13 +4,13 @@ task 1, lines 7-24: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5928000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5928000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 26: //# run tto::M1::start created: object(2,0), object(2,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3420000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3420000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 3, line 28: //# view-object 2,0 diff --git a/crates/iota-adapter-transactional-tests/tests/receive_object/shared_parent/basic_receive.exp b/crates/iota-adapter-transactional-tests/tests/receive_object/shared_parent/basic_receive.exp index 0bc8823f5b5..8f617ebdcfa 100644 --- a/crates/iota-adapter-transactional-tests/tests/receive_object/shared_parent/basic_receive.exp +++ b/crates/iota-adapter-transactional-tests/tests/receive_object/shared_parent/basic_receive.exp @@ -4,13 +4,13 @@ task 1, lines 7-31: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 6969200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6969200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 33: //# run tto::M1::start created: object(2,0), object(2,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3420000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3420000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 3, line 35: //# view-object 2,0 @@ -39,7 +39,7 @@ Contents: tto::M1::B { task 5, line 39: //# run tto::M1::receiver --args object(2,0) receiving(2,1) mutated: object(0,0), object(2,0), object(2,1) -gas summary: computation_cost: 1000000, storage_cost: 3420000, storage_rebate: 3420000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3420000, storage_rebate: 3420000, non_refundable_storage_fee: 0 task 6, line 41: //# view-object 2,0 diff --git a/crates/iota-adapter-transactional-tests/tests/receive_object/shared_parent/drop_receiving.exp b/crates/iota-adapter-transactional-tests/tests/receive_object/shared_parent/drop_receiving.exp index 6c3fcc8c8db..34aabbb1362 100644 --- a/crates/iota-adapter-transactional-tests/tests/receive_object/shared_parent/drop_receiving.exp +++ b/crates/iota-adapter-transactional-tests/tests/receive_object/shared_parent/drop_receiving.exp @@ -4,20 +4,20 @@ task 1, lines 7-34: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 7182000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7182000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 36: //# run tto::M1::start created: object(2,0), object(2,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3420000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3420000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 3, lines 38-41: //# programmable --inputs object(2,0) receiving(2,1) //> tto::M1::send_back(Input(0), Input(1)) // Include the receiving argument, but don't use it at the PTB level mutated: object(0,0), object(2,0), object(2,1) -gas summary: computation_cost: 1000000, storage_cost: 3420000, storage_rebate: 3420000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3420000, storage_rebate: 3420000, non_refundable_storage_fee: 0 task 4, lines 42-46: //# programmable --inputs object(2,0) receiving(2,1) @@ -25,10 +25,10 @@ task 4, lines 42-46: // Include the receiving argument, but don't use it at the Move level. The // receiving object should not be mutated by this. mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2204000, storage_rebate: 2204000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2204000, storage_rebate: 2204000, non_refundable_storage_fee: 0 task 5, lines 47-48: //# programmable --inputs object(2,0) receiving(2,1) //> tto::M1::nop_with_receiver(Input(0), Input(1)) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2204000, storage_rebate: 2204000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2204000, storage_rebate: 2204000, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/receive_object/shared_parent/receive_dof_and_mutate.exp b/crates/iota-adapter-transactional-tests/tests/receive_object/shared_parent/receive_dof_and_mutate.exp index 9a86a050837..11296dc7939 100644 --- a/crates/iota-adapter-transactional-tests/tests/receive_object/shared_parent/receive_dof_and_mutate.exp +++ b/crates/iota-adapter-transactional-tests/tests/receive_object/shared_parent/receive_dof_and_mutate.exp @@ -7,13 +7,13 @@ task 1, lines 7-35: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 7881200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7881200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 37: //# run tto::M1::start created: object(2,0), object(2,1), object(2,2), object(2,3) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 7273200, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7273200, storage_rebate: 988000, non_refundable_storage_fee: 0 task 3, line 39: //# view-object 2,0 @@ -76,7 +76,7 @@ task 7, line 47: //# run tto::M1::receive --args object(2,3) receiving(2,1) created: object(7,0) mutated: object(0,1), object(2,1), object(2,3) -gas summary: computation_cost: 1000000, storage_cost: 5996400, storage_rebate: 3541600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5996400, storage_rebate: 3541600, non_refundable_storage_fee: 0 task 8, line 49: //# view-object 2,0 diff --git a/crates/iota-adapter-transactional-tests/tests/receive_object/shared_parent/receive_multiple_times_in_row.exp b/crates/iota-adapter-transactional-tests/tests/receive_object/shared_parent/receive_multiple_times_in_row.exp index 1e96a2f8bef..997014af9d8 100644 --- a/crates/iota-adapter-transactional-tests/tests/receive_object/shared_parent/receive_multiple_times_in_row.exp +++ b/crates/iota-adapter-transactional-tests/tests/receive_object/shared_parent/receive_multiple_times_in_row.exp @@ -7,19 +7,19 @@ task 1, lines 7-38: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 7182000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7182000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 40: //# run tto::M1::start created: object(2,0), object(2,1) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 3420000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3420000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 3, line 42: //# run tto::M1::middle --sender A created: object(3,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2204000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2204000, storage_rebate: 0, non_refundable_storage_fee: 0 task 4, line 44: //# view-object 2,0 @@ -48,7 +48,7 @@ Contents: tto::M1::B { task 6, line 49: //# run tto::M1::send_back --args object(2,0) receiving(2,1) mutated: object(0,1), object(2,0), object(2,1) -gas summary: computation_cost: 1000000, storage_cost: 3420000, storage_rebate: 3420000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3420000, storage_rebate: 3420000, non_refundable_storage_fee: 0 task 7, line 51: //# view-object 2,0 @@ -82,7 +82,7 @@ Debug of error: MoveAbort(MoveLocation { module: ModuleId { address: iota, name: task 10, lines 59-61: //# run tto::M1::send_back --args object(2,0) receiving(2,1)@4 mutated: object(0,1), object(2,0), object(2,1) -gas summary: computation_cost: 1000000, storage_cost: 3420000, storage_rebate: 3420000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3420000, storage_rebate: 3420000, non_refundable_storage_fee: 0 task 11, lines 62-64: //# run tto::M1::send_back --summarize --args object(3,0) receiving(2,1)@6 --sender A @@ -92,4 +92,4 @@ Execution Error: ExecutionError: ExecutionError { inner: ExecutionErrorInner { k task 12, line 65: //# run tto::M1::send_back --args object(2,0) receiving(2,1)@6 mutated: object(0,1), object(2,0), object(2,1) -gas summary: computation_cost: 1000000, storage_cost: 3420000, storage_rebate: 3420000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3420000, storage_rebate: 3420000, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/receive_object/shared_parent/transfer_then_share.exp b/crates/iota-adapter-transactional-tests/tests/receive_object/shared_parent/transfer_then_share.exp index c589dddefe1..fb088079470 100644 --- a/crates/iota-adapter-transactional-tests/tests/receive_object/shared_parent/transfer_then_share.exp +++ b/crates/iota-adapter-transactional-tests/tests/receive_object/shared_parent/transfer_then_share.exp @@ -4,13 +4,13 @@ task 1, lines 7-32: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 6916000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6916000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 34: //# run tto::M1::start created: object(2,0), object(2,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3420000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3420000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 3, line 36: //# view-object 2,0 @@ -39,7 +39,7 @@ Contents: tto::M1::B { task 5, line 40: //# run tto::M1::receiver --args object(2,0) receiving(2,1) mutated: object(0,0), object(2,0), object(2,1) -gas summary: computation_cost: 1000000, storage_cost: 3420000, storage_rebate: 3420000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3420000, storage_rebate: 3420000, non_refundable_storage_fee: 0 task 6, line 42: //# view-object 2,0 diff --git a/crates/iota-adapter-transactional-tests/tests/receive_object/take_receiver_then_try_to_reuse.exp b/crates/iota-adapter-transactional-tests/tests/receive_object/take_receiver_then_try_to_reuse.exp index 196f791f508..04f23d64202 100644 --- a/crates/iota-adapter-transactional-tests/tests/receive_object/take_receiver_then_try_to_reuse.exp +++ b/crates/iota-adapter-transactional-tests/tests/receive_object/take_receiver_then_try_to_reuse.exp @@ -4,13 +4,13 @@ task 1, lines 7-33: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 7182000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7182000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 35: //# run tto::M1::start created: object(2,0), object(2,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3420000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3420000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 3, line 37: //# view-object 2,0 diff --git a/crates/iota-adapter-transactional-tests/tests/receive_object/transfer_object_cyclic.exp b/crates/iota-adapter-transactional-tests/tests/receive_object/transfer_object_cyclic.exp index 2985ee43ace..c82984784fb 100644 --- a/crates/iota-adapter-transactional-tests/tests/receive_object/transfer_object_cyclic.exp +++ b/crates/iota-adapter-transactional-tests/tests/receive_object/transfer_object_cyclic.exp @@ -4,10 +4,10 @@ task 1, lines 7-25: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5852000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5852000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 27: //# run tto::M1::start created: object(2,0), object(2,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3420000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3420000, storage_rebate: 988000, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/runtime_behavior/error_locations.exp b/crates/iota-adapter-transactional-tests/tests/runtime_behavior/error_locations.exp index 56cbc772dec..1b38a37416f 100644 --- a/crates/iota-adapter-transactional-tests/tests/runtime_behavior/error_locations.exp +++ b/crates/iota-adapter-transactional-tests/tests/runtime_behavior/error_locations.exp @@ -4,7 +4,7 @@ task 1, lines 9-31: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4332000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4332000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 33: //# run test::m::abort_ diff --git a/crates/iota-adapter-transactional-tests/tests/runtime_behavior/versioned_check_swap_loc_new.exp b/crates/iota-adapter-transactional-tests/tests/runtime_behavior/versioned_check_swap_loc_new.exp index 33711e46d14..6253b4f7337 100644 --- a/crates/iota-adapter-transactional-tests/tests/runtime_behavior/versioned_check_swap_loc_new.exp +++ b/crates/iota-adapter-transactional-tests/tests/runtime_behavior/versioned_check_swap_loc_new.exp @@ -4,14 +4,14 @@ task 1, lines 9-43: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4491600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4491600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 45: //# run test::m::t1 --args true mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 3, line 47: //# run test::m::t2 --args true mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/shared/add_dynamic_field.exp b/crates/iota-adapter-transactional-tests/tests/shared/add_dynamic_field.exp index 9b36142e606..5937e699700 100644 --- a/crates/iota-adapter-transactional-tests/tests/shared/add_dynamic_field.exp +++ b/crates/iota-adapter-transactional-tests/tests/shared/add_dynamic_field.exp @@ -7,13 +7,13 @@ task 1, lines 10-33: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 6627200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6627200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 35: //# run a::m::create --sender A created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2211600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2211600, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 37: //# view-object 2,0 @@ -31,13 +31,13 @@ task 4, line 39: //# run a::m::add_dynamic_field --sender A --args object(2,0) created: object(4,0) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 3678400, storage_rebate: 2211600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3678400, storage_rebate: 2211600, non_refundable_storage_fee: 0 task 5, line 41: //# run a::m::create --sender A created: object(5,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2211600, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2211600, storage_rebate: 988000, non_refundable_storage_fee: 0 task 6, line 43: //# view-object 5,0 @@ -54,4 +54,4 @@ Contents: a::m::Obj { task 7, line 45: //# run a::m::add_and_remove_dynamic_field --sender A --args object(5,0) mutated: object(0,0), object(5,0) -gas summary: computation_cost: 1000000, storage_cost: 2211600, storage_rebate: 2211600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2211600, storage_rebate: 2211600, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/shared/become_dynamic_field.exp b/crates/iota-adapter-transactional-tests/tests/shared/become_dynamic_field.exp index df02210fed3..77203512bd8 100644 --- a/crates/iota-adapter-transactional-tests/tests/shared/become_dynamic_field.exp +++ b/crates/iota-adapter-transactional-tests/tests/shared/become_dynamic_field.exp @@ -7,13 +7,13 @@ task 1, lines 10-40: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 7531600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7531600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 42: //# run a::m::create_shared --sender A created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2226800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2226800, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 44: //# view-object 2,0 @@ -36,7 +36,7 @@ task 5, line 48: //# run a::m::create_shared --sender A created: object(5,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2226800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2226800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 6, line 50: //# view-object 5,0 @@ -54,4 +54,4 @@ task 7, line 52: //# run a::m::add_and_remove_dynamic_field --sender A --args object(5,0) created: object(7,0) mutated: object(0,0), object(5,0) -gas summary: computation_cost: 1000000, storage_cost: 3465600, storage_rebate: 2226800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3465600, storage_rebate: 2226800, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/shared/become_dynamic_object_field.exp b/crates/iota-adapter-transactional-tests/tests/shared/become_dynamic_object_field.exp index c9da369ac86..3a6b2f9cc3d 100644 --- a/crates/iota-adapter-transactional-tests/tests/shared/become_dynamic_object_field.exp +++ b/crates/iota-adapter-transactional-tests/tests/shared/become_dynamic_object_field.exp @@ -7,13 +7,13 @@ task 1, lines 10-40: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 7691200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7691200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 42: //# run a::m::create_shared --sender A created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2226800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2226800, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 44: //# view-object 2,0 @@ -36,7 +36,7 @@ task 5, line 48: //# run a::m::create_shared --sender A created: object(5,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2226800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2226800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 6, line 50: //# view-object 5,0 @@ -54,4 +54,4 @@ task 7, line 52: //# run a::m::add_and_remove_dynamic_object_field --sender A --args object(5,0) created: object(7,0) mutated: object(0,0), object(5,0) -gas summary: computation_cost: 1000000, storage_cost: 3465600, storage_rebate: 2226800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3465600, storage_rebate: 2226800, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/shared/by_value_shared_object_deletion.exp b/crates/iota-adapter-transactional-tests/tests/shared/by_value_shared_object_deletion.exp index d5f4b218dec..19cfc968bc1 100644 --- a/crates/iota-adapter-transactional-tests/tests/shared/by_value_shared_object_deletion.exp +++ b/crates/iota-adapter-transactional-tests/tests/shared/by_value_shared_object_deletion.exp @@ -4,19 +4,19 @@ task 1, lines 10-27: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5342800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5342800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 29-37: //# publish --dependencies t2 created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4453600, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4453600, storage_rebate: 988000, non_refundable_storage_fee: 0 task 3, line 39: //# run t2::o2::create created: object(3,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2226800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2226800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 4, lines 41-43: //# view-object 3,0 @@ -34,13 +34,13 @@ task 5, line 44: //# run t1::o1::consume_o2 --args object(3,0) mutated: object(0,0) deleted: object(3,0) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 2226800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 2226800, non_refundable_storage_fee: 0 task 6, line 46: //# run t2::o2::create created: object(6,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2226800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2226800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 7, lines 48-50: //# view-object 6,0 @@ -58,4 +58,4 @@ task 8, line 51: //# run t2::o2::consume_o2 --args object(6,0) mutated: object(0,0) deleted: object(6,0) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 2226800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 2226800, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/shared/by_value_shared_object_deletion_via_make_move_vec.exp b/crates/iota-adapter-transactional-tests/tests/shared/by_value_shared_object_deletion_via_make_move_vec.exp index 9f48696258f..4f5d9795799 100644 --- a/crates/iota-adapter-transactional-tests/tests/shared/by_value_shared_object_deletion_via_make_move_vec.exp +++ b/crates/iota-adapter-transactional-tests/tests/shared/by_value_shared_object_deletion_via_make_move_vec.exp @@ -4,19 +4,19 @@ task 1, lines 7-46: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 6916000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6916000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 48: //# run t2::o2::create created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2226800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2226800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 3, line 50: //# run t2::o2::create created: object(3,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2226800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2226800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 4, line 52: //# view-object 2,0 @@ -48,13 +48,13 @@ task 6, lines 57-59: //> 1: t2::o2::delete(Result(0)); mutated: object(0,0), object(2,0) deleted: object(3,0) -gas summary: computation_cost: 1000000, storage_cost: 2226800, storage_rebate: 3465600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2226800, storage_rebate: 3465600, non_refundable_storage_fee: 0 task 7, line 61: //# run t2::o2::mint_shared_coin created: object(7,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 1976000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 1976000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 8, lines 63-65: //# view-object 7,0 @@ -80,4 +80,4 @@ task 9, lines 66-71: //> 4: t2::o2::share_coin(Result(1)); created: object(9,0) mutated: object(0,0), object(7,0) -gas summary: computation_cost: 1000000, storage_cost: 2964000, storage_rebate: 1976000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2964000, storage_rebate: 1976000, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/shared/by_value_shared_object_deletion_via_make_move_vec_fails.exp b/crates/iota-adapter-transactional-tests/tests/shared/by_value_shared_object_deletion_via_make_move_vec_fails.exp index 49333459026..eea4c44e26e 100644 --- a/crates/iota-adapter-transactional-tests/tests/shared/by_value_shared_object_deletion_via_make_move_vec_fails.exp +++ b/crates/iota-adapter-transactional-tests/tests/shared/by_value_shared_object_deletion_via_make_move_vec_fails.exp @@ -4,19 +4,19 @@ task 1, lines 7-98: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 10959200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 10959200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 100: //# run t2::o2::create created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2226800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2226800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 3, line 102: //# run t2::o2::create created: object(3,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2226800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2226800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 4, line 104: //# view-object 2,0 @@ -122,7 +122,7 @@ task 15, line 158: //# run t2::o2::mint_shared_coin created: object(15,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 1976000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 1976000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 16, lines 160-163: //# view-object 15,0 diff --git a/crates/iota-adapter-transactional-tests/tests/shared/by_value_shared_object_deletion_via_merge.exp b/crates/iota-adapter-transactional-tests/tests/shared/by_value_shared_object_deletion_via_merge.exp index 330c8193b5f..578530d40c8 100644 --- a/crates/iota-adapter-transactional-tests/tests/shared/by_value_shared_object_deletion_via_merge.exp +++ b/crates/iota-adapter-transactional-tests/tests/shared/by_value_shared_object_deletion_via_merge.exp @@ -7,19 +7,19 @@ task 1, lines 14-61: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 9279600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 9279600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 63: //# run t2::o2::mint_shared_coin created: object(2,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 1976000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 1976000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 3, line 65: //# run t2::o2::mint_owned_coin created: object(3,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 1976000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 1976000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 4, line 67: //# view-object 2,0 @@ -58,25 +58,25 @@ task 6, lines 73-77: // **Merge owned into shared** mutated: object(0,0), object(3,0) deleted: object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 1976000, storage_rebate: 1976000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 1976000, storage_rebate: 1976000, non_refundable_storage_fee: 0 task 7, line 79: //# run t2::o2::mint_owned_coin created: object(7,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 1976000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 1976000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 8, line 81: //# run t2::o2::mint_shared_coin created: object(8,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 1976000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 1976000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 9, line 83: //# run t2::o2::mint_shared_obj created: object(9,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2226800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2226800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 10, line 85: //# view-object 7,0 @@ -127,25 +127,25 @@ task 13, lines 92-96: // **Merge shared into shared** mutated: object(0,0), object(9,0) deleted: object(7,0), object(8,0) -gas summary: computation_cost: 1000000, storage_cost: 2226800, storage_rebate: 4202800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2226800, storage_rebate: 4202800, non_refundable_storage_fee: 0 task 14, line 98: //# run t2::o2::mint_shared_coin created: object(14,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 1976000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 1976000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 15, line 100: //# run t2::o2::mint_shared_coin created: object(15,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 1976000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 1976000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 16, line 102: //# run t2::o2::mint_shared_obj created: object(16,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2226800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2226800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 17, line 104: //# view-object 14,0 @@ -195,4 +195,4 @@ task 20, lines 111-113: //> 1: t2::o2::deleter(Input(1)); mutated: object(0,0), object(16,0) deleted: object(14,0), object(15,0) -gas summary: computation_cost: 1000000, storage_cost: 2226800, storage_rebate: 4202800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2226800, storage_rebate: 4202800, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/shared/by_value_shared_object_deletion_via_merge_fails.exp b/crates/iota-adapter-transactional-tests/tests/shared/by_value_shared_object_deletion_via_merge_fails.exp index a49ae3a5067..1da2158576e 100644 --- a/crates/iota-adapter-transactional-tests/tests/shared/by_value_shared_object_deletion_via_merge_fails.exp +++ b/crates/iota-adapter-transactional-tests/tests/shared/by_value_shared_object_deletion_via_merge_fails.exp @@ -7,25 +7,25 @@ task 1, lines 14-63: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 9279600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 9279600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 65: //# run t2::o2::mint_owned_coin created: object(2,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 1976000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 1976000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 3, line 67: //# run t2::o2::mint_shared_coin created: object(3,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 1976000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 1976000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 4, line 69: //# run t2::o2::mint_shared_obj created: object(4,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2226800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2226800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 5, line 71: //# view-object 2,0 @@ -113,19 +113,19 @@ task 13, line 104: //# run t2::o2::mint_shared_coin created: object(13,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 1976000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 1976000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 14, line 106: //# run t2::o2::mint_shared_coin created: object(14,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 1976000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 1976000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 15, line 108: //# run t2::o2::mint_shared_obj created: object(15,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2226800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2226800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 16, line 110: //# view-object 13,0 diff --git a/crates/iota-adapter-transactional-tests/tests/shared/by_value_shared_object_deletion_via_move_call.exp b/crates/iota-adapter-transactional-tests/tests/shared/by_value_shared_object_deletion_via_move_call.exp index 7b9c5bb6f0e..0cef6b84983 100644 --- a/crates/iota-adapter-transactional-tests/tests/shared/by_value_shared_object_deletion_via_move_call.exp +++ b/crates/iota-adapter-transactional-tests/tests/shared/by_value_shared_object_deletion_via_move_call.exp @@ -4,19 +4,19 @@ task 1, lines 7-36: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 6399200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6399200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 38: //# run t2::o2::create created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2226800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2226800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 3, line 40: //# run t2::o2::create created: object(3,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2226800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2226800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 4, line 42: //# view-object 2,0 @@ -48,13 +48,13 @@ task 6, lines 47-49: //> 1: t2::o2::deleter(Result(0)); mutated: object(0,0), object(2,0) deleted: object(3,0) -gas summary: computation_cost: 1000000, storage_cost: 2226800, storage_rebate: 3465600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2226800, storage_rebate: 3465600, non_refundable_storage_fee: 0 task 7, line 51: //# run t2::o2::mint_shared_coin created: object(7,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 1976000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 1976000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 8, lines 53-55: //# view-object 7,0 @@ -80,7 +80,7 @@ task 9, lines 56-62: // Try to call public_share_object directly -- this should work because the coin has `store`. created: object(9,0) mutated: object(0,0), object(7,0) -gas summary: computation_cost: 1000000, storage_cost: 2964000, storage_rebate: 1976000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2964000, storage_rebate: 1976000, non_refundable_storage_fee: 0 task 10, lines 63-67: //# programmable --inputs 0 object(7,0) @0x0 @@ -90,4 +90,4 @@ task 10, lines 63-67: //> 3: iota::transfer::public_share_object>(Result(0)); created: object(10,0) mutated: object(0,0), object(7,0) -gas summary: computation_cost: 1000000, storage_cost: 2964000, storage_rebate: 1976000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2964000, storage_rebate: 1976000, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/shared/by_value_shared_object_deletion_via_move_call_fails.exp b/crates/iota-adapter-transactional-tests/tests/shared/by_value_shared_object_deletion_via_move_call_fails.exp index 86eb70910d6..d4f42e37cf4 100644 --- a/crates/iota-adapter-transactional-tests/tests/shared/by_value_shared_object_deletion_via_move_call_fails.exp +++ b/crates/iota-adapter-transactional-tests/tests/shared/by_value_shared_object_deletion_via_move_call_fails.exp @@ -4,19 +4,19 @@ task 1, lines 7-58: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 8884400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 8884400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 60: //# run t2::o2::create created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2226800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2226800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 3, line 62: //# run t2::o2::create created: object(3,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2226800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2226800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 4, line 64: //# view-object 2,0 @@ -77,7 +77,7 @@ task 10, line 88: //# run t2::o2::mint_shared_coin created: object(10,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 1976000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 1976000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 11, lines 90-92: //# view-object 10,0 diff --git a/crates/iota-adapter-transactional-tests/tests/shared/freeze.exp b/crates/iota-adapter-transactional-tests/tests/shared/freeze.exp index d1ac09ef322..18e556ec33f 100644 --- a/crates/iota-adapter-transactional-tests/tests/shared/freeze.exp +++ b/crates/iota-adapter-transactional-tests/tests/shared/freeze.exp @@ -4,13 +4,13 @@ task 1, lines 9-26: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5396000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5396000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 28: //# run t2::o2::create created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2226800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2226800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 3, line 30: //# view-object 2,0 diff --git a/crates/iota-adapter-transactional-tests/tests/shared/re_share.exp b/crates/iota-adapter-transactional-tests/tests/shared/re_share.exp index b73c53d182d..f223de9338f 100644 --- a/crates/iota-adapter-transactional-tests/tests/shared/re_share.exp +++ b/crates/iota-adapter-transactional-tests/tests/shared/re_share.exp @@ -4,13 +4,13 @@ task 1, lines 9-30: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5882400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5882400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 32: //# run t2::o2::create created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2226800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2226800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 3, line 34: //# view-object 2,0 @@ -27,7 +27,7 @@ Contents: t2::o2::Obj2 { task 4, line 36: //# run t2::o2::mut_o2 --args object(2,0) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2226800, storage_rebate: 2226800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2226800, storage_rebate: 2226800, non_refundable_storage_fee: 0 task 5, line 38: //# view-object 2,0 @@ -44,7 +44,7 @@ Contents: t2::o2::Obj2 { task 6, line 40: //# run t2::o2::re_share_o2 --args object(2,0) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2226800, storage_rebate: 2226800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2226800, storage_rebate: 2226800, non_refundable_storage_fee: 0 task 7, line 42: //# view-object 2,0 @@ -61,7 +61,7 @@ Contents: t2::o2::Obj2 { task 8, line 44: //# run t2::o2::re_share_non_public_o2 --args object(2,0) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2226800, storage_rebate: 2226800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2226800, storage_rebate: 2226800, non_refundable_storage_fee: 0 task 9, line 46: //# view-object 2,0 @@ -78,7 +78,7 @@ Contents: t2::o2::Obj2 { task 10, line 48: //# run t2::o2::mut_o2 --args object(2,0) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2226800, storage_rebate: 2226800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2226800, storage_rebate: 2226800, non_refundable_storage_fee: 0 task 11, line 50: //# view-object 2,0 diff --git a/crates/iota-adapter-transactional-tests/tests/shared/transfer.exp b/crates/iota-adapter-transactional-tests/tests/shared/transfer.exp index 3c794da2942..c8814374c4d 100644 --- a/crates/iota-adapter-transactional-tests/tests/shared/transfer.exp +++ b/crates/iota-adapter-transactional-tests/tests/shared/transfer.exp @@ -4,13 +4,13 @@ task 1, lines 10-25: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5654400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5654400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 27: //# run t2::o2::create created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2226800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2226800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 3, line 29: //# view-object 2,0 diff --git a/crates/iota-adapter-transactional-tests/tests/shared/upgrade.exp b/crates/iota-adapter-transactional-tests/tests/shared/upgrade.exp index 22f2e7ce19c..94b8cbfdeaf 100644 --- a/crates/iota-adapter-transactional-tests/tests/shared/upgrade.exp +++ b/crates/iota-adapter-transactional-tests/tests/shared/upgrade.exp @@ -7,13 +7,13 @@ task 1, lines 9-37: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 7440400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7440400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 39: //# run t::m::create --sender A created: object(2,0), object(2,1), object(2,2), object(2,3) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 7835600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7835600, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 41: //# view-object 2,2 diff --git a/crates/iota-adapter-transactional-tests/tests/shared/wrap.exp b/crates/iota-adapter-transactional-tests/tests/shared/wrap.exp index 65a1b993ec1..5bdf81e6109 100644 --- a/crates/iota-adapter-transactional-tests/tests/shared/wrap.exp +++ b/crates/iota-adapter-transactional-tests/tests/shared/wrap.exp @@ -4,13 +4,13 @@ task 1, lines 9-28: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 6064800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6064800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 31: //# run t2::o2::create created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2226800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2226800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 3, line 33: //# view-object 2,0 diff --git a/crates/iota-adapter-transactional-tests/tests/size_limits/deleted_id_limits_tests.exp b/crates/iota-adapter-transactional-tests/tests/size_limits/deleted_id_limits_tests.exp index f355e9b912a..2245e08ce01 100644 --- a/crates/iota-adapter-transactional-tests/tests/size_limits/deleted_id_limits_tests.exp +++ b/crates/iota-adapter-transactional-tests/tests/size_limits/deleted_id_limits_tests.exp @@ -4,22 +4,22 @@ task 1, lines 9-33: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5259200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5259200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 34-36: //# run Test::M1::delete_n_ids --args 1 --gas-budget 100000000000000 mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 3, lines 37-39: //# run Test::M1::delete_n_ids --args 256 --gas-budget 100000000000000 mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 4, lines 40-42: //# run Test::M1::delete_n_ids --args 2048 --gas-budget 100000000000000 mutated: object(0,0) -gas summary: computation_cost: 5000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 5000000, computation_cost_burned: 5000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 5, lines 43-45: //# run Test::M1::delete_n_ids --args 2049 --gas-budget 100000000000000 diff --git a/crates/iota-adapter-transactional-tests/tests/size_limits/event_limits_tests.exp b/crates/iota-adapter-transactional-tests/tests/size_limits/event_limits_tests.exp index 5f3ada9eaa4..a8cca67ed3f 100644 --- a/crates/iota-adapter-transactional-tests/tests/size_limits/event_limits_tests.exp +++ b/crates/iota-adapter-transactional-tests/tests/size_limits/event_limits_tests.exp @@ -4,19 +4,19 @@ task 1, lines 9-56: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 7311200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7311200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 57-59: //# run Test::M1::emit_n_small_events --args 1 --gas-budget 100000000000000 --summarize events: 1 mutated: 1 -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 3, lines 60-62: //# run Test::M1::emit_n_small_events --args 1024 --gas-budget 100000000000000 --summarize events: 50 mutated: 1 -gas summary: computation_cost: 3000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 3000000, computation_cost_burned: 3000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 4, lines 63-65: //# run Test::M1::emit_n_small_events --args 1025 --gas-budget 100000000000000 @@ -32,13 +32,13 @@ task 6, lines 69-71: //# run Test::M1::emit_event_with_size --args 200000 --gas-budget 100000000000000 --summarize events: 1 mutated: 1 -gas summary: computation_cost: 1394000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1394000000, computation_cost_burned: 1394000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 7, lines 72-74: //# run Test::M1::emit_event_with_size --args 256000 --gas-budget 100000000000000 --summarize events: 1 mutated: 1 -gas summary: computation_cost: 1815000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1815000000, computation_cost_burned: 1815000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 8, lines 75-77: //# run Test::M1::emit_event_with_size --args 256001 --gas-budget 100000000000000 --summarize diff --git a/crates/iota-adapter-transactional-tests/tests/size_limits/event_limits_tests_out_of_gas.exp b/crates/iota-adapter-transactional-tests/tests/size_limits/event_limits_tests_out_of_gas.exp index 541f40887d0..7fbe0a87239 100644 --- a/crates/iota-adapter-transactional-tests/tests/size_limits/event_limits_tests_out_of_gas.exp +++ b/crates/iota-adapter-transactional-tests/tests/size_limits/event_limits_tests_out_of_gas.exp @@ -4,7 +4,7 @@ task 1, lines 9-67: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 7919200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7919200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 68-70: //# run Test::M1::emit_n_small_events --args 1025 --gas-budget 1000000000 diff --git a/crates/iota-adapter-transactional-tests/tests/size_limits/identitifer_len_limits.exp b/crates/iota-adapter-transactional-tests/tests/size_limits/identitifer_len_limits.exp index 684d684e1db..97b88919ec6 100644 --- a/crates/iota-adapter-transactional-tests/tests/size_limits/identitifer_len_limits.exp +++ b/crates/iota-adapter-transactional-tests/tests/size_limits/identitifer_len_limits.exp @@ -14,4 +14,4 @@ task 3, lines 27-48: //# publish created: object(3,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 6095200, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6095200, storage_rebate: 988000, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/size_limits/move_object_size_limit.exp b/crates/iota-adapter-transactional-tests/tests/size_limits/move_object_size_limit.exp index 26fe242efbe..c22ada461b2 100644 --- a/crates/iota-adapter-transactional-tests/tests/size_limits/move_object_size_limit.exp +++ b/crates/iota-adapter-transactional-tests/tests/size_limits/move_object_size_limit.exp @@ -7,7 +7,7 @@ task 1, lines 9-79: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 9933200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 9933200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 80-82: //# run Test::M1::transfer_object_with_size --args 256001 --sender A --gas-budget 10000000000000 @@ -18,10 +18,10 @@ task 3, lines 83-85: //# run Test::M1::transfer_object_with_size --args 255999 --sender A --gas-budget 100000000000000 created: object(3,0) mutated: object(0,0) -gas summary: computation_cost: 1864000000, storage_cost: 1947553200, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1864000000, computation_cost_burned: 1864000000, storage_cost: 1947553200, storage_rebate: 988000, non_refundable_storage_fee: 0 task 4, line 86: //# run Test::M1::transfer_object_with_size --args 256000 --sender A --gas-budget 100000000000000 created: object(4,0) mutated: object(0,0) -gas summary: computation_cost: 1864000000, storage_cost: 1947560800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1864000000, computation_cost_burned: 1864000000, storage_cost: 1947560800, storage_rebate: 988000, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/size_limits/new_id_limits_tests.exp b/crates/iota-adapter-transactional-tests/tests/size_limits/new_id_limits_tests.exp index efe386a2e16..1b08a764e24 100644 --- a/crates/iota-adapter-transactional-tests/tests/size_limits/new_id_limits_tests.exp +++ b/crates/iota-adapter-transactional-tests/tests/size_limits/new_id_limits_tests.exp @@ -4,22 +4,22 @@ task 1, lines 9-34: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5259200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5259200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 35-37: //# run Test::M1::create_n_ids --args 1 --gas-budget 100000000000000 mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 3, lines 38-40: //# run Test::M1::create_n_ids --args 256 --gas-budget 100000000000000 mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 4, lines 41-43: //# run Test::M1::create_n_ids --args 2048 --gas-budget 100000000000000 mutated: object(0,0) -gas summary: computation_cost: 5000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 5000000, computation_cost_burned: 5000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 5, lines 44-46: //# run Test::M1::create_n_ids --args 2049 --gas-budget 100000000000000 diff --git a/crates/iota-adapter-transactional-tests/tests/size_limits/object_runtime_limits.exp b/crates/iota-adapter-transactional-tests/tests/size_limits/object_runtime_limits.exp index cdfd39cac05..32e067082a6 100644 --- a/crates/iota-adapter-transactional-tests/tests/size_limits/object_runtime_limits.exp +++ b/crates/iota-adapter-transactional-tests/tests/size_limits/object_runtime_limits.exp @@ -7,19 +7,19 @@ task 1, lines 8-27: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 5821600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5821600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 29: //# run a::m::add_n_items --sender A --args 100 --gas-budget 1000000000000 --summarize created: 200 mutated: 1 -gas summary: computation_cost: 1000000, storage_cost: 270028000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 270028000, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 31: //# run a::m::add_n_items --sender A --args 1000 --gas-budget 1000000000000 --summarize created: 2000 mutated: 1 -gas summary: computation_cost: 7000000, storage_cost: 2691388000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 7000000, computation_cost_burned: 7000000, storage_cost: 2691388000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 4, line 33: //# run a::m::add_n_items --sender A --args 1025 --gas-budget 1000000000000 diff --git a/crates/iota-adapter-transactional-tests/tests/size_limits/transfered_id_limits_tests.exp b/crates/iota-adapter-transactional-tests/tests/size_limits/transfered_id_limits_tests.exp index 64eb1b19fb5..250c53e073a 100644 --- a/crates/iota-adapter-transactional-tests/tests/size_limits/transfered_id_limits_tests.exp +++ b/crates/iota-adapter-transactional-tests/tests/size_limits/transfered_id_limits_tests.exp @@ -4,25 +4,25 @@ task 1, lines 9-33: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5578400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5578400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 34-36: //# run Test::M1::transfer_n_ids --args 1 --gas-budget 100000000000000 --summarize created: 1 mutated: 1 -gas summary: computation_cost: 1000000, storage_cost: 2219200, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2219200, storage_rebate: 988000, non_refundable_storage_fee: 0 task 3, lines 37-39: //# run Test::M1::transfer_n_ids --args 256 --gas-budget 100000000000000 --summarize created: 256 mutated: 1 -gas summary: computation_cost: 1000000, storage_cost: 316175200, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 316175200, storage_rebate: 988000, non_refundable_storage_fee: 0 task 4, lines 40-42: //# run Test::M1::transfer_n_ids --args 2048 --gas-budget 100000000000000 --summarize created: 2048 mutated: 1 -gas summary: computation_cost: 4000000, storage_cost: 2522485600, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 4000000, computation_cost_burned: 4000000, storage_cost: 2522485600, storage_rebate: 988000, non_refundable_storage_fee: 0 task 5, lines 43-45: //# run Test::M1::transfer_n_ids --args 2049 --gas-budget 100000000000000 diff --git a/crates/iota-adapter-transactional-tests/tests/size_limits/vector_len_limits.exp b/crates/iota-adapter-transactional-tests/tests/size_limits/vector_len_limits.exp index af275d7dc39..790de1e0e07 100644 --- a/crates/iota-adapter-transactional-tests/tests/size_limits/vector_len_limits.exp +++ b/crates/iota-adapter-transactional-tests/tests/size_limits/vector_len_limits.exp @@ -4,22 +4,22 @@ task 1, lines 9-32: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4316800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4316800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 33-35: //# run Test::M1::push_n_items --args 1 --gas-budget 100000000000000 mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 3, lines 36-38: //# run Test::M1::push_n_items --args 256 --gas-budget 100000000000000 mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 4, lines 39-41: //# run Test::M1::push_n_items --args 262144 --gas-budget 100000000000000 mutated: object(0,0) -gas summary: computation_cost: 4088000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 4088000000, computation_cost_burned: 4088000000, storage_cost: 988000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 5, line 42: //# run Test::M1::push_n_items --args 262145 --gas-budget 100000000000000 diff --git a/crates/iota-adapter-transactional-tests/tests/transfer_object/does_not_have_store.exp b/crates/iota-adapter-transactional-tests/tests/transfer_object/does_not_have_store.exp index bf146006e6a..b45040a11ff 100644 --- a/crates/iota-adapter-transactional-tests/tests/transfer_object/does_not_have_store.exp +++ b/crates/iota-adapter-transactional-tests/tests/transfer_object/does_not_have_store.exp @@ -7,13 +7,13 @@ task 1, lines 9-26: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 5783600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5783600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 28: //# run test::m::mint_s --sender A created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2196400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2196400, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 30: //# view-object 2,0 @@ -48,7 +48,7 @@ task 6, line 39: //# run test::m::mint_cup --type-args test::m::S --sender A created: object(6,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2500400, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2500400, storage_rebate: 988000, non_refundable_storage_fee: 0 task 7, line 41: //# view-object 6,0 diff --git a/crates/iota-adapter-transactional-tests/tests/transfer_object/does_not_have_store_receive.exp b/crates/iota-adapter-transactional-tests/tests/transfer_object/does_not_have_store_receive.exp index 94f5968e3cb..3c80b35f056 100644 --- a/crates/iota-adapter-transactional-tests/tests/transfer_object/does_not_have_store_receive.exp +++ b/crates/iota-adapter-transactional-tests/tests/transfer_object/does_not_have_store_receive.exp @@ -7,13 +7,13 @@ task 1, lines 10-78: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 9659600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 9659600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 80: //# run test::m::mint_s --sender A created: object(2,0), object(2,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3442800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3442800, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 82: //# view-object 2,0 @@ -45,13 +45,13 @@ task 5, lines 86-88: //> 1: test::m::destroy_s(Result(0)); mutated: object(0,0), object(2,0) deleted: object(2,1) -gas summary: computation_cost: 1000000, storage_cost: 2234400, storage_rebate: 3442800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2234400, storage_rebate: 3442800, non_refundable_storage_fee: 0 task 6, line 90: //# run test::m::mint_cup --sender A --type-args u64 created: object(6,0), object(6,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3465600, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3465600, storage_rebate: 988000, non_refundable_storage_fee: 0 task 7, line 92: //# view-object 6,0 @@ -84,13 +84,13 @@ task 9, lines 96-100: // Try to directly call `public_receive` and `receive` on an object without public transfer. mutated: object(0,0), object(6,1) deleted: object(6,0) -gas summary: computation_cost: 1000000, storage_cost: 2234400, storage_rebate: 3465600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2234400, storage_rebate: 3465600, non_refundable_storage_fee: 0 task 10, line 102: //# run test::m::mint_s --sender A created: object(10,0), object(10,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3442800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3442800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 11, line 104: //# view-object 10,0 @@ -137,7 +137,7 @@ task 15, line 120: //# run test::m::mint_store --sender A created: object(15,0), object(15,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3473200, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3473200, storage_rebate: 988000, non_refundable_storage_fee: 0 task 16, line 122: //# view-object 15,0 @@ -179,4 +179,4 @@ task 19, lines 131-135: //> 3: iota::object::delete(Result(0)); mutated: object(0,0) deleted: object(15,0), object(15,1) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 3473200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 3473200, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/transfer_object/has_store.exp b/crates/iota-adapter-transactional-tests/tests/transfer_object/has_store.exp index 655420ec4a9..38c3a4f4f81 100644 --- a/crates/iota-adapter-transactional-tests/tests/transfer_object/has_store.exp +++ b/crates/iota-adapter-transactional-tests/tests/transfer_object/has_store.exp @@ -7,13 +7,13 @@ task 1, lines 9-26: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 5905200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5905200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 28: //# run test::m::mint_s --sender A created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2196400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2196400, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 30: //# view-object 2,0 @@ -30,7 +30,7 @@ Contents: test::m::S { task 4, line 32: //# transfer-object 2,0 --sender A --recipient B mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2196400, storage_rebate: 2196400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2196400, storage_rebate: 2196400, non_refundable_storage_fee: 0 task 5, lines 34-37: //# view-object 2,0 @@ -48,7 +48,7 @@ task 6, line 39: //# run test::m::mint_cup --type-args test::m::S --sender A created: object(6,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2500400, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2500400, storage_rebate: 988000, non_refundable_storage_fee: 0 task 7, line 41: //# view-object 6,0 @@ -65,7 +65,7 @@ Contents: test::m::Cup { task 8, line 43: //# transfer-object 6,0 --sender A --recipient B mutated: object(0,0), object(6,0) -gas summary: computation_cost: 1000000, storage_cost: 2500400, storage_rebate: 2500400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2500400, storage_rebate: 2500400, non_refundable_storage_fee: 0 task 9, line 45: //# view-object 6,0 diff --git a/crates/iota-adapter-transactional-tests/tests/transfer_object/immutable.exp b/crates/iota-adapter-transactional-tests/tests/transfer_object/immutable.exp index 8b12548022f..d57873839dc 100644 --- a/crates/iota-adapter-transactional-tests/tests/transfer_object/immutable.exp +++ b/crates/iota-adapter-transactional-tests/tests/transfer_object/immutable.exp @@ -7,13 +7,13 @@ task 1, lines 9-20: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 5365600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5365600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 22: //# run test::m::mint_s --sender A created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2196400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2196400, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 24: //# view-object 2,0 diff --git a/crates/iota-adapter-transactional-tests/tests/transfer_object/package.exp b/crates/iota-adapter-transactional-tests/tests/transfer_object/package.exp index 0847af555b2..efc1ffd82be 100644 --- a/crates/iota-adapter-transactional-tests/tests/transfer_object/package.exp +++ b/crates/iota-adapter-transactional-tests/tests/transfer_object/package.exp @@ -7,7 +7,7 @@ task 1, lines 9-11: //# publish --sender A created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3176800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3176800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 14: //# view-object 1,0 diff --git a/crates/iota-adapter-transactional-tests/tests/transfer_object/quasi_shared.exp b/crates/iota-adapter-transactional-tests/tests/transfer_object/quasi_shared.exp index a25b27d0f4b..4e763bd729c 100644 --- a/crates/iota-adapter-transactional-tests/tests/transfer_object/quasi_shared.exp +++ b/crates/iota-adapter-transactional-tests/tests/transfer_object/quasi_shared.exp @@ -7,19 +7,19 @@ task 1, lines 9-24: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 6148400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6148400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 26: //# run test::m::mint_s created: object(2,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 2196400, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2196400, storage_rebate: 988000, non_refundable_storage_fee: 0 task 3, line 28: //# run test::m::mint_child --args object(2,0) created: object(3,0), object(3,1) mutated: object(0,2), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 5890000, storage_rebate: 2196400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5890000, storage_rebate: 2196400, non_refundable_storage_fee: 0 task 4, line 30: //# view-object 3,0 diff --git a/crates/iota-adapter-transactional-tests/tests/transfer_object/shared.exp b/crates/iota-adapter-transactional-tests/tests/transfer_object/shared.exp index 241bfd34796..5c688ea0981 100644 --- a/crates/iota-adapter-transactional-tests/tests/transfer_object/shared.exp +++ b/crates/iota-adapter-transactional-tests/tests/transfer_object/shared.exp @@ -7,19 +7,19 @@ task 1, lines 9-26: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 5525200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5525200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 28: //# run test::m::mint_s created: object(2,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 2196400, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2196400, storage_rebate: 988000, non_refundable_storage_fee: 0 task 3, line 30: //# run test::m::mint_s2 created: object(3,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 2204000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2204000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 4, line 32: //# view-object 2,0 diff --git a/crates/iota-adapter-transactional-tests/tests/transfer_object/transfer_coin.exp b/crates/iota-adapter-transactional-tests/tests/transfer_object/transfer_coin.exp index b90242d6423..f0b4ecb61fc 100644 --- a/crates/iota-adapter-transactional-tests/tests/transfer_object/transfer_coin.exp +++ b/crates/iota-adapter-transactional-tests/tests/transfer_object/transfer_coin.exp @@ -7,7 +7,7 @@ task 1, lines 9-10: //# programmable --sender C --inputs @A //> TransferObjects([Gas], Input(0)) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 12: //# view-object 0,2 @@ -27,7 +27,7 @@ Contents: iota::coin::Coin { task 3, line 14: //# transfer-object 0,2 --sender A --recipient B mutated: object(0,0), object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 1976000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 1976000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 4, line 16: //# view-object 0,2 diff --git a/crates/iota-adapter-transactional-tests/tests/transfer_object/wrap_unwrap.exp b/crates/iota-adapter-transactional-tests/tests/transfer_object/wrap_unwrap.exp index e44eabe798f..fa6d8458901 100644 --- a/crates/iota-adapter-transactional-tests/tests/transfer_object/wrap_unwrap.exp +++ b/crates/iota-adapter-transactional-tests/tests/transfer_object/wrap_unwrap.exp @@ -7,13 +7,13 @@ task 1, lines 9-40: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 6224400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6224400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 42: //# run a::m::mint --sender A created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2196400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2196400, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 44: //# view-object 2,0 @@ -32,7 +32,7 @@ task 4, line 46: created: object(4,0) mutated: object(0,0) wrapped: object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2439600, storage_rebate: 2196400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2439600, storage_rebate: 2196400, non_refundable_storage_fee: 0 task 5, line 48: //# view-object 4,0 @@ -58,7 +58,7 @@ task 6, line 50: mutated: object(0,0) unwrapped: object(2,0) deleted: object(4,0) -gas summary: computation_cost: 1000000, storage_cost: 2196400, storage_rebate: 2439600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2196400, storage_rebate: 2439600, non_refundable_storage_fee: 0 task 7, line 52: //# view-object 2,0 diff --git a/crates/iota-adapter-transactional-tests/tests/upgrade/abort_code_resolution.exp b/crates/iota-adapter-transactional-tests/tests/upgrade/abort_code_resolution.exp index e122fb678ec..07a1c0738e9 100644 --- a/crates/iota-adapter-transactional-tests/tests/upgrade/abort_code_resolution.exp +++ b/crates/iota-adapter-transactional-tests/tests/upgrade/abort_code_resolution.exp @@ -7,19 +7,19 @@ task 1, lines 7-12: //# publish --upgradeable --sender A created: object(1,0), object(1,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5084400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5084400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 15-20: //# upgrade --package Test1 --upgrade-capability 1,1 --sender A created: object(2,0) mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 5084400, storage_rebate: 2622000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5084400, storage_rebate: 2622000, non_refundable_storage_fee: 0 task 3, lines 22-27: //# upgrade --package Test2 --upgrade-capability 1,1 --sender A created: object(3,0) mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 5084400, storage_rebate: 2622000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5084400, storage_rebate: 2622000, non_refundable_storage_fee: 0 task 4, lines 29-31: //# run Test1::M1::f1 diff --git a/crates/iota-adapter-transactional-tests/tests/upgrade/add_ability_during_upgrade.exp b/crates/iota-adapter-transactional-tests/tests/upgrade/add_ability_during_upgrade.exp index 3755cd39280..296ac3d7294 100644 --- a/crates/iota-adapter-transactional-tests/tests/upgrade/add_ability_during_upgrade.exp +++ b/crates/iota-adapter-transactional-tests/tests/upgrade/add_ability_during_upgrade.exp @@ -7,7 +7,7 @@ task 1, lines 7-11: //# publish --upgradeable --sender A created: object(1,0), object(1,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5388400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5388400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 13-19: //# upgrade --package Test_V0 --upgrade-capability 1,1 --sender A diff --git a/crates/iota-adapter-transactional-tests/tests/upgrade/add_ability_during_upgrade_enum.exp b/crates/iota-adapter-transactional-tests/tests/upgrade/add_ability_during_upgrade_enum.exp index 9df59ca7365..f18b584d446 100644 --- a/crates/iota-adapter-transactional-tests/tests/upgrade/add_ability_during_upgrade_enum.exp +++ b/crates/iota-adapter-transactional-tests/tests/upgrade/add_ability_during_upgrade_enum.exp @@ -7,7 +7,7 @@ task 1, lines 7-12: //# publish --upgradeable --sender A created: object(1,0), object(1,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5320000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5320000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 14-20: //# upgrade --package Test_V0 --upgrade-capability 1,1 --sender A diff --git a/crates/iota-adapter-transactional-tests/tests/upgrade/add_ability_during_upgrade_generics.exp b/crates/iota-adapter-transactional-tests/tests/upgrade/add_ability_during_upgrade_generics.exp index 26c40749223..62939712f61 100644 --- a/crates/iota-adapter-transactional-tests/tests/upgrade/add_ability_during_upgrade_generics.exp +++ b/crates/iota-adapter-transactional-tests/tests/upgrade/add_ability_during_upgrade_generics.exp @@ -7,7 +7,7 @@ task 1, lines 7-10: //# publish --upgradeable --sender A created: object(1,0), object(1,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5403600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5403600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 12-15: //# upgrade --package A0 --upgrade-capability 1,1 --sender A diff --git a/crates/iota-adapter-transactional-tests/tests/upgrade/add_ability_during_upgrade_generics_enum.exp b/crates/iota-adapter-transactional-tests/tests/upgrade/add_ability_during_upgrade_generics_enum.exp index 37cbeba5e3a..94d62118bda 100644 --- a/crates/iota-adapter-transactional-tests/tests/upgrade/add_ability_during_upgrade_generics_enum.exp +++ b/crates/iota-adapter-transactional-tests/tests/upgrade/add_ability_during_upgrade_generics_enum.exp @@ -7,7 +7,7 @@ task 1, lines 7-10: //# publish --upgradeable --sender A created: object(1,0), object(1,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5335200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5335200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 12-15: //# upgrade --package A0 --upgrade-capability 1,1 --sender A diff --git a/crates/iota-adapter-transactional-tests/tests/upgrade/add_key_during_upgrade.exp b/crates/iota-adapter-transactional-tests/tests/upgrade/add_key_during_upgrade.exp index b0228ddf174..685a7de59a1 100644 --- a/crates/iota-adapter-transactional-tests/tests/upgrade/add_key_during_upgrade.exp +++ b/crates/iota-adapter-transactional-tests/tests/upgrade/add_key_during_upgrade.exp @@ -7,7 +7,7 @@ task 1, lines 7-15: //# publish --upgradeable --sender A created: object(1,0), object(1,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 6102800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6102800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 17-25: //# upgrade --package Test_V0 --upgrade-capability 1,1 --sender A diff --git a/crates/iota-adapter-transactional-tests/tests/upgrade/add_new_type_with_key.exp b/crates/iota-adapter-transactional-tests/tests/upgrade/add_new_type_with_key.exp index ab8e749e95d..70b3e52c11b 100644 --- a/crates/iota-adapter-transactional-tests/tests/upgrade/add_new_type_with_key.exp +++ b/crates/iota-adapter-transactional-tests/tests/upgrade/add_new_type_with_key.exp @@ -7,10 +7,10 @@ task 1, lines 7-12: //# publish --upgradeable --sender A created: object(1,0), object(1,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5700000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5700000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 14-22: //# upgrade --package Test_V0 --upgrade-capability 1,1 --sender A created: object(2,0) mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 6102800, storage_rebate: 2622000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6102800, storage_rebate: 2622000, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/upgrade/basic.exp b/crates/iota-adapter-transactional-tests/tests/upgrade/basic.exp index 1a0baa8247d..0e0bb412726 100644 --- a/crates/iota-adapter-transactional-tests/tests/upgrade/basic.exp +++ b/crates/iota-adapter-transactional-tests/tests/upgrade/basic.exp @@ -7,7 +7,7 @@ task 1, lines 7-11: //# publish --upgradeable --sender A created: object(1,0), object(1,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5646800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5646800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 13-16: //# upgrade --package Test --upgrade-capability 1,1 --sender A diff --git a/crates/iota-adapter-transactional-tests/tests/upgrade/constants.exp b/crates/iota-adapter-transactional-tests/tests/upgrade/constants.exp index a0114b52ccc..500eb19d875 100644 --- a/crates/iota-adapter-transactional-tests/tests/upgrade/constants.exp +++ b/crates/iota-adapter-transactional-tests/tests/upgrade/constants.exp @@ -7,19 +7,19 @@ task 1, lines 7-17: //# publish --upgradeable --sender A created: object(1,0), object(1,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5928000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5928000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 19-29: //# upgrade --package V0 --upgrade-capability 1,1 --sender A --policy compatible created: object(2,0) mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 5928000, storage_rebate: 2622000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5928000, storage_rebate: 2622000, non_refundable_storage_fee: 0 task 3, lines 31-43: //# upgrade --package V1 --upgrade-capability 1,1 --sender A --policy additive created: object(3,0) mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 5928000, storage_rebate: 2622000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5928000, storage_rebate: 2622000, non_refundable_storage_fee: 0 task 4, lines 45-55: //# upgrade --package V2 --upgrade-capability 1,1 --sender A --policy additive @@ -35,22 +35,22 @@ task 6, lines 70-88: //# upgrade --package V2 --upgrade-capability 1,1 --sender A --policy additive created: object(6,0) mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 6368800, storage_rebate: 2622000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6368800, storage_rebate: 2622000, non_refundable_storage_fee: 0 task 7, lines 89-104: //# upgrade --package V3 --upgrade-capability 1,1 --sender A --policy additive created: object(7,0) mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 6292800, storage_rebate: 2622000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6292800, storage_rebate: 2622000, non_refundable_storage_fee: 0 task 8, lines 105-119: //# upgrade --package V4 --upgrade-capability 1,1 --sender A --policy dep_only created: object(8,0) mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 6209200, storage_rebate: 2622000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6209200, storage_rebate: 2622000, non_refundable_storage_fee: 0 task 9, lines 120-133: //# upgrade --package V5 --upgrade-capability 1,1 --sender A --policy dep_only created: object(9,0) mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 6292800, storage_rebate: 2622000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6292800, storage_rebate: 2622000, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/upgrade/dep_override.exp b/crates/iota-adapter-transactional-tests/tests/upgrade/dep_override.exp index ce5e264dbff..e4b7087320c 100644 --- a/crates/iota-adapter-transactional-tests/tests/upgrade/dep_override.exp +++ b/crates/iota-adapter-transactional-tests/tests/upgrade/dep_override.exp @@ -7,55 +7,55 @@ task 1, lines 11-19: //# publish --upgradeable --sender A created: object(1,0), object(1,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 6809600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6809600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 21-29: //# upgrade --package Test_DepDepV1 --upgrade-capability 1,1 --sender A created: object(2,0) mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 6809600, storage_rebate: 2622000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6809600, storage_rebate: 2622000, non_refundable_storage_fee: 0 task 3, lines 31-42: //# upgrade --package Test_DepDepV2 --upgrade-capability 1,1 --sender A created: object(3,0) mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 6809600, storage_rebate: 2622000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6809600, storage_rebate: 2622000, non_refundable_storage_fee: 0 task 4, lines 45-50: //# publish --upgradeable --dependencies Test_DepDepV1 --sender A created: object(4,0), object(4,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 6551200, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6551200, storage_rebate: 988000, non_refundable_storage_fee: 0 task 5, lines 52-60: //# upgrade --package Test_DepV1 --upgrade-capability 4,1 --dependencies Test_DepDepV2 --sender A created: object(5,0) mutated: object(0,0), object(4,1) -gas summary: computation_cost: 1000000, storage_cost: 6551200, storage_rebate: 2622000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6551200, storage_rebate: 2622000, non_refundable_storage_fee: 0 task 6, lines 63-70: //# publish --upgradeable --dependencies Test_DepV1 Test_DepDepV1 --sender A created: object(6,0), object(6,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 7030000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7030000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 7, lines 72-79: //# upgrade --package Test_V1 --upgrade-capability 6,1 --dependencies Test_DepV2 Test_DepDepV2 --sender A created: object(7,0) mutated: object(0,0), object(6,1) -gas summary: computation_cost: 1000000, storage_cost: 7030000, storage_rebate: 2622000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7030000, storage_rebate: 2622000, non_refundable_storage_fee: 0 task 8, lines 81-86: //# upgrade --package Test_V2 --upgrade-capability 6,1 --dependencies Test_DepV1 Test_DepDepV3 --sender A created: object(8,0) mutated: object(0,0), object(6,1) -gas summary: computation_cost: 1000000, storage_cost: 7030000, storage_rebate: 2622000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7030000, storage_rebate: 2622000, non_refundable_storage_fee: 0 task 9, line 88: //# run Test_V1::M1::baz created: object(9,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2325600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2325600, storage_rebate: 0, non_refundable_storage_fee: 0 task 10, line 90: //# view-object 9,0 @@ -74,7 +74,7 @@ task 11, line 92: //# run Test_V2::M1::baz created: object(11,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2325600, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2325600, storage_rebate: 988000, non_refundable_storage_fee: 0 task 12, line 94: //# view-object 11,0 @@ -93,7 +93,7 @@ task 13, line 96: //# run Test_V3::M1::baz created: object(13,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2325600, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2325600, storage_rebate: 988000, non_refundable_storage_fee: 0 task 14, lines 98-101: //# view-object 13,0 @@ -114,7 +114,7 @@ task 15, lines 102-104: //> 1: Test_V3::M1::baz(); created: object(15,0), object(15,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3663200, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3663200, storage_rebate: 988000, non_refundable_storage_fee: 0 task 16, line 106: //# view-object 15,0 diff --git a/crates/iota-adapter-transactional-tests/tests/upgrade/enum_struct_swap.exp b/crates/iota-adapter-transactional-tests/tests/upgrade/enum_struct_swap.exp index 4156e0d60a7..46744369159 100644 --- a/crates/iota-adapter-transactional-tests/tests/upgrade/enum_struct_swap.exp +++ b/crates/iota-adapter-transactional-tests/tests/upgrade/enum_struct_swap.exp @@ -7,7 +7,7 @@ task 1, lines 7-17: //# publish --upgradeable --sender A created: object(1,0), object(1,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5928000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5928000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 19-27: //# upgrade --package Test_V0 --upgrade-capability 1,1 --sender A diff --git a/crates/iota-adapter-transactional-tests/tests/upgrade/enums.exp b/crates/iota-adapter-transactional-tests/tests/upgrade/enums.exp index 05798a18c52..1b4b5176417 100644 --- a/crates/iota-adapter-transactional-tests/tests/upgrade/enums.exp +++ b/crates/iota-adapter-transactional-tests/tests/upgrade/enums.exp @@ -7,7 +7,7 @@ task 1, lines 7-17: //# publish --upgradeable --sender A created: object(1,0), object(1,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5928000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5928000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 19-29: //# upgrade --package Test_V0 --upgrade-capability 1,1 --sender A diff --git a/crates/iota-adapter-transactional-tests/tests/upgrade/friend_fun_changes.exp b/crates/iota-adapter-transactional-tests/tests/upgrade/friend_fun_changes.exp index 803ab3ba7ea..23752b3f309 100644 --- a/crates/iota-adapter-transactional-tests/tests/upgrade/friend_fun_changes.exp +++ b/crates/iota-adapter-transactional-tests/tests/upgrade/friend_fun_changes.exp @@ -7,36 +7,36 @@ task 1, lines 7-21: //# publish --upgradeable --sender A created: object(1,0), object(1,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 7668400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7668400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 22-36: //# upgrade --package V0 --upgrade-capability 1,1 --sender A created: object(2,0) mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 7683600, storage_rebate: 2622000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7683600, storage_rebate: 2622000, non_refundable_storage_fee: 0 task 3, lines 37-61: //# upgrade --package V1 --upgrade-capability 1,1 --sender A created: object(3,0) mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 8907200, storage_rebate: 2622000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 8907200, storage_rebate: 2622000, non_refundable_storage_fee: 0 task 4, lines 62-84: //# upgrade --package V2 --upgrade-capability 1,1 --sender A created: object(4,0) mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 9834400, storage_rebate: 2622000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 9834400, storage_rebate: 2622000, non_refundable_storage_fee: 0 task 5, line 86: //# run V3::friend_module::call_friend mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 0, non_refundable_storage_fee: 0 task 6, line 88: //# run V3::friend_module::call_public created: object(6,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2432000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2432000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 7, line 90: //# view-object 6,0 diff --git a/crates/iota-adapter-transactional-tests/tests/upgrade/large_module_inclusion_checks.exp b/crates/iota-adapter-transactional-tests/tests/upgrade/large_module_inclusion_checks.exp index af048deaa3a..27e2ffac22f 100644 --- a/crates/iota-adapter-transactional-tests/tests/upgrade/large_module_inclusion_checks.exp +++ b/crates/iota-adapter-transactional-tests/tests/upgrade/large_module_inclusion_checks.exp @@ -7,7 +7,7 @@ task 1, lines 7-57: //# publish --upgradeable --sender A created: object(1,0), object(1,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 11308800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 11308800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 58-109: //# upgrade --package V0 --upgrade-capability 1,1 --sender A --policy dep_only @@ -23,7 +23,7 @@ task 4, lines 162-212: //# upgrade --package V0 --upgrade-capability 1,1 --sender A --policy additive created: object(4,0) mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 11308800, storage_rebate: 2622000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 11308800, storage_rebate: 2622000, non_refundable_storage_fee: 0 task 5, lines 213-265: //# upgrade --package V1 --upgrade-capability 1,1 --sender A --policy dep_only @@ -34,16 +34,16 @@ task 6, lines 266-318: //# upgrade --package V1 --upgrade-capability 1,1 --sender A --policy additive created: object(6,0) mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 12084000, storage_rebate: 2622000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 12084000, storage_rebate: 2622000, non_refundable_storage_fee: 0 task 7, lines 319-371: //# upgrade --package V2 --upgrade-capability 1,1 --sender A --policy dep_only created: object(7,0) mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 12084000, storage_rebate: 2622000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 12084000, storage_rebate: 2622000, non_refundable_storage_fee: 0 task 8, lines 372-422: //# upgrade --package V3 --upgrade-capability 1,1 --sender A --policy additive created: object(8,0) mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 12084000, storage_rebate: 2622000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 12084000, storage_rebate: 2622000, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/upgrade/linkage.exp b/crates/iota-adapter-transactional-tests/tests/upgrade/linkage.exp index e306045e9bd..ccf6e27e4a4 100644 --- a/crates/iota-adapter-transactional-tests/tests/upgrade/linkage.exp +++ b/crates/iota-adapter-transactional-tests/tests/upgrade/linkage.exp @@ -7,22 +7,22 @@ task 1, lines 7-13: //# publish --upgradeable --sender A created: object(1,0), object(1,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 6216800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6216800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 15-25: //# upgrade --package Test_DepV1 --upgrade-capability 1,1 --sender A created: object(2,0) mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 6520800, storage_rebate: 2622000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6520800, storage_rebate: 2622000, non_refundable_storage_fee: 0 task 3, lines 27-33: //# publish --upgradeable --dependencies Test_DepV1 --sender A created: object(3,0), object(3,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 6201600, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6201600, storage_rebate: 988000, non_refundable_storage_fee: 0 task 4, lines 35-42: //# upgrade --package Test_V1 --upgrade-capability 3,1 --dependencies Test_DepV2 --sender A created: object(4,0) mutated: object(0,0), object(3,1) -gas summary: computation_cost: 1000000, storage_cost: 6247200, storage_rebate: 2622000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6247200, storage_rebate: 2622000, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/upgrade/modules.exp b/crates/iota-adapter-transactional-tests/tests/upgrade/modules.exp index 1002331601a..9214e38f967 100644 --- a/crates/iota-adapter-transactional-tests/tests/upgrade/modules.exp +++ b/crates/iota-adapter-transactional-tests/tests/upgrade/modules.exp @@ -7,7 +7,7 @@ task 1, lines 7-28: //# publish --upgradeable --sender A created: object(1,0), object(1,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 9583600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 9583600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 29-49: //# upgrade --package V0 --upgrade-capability 1,1 --sender A diff --git a/crates/iota-adapter-transactional-tests/tests/upgrade/multi_version.exp b/crates/iota-adapter-transactional-tests/tests/upgrade/multi_version.exp index 6bd87c71351..5ada482cccd 100644 --- a/crates/iota-adapter-transactional-tests/tests/upgrade/multi_version.exp +++ b/crates/iota-adapter-transactional-tests/tests/upgrade/multi_version.exp @@ -7,13 +7,13 @@ task 1, lines 7-10: //# publish --upgradeable --sender A created: object(1,0), object(1,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5532800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5532800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 12-16: //# upgrade --package Test_V1 --upgrade-capability 1,1 --sender A created: object(2,0) mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 5646800, storage_rebate: 2622000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5646800, storage_rebate: 2622000, non_refundable_storage_fee: 0 task 3, lines 18-21: //# upgrade --package Test_V2 --upgrade-capability 1,1 --sender A diff --git a/crates/iota-adapter-transactional-tests/tests/upgrade/new_types.exp b/crates/iota-adapter-transactional-tests/tests/upgrade/new_types.exp index e5b76e81afa..b77fa65ad7a 100644 --- a/crates/iota-adapter-transactional-tests/tests/upgrade/new_types.exp +++ b/crates/iota-adapter-transactional-tests/tests/upgrade/new_types.exp @@ -7,37 +7,37 @@ task 1, lines 7-19: //# publish --upgradeable --sender A created: object(1,0), object(1,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 7166800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7166800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 22-34: //# upgrade --package Test_DepV1 --upgrade-capability 1,1 --sender A created: object(2,0) mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 7166800, storage_rebate: 2622000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7166800, storage_rebate: 2622000, non_refundable_storage_fee: 0 task 3, lines 37-48: //# publish --upgradeable --dependencies Test_DepV1 --sender A created: object(3,0), object(3,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 6908400, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6908400, storage_rebate: 988000, non_refundable_storage_fee: 0 task 4, lines 50-61: //# upgrade --package Test_V1 --upgrade-capability 3,1 --dependencies Test_DepV1 --sender A created: object(4,0) mutated: object(0,0), object(3,1) -gas summary: computation_cost: 1000000, storage_cost: 6908400, storage_rebate: 2622000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6908400, storage_rebate: 2622000, non_refundable_storage_fee: 0 task 5, lines 63-74: //# upgrade --package Test_V2 --upgrade-capability 3,1 --dependencies Test_DepV2 --sender A created: object(5,0) mutated: object(0,0), object(3,1) -gas summary: computation_cost: 1000000, storage_cost: 6908400, storage_rebate: 2622000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6908400, storage_rebate: 2622000, non_refundable_storage_fee: 0 task 6, line 77: //# run Test_DepV1::DepM1::foo created: object(6,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2325600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2325600, storage_rebate: 0, non_refundable_storage_fee: 0 task 7, lines 79-81: //# view-object 6,0 @@ -57,7 +57,7 @@ task 8, lines 82-84: //> 0: Test_DepV1::DepM1::mod_obj(Input(0)); //> 1: Test_DepV2::DepM1::mod_obj(Input(0)); mutated: object(0,0), object(6,0) -gas summary: computation_cost: 1000000, storage_cost: 2325600, storage_rebate: 2325600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2325600, storage_rebate: 2325600, non_refundable_storage_fee: 0 task 9, lines 86-89: //# view-object 6,0 @@ -77,7 +77,7 @@ task 10, lines 90-92: //> 0: Test_V1::M1::mod_dep_obj(Input(0)); //> 1: Test_V2::M1::mod_dep_obj(Input(0)); mutated: object(0,0), object(6,0) -gas summary: computation_cost: 1000000, storage_cost: 2325600, storage_rebate: 2325600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2325600, storage_rebate: 2325600, non_refundable_storage_fee: 0 task 11, lines 94-97: //# view-object 6,0 @@ -97,7 +97,7 @@ task 12, lines 98-100: //> 0: Test_V2::M1::mod_dep_obj(Input(0)); //> 1: Test_V3::M1::mod_dep_obj(Input(0)); mutated: object(0,0), object(6,0) -gas summary: computation_cost: 1000000, storage_cost: 2325600, storage_rebate: 2325600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2325600, storage_rebate: 2325600, non_refundable_storage_fee: 0 task 13, line 102: //# view-object 6,0 diff --git a/crates/iota-adapter-transactional-tests/tests/upgrade/private_fun_changes.exp b/crates/iota-adapter-transactional-tests/tests/upgrade/private_fun_changes.exp index 6f5643a6e72..732fd1bde66 100644 --- a/crates/iota-adapter-transactional-tests/tests/upgrade/private_fun_changes.exp +++ b/crates/iota-adapter-transactional-tests/tests/upgrade/private_fun_changes.exp @@ -7,49 +7,49 @@ task 1, lines 7-10: //# publish --upgradeable --sender A created: object(1,0), object(1,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5038800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5038800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 12-15: //# upgrade --package V0 --upgrade-capability 1,1 --sender A created: object(2,0) mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 5054000, storage_rebate: 2622000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5054000, storage_rebate: 2622000, non_refundable_storage_fee: 0 task 3, lines 17-20: //# upgrade --package V1 --upgrade-capability 1,1 --sender A created: object(3,0) mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 5122400, storage_rebate: 2622000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5122400, storage_rebate: 2622000, non_refundable_storage_fee: 0 task 4, lines 22-25: //# upgrade --package V2 --upgrade-capability 1,1 --sender A created: object(4,0) mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 5122400, storage_rebate: 2622000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5122400, storage_rebate: 2622000, non_refundable_storage_fee: 0 task 5, lines 27-30: //# upgrade --package V3 --upgrade-capability 1,1 --sender A created: object(5,0) mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 5122400, storage_rebate: 2622000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5122400, storage_rebate: 2622000, non_refundable_storage_fee: 0 task 6, lines 32-34: //# upgrade --package V4 --upgrade-capability 1,1 --sender A created: object(6,0) mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 4856400, storage_rebate: 2622000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4856400, storage_rebate: 2622000, non_refundable_storage_fee: 0 task 7, lines 36-39: //# upgrade --package V5 --upgrade-capability 1,1 --sender A created: object(7,0) mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 5122400, storage_rebate: 2622000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5122400, storage_rebate: 2622000, non_refundable_storage_fee: 0 task 8, lines 41-44: //# upgrade --package V6 --upgrade-capability 1,1 --sender A created: object(8,0) mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 5122400, storage_rebate: 2622000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5122400, storage_rebate: 2622000, non_refundable_storage_fee: 0 task 9, lines 46-49: //# upgrade --package V7 --upgrade-capability 1,1 --sender A diff --git a/crates/iota-adapter-transactional-tests/tests/upgrade/public_fun_changes.exp b/crates/iota-adapter-transactional-tests/tests/upgrade/public_fun_changes.exp index ea30b7c2fde..e5d83e28102 100644 --- a/crates/iota-adapter-transactional-tests/tests/upgrade/public_fun_changes.exp +++ b/crates/iota-adapter-transactional-tests/tests/upgrade/public_fun_changes.exp @@ -7,7 +7,7 @@ task 1, lines 7-10: //# publish --upgradeable --sender A created: object(1,0), object(1,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5038800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5038800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 12-15: //# upgrade --package Test_V0 --upgrade-capability 1,1 --sender A @@ -33,7 +33,7 @@ task 6, lines 32-35: //# upgrade --package Test_V0 --upgrade-capability 1,1 --sender A created: object(6,0) mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 5038800, storage_rebate: 2622000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5038800, storage_rebate: 2622000, non_refundable_storage_fee: 0 task 7, lines 37-40: //# upgrade --package Test_V1 --upgrade-capability 1,1 --sender A @@ -49,4 +49,4 @@ task 9, lines 47-50: //# upgrade --package Test_V1 --upgrade-capability 1,1 --sender A created: object(9,0) mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 5038800, storage_rebate: 2622000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5038800, storage_rebate: 2622000, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/upgrade/publisher.exp b/crates/iota-adapter-transactional-tests/tests/upgrade/publisher.exp index 120627a3e60..7e37e178978 100644 --- a/crates/iota-adapter-transactional-tests/tests/upgrade/publisher.exp +++ b/crates/iota-adapter-transactional-tests/tests/upgrade/publisher.exp @@ -7,20 +7,20 @@ task 1, lines 7-17: //# publish --upgradeable --sender A created: object(1,0), object(1,1), object(1,2) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 8557600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 8557600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 19-34: //# upgrade --package A0 --upgrade-capability 1,1 --sender A created: object(2,0) mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 7691200, storage_rebate: 2622000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7691200, storage_rebate: 2622000, non_refundable_storage_fee: 0 task 3, line 36: //# run A1::m::test --type-args A0::m::A --args object(1,0) --sender A mutated: object(0,0), object(1,0) -gas summary: computation_cost: 1000000, storage_cost: 2812000, storage_rebate: 2812000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2812000, storage_rebate: 2812000, non_refundable_storage_fee: 0 task 4, line 38: //# run A1::m::test --type-args A1::m::B --args object(1,0) --sender A mutated: object(0,0), object(1,0) -gas summary: computation_cost: 1000000, storage_cost: 2812000, storage_rebate: 2812000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2812000, storage_rebate: 2812000, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/upgrade/remove_ability_during_upgrade_fun_generics.exp b/crates/iota-adapter-transactional-tests/tests/upgrade/remove_ability_during_upgrade_fun_generics.exp index 7233b31bc5b..e5dd4d503b4 100644 --- a/crates/iota-adapter-transactional-tests/tests/upgrade/remove_ability_during_upgrade_fun_generics.exp +++ b/crates/iota-adapter-transactional-tests/tests/upgrade/remove_ability_during_upgrade_fun_generics.exp @@ -7,25 +7,25 @@ task 1, lines 7-10: //# publish --upgradeable --sender A created: object(1,0), object(1,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5046400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5046400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 12-15: //# upgrade --package A0 --upgrade-capability 1,1 --sender A created: object(2,0) mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 5046400, storage_rebate: 2622000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5046400, storage_rebate: 2622000, non_refundable_storage_fee: 0 task 3, lines 17-20: //# upgrade --package A1 --upgrade-capability 1,1 --sender A created: object(3,0) mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 5046400, storage_rebate: 2622000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5046400, storage_rebate: 2622000, non_refundable_storage_fee: 0 task 4, lines 22-25: //# upgrade --package A2 --upgrade-capability 1,1 --sender A created: object(4,0) mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 5046400, storage_rebate: 2622000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5046400, storage_rebate: 2622000, non_refundable_storage_fee: 0 task 5, lines 27-30: //# upgrade --package A3 --upgrade-capability 1,1 --sender A diff --git a/crates/iota-adapter-transactional-tests/tests/upgrade/remove_ability_during_upgrade_generics.exp b/crates/iota-adapter-transactional-tests/tests/upgrade/remove_ability_during_upgrade_generics.exp index 90632959f4d..34afb6302a6 100644 --- a/crates/iota-adapter-transactional-tests/tests/upgrade/remove_ability_during_upgrade_generics.exp +++ b/crates/iota-adapter-transactional-tests/tests/upgrade/remove_ability_during_upgrade_generics.exp @@ -7,7 +7,7 @@ task 1, lines 7-12: //# publish --upgradeable --sender A created: object(1,0), object(1,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5335200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5335200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 14-19: //# upgrade --package A0 --upgrade-capability 1,1 --sender A diff --git a/crates/iota-adapter-transactional-tests/tests/upgrade/remove_phantom.exp b/crates/iota-adapter-transactional-tests/tests/upgrade/remove_phantom.exp index d5e0ec91448..f6ead4692a2 100644 --- a/crates/iota-adapter-transactional-tests/tests/upgrade/remove_phantom.exp +++ b/crates/iota-adapter-transactional-tests/tests/upgrade/remove_phantom.exp @@ -7,7 +7,7 @@ task 1, lines 7-10: //# publish --upgradeable --sender A created: object(1,0), object(1,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5403600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5403600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 12-15: //# upgrade --package A0 --upgrade-capability 1,1 --sender A diff --git a/crates/iota-adapter-transactional-tests/tests/upgrade/remove_phantom_enum.exp b/crates/iota-adapter-transactional-tests/tests/upgrade/remove_phantom_enum.exp index 5f47b07c000..0f7102d2a48 100644 --- a/crates/iota-adapter-transactional-tests/tests/upgrade/remove_phantom_enum.exp +++ b/crates/iota-adapter-transactional-tests/tests/upgrade/remove_phantom_enum.exp @@ -7,7 +7,7 @@ task 1, lines 7-10: //# publish --upgradeable --sender A created: object(1,0), object(1,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5327600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5327600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 12-15: //# upgrade --package A0 --upgrade-capability 1,1 --sender A diff --git a/crates/iota-adapter-transactional-tests/tests/upgrade/struct_enum_swap.exp b/crates/iota-adapter-transactional-tests/tests/upgrade/struct_enum_swap.exp index 80d9be5d666..d8ecf738ec9 100644 --- a/crates/iota-adapter-transactional-tests/tests/upgrade/struct_enum_swap.exp +++ b/crates/iota-adapter-transactional-tests/tests/upgrade/struct_enum_swap.exp @@ -7,7 +7,7 @@ task 1, lines 7-15: //# publish --upgradeable --sender A created: object(1,0), object(1,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5882400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5882400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 17-27: //# upgrade --package Test_V0 --upgrade-capability 1,1 --sender A diff --git a/crates/iota-adapter-transactional-tests/tests/upgrade/structs.exp b/crates/iota-adapter-transactional-tests/tests/upgrade/structs.exp index ba2e727c934..ed9ebd6a003 100644 --- a/crates/iota-adapter-transactional-tests/tests/upgrade/structs.exp +++ b/crates/iota-adapter-transactional-tests/tests/upgrade/structs.exp @@ -7,7 +7,7 @@ task 1, lines 7-15: //# publish --upgradeable --sender A created: object(1,0), object(1,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5882400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5882400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 17-25: //# upgrade --package Test_V0 --upgrade-capability 1,1 --sender A diff --git a/crates/iota-adapter-transactional-tests/tests/upgrade/transitive_linkage.exp b/crates/iota-adapter-transactional-tests/tests/upgrade/transitive_linkage.exp index 6e95067c044..26c1604a74c 100644 --- a/crates/iota-adapter-transactional-tests/tests/upgrade/transitive_linkage.exp +++ b/crates/iota-adapter-transactional-tests/tests/upgrade/transitive_linkage.exp @@ -7,34 +7,34 @@ task 1, lines 7-13: //# publish --upgradeable --sender A created: object(1,0), object(1,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 6216800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6216800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 16-22: //# upgrade --package Test_DepV1 --upgrade-capability 1,1 --sender A created: object(2,0) mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 6216800, storage_rebate: 2622000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6216800, storage_rebate: 2622000, non_refundable_storage_fee: 0 task 3, lines 24-34: //# upgrade --package Test_DepV2 --upgrade-capability 1,1 --sender A created: object(3,0) mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 6520800, storage_rebate: 2622000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6520800, storage_rebate: 2622000, non_refundable_storage_fee: 0 task 4, lines 37-43: //# publish --upgradeable --dependencies Test_DepV1 --sender A created: object(4,0), object(4,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 6201600, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6201600, storage_rebate: 988000, non_refundable_storage_fee: 0 task 5, lines 45-51: //# upgrade --package Test_V1 --upgrade-capability 4,1 --dependencies Test_DepV2 --sender A created: object(5,0) mutated: object(0,0), object(4,1) -gas summary: computation_cost: 1000000, storage_cost: 6201600, storage_rebate: 2622000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6201600, storage_rebate: 2622000, non_refundable_storage_fee: 0 task 6, lines 53-60: //# upgrade --package Test_V2 --upgrade-capability 4,1 --dependencies Test_DepV3 --sender A created: object(6,0) mutated: object(0,0), object(4,1) -gas summary: computation_cost: 1000000, storage_cost: 6247200, storage_rebate: 2622000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6247200, storage_rebate: 2622000, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/upgrade/type_names.exp b/crates/iota-adapter-transactional-tests/tests/upgrade/type_names.exp index 230552e57ce..090834a7b17 100644 --- a/crates/iota-adapter-transactional-tests/tests/upgrade/type_names.exp +++ b/crates/iota-adapter-transactional-tests/tests/upgrade/type_names.exp @@ -7,67 +7,67 @@ task 1, lines 7-17: //# publish --upgradeable --sender A created: object(1,0), object(1,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 6581600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6581600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 19-31: //# upgrade --package A0 --upgrade-capability 1,0 --sender A created: object(2,0) mutated: object(0,0), object(1,0) -gas summary: computation_cost: 1000000, storage_cost: 7280800, storage_rebate: 2622000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7280800, storage_rebate: 2622000, non_refundable_storage_fee: 0 task 3, lines 33-63: //# upgrade --package A1 --upgrade-capability 1,0 --sender A created: object(3,0) mutated: object(0,0), object(1,0) -gas summary: computation_cost: 1000000, storage_cost: 9902800, storage_rebate: 2622000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 9902800, storage_rebate: 2622000, non_refundable_storage_fee: 0 task 4, line 65: //# run A2::m::canary --type-args A0::m::A --args true --sender A created: object(4,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2728400, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2728400, storage_rebate: 988000, non_refundable_storage_fee: 0 task 5, line 67: //# run A2::m::canary --type-args A1::m::B --args true --sender A created: object(5,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2728400, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2728400, storage_rebate: 988000, non_refundable_storage_fee: 0 task 6, line 69: //# run A2::m::canary --type-args A0::m::A --args false --sender A created: object(6,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2728400, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2728400, storage_rebate: 988000, non_refundable_storage_fee: 0 task 7, line 71: //# run A2::m::canary --type-args A1::m::B --args false --sender A created: object(7,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2728400, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2728400, storage_rebate: 988000, non_refundable_storage_fee: 0 task 8, line 73: //# run A2::m::canary --type-args A0::m::EA --args true --sender A created: object(8,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2728400, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2728400, storage_rebate: 988000, non_refundable_storage_fee: 0 task 9, line 75: //# run A2::m::canary --type-args A1::m::EB --args true --sender A created: object(9,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2728400, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2728400, storage_rebate: 988000, non_refundable_storage_fee: 0 task 10, line 77: //# run A2::m::canary --type-args A0::m::EA --args false --sender A created: object(10,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2728400, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2728400, storage_rebate: 988000, non_refundable_storage_fee: 0 task 11, line 79: //# run A2::m::canary --type-args A1::m::EB --args false --sender A created: object(11,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2728400, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2728400, storage_rebate: 988000, non_refundable_storage_fee: 0 task 12, line 81: //# view-object 4,0 diff --git a/crates/iota-adapter-transactional-tests/tests/upgrade/upgrade_ratchet.exp b/crates/iota-adapter-transactional-tests/tests/upgrade/upgrade_ratchet.exp index cda40a0ca35..d8873bd5945 100644 --- a/crates/iota-adapter-transactional-tests/tests/upgrade/upgrade_ratchet.exp +++ b/crates/iota-adapter-transactional-tests/tests/upgrade/upgrade_ratchet.exp @@ -7,18 +7,18 @@ task 1, lines 7-13: //# publish --upgradeable --sender A created: object(1,0), object(1,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5646800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5646800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 14-17: //# upgrade --package V0 --upgrade-capability 1,1 --sender A created: object(2,0) mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 5016000, storage_rebate: 2622000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5016000, storage_rebate: 2622000, non_refundable_storage_fee: 0 task 3, lines 19-21: //# run iota::package::only_additive_upgrades --args object(1,1) --sender A mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 2622000, storage_rebate: 2622000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2622000, storage_rebate: 2622000, non_refundable_storage_fee: 0 task 4, lines 22-27: //# upgrade --package V1 --upgrade-capability 1,1 --sender A --policy compatible @@ -29,18 +29,18 @@ task 5, lines 28-33: //# upgrade --package V1 --upgrade-capability 1,1 --sender A --policy additive created: object(5,0) mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 5016000, storage_rebate: 2622000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5016000, storage_rebate: 2622000, non_refundable_storage_fee: 0 task 6, lines 34-37: //# upgrade --package V2 --upgrade-capability 1,1 --sender A --policy dep_only created: object(6,0) mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 5016000, storage_rebate: 2622000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5016000, storage_rebate: 2622000, non_refundable_storage_fee: 0 task 7, lines 39-41: //# run iota::package::only_dep_upgrades --args object(1,1) --sender A mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 2622000, storage_rebate: 2622000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2622000, storage_rebate: 2622000, non_refundable_storage_fee: 0 task 8, lines 42-47: //# upgrade --package V3 --upgrade-capability 1,1 --sender A --policy compatible @@ -56,7 +56,7 @@ task 10, lines 54-59: //# upgrade --package V3 --upgrade-capability 1,1 --sender A --policy dep_only created: object(10,0) mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 5016000, storage_rebate: 2622000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5016000, storage_rebate: 2622000, non_refundable_storage_fee: 0 task 11, lines 60-62: //# run iota::package::only_additive_upgrades --args object(1,1) --sender A @@ -67,7 +67,7 @@ task 12, line 63: //# run iota::package::make_immutable --args object(1,1) --sender A mutated: object(0,0) deleted: object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 988000, storage_rebate: 2622000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 988000, storage_rebate: 2622000, non_refundable_storage_fee: 0 task 13, lines 65-67: //# view-object 1,1 From 594e415716f6faea432b49c74a65e05b9af91bee Mon Sep 17 00:00:00 2001 From: miker83z Date: Thu, 7 Nov 2024 18:38:42 +0100 Subject: [PATCH 10/25] fix(iota-verifier-transactional-tests): update baselines --- .../tests/entry_points/clock_ref.exp | 2 +- .../entry_points/generic_and_generic_object_params.exp | 2 +- .../entry_points/generic_param_after_primitive.exp | 2 +- .../tests/entry_points/generic_with_key_valid.exp | 2 +- .../tests/entry_points/id.exp | 2 +- .../tests/entry_points/nested_generic_vector_param.exp | 2 +- .../entry_points/non_key_struct_generic_valid.exp | 2 +- .../tests/entry_points/ok.exp | 4 ++-- .../tests/entry_points/option.exp | 2 +- .../tests/entry_points/optional_txn_context.exp | 4 ++-- .../tests/entry_points/random_ref.exp | 2 +- .../tests/entry_points/return_values.exp | 10 +++++----- .../tests/entry_points/single_generic_vector_param.exp | 2 +- .../tests/entry_points/single_type_param.exp | 2 +- .../entry_points/single_type_param_generic_object.exp | 2 +- .../tests/entry_points/single_type_param_key.exp | 2 +- .../tests/entry_points/string.exp | 2 +- .../mut_borrow_generic_key_struct_id_field.exp | 2 +- .../id_immutable/mut_borrow_key_struct_id_field.exp | 2 +- .../mut_borrow_key_struct_non_id_field.exp | 2 +- .../mut_borrow_non_key_struct_id_field.exp | 2 +- .../tests/id_leak/direct_leak_through_call.exp | 2 +- .../tests/id_leak/indirect_leak_through_call.exp | 2 +- .../tests/id_leak/infinite_loop.exp | 4 ++-- .../tests/id_leak/loop.exp | 2 +- .../tests/id_leak/through_direct_return.exp | 2 +- .../tests/id_leak/through_pack.exp | 2 +- .../tests/id_leak/through_vector.exp | 2 +- .../tests/one_time_witness/bool_field.exp | 2 +- .../tests/one_time_witness/many_fields_valid.exp | 2 +- .../tests/one_time_witness/wrong_field_type.exp | 4 ++-- .../private_generics/no_public_transfer_explicit.exp | 2 +- .../tests/private_generics/private_event_emit.exp | 2 +- .../private_generics/public_transfer_with_store.exp | 8 ++++---- .../public_transfer_with_store_generic.exp | 8 ++++---- .../receive_with_and_without_store.exp | 4 ++-- .../struct_with_key/key_struct_id_field_valid.exp | 2 +- 37 files changed, 52 insertions(+), 52 deletions(-) diff --git a/crates/iota-verifier-transactional-tests/tests/entry_points/clock_ref.exp b/crates/iota-verifier-transactional-tests/tests/entry_points/clock_ref.exp index d43338c607b..03e451353d0 100644 --- a/crates/iota-verifier-transactional-tests/tests/entry_points/clock_ref.exp +++ b/crates/iota-verifier-transactional-tests/tests/entry_points/clock_ref.exp @@ -4,4 +4,4 @@ task 0, lines 7-15: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3952000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3952000, storage_rebate: 0, non_refundable_storage_fee: 0 diff --git a/crates/iota-verifier-transactional-tests/tests/entry_points/generic_and_generic_object_params.exp b/crates/iota-verifier-transactional-tests/tests/entry_points/generic_and_generic_object_params.exp index bda5fc31ee7..f71bc136a2e 100644 --- a/crates/iota-verifier-transactional-tests/tests/entry_points/generic_and_generic_object_params.exp +++ b/crates/iota-verifier-transactional-tests/tests/entry_points/generic_and_generic_object_params.exp @@ -4,4 +4,4 @@ task 0, lines 5-17: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4598000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4598000, storage_rebate: 0, non_refundable_storage_fee: 0 diff --git a/crates/iota-verifier-transactional-tests/tests/entry_points/generic_param_after_primitive.exp b/crates/iota-verifier-transactional-tests/tests/entry_points/generic_param_after_primitive.exp index fc42a2b1685..a334f290888 100644 --- a/crates/iota-verifier-transactional-tests/tests/entry_points/generic_param_after_primitive.exp +++ b/crates/iota-verifier-transactional-tests/tests/entry_points/generic_param_after_primitive.exp @@ -4,4 +4,4 @@ task 0, lines 5-17: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4560000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4560000, storage_rebate: 0, non_refundable_storage_fee: 0 diff --git a/crates/iota-verifier-transactional-tests/tests/entry_points/generic_with_key_valid.exp b/crates/iota-verifier-transactional-tests/tests/entry_points/generic_with_key_valid.exp index 78ad5574bcb..7da87dd69ab 100644 --- a/crates/iota-verifier-transactional-tests/tests/entry_points/generic_with_key_valid.exp +++ b/crates/iota-verifier-transactional-tests/tests/entry_points/generic_with_key_valid.exp @@ -4,4 +4,4 @@ task 0, lines 7-17: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4332000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4332000, storage_rebate: 0, non_refundable_storage_fee: 0 diff --git a/crates/iota-verifier-transactional-tests/tests/entry_points/id.exp b/crates/iota-verifier-transactional-tests/tests/entry_points/id.exp index 5de6a33c268..c3e417254c3 100644 --- a/crates/iota-verifier-transactional-tests/tests/entry_points/id.exp +++ b/crates/iota-verifier-transactional-tests/tests/entry_points/id.exp @@ -4,4 +4,4 @@ task 0, lines 7-22: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4149600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4149600, storage_rebate: 0, non_refundable_storage_fee: 0 diff --git a/crates/iota-verifier-transactional-tests/tests/entry_points/nested_generic_vector_param.exp b/crates/iota-verifier-transactional-tests/tests/entry_points/nested_generic_vector_param.exp index 6d9ad518757..8c91c3ab727 100644 --- a/crates/iota-verifier-transactional-tests/tests/entry_points/nested_generic_vector_param.exp +++ b/crates/iota-verifier-transactional-tests/tests/entry_points/nested_generic_vector_param.exp @@ -4,4 +4,4 @@ task 0, lines 5-14: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3982400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3982400, storage_rebate: 0, non_refundable_storage_fee: 0 diff --git a/crates/iota-verifier-transactional-tests/tests/entry_points/non_key_struct_generic_valid.exp b/crates/iota-verifier-transactional-tests/tests/entry_points/non_key_struct_generic_valid.exp index a0bae416a0d..308f0ff376f 100644 --- a/crates/iota-verifier-transactional-tests/tests/entry_points/non_key_struct_generic_valid.exp +++ b/crates/iota-verifier-transactional-tests/tests/entry_points/non_key_struct_generic_valid.exp @@ -4,4 +4,4 @@ task 0, lines 7-19: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4567600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4567600, storage_rebate: 0, non_refundable_storage_fee: 0 diff --git a/crates/iota-verifier-transactional-tests/tests/entry_points/ok.exp b/crates/iota-verifier-transactional-tests/tests/entry_points/ok.exp index 7ab1f8a8e11..a6f5ac0f58d 100644 --- a/crates/iota-verifier-transactional-tests/tests/entry_points/ok.exp +++ b/crates/iota-verifier-transactional-tests/tests/entry_points/ok.exp @@ -4,10 +4,10 @@ task 0, lines 5-12: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3929200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3929200, storage_rebate: 0, non_refundable_storage_fee: 0 task 1, lines 14-21: //# publish created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3929200, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3929200, storage_rebate: 988000, non_refundable_storage_fee: 0 diff --git a/crates/iota-verifier-transactional-tests/tests/entry_points/option.exp b/crates/iota-verifier-transactional-tests/tests/entry_points/option.exp index 16b325bb1ad..3cec0970d74 100644 --- a/crates/iota-verifier-transactional-tests/tests/entry_points/option.exp +++ b/crates/iota-verifier-transactional-tests/tests/entry_points/option.exp @@ -4,4 +4,4 @@ task 0, lines 7-24: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4590400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4590400, storage_rebate: 0, non_refundable_storage_fee: 0 diff --git a/crates/iota-verifier-transactional-tests/tests/entry_points/optional_txn_context.exp b/crates/iota-verifier-transactional-tests/tests/entry_points/optional_txn_context.exp index 6a37cf34033..414c77a9bb1 100644 --- a/crates/iota-verifier-transactional-tests/tests/entry_points/optional_txn_context.exp +++ b/crates/iota-verifier-transactional-tests/tests/entry_points/optional_txn_context.exp @@ -4,10 +4,10 @@ task 0, lines 5-12: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3769600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3769600, storage_rebate: 0, non_refundable_storage_fee: 0 task 1, lines 15-24: //# publish created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4392800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4392800, storage_rebate: 988000, non_refundable_storage_fee: 0 diff --git a/crates/iota-verifier-transactional-tests/tests/entry_points/random_ref.exp b/crates/iota-verifier-transactional-tests/tests/entry_points/random_ref.exp index 8befd844f07..1093650f298 100644 --- a/crates/iota-verifier-transactional-tests/tests/entry_points/random_ref.exp +++ b/crates/iota-verifier-transactional-tests/tests/entry_points/random_ref.exp @@ -4,4 +4,4 @@ task 0, lines 7-15: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3974800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3974800, storage_rebate: 0, non_refundable_storage_fee: 0 diff --git a/crates/iota-verifier-transactional-tests/tests/entry_points/return_values.exp b/crates/iota-verifier-transactional-tests/tests/entry_points/return_values.exp index fa7ba0e9720..60486e30528 100644 --- a/crates/iota-verifier-transactional-tests/tests/entry_points/return_values.exp +++ b/crates/iota-verifier-transactional-tests/tests/entry_points/return_values.exp @@ -4,28 +4,28 @@ task 0, lines 7-14: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3959600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3959600, storage_rebate: 0, non_refundable_storage_fee: 0 task 1, lines 16-23: //# publish created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3967200, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3967200, storage_rebate: 988000, non_refundable_storage_fee: 0 task 2, lines 25-32: //# publish created: object(3,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3967200, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3967200, storage_rebate: 988000, non_refundable_storage_fee: 0 task 3, lines 34-42: //# publish created: object(4,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4506800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4506800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 4, lines 44-52: //# publish created: object(5,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4522000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4522000, storage_rebate: 988000, non_refundable_storage_fee: 0 diff --git a/crates/iota-verifier-transactional-tests/tests/entry_points/single_generic_vector_param.exp b/crates/iota-verifier-transactional-tests/tests/entry_points/single_generic_vector_param.exp index 96293fc1c9c..33ad1081352 100644 --- a/crates/iota-verifier-transactional-tests/tests/entry_points/single_generic_vector_param.exp +++ b/crates/iota-verifier-transactional-tests/tests/entry_points/single_generic_vector_param.exp @@ -4,4 +4,4 @@ task 0, lines 5-14: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3974800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3974800, storage_rebate: 0, non_refundable_storage_fee: 0 diff --git a/crates/iota-verifier-transactional-tests/tests/entry_points/single_type_param.exp b/crates/iota-verifier-transactional-tests/tests/entry_points/single_type_param.exp index 00a76d829cd..c4932632630 100644 --- a/crates/iota-verifier-transactional-tests/tests/entry_points/single_type_param.exp +++ b/crates/iota-verifier-transactional-tests/tests/entry_points/single_type_param.exp @@ -4,4 +4,4 @@ task 0, lines 5-14: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3967200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3967200, storage_rebate: 0, non_refundable_storage_fee: 0 diff --git a/crates/iota-verifier-transactional-tests/tests/entry_points/single_type_param_generic_object.exp b/crates/iota-verifier-transactional-tests/tests/entry_points/single_type_param_generic_object.exp index 2bc46715f53..9abd9f70fda 100644 --- a/crates/iota-verifier-transactional-tests/tests/entry_points/single_type_param_generic_object.exp +++ b/crates/iota-verifier-transactional-tests/tests/entry_points/single_type_param_generic_object.exp @@ -4,4 +4,4 @@ task 0, lines 5-17: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4575200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4575200, storage_rebate: 0, non_refundable_storage_fee: 0 diff --git a/crates/iota-verifier-transactional-tests/tests/entry_points/single_type_param_key.exp b/crates/iota-verifier-transactional-tests/tests/entry_points/single_type_param_key.exp index 00a76d829cd..c4932632630 100644 --- a/crates/iota-verifier-transactional-tests/tests/entry_points/single_type_param_key.exp +++ b/crates/iota-verifier-transactional-tests/tests/entry_points/single_type_param_key.exp @@ -4,4 +4,4 @@ task 0, lines 5-14: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3967200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3967200, storage_rebate: 0, non_refundable_storage_fee: 0 diff --git a/crates/iota-verifier-transactional-tests/tests/entry_points/string.exp b/crates/iota-verifier-transactional-tests/tests/entry_points/string.exp index 8e8c7e825ca..c657d0bea10 100644 --- a/crates/iota-verifier-transactional-tests/tests/entry_points/string.exp +++ b/crates/iota-verifier-transactional-tests/tests/entry_points/string.exp @@ -4,4 +4,4 @@ task 0, lines 7-32: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4894400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4894400, storage_rebate: 0, non_refundable_storage_fee: 0 diff --git a/crates/iota-verifier-transactional-tests/tests/id_immutable/mut_borrow_generic_key_struct_id_field.exp b/crates/iota-verifier-transactional-tests/tests/id_immutable/mut_borrow_generic_key_struct_id_field.exp index d102b9cd219..157b4664e99 100644 --- a/crates/iota-verifier-transactional-tests/tests/id_immutable/mut_borrow_generic_key_struct_id_field.exp +++ b/crates/iota-verifier-transactional-tests/tests/id_immutable/mut_borrow_generic_key_struct_id_field.exp @@ -4,4 +4,4 @@ task 0, lines 5-19: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4461200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4461200, storage_rebate: 0, non_refundable_storage_fee: 0 diff --git a/crates/iota-verifier-transactional-tests/tests/id_immutable/mut_borrow_key_struct_id_field.exp b/crates/iota-verifier-transactional-tests/tests/id_immutable/mut_borrow_key_struct_id_field.exp index 70bf25b33c8..f6d1c43b2fc 100644 --- a/crates/iota-verifier-transactional-tests/tests/id_immutable/mut_borrow_key_struct_id_field.exp +++ b/crates/iota-verifier-transactional-tests/tests/id_immutable/mut_borrow_key_struct_id_field.exp @@ -4,4 +4,4 @@ task 0, lines 5-19: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4370000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4370000, storage_rebate: 0, non_refundable_storage_fee: 0 diff --git a/crates/iota-verifier-transactional-tests/tests/id_immutable/mut_borrow_key_struct_non_id_field.exp b/crates/iota-verifier-transactional-tests/tests/id_immutable/mut_borrow_key_struct_non_id_field.exp index bec291595c9..2b0f073166f 100644 --- a/crates/iota-verifier-transactional-tests/tests/id_immutable/mut_borrow_key_struct_non_id_field.exp +++ b/crates/iota-verifier-transactional-tests/tests/id_immutable/mut_borrow_key_struct_non_id_field.exp @@ -4,4 +4,4 @@ task 0, lines 5-20: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4438400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4438400, storage_rebate: 0, non_refundable_storage_fee: 0 diff --git a/crates/iota-verifier-transactional-tests/tests/id_immutable/mut_borrow_non_key_struct_id_field.exp b/crates/iota-verifier-transactional-tests/tests/id_immutable/mut_borrow_non_key_struct_id_field.exp index 70bf25b33c8..f6d1c43b2fc 100644 --- a/crates/iota-verifier-transactional-tests/tests/id_immutable/mut_borrow_non_key_struct_id_field.exp +++ b/crates/iota-verifier-transactional-tests/tests/id_immutable/mut_borrow_non_key_struct_id_field.exp @@ -4,4 +4,4 @@ task 0, lines 5-19: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4370000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4370000, storage_rebate: 0, non_refundable_storage_fee: 0 diff --git a/crates/iota-verifier-transactional-tests/tests/id_leak/direct_leak_through_call.exp b/crates/iota-verifier-transactional-tests/tests/id_leak/direct_leak_through_call.exp index 9747f39630c..f12769f3b19 100644 --- a/crates/iota-verifier-transactional-tests/tests/id_leak/direct_leak_through_call.exp +++ b/crates/iota-verifier-transactional-tests/tests/id_leak/direct_leak_through_call.exp @@ -4,4 +4,4 @@ task 0, lines 5-27: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4590400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4590400, storage_rebate: 0, non_refundable_storage_fee: 0 diff --git a/crates/iota-verifier-transactional-tests/tests/id_leak/indirect_leak_through_call.exp b/crates/iota-verifier-transactional-tests/tests/id_leak/indirect_leak_through_call.exp index 178337a8bc5..46f68c6faac 100644 --- a/crates/iota-verifier-transactional-tests/tests/id_leak/indirect_leak_through_call.exp +++ b/crates/iota-verifier-transactional-tests/tests/id_leak/indirect_leak_through_call.exp @@ -9,4 +9,4 @@ task 1, lines 29-51: //# publish created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4590400, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4590400, storage_rebate: 988000, non_refundable_storage_fee: 0 diff --git a/crates/iota-verifier-transactional-tests/tests/id_leak/infinite_loop.exp b/crates/iota-verifier-transactional-tests/tests/id_leak/infinite_loop.exp index f4ef9d5329d..19909f30680 100644 --- a/crates/iota-verifier-transactional-tests/tests/id_leak/infinite_loop.exp +++ b/crates/iota-verifier-transactional-tests/tests/id_leak/infinite_loop.exp @@ -4,10 +4,10 @@ task 0, lines 7-29: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4970400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4970400, storage_rebate: 0, non_refundable_storage_fee: 0 task 1, lines 31-60: //# publish created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5168000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5168000, storage_rebate: 988000, non_refundable_storage_fee: 0 diff --git a/crates/iota-verifier-transactional-tests/tests/id_leak/loop.exp b/crates/iota-verifier-transactional-tests/tests/id_leak/loop.exp index d20e8e4e86b..c247924d651 100644 --- a/crates/iota-verifier-transactional-tests/tests/id_leak/loop.exp +++ b/crates/iota-verifier-transactional-tests/tests/id_leak/loop.exp @@ -4,4 +4,4 @@ task 0, lines 5-35: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5631600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5631600, storage_rebate: 0, non_refundable_storage_fee: 0 diff --git a/crates/iota-verifier-transactional-tests/tests/id_leak/through_direct_return.exp b/crates/iota-verifier-transactional-tests/tests/id_leak/through_direct_return.exp index fec2acca242..afa01e13cd8 100644 --- a/crates/iota-verifier-transactional-tests/tests/id_leak/through_direct_return.exp +++ b/crates/iota-verifier-transactional-tests/tests/id_leak/through_direct_return.exp @@ -4,4 +4,4 @@ task 0, lines 5-21: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4294000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4294000, storage_rebate: 0, non_refundable_storage_fee: 0 diff --git a/crates/iota-verifier-transactional-tests/tests/id_leak/through_pack.exp b/crates/iota-verifier-transactional-tests/tests/id_leak/through_pack.exp index 199d2bdaf7f..16a309f05a8 100644 --- a/crates/iota-verifier-transactional-tests/tests/id_leak/through_pack.exp +++ b/crates/iota-verifier-transactional-tests/tests/id_leak/through_pack.exp @@ -9,4 +9,4 @@ task 1, lines 40-63: //# publish created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4902000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4902000, storage_rebate: 988000, non_refundable_storage_fee: 0 diff --git a/crates/iota-verifier-transactional-tests/tests/id_leak/through_vector.exp b/crates/iota-verifier-transactional-tests/tests/id_leak/through_vector.exp index 477bc8b6b73..7b3e266847d 100644 --- a/crates/iota-verifier-transactional-tests/tests/id_leak/through_vector.exp +++ b/crates/iota-verifier-transactional-tests/tests/id_leak/through_vector.exp @@ -4,4 +4,4 @@ task 0, lines 5-22: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4362400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4362400, storage_rebate: 0, non_refundable_storage_fee: 0 diff --git a/crates/iota-verifier-transactional-tests/tests/one_time_witness/bool_field.exp b/crates/iota-verifier-transactional-tests/tests/one_time_witness/bool_field.exp index 66b8c202893..0d593e5eb49 100644 --- a/crates/iota-verifier-transactional-tests/tests/one_time_witness/bool_field.exp +++ b/crates/iota-verifier-transactional-tests/tests/one_time_witness/bool_field.exp @@ -4,4 +4,4 @@ task 0, lines 7-17: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4362400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4362400, storage_rebate: 0, non_refundable_storage_fee: 0 diff --git a/crates/iota-verifier-transactional-tests/tests/one_time_witness/many_fields_valid.exp b/crates/iota-verifier-transactional-tests/tests/one_time_witness/many_fields_valid.exp index ee4b0f28abc..25f5081c259 100644 --- a/crates/iota-verifier-transactional-tests/tests/one_time_witness/many_fields_valid.exp +++ b/crates/iota-verifier-transactional-tests/tests/one_time_witness/many_fields_valid.exp @@ -4,4 +4,4 @@ task 0, lines 7-15: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4005200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4005200, storage_rebate: 0, non_refundable_storage_fee: 0 diff --git a/crates/iota-verifier-transactional-tests/tests/one_time_witness/wrong_field_type.exp b/crates/iota-verifier-transactional-tests/tests/one_time_witness/wrong_field_type.exp index 7681e17a23d..149265f8f15 100644 --- a/crates/iota-verifier-transactional-tests/tests/one_time_witness/wrong_field_type.exp +++ b/crates/iota-verifier-transactional-tests/tests/one_time_witness/wrong_field_type.exp @@ -4,10 +4,10 @@ task 0, lines 7-24: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4613200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4613200, storage_rebate: 0, non_refundable_storage_fee: 0 task 1, lines 26-44: //# publish created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4932400, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4932400, storage_rebate: 988000, non_refundable_storage_fee: 0 diff --git a/crates/iota-verifier-transactional-tests/tests/private_generics/no_public_transfer_explicit.exp b/crates/iota-verifier-transactional-tests/tests/private_generics/no_public_transfer_explicit.exp index 003b3341304..d299c852a35 100644 --- a/crates/iota-verifier-transactional-tests/tests/private_generics/no_public_transfer_explicit.exp +++ b/crates/iota-verifier-transactional-tests/tests/private_generics/no_public_transfer_explicit.exp @@ -4,7 +4,7 @@ task 1, lines 9-25: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5175600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5175600, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, lines 31-40: //# publish diff --git a/crates/iota-verifier-transactional-tests/tests/private_generics/private_event_emit.exp b/crates/iota-verifier-transactional-tests/tests/private_generics/private_event_emit.exp index 70f5b05dd3e..e6974141f05 100644 --- a/crates/iota-verifier-transactional-tests/tests/private_generics/private_event_emit.exp +++ b/crates/iota-verifier-transactional-tests/tests/private_generics/private_event_emit.exp @@ -24,7 +24,7 @@ task 5, lines 61-70: //# publish created: object(5,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3990000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3990000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 7, lines 74-84: //# publish --dependencies test diff --git a/crates/iota-verifier-transactional-tests/tests/private_generics/public_transfer_with_store.exp b/crates/iota-verifier-transactional-tests/tests/private_generics/public_transfer_with_store.exp index 7a16cf77f1c..a15e20deafa 100644 --- a/crates/iota-verifier-transactional-tests/tests/private_generics/public_transfer_with_store.exp +++ b/crates/iota-verifier-transactional-tests/tests/private_generics/public_transfer_with_store.exp @@ -4,22 +4,22 @@ task 0, lines 8-18: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4461200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4461200, storage_rebate: 0, non_refundable_storage_fee: 0 task 1, lines 20-30: //# publish created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4187600, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4187600, storage_rebate: 988000, non_refundable_storage_fee: 0 task 2, lines 32-42: //# publish created: object(3,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4180000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4180000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 3, lines 44-56: //# publish created: object(4,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4582800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4582800, storage_rebate: 988000, non_refundable_storage_fee: 0 diff --git a/crates/iota-verifier-transactional-tests/tests/private_generics/public_transfer_with_store_generic.exp b/crates/iota-verifier-transactional-tests/tests/private_generics/public_transfer_with_store_generic.exp index 0de845e6a27..13359df0bf4 100644 --- a/crates/iota-verifier-transactional-tests/tests/private_generics/public_transfer_with_store_generic.exp +++ b/crates/iota-verifier-transactional-tests/tests/private_generics/public_transfer_with_store_generic.exp @@ -4,22 +4,22 @@ task 0, lines 8-23: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4689200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4689200, storage_rebate: 0, non_refundable_storage_fee: 0 task 1, lines 25-40: //# publish created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4377600, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4377600, storage_rebate: 988000, non_refundable_storage_fee: 0 task 2, lines 42-57: //# publish created: object(3,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4370000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4370000, storage_rebate: 988000, non_refundable_storage_fee: 0 task 3, lines 59-77: //# publish created: object(4,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4826000, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4826000, storage_rebate: 988000, non_refundable_storage_fee: 0 diff --git a/crates/iota-verifier-transactional-tests/tests/private_generics/receive_with_and_without_store.exp b/crates/iota-verifier-transactional-tests/tests/private_generics/receive_with_and_without_store.exp index de5cd042a53..1e44ef57129 100644 --- a/crates/iota-verifier-transactional-tests/tests/private_generics/receive_with_and_without_store.exp +++ b/crates/iota-verifier-transactional-tests/tests/private_generics/receive_with_and_without_store.exp @@ -14,10 +14,10 @@ task 2, lines 27-41: //# publish created: object(3,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4848800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4848800, storage_rebate: 988000, non_refundable_storage_fee: 0 task 3, lines 43-54: //# publish created: object(4,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4430800, storage_rebate: 988000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4430800, storage_rebate: 988000, non_refundable_storage_fee: 0 diff --git a/crates/iota-verifier-transactional-tests/tests/struct_with_key/key_struct_id_field_valid.exp b/crates/iota-verifier-transactional-tests/tests/struct_with_key/key_struct_id_field_valid.exp index 7125ed0c0ab..0ab887e06c4 100644 --- a/crates/iota-verifier-transactional-tests/tests/struct_with_key/key_struct_id_field_valid.exp +++ b/crates/iota-verifier-transactional-tests/tests/struct_with_key/key_struct_id_field_valid.exp @@ -4,4 +4,4 @@ task 0, lines 5-11: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3967200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3967200, storage_rebate: 0, non_refundable_storage_fee: 0 From a561b52595d3213f3964295a26ee6246002a4c42 Mon Sep 17 00:00:00 2001 From: Andrew Date: Thu, 7 Nov 2024 18:05:57 +0000 Subject: [PATCH 11/25] review comments --- crates/iota-graphql-rpc/src/types/system_state_summary.rs | 1 + crates/iota-indexer/src/models/checkpoints.rs | 2 +- crates/iota-types/src/effects/mod.rs | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/crates/iota-graphql-rpc/src/types/system_state_summary.rs b/crates/iota-graphql-rpc/src/types/system_state_summary.rs index f088c01bcb3..7c5b840ff80 100644 --- a/crates/iota-graphql-rpc/src/types/system_state_summary.rs +++ b/crates/iota-graphql-rpc/src/types/system_state_summary.rs @@ -39,6 +39,7 @@ impl SystemStateSummary { enabled: Some(self.native.safe_mode), gas_summary: Some(GasCostSummary { computation_cost: self.native.safe_mode_computation_rewards, + /// All computation costs are burned in protocol v1. computation_cost_burned: self.native.safe_mode_computation_rewards, storage_cost: self.native.safe_mode_storage_charges, storage_rebate: self.native.safe_mode_storage_rebates, diff --git a/crates/iota-indexer/src/models/checkpoints.rs b/crates/iota-indexer/src/models/checkpoints.rs index 7a31dd50596..0f2cba1ea41 100644 --- a/crates/iota-indexer/src/models/checkpoints.rs +++ b/crates/iota-indexer/src/models/checkpoints.rs @@ -204,7 +204,7 @@ impl TryFrom for RpcCheckpoint { epoch_rolling_gas_cost_summary: GasCostSummary { computation_cost: checkpoint.computation_cost as u64, // TODO_FIXED_BASE_FEE: update computation cost burned in checkpoint to be used - // here. + // here in issue #3122 computation_cost_burned: checkpoint.computation_cost as u64, storage_cost: checkpoint.storage_cost as u64, storage_rebate: checkpoint.storage_rebate as u64, diff --git a/crates/iota-types/src/effects/mod.rs b/crates/iota-types/src/effects/mod.rs index 01449f50fc4..0843ffe0d55 100644 --- a/crates/iota-types/src/effects/mod.rs +++ b/crates/iota-types/src/effects/mod.rs @@ -43,7 +43,7 @@ pub const APPROX_SIZE_OF_EXECUTION_STATUS: usize = 120; // Approximate size of `EpochId` type in bytes pub const APPROX_SIZE_OF_EPOCH_ID: usize = 10; // Approximate size of `GasCostSummary` type in bytes -pub const APPROX_SIZE_OF_GAS_COST_SUMMARY: usize = 40; // TODO: Update this +pub const APPROX_SIZE_OF_GAS_COST_SUMMARY: usize = 50; // Approximate size of `Option` type in bytes pub const APPROX_SIZE_OF_OPT_TX_EVENTS_DIGEST: usize = 40; // Approximate size of `TransactionDigest` type in bytes From bde641d9329aee9235efb0b2c22e0668e3ce69e6 Mon Sep 17 00:00:00 2001 From: Andrew Date: Thu, 7 Nov 2024 18:17:01 +0000 Subject: [PATCH 12/25] remove doc comment --- crates/iota-graphql-rpc/src/types/system_state_summary.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/iota-graphql-rpc/src/types/system_state_summary.rs b/crates/iota-graphql-rpc/src/types/system_state_summary.rs index 7c5b840ff80..e283e7e5564 100644 --- a/crates/iota-graphql-rpc/src/types/system_state_summary.rs +++ b/crates/iota-graphql-rpc/src/types/system_state_summary.rs @@ -39,7 +39,7 @@ impl SystemStateSummary { enabled: Some(self.native.safe_mode), gas_summary: Some(GasCostSummary { computation_cost: self.native.safe_mode_computation_rewards, - /// All computation costs are burned in protocol v1. + // All computation costs are burned in protocol v1. computation_cost_burned: self.native.safe_mode_computation_rewards, storage_cost: self.native.safe_mode_storage_charges, storage_rebate: self.native.safe_mode_storage_rebates, From 1e6b7dc7ffa83ae291c055d5b6d62cc927dfd140 Mon Sep 17 00:00:00 2001 From: miker83z Date: Thu, 7 Nov 2024 20:19:40 +0100 Subject: [PATCH 13/25] fix iota-core format --- crates/iota-core/tests/staged/iota.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/iota-core/tests/staged/iota.yaml b/crates/iota-core/tests/staged/iota.yaml index 1d2cd9c0734..e770295ba68 100644 --- a/crates/iota-core/tests/staged/iota.yaml +++ b/crates/iota-core/tests/staged/iota.yaml @@ -498,6 +498,7 @@ FullCheckpointContents: GasCostSummary: STRUCT: - computationCost: U64 + - computationCostBurned: U64 - storageCost: U64 - storageRebate: U64 - nonRefundableStorageFee: U64 From 05540bc242d3e73fab210858cf92cef9080899a8 Mon Sep 17 00:00:00 2001 From: miker83z Date: Thu, 7 Nov 2024 20:21:13 +0100 Subject: [PATCH 14/25] fix iota-cost test snapshot --- .../empirical_transaction_cost__good_snapshot.snap | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/crates/iota-cost/tests/snapshots/empirical_transaction_cost__good_snapshot.snap b/crates/iota-cost/tests/snapshots/empirical_transaction_cost__good_snapshot.snap index 7b51633b3fe..9eddc8c45c4 100644 --- a/crates/iota-cost/tests/snapshots/empirical_transaction_cost__good_snapshot.snap +++ b/crates/iota-cost/tests/snapshots/empirical_transaction_cost__good_snapshot.snap @@ -5,54 +5,63 @@ expression: common_costs_actual { "MergeCoin": { "computationCost": "1000000", + "computationCostBurned": "1000000", "storageCost": "1976000", "storageRebate": "0", "nonRefundableStorageFee": "0" }, "Publish": { "computationCost": "1000000", + "computationCostBurned": "1000000", "storageCost": "13505200", "storageRebate": "0", "nonRefundableStorageFee": "0" }, "SharedCounterAssertValue": { "computationCost": "1000000", + "computationCostBurned": "1000000", "storageCost": "2591600", "storageRebate": "1603600", "nonRefundableStorageFee": "0" }, "SharedCounterCreate": { "computationCost": "1000000", + "computationCostBurned": "1000000", "storageCost": "2591600", "storageRebate": "0", "nonRefundableStorageFee": "0" }, "SharedCounterIncrement": { "computationCost": "1000000", + "computationCostBurned": "1000000", "storageCost": "2591600", "storageRebate": "1603600", "nonRefundableStorageFee": "0" }, "SplitCoin": { "computationCost": "1000000", + "computationCostBurned": "1000000", "storageCost": "4940000", "storageRebate": "0", "nonRefundableStorageFee": "0" }, "TransferPortionIotaCoin": { "computationCost": "1000000", + "computationCostBurned": "1000000", "storageCost": "1976000", "storageRebate": "0", "nonRefundableStorageFee": "0" }, "TransferWholeCoin": { "computationCost": "1000000", + "computationCostBurned": "1000000", "storageCost": "1976000", "storageRebate": "0", "nonRefundableStorageFee": "0" }, "TransferWholeIotaCoin": { "computationCost": "1000000", + "computationCostBurned": "1000000", "storageCost": "988000", "storageRebate": "0", "nonRefundableStorageFee": "0" From da54d629c599394434e9f1eb51179e1d63f07eb1 Mon Sep 17 00:00:00 2001 From: miker83z Date: Thu, 7 Nov 2024 20:32:02 +0100 Subject: [PATCH 15/25] fix openapi --- crates/iota-rest-api/openapi/openapi.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/crates/iota-rest-api/openapi/openapi.json b/crates/iota-rest-api/openapi/openapi.json index 0a59da60bdf..da1d3ed9210 100644 --- a/crates/iota-rest-api/openapi/openapi.json +++ b/crates/iota-rest-api/openapi/openapi.json @@ -2739,6 +2739,7 @@ "type": "object", "required": [ "computation_cost", + "computation_cost_burned", "non_refundable_storage_fee", "storage_cost", "storage_rebate" @@ -2749,6 +2750,11 @@ "type": "string", "format": "u64" }, + "computation_cost_burned": { + "description": "The burned component of the computation/execution costs", + "type": "string", + "format": "u64" + }, "non_refundable_storage_fee": { "description": "The fee for the rebate. The portion of the storage rebate kept by the system.", "type": "string", From b394e5e5b7742f11f646e45962ec231f48b5f746 Mon Sep 17 00:00:00 2001 From: miker83z Date: Thu, 7 Nov 2024 20:43:35 +0100 Subject: [PATCH 16/25] update iota-light-client checkpoints --- .../iota-light-client/example_config/524.chk | Bin 0 -> 14602 bytes .../example_config/{532.json => 524.json} | 19 +- .../{532_full.json => 524_full.json} | 8401 ++++++++-------- .../iota-light-client/example_config/532.chk | Bin 14576 -> 0 bytes .../iota-light-client/example_config/790.chk | Bin 0 -> 14602 bytes .../example_config/{801.json => 790.json} | 25 +- .../{801_full.json => 790_full.json} | 8747 ++++++++--------- .../iota-light-client/example_config/801.chk | Bin 15452 -> 0 bytes .../example_config/checkpoints.yaml | 4 +- crates/iota-light-client/tests/check_proof.rs | 20 +- 10 files changed, 8393 insertions(+), 8823 deletions(-) create mode 100644 crates/iota-light-client/example_config/524.chk rename crates/iota-light-client/example_config/{532.json => 524.json} (77%) rename crates/iota-light-client/example_config/{532_full.json => 524_full.json} (85%) delete mode 100644 crates/iota-light-client/example_config/532.chk create mode 100644 crates/iota-light-client/example_config/790.chk rename crates/iota-light-client/example_config/{801.json => 790.json} (76%) rename crates/iota-light-client/example_config/{801_full.json => 790_full.json} (82%) delete mode 100644 crates/iota-light-client/example_config/801.chk diff --git a/crates/iota-light-client/example_config/524.chk b/crates/iota-light-client/example_config/524.chk new file mode 100644 index 0000000000000000000000000000000000000000..2d5ab6e706483b695aac8f03945b8f5bfd1f2ce3 GIT binary patch literal 14602 zcmeHN2|QKX8sEnuQ^!0=8?X}NZYp?J7*7yI`UjMZg3|P6=ldPm;6e}rG zh)>XTqfJi8HN(9bdUXB8lid^w2;b-O9!JM3*9k{d;#$5d;-1+J3Y-#t+ZPWt?O`$7tulC#M%?qI)CN(!zjmNtwC6 zY0#uZ3`cV!r%bt`%Eg_gs&zf55B10Gh4Q;n>aLOL`EnhGI8FRKVK+rIKfkNwT+|e6%KB4Cd8fE2W54&5idG>uS z5dS_GJ1IUDy(AvR!+w56YXius4)2eq&w5s5?7SLHF8-K1((MBWH``7i+PQPn!iL5*^ z!A??Jqihl#P!HQQJ$A2q_I}M>q}BEju0^qn!PxDU=C&O<8UiV^VJT;sS%52tDQ3zT zN=RV#Uo`qtZzNy3Zsoo#h;&sN7&b_R^uFP<8$^?q=E%K156k5G-5eMaF=`(ETtNNrT45q2Ef&S3$_qF0kaU|{Tf=u`1 zBoY*^OK!aH0|5juq??=AphP%3!k#r+vQ5Cp_l25JWc=`}j|ztQ#Ezw1t}j@<-tklg|{@xwZS{RycP7#P3m1T|FrMki9( z@_6;-g4S`R9w>43HR8!y8w8NV+gMx4camWCYkToOs`Z^zh}Iy7U;u_>j?#3dT9G21CL8n9SaPguF zuZBPfu;x%xBfYL(K=Q|j|a74O%&<(sbZbPDCLDR4FO&X z8=7h5(C{`)tjY1o*imv#qYtU+=l zFMA>8San>m^XHjl7Irv&K64DKba!7-%<(94m~9|$P5ldC`(C7bX3kK6r-JN**d2^q z7PfVX+amVP?j$pTWOO zekA>L?5QSRh@8flm3NGLP#nViX5Qv@wViMFt09b1HFcy+)Q0_&`eF0^-5De!5u5^C zg;9)MjE-#^dM7O+6J?%PoycP=)yjvtO{JAI+uikH)$8keTYK)v$vEFVc2Xhpg_t84 z6nlN=ueej;KZo4(C_>rm=+Q`3<8q-mSoS;X^9NP*wMw+xuM~?x1sE9&d5c$m&PgTk zvim{wB<|h9fbfvCI0Ib`oM&t>%$ds^@?$^-Wbk{Ocqvg@9VBw#yxcg_Wc2Zw0x}-X zgimAL3)-lR1$>{}j4lqVzHwQd^WFORo>7ZS-1q7Smk_C`(Wi5B^@EEVfm?RE$^$)j zVKJsk_s!eaGq4v`J#ZDC;obC0C>49Lml~{ezhB^~>l_gbMaGRx2{RalPb4F`_q{Wl zDl)7ss899cg@mh9!FZs@tWLz;{{70ITqGrvjtb&zj|b*rwp*bd<0$2|Y3Eyqkr z+RNL@BY78_l{4~;-YMo!>_6+w{H9+DRyxh^=vbEu1up6` z$L&rd^E$xe9Umi0cR@pKOk(e4;40oFuvJz85WC>iu2`Hs%G=)?hxQ;=X^r`CN*{ZS ztCKwrdw|gtXYcOn>1=}De-Q1B+u?)u!~tFyiqIvhAYnUTqR6b?NU#8@_!1tf&^*&= z8{yOiA8Lb&38-=c25BA)1%P8KapnI~+xLY$ggx=BY}Y=WTW(P_K2%ZLfUw@YXfzPr zd=qDEqXLB(sPezF?dXS#szn1^9fIR~YR&aD&A1lDTtBle*zVfQ00GT z+domlQ4O!7L@BDWr=qNm>Uy@K^AgkC-z+(DkD)HSA zup1l#zyXV3?aK;!-dYYYz=@};OLl|`zb@esvVQ;JH$hLUi=XeT=!l=A;L!LLhSj&A z=sOvxIe|Ap^1I*H=XY{R5KjJ{_8zW|sC}+zj1!sG@|}c){CBE;odqZ61^RES#E-!Q zJLB0QXZ@=(K!d+cJ#Lf*GI!mNosJUMMTZ>Dp8vSf>p9oH-5p{Efy_vkKw!dkGg*j} z2rwb_;RF>MKngYN|LLpiNN4*+bL|GyCSuy{4Cwh<{1z9QbL`nukq6}_uhJ3)7X__2CJ%HkHqE;9wM#w`1V zk7Fl?M#@G%ZfzNo?YL~Af}lRW*+|BXHTrrSc@{O{<0yvje1J>B)k{`FN?Ji&691Eu zz&UzJ$VnLmR!NS5!cI0eWlLi=-P*Zgf z68QE5T2<0X)&ancPTS#Z062~5@UgTc1E9Dk7@CFeC*;)t=o+ z`Z&>}s!yZ%e6`xGv7`#$!-tfyQg&+WLfDoZCGLRLYJ|z2PR{V#LK{-vNs6bhIE9q8 z$G2xSl`^Gjs8Z5+`-ojafgXmURL~fOTIqqpDDy$a=I4A?GA~mq=N??@+`zfeomLE+ zgbyCPef-e)t>r%ba)DR`V+FJT%&)o{EwWUqZ;${lx_QGIVMiO=Dskl`>DB&qr8_=w zjnIPaKuw_R{_H(Hq<~-s%gt=gw8ZPS5~bRg;*{9jIP$ws@(*TtTzX!`gF-&y@EFf2 zb)sDg5+P;Ayq`AX&`dagxs|K0oKkZ#5NRbDo_)@iDNQ}(&7QP@hkl)L9|v_ZOsIJe z9q)JI8X6&G+P)X-`62NBK|y4Mp$FhN`4vW`@%=z-998-wj4DbI!Kk9#YS;2yf6d~r zszaO8YH5R1ex8eZn9)6q%(p=ZPEZ6SO z-VR1ie}MHj{u21PH|oNGW~yAmSRt;b%_?iCCidwp21d_@{MaMGBepQ=@xERvsrtma z48ims)?U}BpeqhLtu&tvPf3=(vfe3a^ZJdvk;eg%=%*yE$MkhbH{35ba>`|I-zCF? zD{rRd87=j@IF>pM@AnM+3ZpXkejtKTMTI}as1gy3DlIp;d_7Sbtyhr`ax~u@0AU<8G;Tsatm$}9uQyg`$X-%nnkMg1nwFS1Cy^1u zup`$2#3XMg%k5Tb^kBCM}Uyr?DaN#*ywV9{COS}fyU;z!c<)!3^)c5cL#&S+A zGBtPiMuR&c>RY7Fan|YRM1l1H&eUz9snr`6KbY|EuY9QLurDCoJqV+(c2I6zu3)Li z2|~qh9_&U|GC;-R3FR@miyU}9QMKuViWz>=6I`DW6axo9hLPS726L&X+Gp;?$=1p# z+LQV68Qi~elaep~Ivv-)u7W>W$YnG&Ms~T3%0R$z@ z`YOmO-A=E}-(M!c1~%{&%)qSQq-1NRTTt6+002P=!Br^X-zf0?pWmT`P)9euZ-hwB zUqJ~$JJ(JL!AJ(31*VXc@a42-(pF~?V3qCvq=ZC26aN58xVkzE*j%Z6U=9PoRaz)Y z2*Qy_L;ycb30L(1$1L#k@skq%q=euO!nYWOqJ&Tw{b5Q-1fxGG;ZI6P45Lt#5DKF| zObLl#^d}|!NePKz6p9i;Vf2S7ArXxJq=bJXN?5mgDEGfd3IFGGYdwDNbNQqb$_tCd zFz>|Q%&_ig&mDe_F7}?zXp=8nj3C$*p$=Mt^a_kBaOMnox)S=lDmbYofq~lWggTK4 zwJ=1`7CdhSwf47mEkSLGrT;EF{xNq!ohBu8!0O;ba2M1pa_t@QmAjyhokH!|5wr!} z1+^`^b}fmy3C#a%+y!-Hme2v;x(kY!uDv6^au?KLRj922g0`T$pmu-$EiIu=yFzWU ieWxYVKI+=F1i?cr{cAu4byAnm0pEfOY6i6Cj`$a)kf?J2 literal 0 HcmV?d00001 diff --git a/crates/iota-light-client/example_config/532.json b/crates/iota-light-client/example_config/524.json similarity index 77% rename from crates/iota-light-client/example_config/532.json rename to crates/iota-light-client/example_config/524.json index ce2a2fb8831..1eb755fd04f 100644 --- a/crates/iota-light-client/example_config/532.json +++ b/crates/iota-light-client/example_config/524.json @@ -1,17 +1,18 @@ { "data": { "epoch": 1, - "sequence_number": 532, - "network_total_transactions": 2332, - "content_digest": "2tKPsa73Wd5LTzLKUE13GCsM9dekswsGtq4hFdsG1WGb", - "previous_digest": "6yZrXpcw5B5zwEoZK5TRHoJBDJu6GjYKzqpbaVdpc8j5", + "sequence_number": 524, + "network_total_transactions": 2286, + "content_digest": "3dmzEZhjhvmzsqgW5VkUzCgqRnBeTYgKquharLZf9ybj", + "previous_digest": "D8ikvrsgWGhD82bTB57KTuikWPcH7qBS1D9hTTpF2sNa", "epoch_rolling_gas_cost_summary": { "computationCost": "0", + "computationCostBurned": "0", "storageCost": "0", "storageRebate": "0", "nonRefundableStorageFee": "0" }, - "timestamp_ms": 1730201217234, + "timestamp_ms": 1731008184773, "checkpoint_commitments": [], "end_of_epoch_data": { "nextEpochCommittee": [ @@ -36,7 +37,7 @@ "epochCommitments": [ { "ECMHLiveObjectSetDigest": { - "digest": "Cx7QDKwottqp4bs2eP5pL4XApGvopmXB1KmpYAZY1Gf5" + "digest": "AXg54KNPg21sCoX2ZrF7XzHcP9LgB24oJuUpMV57Gm8h" } } ], @@ -49,7 +50,7 @@ }, "auth_signature": { "epoch": 1, - "signature": "tx6eEhYvWH0wOk2yiuZmpzelWbIRLpVz4D8IN5iz1HVeQXClzEqVSlgQpnAkDMil", + "signature": "p/zotkupKhB/w4AWh17t4f3/fKn2XBiF155RCm7EtewKS6na9cEc2jVXN0pSQAAa", "signers_map": [ 58, 48, @@ -67,11 +68,11 @@ 0, 0, 0, + 0, + 0, 1, 0, 2, - 0, - 3, 0 ] } diff --git a/crates/iota-light-client/example_config/532_full.json b/crates/iota-light-client/example_config/524_full.json similarity index 85% rename from crates/iota-light-client/example_config/532_full.json rename to crates/iota-light-client/example_config/524_full.json index e5cc2b4a22a..50e21e7f832 100644 --- a/crates/iota-light-client/example_config/532_full.json +++ b/crates/iota-light-client/example_config/524_full.json @@ -2,17 +2,18 @@ "checkpoint_summary": { "data": { "epoch": 1, - "sequence_number": 532, - "network_total_transactions": 2332, - "content_digest": "2tKPsa73Wd5LTzLKUE13GCsM9dekswsGtq4hFdsG1WGb", - "previous_digest": "6yZrXpcw5B5zwEoZK5TRHoJBDJu6GjYKzqpbaVdpc8j5", + "sequence_number": 524, + "network_total_transactions": 2286, + "content_digest": "3dmzEZhjhvmzsqgW5VkUzCgqRnBeTYgKquharLZf9ybj", + "previous_digest": "D8ikvrsgWGhD82bTB57KTuikWPcH7qBS1D9hTTpF2sNa", "epoch_rolling_gas_cost_summary": { "computationCost": "0", + "computationCostBurned": "0", "storageCost": "0", "storageRebate": "0", "nonRefundableStorageFee": "0" }, - "timestamp_ms": 1730201217234, + "timestamp_ms": 1731008184773, "checkpoint_commitments": [], "end_of_epoch_data": { "nextEpochCommittee": [ @@ -37,7 +38,7 @@ "epochCommitments": [ { "ECMHLiveObjectSetDigest": { - "digest": "Cx7QDKwottqp4bs2eP5pL4XApGvopmXB1KmpYAZY1Gf5" + "digest": "AXg54KNPg21sCoX2ZrF7XzHcP9LgB24oJuUpMV57Gm8h" } } ], @@ -50,7 +51,7 @@ }, "auth_signature": { "epoch": 1, - "signature": "tx6eEhYvWH0wOk2yiuZmpzelWbIRLpVz4D8IN5iz1HVeQXClzEqVSlgQpnAkDMil", + "signature": "p/zotkupKhB/w4AWh17t4f3/fKn2XBiF155RCm7EtewKS6na9cEc2jVXN0pSQAAa", "signers_map": [ 58, 48, @@ -68,11 +69,11 @@ 0, 0, 0, + 0, + 0, 1, 0, 2, - 0, - 3, 0 ] } @@ -81,12 +82,12 @@ "V1": { "transactions": [ { - "transaction": "23TybmpYcTxZ76cHK3WnyVZhcmjjH7PnpZfMLvEeaG2U", - "effects": "77cTGQ5A97R1kNCqxBXJEyviz6eJJV6GKMtXRh6ZEXfu" + "transaction": "BM57xpN8kvGxxL9R2baBLATG7rkfCeFkWEsDXssY1izM", + "effects": "BHSxeoRnbS5Xm4kjfKg24wAwoVGdgHWMWJqxKsQmFcMa" }, { - "transaction": "326n9ZcQDrJVxyFL8aWkknSmFahVxwpqZQ5q5ySmWrUy", - "effects": "3heGnAzfkz3DcoBMVUh5T6RhNtoUJ6MM5nCuk45u6vfw" + "transaction": "5SBQBPHqvQqSCTZ6PS3tRfiwagqLbtU9mmjENYUuKTbt", + "effects": "75LsbYsCV4JxLAswA7GPFXizgcX3FNSwmv9DLfYGouyx" } ], "user_signatures": [ @@ -113,10 +114,10 @@ "kind": { "ConsensusCommitPrologueV1": { "epoch": 1, - "round": 1058, + "round": 1024, "sub_dag_index": null, - "commit_timestamp_ms": 1730201217234, - "consensus_commit_digest": "4gKnNQLRsxwGyXvXtT4UvufbV6TRhfqWm5HpLn4ayQ3V", + "commit_timestamp_ms": 1731008184773, + "consensus_commit_digest": "tWsoLWTXMeE1U7G1N9Vh8ByLKsEFt4rYyjDK5Rnchwc", "consensus_determined_version_assignments": { "CancelledTransactions": [] } @@ -152,17 +153,18 @@ "executed_epoch": 1, "gas_used": { "computationCost": "0", + "computationCostBurned": "0", "storageCost": "0", "storageRebate": "0", "nonRefundableStorageFee": "0" }, - "transaction_digest": "23TybmpYcTxZ76cHK3WnyVZhcmjjH7PnpZfMLvEeaG2U", + "transaction_digest": "BM57xpN8kvGxxL9R2baBLATG7rkfCeFkWEsDXssY1izM", "gas_object_index": null, "events_digest": null, "dependencies": [ - "HViuzxiXGNhxBy9yrWoTSS1d7YNJcZBkGi7UhBoYN8CK" + "EcFSr6Q3Uczk4RYw4WYphvYoJpuzCxjPPWvJ3uWbMzor" ], - "lamport_version": 2112, + "lamport_version": 2062, "changed_objects": [ [ "0x0000000000000000000000000000000000000000000000000000000000000006", @@ -170,8 +172,8 @@ "input_state": { "Exist": [ [ - 2111, - "3bfq3QcfkrPWos8abZYhtp4unj2e5H8RWiSFae6RWb7S" + 2061, + "5JEU93EmLkCyxbypgBzxaToHz31bBkK9WTAFQmxJ1Q8v" ], { "Shared": { @@ -182,7 +184,7 @@ }, "output_state": { "ObjectWrite": [ - "BdMXkcFA1K7j3aGkNq5sop1sGfHhLjjsBYXEAhsU9AHi", + "8AQ83cucVBkYyEjaCbvNnJ44EhgkJdn6xjCxcay5frVC", { "Shared": { "initial_shared_version": 1 @@ -212,7 +214,7 @@ } }, "has_public_transfer": false, - "version": 2111, + "version": 2061, "contents": [ 0, 0, @@ -246,11 +248,11 @@ 0, 0, 6, - 152, - 104, - 7, - 216, - 146, + 142, + 193, + 32, + 8, + 147, 1, 0, 0 @@ -262,7 +264,7 @@ "initial_shared_version": 1 } }, - "previous_transaction": "HViuzxiXGNhxBy9yrWoTSS1d7YNJcZBkGi7UhBoYN8CK", + "previous_transaction": "EcFSr6Q3Uczk4RYw4WYphvYoJpuzCxjPPWvJ3uWbMzor", "storage_rebate": 0 } ], @@ -279,7 +281,7 @@ } }, "has_public_transfer": false, - "version": 2112, + "version": 2062, "contents": [ 0, 0, @@ -313,11 +315,11 @@ 0, 0, 6, - 210, - 104, - 7, - 216, - 146, + 197, + 193, + 32, + 8, + 147, 1, 0, 0 @@ -329,7 +331,7 @@ "initial_shared_version": 1 } }, - "previous_transaction": "23TybmpYcTxZ76cHK3WnyVZhcmjjH7PnpZfMLvEeaG2U", + "previous_transaction": "BM57xpN8kvGxxL9R2baBLATG7rkfCeFkWEsDXssY1izM", "storage_rebate": 0 } ] @@ -356,7 +358,7 @@ "computation_charge": 0, "storage_rebate": 0, "non_refundable_storage_fee": 0, - "epoch_start_timestamp_ms": 1730201217234, + "epoch_start_timestamp_ms": 1731008184773, "system_packages": [] } } @@ -392,15 +394,16 @@ "executed_epoch": 1, "gas_used": { "computationCost": "0", + "computationCostBurned": "0", "storageCost": "0", "storageRebate": "0", "nonRefundableStorageFee": "0" }, - "transaction_digest": "326n9ZcQDrJVxyFL8aWkknSmFahVxwpqZQ5q5ySmWrUy", + "transaction_digest": "5SBQBPHqvQqSCTZ6PS3tRfiwagqLbtU9mmjENYUuKTbt", "gas_object_index": null, - "events_digest": "62T8x8JxJ1wmGNoNKnmboPNFPN19vfqZeupbQ5NQpCDH", + "events_digest": "2T5r4V47csuExsistJRqH1uUSFYugXvLGXvdchud7Lug", "dependencies": [ - "8eZxmVup35tyyVdZ31sKB9av3iNMKuJrxZ8ouJ4SRWtu" + "D8mYY9UVTGgXVKCzDptpq2MbXkeC93eJrNUirJb9UrAs" ], "lamport_version": 3, "changed_objects": [ @@ -411,7 +414,7 @@ "Exist": [ [ 2, - "EYoEn9QcWfA3rxFQdSGSaouNXj2D21tGvWM7ctmBhqyo" + "Fg31XG7FSzLiFVaJdWaUzt41PAnaUJxcH58VWHVUonA1" ], { "Shared": { @@ -422,7 +425,7 @@ }, "output_state": { "ObjectWrite": [ - "5KJjRy2WknTpWbU9Nr5Z9AVRyFErsJMi228npzNXksGN", + "CDxFXrQmJx9sq3aFWoxf932yB5smsk1GeR7pNexKhEau", { "Shared": { "initial_shared_version": 1 @@ -434,14 +437,14 @@ } ], [ - "0x0ff024c8e20d71bc9762bd852772536512584460b920ec9235a6651a4305faeb", + "0x03708e406d779799d8ddea1bb057b3d54a2b223e23ca12a16cfba0750fe1c56f", { "input_state": "NotExist", "output_state": { "ObjectWrite": [ - "7Xz4Bp4cqfdYB2zBM7XZyJBHfWMdexT4e4eAacrZYa1D", + "CRmFrh9dnZvma4CFzgXBdUKV7gUtcMhY46yZnNzRXpep", { - "AddressOwner": "0x2db19ce7b296633e49f48e863c2b08d5ea0a885273bfa574e2db0a85ece225e5" + "ObjectOwner": "0xa7145260786ac2f869cccf41a1a9123c3a387ade639425d243ef82c64b5b24cb" } ] }, @@ -449,14 +452,14 @@ } ], [ - "0x28ca70d96d6d9ccd8719332ebbde3fb0485d1559920d852609cba643bd113c35", + "0x03c14ad3a230e8334445104811629c9c3d224376893a4479c8fcc024fa856ce7", { "input_state": "NotExist", "output_state": { "ObjectWrite": [ - "5ZzaULPNAAfMrR8rA9Vv34dp2wkQ6VqNBjcCx55hfwSA", + "7eTtRbme73RbddN1HxehtdQcPLY1CrWRhu25f7YCvc3N", { - "AddressOwner": "0x3bfb34ad6f452c61add36979ce9308a507f4ca7749817ba5a19a57d4ff2cd53f" + "AddressOwner": "0x22085c0ef43c8385ce6c905288f190ec07442041cb621207221b4891410898a9" } ] }, @@ -464,14 +467,14 @@ } ], [ - "0x37b6a35be5fd952c828961ceb90d1c8c5aa6c78c2803540773ea898af97c0edd", + "0x2a6f71aa6a0f34dbae23d873108f648b4cf7ac55986082ab25b22e2e1d7a2af9", { "input_state": "NotExist", "output_state": { "ObjectWrite": [ - "5zQUpRzN7FhVaNdBcBziTHh9tdiQQGYiYhpfCDfgLZbS", + "A2Ktehfw7EL8tr6HMfJBL1aLue34q1QpyD9tLWzLuu1b", { - "ObjectOwner": "0x3c32b42be3a2db1d7ddd51c85375127ff6aefb276834193e469e01e25d48f555" + "ObjectOwner": "0x54c730eab1aafa8d87c1938067fef59d16190311b2158d1732d5dfb58d888a07" } ] }, @@ -479,39 +482,29 @@ } ], [ - "0x6af2a2b7ca60bf76174adfd3e9c4957f8e937759603182f9b46c7f6c5f19c6d2", + "0x5e7d22c2c6de00425d206ba7ace77c6e3734d09045131d565ec5991f231c14bf", { - "input_state": { - "Exist": [ - [ - 2, - "BiBPtr9KpWGrxjeWSFdLWbMCEHjT5TJxocYs6bzkW8dn" - ], - { - "ObjectOwner": "0x0000000000000000000000000000000000000000000000000000000000000005" - } - ] - }, + "input_state": "NotExist", "output_state": { "ObjectWrite": [ - "GxfNuA2vW1Zdrj5G289Tdh6HsWdACP89oFniTQuuZfEM", + "EYkyw9PdjQoKw2Men3PgTNAZ2zo861EWSw1c4db2tXkt", { - "ObjectOwner": "0x0000000000000000000000000000000000000000000000000000000000000005" + "AddressOwner": "0xf80ae77e783087984e555807d1ee8590b87016899d7c34f7fe5f146f254c2be9" } ] }, - "id_operation": "None" + "id_operation": "Created" } ], [ - "0x8ee75273d26a842889b6af6298184c70aa954955e0a8e4d85fe3eb35fef8eea2", + "0x66c6ee36f9ca01544f9083d3eaed4d92cb79d3e082c0d5cfb41fd632dbeedb44", { "input_state": "NotExist", "output_state": { "ObjectWrite": [ - "BLdGrapxU3yDKCuaNfMnhfUFvE5q9JLFYUrRsvzqeaJT", + "4avgpbUnG4JKgrZbCcuYMVZ2GWLUwzThh23mRnrQZSJu", { - "ObjectOwner": "0x131c437cac81c9875e4840c5265f232c2b4be1b28becda2d90e308fb722d2889" + "ObjectOwner": "0xf9e2d5a402ea861c251db48a13d31363ce1bdaf156899933ddc08cb118b846b2" } ] }, @@ -519,29 +512,39 @@ } ], [ - "0xba3c6b79e9185ef9be04d56695397a9020301c2978ad56afc9baab620fda1989", + "0x6af2a2b7ca60bf76174adfd3e9c4957f8e937759603182f9b46c7f6c5f19c6d2", { - "input_state": "NotExist", + "input_state": { + "Exist": [ + [ + 2, + "57gDxHdWQtyP4wP4uA6yR9ZXSCZK2LuZQzdy1fWzv8pL" + ], + { + "ObjectOwner": "0x0000000000000000000000000000000000000000000000000000000000000005" + } + ] + }, "output_state": { "ObjectWrite": [ - "CczgkG3YpZXaX94wSTqovyhiKxqP1paMrHsezHYBRyv3", + "CrZ1qj7X7E34jtPrWoNWUrwFVWqKcckyxrwFhBct78Lw", { - "AddressOwner": "0x32482a229f83bace2da4c90b4dd99c8a73063a6a8ddc5bd6cc99ded87064912a" + "ObjectOwner": "0x0000000000000000000000000000000000000000000000000000000000000005" } ] }, - "id_operation": "Created" + "id_operation": "None" } ], [ - "0xbfe048dd2f0450df5e8647ec18e648a3aea1246992701bc9a851037dc7279298", + "0xa4246d8ce02fb8c17e2b729735ef2052ecd792b305211c98fceed5fa475fa4fa", { "input_state": "NotExist", "output_state": { "ObjectWrite": [ - "CqjWmJFDEBgijLvHHc6ozHnUJR6c63SDDc3u2D73pjk6", + "CpFun7LYJsDH8nmjF6zg4zvP8obHRL7sZHt7NbvwZwpB", { - "ObjectOwner": "0x791f65cc868cc6ef0bc0ff4028939f10b96270274481cdebf421d647bef00b6e" + "AddressOwner": "0xb060493ce3d9bf018d5339cd55cf0c1219b5c0d06928f52229f3830a19b67040" } ] }, @@ -549,14 +552,14 @@ } ], [ - "0xc13d95c6c09f720c4c667184663093b88898e331e4911dc8077197936f470359", + "0xb871787d8fab1a8612b54fc81498f56c37fc02eaadcd73a7c9bca45b560b8fda", { "input_state": "NotExist", "output_state": { "ObjectWrite": [ - "H4XcYS3o3LpVog76LBcyuqzf6L4vHYXFRG8eUHeydS2g", + "9wR9b8euWJSY4GVkfgwSd8fHJJurgregyBGtQAQxtfiU", { - "AddressOwner": "0x45e45dbd905642cc2ca9c3cfd1a0a1f9517758e5d98deb676040c49340c8b267" + "AddressOwner": "0x9cfbb179f23a875302cfbaceba8922fdca3ca4b14eeb38b2f071946715e5e231" } ] }, @@ -564,14 +567,14 @@ } ], [ - "0xfc4360fe27e0682f68fa6cb7286e5d136b36ac6337d12fa2337f912db919e42a", + "0xb8f4246362eb7e1da369f1a4c57f72f9f63b4fdec029285df09f6fdd6153d717", { "input_state": "NotExist", "output_state": { "ObjectWrite": [ - "J2PeXcQtyqshCogHU5p6impsjTTuiUpcKUTh6KkWUgTR", + "HvvRray3hxuS168t7TTwWzPrj8rP7ryJ8HpdGv8uCeuT", { - "ObjectOwner": "0x6450460d7e7be475407908e48144f095500bc73cf7254f91c182a45570d0cac6" + "ObjectOwner": "0x3b6c324ad54f6a7dfd49159358a20570722173968d34109b4340ee2f5da000a6" } ] }, @@ -596,102 +599,227 @@ "type_args": [] }, "contents": [ - 15, + 108, + 8, + 131, + 255, + 10, + 126, + 40, + 96, + 0, + 240, + 181, + 84, + 198, + 78, + 38, 179, + 32, + 56, + 224, + 3, + 131, + 55, + 202, + 245, + 210, + 94, + 134, + 100, + 211, + 3, + 231, + 206, + 248, + 10, + 231, + 126, + 120, + 48, + 135, + 152, + 78, + 85, + 88, 7, - 220, - 99, - 116, - 11, + 209, + 238, + 133, + 144, + 184, + 112, + 22, + 137, + 157, + 124, + 52, + 247, + 254, + 95, + 20, + 111, + 37, + 76, 43, - 34, - 99, + 233, + 248, + 10, + 231, + 126, + 120, + 48, + 135, + 152, + 78, + 85, + 88, + 7, + 209, + 238, + 133, + 144, + 184, + 112, + 22, + 137, + 157, + 124, + 52, + 247, + 254, + 95, + 20, + 111, + 37, + 76, + 43, + 233, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 14, + 208, + 231, 124, + 3, + 0, + 0 + ] + }, + { + "package_id": "0x0000000000000000000000000000000000000000000000000000000000000003", + "transaction_module": "iota_system", + "sender": "0x0000000000000000000000000000000000000000000000000000000000000000", + "type_": { + "address": "0000000000000000000000000000000000000000000000000000000000000003", + "module": "validator", + "name": "StakingRequestEvent", + "type_args": [] + }, + "contents": [ + 102, + 130, + 212, + 1, + 216, + 110, + 189, + 207, + 71, + 145, 173, - 183, + 186, + 86, + 181, + 239, + 231, + 188, + 196, + 199, + 13, 91, - 122, - 153, - 83, + 42, + 253, + 78, 227, - 216, - 174, - 143, - 123, - 179, - 93, - 16, - 223, 139, - 50, - 20, - 184, - 146, - 41, - 59, + 202, + 175, + 116, + 79, + 92, + 61, + 156, 251, - 52, - 173, - 111, - 69, - 44, - 97, - 173, - 211, - 105, + 177, 121, + 242, + 58, + 135, + 83, + 2, + 207, + 186, 206, - 147, - 8, - 165, - 7, - 244, + 186, + 137, + 34, + 253, 202, - 119, - 73, - 129, - 123, - 165, - 161, - 154, - 87, - 212, - 255, - 44, - 213, - 63, - 59, + 60, + 164, + 177, + 78, + 235, + 56, + 178, + 240, + 113, + 148, + 103, + 21, + 229, + 226, + 49, + 156, 251, - 52, - 173, - 111, - 69, - 44, - 97, - 173, - 211, - 105, + 177, 121, + 242, + 58, + 135, + 83, + 2, + 207, + 186, 206, - 147, - 8, - 165, - 7, - 244, + 186, + 137, + 34, + 253, 202, - 119, - 73, - 129, - 123, - 165, - 161, - 154, - 87, - 212, - 255, - 44, - 213, - 63, + 60, + 164, + 177, + 78, + 235, + 56, + 178, + 240, + 113, + 148, + 103, + 21, + 229, + 226, + 49, 1, 0, 0, @@ -721,102 +849,102 @@ "type_args": [] }, "contents": [ - 209, - 123, - 224, - 206, - 121, - 241, - 77, - 244, - 72, - 86, - 107, - 103, - 131, - 192, - 239, 101, - 12, - 50, - 118, - 14, - 142, - 183, - 157, - 157, - 157, - 178, - 187, - 220, - 115, - 108, + 212, + 253, + 63, 181, - 43, - 45, - 177, - 156, - 231, - 178, + 227, + 59, + 98, + 128, 150, + 217, + 196, + 85, + 74, + 68, + 84, + 29, + 253, + 46, + 147, + 10, + 123, + 61, + 25, + 96, + 151, + 138, + 209, 99, - 62, + 92, + 178, + 216, + 176, + 96, 73, - 244, - 142, - 134, 60, - 43, - 8, - 213, - 234, - 10, - 136, - 82, - 115, + 227, + 217, 191, - 165, - 116, - 226, - 219, + 1, + 141, + 83, + 57, + 205, + 85, + 207, + 12, + 18, + 25, + 181, + 192, + 208, + 105, + 40, + 245, + 34, + 41, + 243, + 131, 10, - 133, - 236, - 226, - 37, - 229, - 45, - 177, - 156, - 231, - 178, - 150, - 99, - 62, + 25, + 182, + 112, + 64, + 176, + 96, 73, - 244, - 142, - 134, 60, - 43, - 8, - 213, - 234, - 10, - 136, - 82, - 115, + 227, + 217, 191, - 165, - 116, - 226, - 219, + 1, + 141, + 83, + 57, + 205, + 85, + 207, + 12, + 18, + 25, + 181, + 192, + 208, + 105, + 40, + 245, + 34, + 41, + 243, + 131, 10, - 133, - 236, - 226, - 37, - 229, + 25, + 182, + 112, + 64, 1, 0, 0, @@ -846,102 +974,102 @@ "type_args": [] }, "contents": [ + 252, + 9, + 3, + 95, + 199, + 228, + 138, + 44, + 8, + 192, + 170, 242, + 138, + 90, + 129, + 73, + 110, + 204, + 101, + 177, + 253, + 27, + 77, + 240, + 196, + 136, + 61, + 74, + 232, 245, - 215, - 89, + 31, + 44, + 34, + 8, + 92, + 14, + 244, + 60, + 131, + 133, + 206, + 108, + 144, 82, - 128, - 97, - 158, - 1, - 156, - 124, - 176, - 4, - 137, - 192, - 182, - 113, + 136, + 241, 144, - 74, - 11, - 72, - 130, - 17, - 145, - 107, - 150, - 212, - 219, 236, - 228, - 205, - 29, - 50, - 72, - 42, + 7, + 68, + 32, + 65, + 203, + 98, + 18, + 7, 34, - 159, - 131, - 186, - 206, - 45, - 164, - 201, - 11, - 77, - 217, - 156, - 138, - 115, - 6, - 58, - 106, - 141, - 220, - 91, - 214, - 204, - 153, - 222, - 216, - 112, - 100, - 145, - 42, - 50, + 27, 72, - 42, + 145, + 65, + 8, + 152, + 169, 34, - 159, + 8, + 92, + 14, + 244, + 60, 131, - 186, + 133, 206, - 45, - 164, - 201, - 11, - 77, - 217, - 156, - 138, - 115, - 6, - 58, - 106, - 141, - 220, - 91, - 214, - 204, - 153, - 222, - 216, - 112, - 100, + 108, + 144, + 82, + 136, + 241, + 144, + 236, + 7, + 68, + 32, + 65, + 203, + 98, + 18, + 7, + 34, + 27, + 72, 145, - 42, + 65, + 8, + 152, + 169, 1, 0, 0, @@ -966,109 +1094,12 @@ "sender": "0x0000000000000000000000000000000000000000000000000000000000000000", "type_": { "address": "0000000000000000000000000000000000000000000000000000000000000003", - "module": "validator", - "name": "StakingRequestEvent", + "module": "validator_set", + "name": "ValidatorEpochInfoEventV1", "type_args": [] }, "contents": [ - 26, - 73, - 49, - 169, - 67, - 19, - 121, - 35, - 127, - 251, - 115, - 102, - 203, - 11, - 73, - 57, - 227, - 115, - 5, - 39, - 92, - 71, - 87, - 245, - 250, - 108, - 229, - 163, - 116, - 21, - 52, - 122, - 69, - 228, - 93, - 189, - 144, - 86, - 66, - 204, - 44, - 169, - 195, - 207, - 209, - 160, - 161, - 249, - 81, - 119, - 88, - 229, - 217, - 141, - 235, - 103, - 96, - 64, - 196, - 147, - 64, - 200, - 178, - 103, - 69, - 228, - 93, - 189, - 144, - 86, - 66, - 204, - 44, - 169, - 195, - 207, - 209, - 160, - 161, - 249, - 81, - 119, - 88, - 229, - 217, - 141, - 235, - 103, - 96, - 64, - 196, - 147, - 64, - 200, - 178, - 103, - 1, - 0, + 2, 0, 0, 0, @@ -1076,66 +1107,38 @@ 0, 0, 0, - 14, - 208, + 248, + 10, 231, + 126, + 120, + 48, + 135, + 152, + 78, + 85, + 88, + 7, + 209, + 238, + 133, + 144, + 184, + 112, + 22, + 137, + 157, 124, - 3, - 0, - 0 - ] - }, - { - "package_id": "0x0000000000000000000000000000000000000000000000000000000000000003", - "transaction_module": "iota_system", - "sender": "0x0000000000000000000000000000000000000000000000000000000000000000", - "type_": { - "address": "0000000000000000000000000000000000000000000000000000000000000003", - "module": "validator_set", - "name": "ValidatorEpochInfoEventV1", - "type_args": [] - }, - "contents": [ - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 59, - 251, 52, - 173, + 247, + 254, + 95, + 20, 111, - 69, - 44, - 97, - 173, - 211, - 105, - 121, - 206, - 147, - 8, - 165, - 7, - 244, - 202, - 119, - 73, - 129, - 123, - 165, - 161, - 154, - 87, - 212, - 255, - 44, - 213, - 63, + 37, + 76, + 43, + 233, 232, 3, 0, @@ -1222,38 +1225,38 @@ 0, 0, 0, - 45, - 177, 156, - 231, - 178, - 150, - 99, - 62, - 73, - 244, - 142, - 134, + 251, + 177, + 121, + 242, + 58, + 135, + 83, + 2, + 207, + 186, + 206, + 186, + 137, + 34, + 253, + 202, 60, - 43, - 8, - 213, - 234, - 10, - 136, - 82, - 115, - 191, - 165, - 116, - 226, - 219, - 10, - 133, - 236, - 226, - 37, + 164, + 177, + 78, + 235, + 56, + 178, + 240, + 113, + 148, + 103, + 21, 229, + 226, + 49, 232, 3, 0, @@ -1340,38 +1343,38 @@ 0, 0, 0, - 50, - 72, - 42, - 34, - 159, - 131, - 186, - 206, - 45, - 164, - 201, - 11, - 77, + 176, + 96, + 73, + 60, + 227, 217, - 156, - 138, - 115, - 6, - 58, - 106, + 191, + 1, 141, - 220, - 91, - 214, - 204, - 153, - 222, - 216, + 83, + 57, + 205, + 85, + 207, + 12, + 18, + 25, + 181, + 192, + 208, + 105, + 40, + 245, + 34, + 41, + 243, + 131, + 10, + 25, + 182, 112, - 100, - 145, - 42, + 64, 232, 3, 0, @@ -1458,38 +1461,38 @@ 0, 0, 0, - 69, - 228, - 93, - 189, + 34, + 8, + 92, + 14, + 244, + 60, + 131, + 133, + 206, + 108, 144, - 86, - 66, - 204, - 44, + 82, + 136, + 241, + 144, + 236, + 7, + 68, + 32, + 65, + 203, + 98, + 18, + 7, + 34, + 27, + 72, + 145, + 65, + 8, + 152, 169, - 195, - 207, - 209, - 160, - 161, - 249, - 81, - 119, - 88, - 229, - 217, - 141, - 235, - 103, - 96, - 64, - 196, - 147, - 64, - 200, - 178, - 103, 232, 3, 0, @@ -1723,7 +1726,7 @@ "initial_shared_version": 1 } }, - "previous_transaction": "8eZxmVup35tyyVdZ31sKB9av3iNMKuJrxZ8ouJ4SRWtu", + "previous_transaction": "D8mYY9UVTGgXVKCzDptpq2MbXkeC93eJrNUirJb9UrAs", "storage_rebate": 0 }, { @@ -1814,38 +1817,38 @@ 0, 0, 0, - 57, - 250, - 115, - 22, - 182, - 11, - 178, - 229, - 253, - 205, - 92, - 179, - 236, - 134, - 160, - 75, - 54, - 44, - 186, - 33, - 145, - 160, - 137, - 160, - 136, - 5, - 12, + 109, + 174, 185, - 38, - 134, - 120, - 155, + 125, + 21, + 211, + 205, + 144, + 244, + 138, + 46, + 73, + 101, + 130, + 123, + 170, + 249, + 251, + 30, + 112, + 221, + 29, + 102, + 88, + 209, + 45, + 76, + 125, + 21, + 32, + 104, + 125, 0, 240, 105, @@ -1863,38 +1866,38 @@ 24, 0, 4, - 59, - 251, + 248, + 10, + 231, + 126, + 120, + 48, + 135, + 152, + 78, + 85, + 88, + 7, + 209, + 238, + 133, + 144, + 184, + 112, + 22, + 137, + 157, + 124, 52, - 173, + 247, + 254, + 95, + 20, 111, - 69, - 44, - 97, - 173, - 211, - 105, - 121, - 206, - 147, - 8, - 165, - 7, - 244, - 202, - 119, - 73, - 129, - 123, - 165, - 161, - 154, - 87, - 212, - 255, - 44, - 213, - 63, + 37, + 76, + 43, + 233, 96, 141, 207, @@ -1993,120 +1996,120 @@ 56, 212, 32, + 103, + 97, + 253, + 85, + 71, + 199, + 95, + 41, 32, - 38, + 133, + 72, + 250, + 242, + 207, + 198, + 135, + 191, + 56, + 50, + 241, + 143, + 194, + 48, + 227, + 82, + 111, + 238, + 202, + 219, + 96, + 242, + 115, + 32, + 5, + 187, + 103, + 237, + 221, + 215, + 220, 163, - 54, - 223, - 222, - 200, - 16, - 231, - 136, - 101, - 109, - 60, - 170, - 54, - 183, - 183, - 132, - 232, - 253, - 218, - 17, - 151, - 230, - 164, - 94, - 212, - 132, - 90, - 230, + 96, + 92, + 220, + 33, 7, - 98, - 32, - 217, - 53, - 60, - 49, - 54, + 255, 152, - 131, + 197, + 83, 119, - 1, - 32, - 5, + 79, + 219, + 146, + 195, + 233, + 109, + 168, + 67, + 89, + 157, + 15, + 150, + 2, + 29, + 48, + 169, + 171, + 20, + 40, 215, - 206, - 234, - 120, - 214, - 210, - 148, - 142, - 129, - 161, - 106, - 254, + 65, + 199, + 159, 253, - 73, - 188, - 78, - 237, + 58, + 56, + 211, + 84, + 55, + 112, + 200, + 169, + 97, + 250, + 251, + 238, + 142, + 231, + 234, + 185, + 236, + 251, 59, - 75, - 133, - 63, - 48, - 175, + 203, + 231, 52, - 76, - 124, - 156, - 164, - 117, - 75, - 204, - 212, - 49, - 8, - 33, - 96, - 102, - 254, - 60, - 113, - 252, - 79, - 3, - 66, - 110, - 30, - 211, - 234, - 248, - 46, - 26, - 12, - 142, - 136, - 104, - 199, - 247, - 129, - 48, - 228, + 209, + 160, + 86, 61, - 39, 13, - 72, - 101, - 101, - 199, - 19, - 109, - 21, + 11, + 136, + 42, + 78, + 51, + 106, + 23, + 139, + 171, + 147, + 7, + 169, 11, 118, 97, @@ -2142,11 +2145,11 @@ 99, 112, 47, - 54, 53, - 52, - 52, - 54, + 48, + 56, + 55, + 49, 47, 104, 116, @@ -2172,11 +2175,11 @@ 100, 112, 47, - 54, 53, - 52, - 52, + 48, 56, + 55, + 51, 24, 47, 105, @@ -2197,11 +2200,11 @@ 100, 112, 47, - 54, - 53, - 52, 53, - 52, + 48, + 56, + 55, + 55, 0, 0, 0, @@ -2209,38 +2212,38 @@ 0, 0, 0, - 237, - 202, - 141, - 82, - 243, - 82, - 185, - 130, - 172, - 46, - 92, - 14, - 227, - 72, - 139, + 80, + 120, + 18, + 177, + 245, + 197, + 208, 162, - 213, - 206, - 89, - 121, - 179, + 248, + 73, 214, - 64, - 241, - 40, - 30, - 200, - 224, - 136, - 215, + 252, + 81, + 203, + 84, + 183, + 3, + 148, + 210, + 87, + 104, + 198, + 105, + 159, + 34, + 83, + 46, + 98, + 15, + 95, + 128, 39, - 57, 0, 0, 0, @@ -2257,38 +2260,38 @@ 0, 0, 0, - 74, - 247, - 153, - 224, - 143, - 124, - 199, - 167, - 208, - 50, - 229, - 166, - 53, - 141, - 230, - 155, - 237, - 8, - 69, - 247, - 162, - 221, - 120, - 65, + 72, + 85, + 56, + 159, + 30, + 128, + 164, + 236, + 81, + 2, + 90, + 19, + 63, + 129, + 240, + 0, + 194, + 165, + 109, 215, + 222, + 233, + 179, + 250, + 250, + 245, + 170, 137, - 47, - 111, - 156, - 51, - 80, - 173, + 246, + 132, + 201, + 67, 232, 3, 0, @@ -2297,48 +2300,48 @@ 0, 0, 0, - 15, - 179, - 7, - 220, - 99, - 116, - 11, - 43, - 34, - 99, - 124, - 173, - 183, - 91, - 122, - 153, - 83, - 227, - 216, - 174, - 143, - 123, - 179, - 93, - 16, - 223, - 139, - 50, - 20, - 184, - 146, - 41, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, + 108, + 8, + 131, + 255, + 10, + 126, + 40, + 96, + 0, + 240, + 181, + 84, + 198, + 78, + 38, + 179, + 32, + 56, + 224, + 3, + 131, + 55, + 202, + 245, + 210, + 94, + 134, + 100, + 211, + 3, + 231, + 206, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, 0, 124, 204, @@ -2363,38 +2366,38 @@ 87, 5, 0, - 100, - 80, - 70, - 13, - 126, - 123, - 228, - 117, - 64, - 121, - 8, - 228, - 129, - 68, - 240, - 149, - 80, - 11, - 199, - 60, - 247, - 37, - 79, - 145, - 193, - 130, + 249, + 226, + 213, 164, - 85, - 112, - 208, - 202, - 198, + 2, + 234, + 134, + 28, + 37, + 29, + 180, + 138, + 19, + 211, + 19, + 99, + 206, + 27, + 218, + 241, + 86, + 137, + 153, + 51, + 221, + 192, + 140, + 177, + 24, + 184, + 70, + 178, 2, 0, 0, @@ -2427,38 +2430,38 @@ 0, 0, 0, + 203, + 26, + 23, + 238, 66, - 171, - 40, - 184, - 198, - 248, - 37, - 80, - 178, - 91, - 133, - 208, - 36, - 170, - 67, - 205, - 191, - 10, - 49, + 227, + 187, + 112, + 177, + 165, + 31, + 209, + 60, + 48, + 107, 13, - 172, - 27, - 248, - 33, - 15, - 228, + 141, + 41, + 48, + 215, 163, - 61, - 156, + 127, + 196, + 8, + 232, + 152, + 9, 207, - 73, - 153, + 166, + 218, + 70, + 22, 0, 0, 0, @@ -2499,38 +2502,38 @@ 0, 0, 0, - 154, - 63, - 153, - 219, - 190, - 60, - 107, - 172, - 161, - 128, - 223, - 192, - 219, - 114, - 132, - 40, - 213, - 246, - 227, - 9, - 177, - 93, - 243, - 81, - 126, - 145, - 127, + 207, + 35, + 255, + 110, 241, - 139, - 224, - 194, - 8, + 180, + 144, + 58, + 126, + 52, + 100, + 3, + 20, + 184, + 55, + 115, + 217, + 178, + 167, + 162, + 51, + 111, + 11, + 83, + 26, + 188, + 86, + 38, + 125, + 81, + 201, + 5, 0, 0, 0, @@ -2539,47 +2542,47 @@ 0, 0, 0, - 45, - 177, 156, - 231, - 178, - 150, - 99, - 62, - 73, - 244, - 142, - 134, - 60, - 43, - 8, - 213, - 234, - 10, - 136, - 82, - 115, - 191, - 165, - 116, - 226, - 219, - 10, - 133, - 236, - 226, - 37, - 229, - 96, - 153, + 251, + 177, + 121, 242, - 94, - 246, - 31, - 128, - 50, - 185, + 58, + 135, + 83, + 2, + 207, + 186, + 206, + 186, + 137, + 34, + 253, + 202, + 60, + 164, + 177, + 78, + 235, + 56, + 178, + 240, + 113, + 148, + 103, + 21, + 229, + 226, + 49, + 96, + 153, + 242, + 94, + 246, + 31, + 128, + 50, + 185, 20, 99, 100, @@ -2669,119 +2672,119 @@ 26, 16, 32, - 122, - 3, - 30, - 157, - 52, - 195, - 36, + 58, + 68, + 223, + 26, + 225, + 53, + 99, + 20, + 243, + 82, + 64, + 9, + 179, + 62, + 250, + 66, + 234, + 253, + 82, + 217, + 35, 160, - 76, + 23, + 187, + 55, + 240, + 46, 194, - 183, - 16, - 106, - 36, - 32, - 2, - 216, - 206, 21, - 7, - 4, - 151, - 70, - 39, - 234, - 215, - 20, - 41, - 150, - 113, - 224, - 91, + 100, + 88, + 1, 32, - 3, - 60, - 195, + 135, + 180, 7, + 14, + 63, + 186, + 73, + 223, + 105, + 164, + 178, + 29, 177, - 11, - 189, - 198, - 69, - 193, - 118, - 101, - 132, - 133, - 243, - 255, - 102, - 108, - 2, - 133, + 110, + 165, + 249, + 120, + 124, + 229, + 13, + 134, 7, - 68, - 189, - 150, - 46, - 93, - 146, - 0, - 141, - 222, - 107, - 252, - 48, - 173, - 72, - 33, - 196, - 123, - 102, - 115, - 188, - 207, - 117, + 9, + 120, + 49, + 124, + 43, + 186, + 202, + 230, + 49, + 155, 48, - 189, - 20, - 63, - 36, - 94, - 101, - 110, - 96, - 96, - 218, - 135, - 207, - 130, - 60, + 131, + 230, + 161, + 113, + 143, + 16, + 233, + 116, + 129, + 138, + 235, 108, - 28, - 33, - 226, - 4, + 8, + 238, + 100, + 74, + 173, + 39, + 77, + 146, + 76, + 206, + 147, + 25, + 55, + 180, + 171, + 112, + 39, + 31, 178, + 21, + 170, + 49, + 40, + 27, + 178, + 35, + 84, 120, - 120, - 61, - 127, - 163, - 62, - 231, - 69, - 205, - 199, - 183, - 145, - 196, - 92, - 33, - 251, + 57, + 87, + 188, + 153, + 74, + 59, + 249, 211, 11, 118, @@ -2818,11 +2821,11 @@ 99, 112, 47, - 54, 53, - 52, - 51, + 48, + 56, 54, + 51, 47, 104, 116, @@ -2848,11 +2851,11 @@ 100, 112, 47, - 54, 53, - 52, - 51, + 48, 56, + 54, + 53, 24, 47, 105, @@ -2873,11 +2876,11 @@ 100, 112, 47, - 54, 53, - 52, - 52, - 52, + 48, + 56, + 54, + 57, 0, 0, 0, @@ -2885,38 +2888,38 @@ 0, 0, 0, - 139, - 224, - 68, - 32, - 91, + 80, + 4, + 215, + 153, + 109, + 192, + 223, + 67, + 182, + 151, + 193, + 64, 176, - 203, + 238, 154, - 171, - 120, - 35, - 40, - 91, + 188, + 119, + 123, + 122, + 60, + 111, + 49, + 96, + 64, + 25, + 39, + 111, + 203, + 172, 57, - 179, - 164, - 23, - 110, - 253, - 173, - 253, - 143, - 209, - 90, - 0, - 61, - 90, - 186, - 109, - 177, - 59, - 90, + 31, + 124, 0, 0, 0, @@ -2933,38 +2936,38 @@ 0, 0, 0, - 18, - 5, - 29, - 220, - 228, - 186, - 162, - 227, - 204, - 127, - 217, - 247, - 93, - 81, - 88, - 63, - 196, - 75, - 65, - 142, - 11, - 57, - 159, - 31, - 113, - 251, - 185, - 116, - 209, + 72, + 172, + 232, + 233, + 180, + 92, 4, - 123, + 34, + 241, + 8, + 219, + 225, + 28, + 39, + 60, + 71, + 239, + 66, + 169, + 201, + 184, + 20, + 161, + 67, + 63, + 9, 14, + 115, + 118, + 45, + 158, + 95, 232, 3, 0, @@ -2973,38 +2976,38 @@ 0, 0, 0, - 209, - 123, - 224, - 206, - 121, - 241, - 77, - 244, - 72, + 102, + 130, + 212, + 1, + 216, + 110, + 189, + 207, + 71, + 145, + 173, + 186, 86, - 107, - 103, - 131, - 192, - 239, - 101, - 12, - 50, - 118, - 14, - 142, - 183, - 157, - 157, - 157, - 178, - 187, - 220, - 115, - 108, 181, - 43, + 239, + 231, + 188, + 196, + 199, + 13, + 91, + 42, + 253, + 78, + 227, + 139, + 202, + 175, + 116, + 79, + 92, + 61, 1, 0, 0, @@ -3039,38 +3042,38 @@ 87, 5, 0, - 121, - 31, - 101, - 204, - 134, - 140, - 198, - 239, - 11, - 192, - 255, - 64, - 40, + 84, + 199, + 48, + 234, + 177, + 170, + 250, + 141, + 135, + 193, 147, - 159, - 16, - 185, - 98, - 112, - 39, - 68, - 129, - 205, - 235, - 244, - 33, - 214, - 71, - 190, - 240, - 11, - 110, + 128, + 103, + 254, + 245, + 157, + 22, + 25, + 3, + 17, + 178, + 21, + 141, + 23, + 50, + 213, + 223, + 181, + 141, + 136, + 138, + 7, 2, 0, 0, @@ -3103,38 +3106,38 @@ 0, 0, 0, - 162, - 2, - 46, - 57, - 140, - 215, - 171, - 207, - 199, - 51, - 119, - 103, - 99, + 21, + 117, + 19, + 202, + 221, + 35, + 90, + 51, + 224, 159, - 136, - 104, - 178, - 52, - 54, - 253, - 140, - 74, - 230, - 132, + 189, 248, - 104, - 75, - 249, - 252, - 181, - 229, - 232, + 208, + 158, + 210, + 27, + 28, + 250, + 213, + 162, + 182, + 1, + 241, + 3, + 230, + 117, + 187, + 136, + 122, + 239, + 176, + 48, 0, 0, 0, @@ -3175,38 +3178,38 @@ 0, 0, 0, - 251, - 213, - 102, - 25, - 149, - 159, - 37, 192, - 210, - 95, - 204, - 21, - 18, - 42, - 226, - 5, - 226, + 166, + 139, + 43, + 255, + 184, + 75, + 76, 152, - 81, + 3, + 181, + 175, + 174, + 91, + 13, + 96, + 15, 144, - 191, - 110, - 76, - 51, - 233, - 213, - 87, - 45, - 246, - 101, - 58, - 130, + 204, + 47, + 165, + 142, + 4, + 166, + 226, + 6, + 184, + 69, + 247, + 29, + 234, + 15, 0, 0, 0, @@ -3215,38 +3218,38 @@ 0, 0, 0, - 50, - 72, - 42, - 34, - 159, - 131, - 186, - 206, - 45, - 164, - 201, - 11, - 77, + 176, + 96, + 73, + 60, + 227, 217, - 156, - 138, - 115, - 6, - 58, - 106, + 191, + 1, 141, - 220, - 91, - 214, - 204, - 153, - 222, - 216, + 83, + 57, + 205, + 85, + 207, + 12, + 18, + 25, + 181, + 192, + 208, + 105, + 40, + 245, + 34, + 41, + 243, + 131, + 10, + 25, + 182, 112, - 100, - 145, - 42, + 64, 96, 173, 222, @@ -3345,120 +3348,120 @@ 88, 242, 32, - 97, - 138, - 198, - 62, - 136, - 198, - 103, + 37, + 38, + 164, + 22, 175, - 249, - 91, - 77, - 120, - 56, - 146, - 191, - 105, - 25, - 87, - 27, - 118, - 59, - 62, + 170, + 28, + 162, + 153, + 171, + 94, + 47, + 184, + 71, + 158, + 147, + 57, + 24, + 106, + 26, + 178, + 213, + 142, + 36, + 230, + 169, + 109, + 158, + 221, + 192, 33, + 95, + 32, + 214, + 26, + 109, + 239, + 172, + 184, + 100, + 15, + 255, + 126, + 43, + 4, + 21, + 108, + 237, + 244, 84, - 159, - 132, - 242, - 67, - 253, - 50, + 26, + 68, + 152, + 151, + 160, + 204, + 29, + 223, + 186, 9, - 132, - 32, - 211, - 127, - 23, - 124, 68, - 158, - 122, - 141, - 69, - 188, - 41, - 144, - 117, - 211, - 169, - 65, - 239, - 69, - 38, - 170, - 84, - 174, - 198, - 7, - 179, - 110, - 215, - 182, - 252, - 113, - 72, - 226, + 241, + 125, + 32, + 90, 48, 133, - 8, - 105, - 153, - 110, - 47, - 196, - 176, - 44, - 252, - 140, - 171, - 99, - 25, - 5, - 109, 170, - 61, + 149, + 94, + 20, + 162, + 65, + 130, + 229, + 89, + 162, + 227, + 212, + 120, + 210, + 147, + 251, + 230, + 72, + 164, + 82, + 11, 34, + 122, + 136, + 226, + 100, + 29, + 231, 234, - 19, - 78, - 134, - 220, - 12, - 12, - 146, - 181, + 4, + 20, + 66, + 93, + 111, + 110, + 247, + 125, + 205, + 117, + 38, + 32, 134, - 46, - 50, - 246, - 204, - 83, - 195, - 216, - 58, - 47, - 246, - 133, - 52, - 153, - 89, - 95, - 128, - 57, - 13, - 156, + 77, + 109, + 0, + 99, + 241, 11, 118, 97, @@ -3494,11 +3497,11 @@ 99, 112, 47, - 54, - 53, - 52, 53, - 54, + 48, + 56, + 55, + 57, 47, 104, 116, @@ -3524,11 +3527,11 @@ 100, 112, 47, - 54, - 53, - 52, 53, + 48, 56, + 56, + 49, 24, 47, 105, @@ -3549,11 +3552,11 @@ 100, 112, 47, - 54, 53, - 52, - 54, - 52, + 48, + 56, + 56, + 53, 0, 0, 0, @@ -3561,38 +3564,38 @@ 0, 0, 0, + 33, + 171, + 228, + 22, 121, - 245, - 173, - 214, - 62, - 45, - 78, - 231, - 42, - 141, - 80, - 70, - 101, - 210, - 114, - 51, + 63, + 72, + 15, + 172, + 204, + 76, + 171, + 127, + 157, + 190, + 64, + 26, + 119, + 128, + 123, + 171, + 225, + 184, 185, - 135, - 223, - 13, - 169, - 239, - 245, - 68, - 254, - 122, - 133, - 237, - 80, - 108, - 161, - 30, + 188, + 124, + 49, + 110, + 181, + 249, + 186, + 58, 0, 0, 0, @@ -3609,38 +3612,38 @@ 0, 0, 0, - 164, - 51, - 96, - 252, - 84, - 166, - 231, + 172, + 230, + 205, + 130, + 78, 126, - 125, - 69, - 141, - 222, + 78, + 157, + 52, + 126, + 41, + 82, + 157, + 103, + 72, + 93, + 221, + 14, + 39, + 182, + 150, + 241, + 24, + 240, + 11, 212, - 230, - 206, - 158, - 145, - 216, - 89, - 46, - 224, - 195, - 37, - 168, - 53, - 214, - 209, - 133, - 68, - 191, - 142, - 226, + 87, + 94, + 98, + 174, + 69, + 31, 232, 3, 0, @@ -3649,38 +3652,38 @@ 0, 0, 0, - 242, - 245, - 215, - 89, - 82, + 101, + 212, + 253, + 63, + 181, + 227, + 59, + 98, 128, - 97, - 158, - 1, - 156, - 124, - 176, - 4, - 137, - 192, - 182, - 113, - 144, - 74, - 11, - 72, - 130, - 17, - 145, - 107, 150, - 212, - 219, - 236, - 228, - 205, + 217, + 196, + 85, + 74, + 68, + 84, 29, + 253, + 46, + 147, + 10, + 123, + 61, + 25, + 96, + 151, + 138, + 209, + 99, + 92, + 178, + 216, 1, 0, 0, @@ -3715,38 +3718,38 @@ 87, 5, 0, - 60, - 50, - 180, - 43, - 227, - 162, - 219, - 29, - 125, - 221, - 81, - 200, - 83, - 117, + 167, + 20, + 82, + 96, + 120, + 106, + 194, + 248, + 105, + 204, + 207, + 65, + 161, + 169, 18, - 127, - 246, - 174, - 251, - 39, - 104, - 52, - 25, - 62, - 70, - 158, - 1, - 226, - 93, - 72, - 245, - 85, + 60, + 58, + 56, + 122, + 222, + 99, + 148, + 37, + 210, + 67, + 239, + 130, + 198, + 75, + 91, + 36, + 203, 2, 0, 0, @@ -3779,38 +3782,38 @@ 0, 0, 0, - 81, - 125, - 125, - 70, - 103, - 63, - 184, - 12, - 3, - 228, - 100, - 158, - 86, - 236, - 215, - 25, - 233, - 65, - 9, - 225, - 127, - 207, - 98, - 242, - 200, - 41, - 56, - 223, - 20, - 82, + 5, + 216, + 191, + 72, + 32, + 220, + 147, + 110, + 183, + 210, + 95, + 126, + 137, + 161, + 129, + 47, + 250, + 216, + 4, + 112, + 22, + 173, 36, - 144, + 56, + 55, + 67, + 102, + 23, + 246, + 106, + 121, + 137, 0, 0, 0, @@ -3851,38 +3854,38 @@ 0, 0, 0, - 49, - 246, - 218, - 38, - 205, - 194, - 217, - 99, - 178, - 200, - 79, - 165, + 133, + 185, + 110, + 72, 209, - 164, - 114, - 99, - 171, - 118, - 230, + 210, + 7, + 247, + 217, + 234, + 92, 130, - 90, - 255, - 202, - 41, - 223, - 145, - 76, - 62, - 88, - 164, - 241, - 120, + 33, + 84, + 205, + 22, + 203, + 189, + 192, + 28, + 14, + 51, + 197, + 0, + 84, + 118, + 250, + 9, + 208, + 20, + 212, + 163, 0, 0, 0, @@ -3891,38 +3894,38 @@ 0, 0, 0, - 69, - 228, - 93, - 189, + 34, + 8, + 92, + 14, + 244, + 60, + 131, + 133, + 206, + 108, 144, - 86, - 66, - 204, - 44, + 82, + 136, + 241, + 144, + 236, + 7, + 68, + 32, + 65, + 203, + 98, + 18, + 7, + 34, + 27, + 72, + 145, + 65, + 8, + 152, 169, - 195, - 207, - 209, - 160, - 161, - 249, - 81, - 119, - 88, - 229, - 217, - 141, - 235, - 103, - 96, - 64, - 196, - 147, - 64, - 200, - 178, - 103, 96, 179, 253, @@ -4021,139 +4024,139 @@ 116, 244, 32, - 44, - 195, - 142, - 100, - 204, - 221, - 210, - 56, - 220, - 159, - 252, - 43, - 109, - 45, - 129, - 212, - 168, - 89, - 191, - 44, - 18, - 142, - 55, - 166, - 147, - 169, - 39, - 81, - 113, - 109, - 74, - 111, - 32, - 67, - 83, + 244, 247, - 195, - 31, - 24, - 188, - 165, - 86, - 175, + 1, + 226, + 200, + 243, + 125, + 254, + 218, + 138, + 155, + 227, 68, + 161, + 53, + 152, + 238, + 180, + 116, + 217, + 206, + 90, + 169, + 231, + 194, + 144, + 219, + 246, + 108, + 1, 17, - 34, - 236, + 24, + 32, + 251, + 217, + 47, 33, - 55, - 120, - 104, - 114, - 61, - 167, - 69, - 129, - 149, - 36, - 40, - 216, - 145, - 186, - 240, - 203, - 190, - 48, - 181, - 111, - 79, - 167, - 197, - 9, + 45, + 250, + 236, + 109, + 237, + 198, + 49, 154, - 150, - 224, - 28, - 60, - 46, - 8, - 148, - 63, - 84, - 203, - 153, - 87, - 15, - 26, - 86, - 208, - 145, - 204, - 145, - 25, - 124, - 35, - 62, - 14, - 136, + 193, + 140, + 6, + 164, + 38, + 163, + 217, + 23, + 218, + 105, + 138, + 126, + 165, + 98, + 80, + 90, + 68, + 220, + 232, + 242, + 48, + 184, + 225, 91, - 231, - 161, 80, - 201, - 205, - 64, - 58, - 13, - 96, - 245, - 185, - 36, - 46, - 134, - 189, - 11, - 118, - 97, - 108, + 48, + 92, + 228, + 229, + 54, + 78, + 109, + 114, + 43, + 139, + 219, + 2, 105, + 135, + 75, + 72, + 4, + 27, + 205, + 186, + 78, 100, - 97, - 116, - 111, - 114, - 45, + 173, + 25, + 207, + 81, 51, - 0, - 0, - 0, - 29, - 47, - 105, - 112, + 33, + 116, + 186, + 202, + 15, + 33, + 236, + 184, + 120, + 156, + 238, + 161, + 244, + 3, + 226, + 110, + 125, + 11, + 118, + 97, + 108, + 105, + 100, + 97, + 116, + 111, + 114, + 45, + 51, + 0, + 0, + 0, + 29, + 47, + 105, + 112, 52, 47, 49, @@ -4170,11 +4173,11 @@ 99, 112, 47, - 54, 53, - 52, - 54, - 54, + 48, + 56, + 56, + 55, 47, 104, 116, @@ -4200,11 +4203,11 @@ 100, 112, 47, - 54, 53, - 52, - 54, + 48, 56, + 56, + 57, 24, 47, 105, @@ -4225,11 +4228,11 @@ 100, 112, 47, - 54, 53, - 52, - 55, - 52, + 48, + 56, + 57, + 51, 0, 0, 0, @@ -4237,38 +4240,38 @@ 0, 0, 0, - 209, - 199, - 154, - 78, - 21, - 110, - 135, - 195, - 67, - 136, - 35, - 94, - 39, - 97, - 239, - 158, - 2, - 153, - 53, - 161, + 216, + 57, + 236, + 198, 61, - 9, - 6, - 74, - 159, + 54, + 126, + 99, + 77, + 31, + 233, + 214, + 237, + 111, + 161, + 24, + 166, + 231, + 209, + 0, + 186, + 75, + 20, 148, - 70, - 72, - 180, - 122, - 44, - 178, + 170, + 63, + 182, + 197, + 42, + 64, + 46, + 149, 0, 0, 0, @@ -4285,38 +4288,38 @@ 0, 0, 0, - 38, - 175, - 8, - 245, - 39, - 20, - 18, - 239, - 5, - 160, - 19, - 43, + 77, + 79, + 201, + 101, + 212, + 194, + 209, 237, - 138, - 215, - 107, - 149, - 49, - 242, - 105, - 61, - 6, - 20, - 174, - 86, - 220, - 229, - 145, - 50, - 170, - 76, - 138, + 17, + 74, + 238, + 180, + 77, + 25, + 183, + 183, + 83, + 162, + 54, + 98, + 184, + 162, + 153, + 177, + 248, + 47, + 164, + 141, + 18, + 69, + 173, + 98, 232, 3, 0, @@ -4325,38 +4328,38 @@ 0, 0, 0, - 26, - 73, - 49, - 169, - 67, - 19, - 121, - 35, - 127, - 251, - 115, - 102, - 203, - 11, + 252, + 9, + 3, + 95, + 199, + 228, + 138, + 44, + 8, + 192, + 170, + 242, + 138, + 90, + 129, 73, - 57, - 227, - 115, - 5, - 39, - 92, - 71, - 87, + 110, + 204, + 101, + 177, + 253, + 27, + 77, + 240, + 196, + 136, + 61, + 74, + 232, 245, - 250, - 108, - 229, - 163, - 116, - 21, - 52, - 122, + 31, + 44, 1, 0, 0, @@ -4391,38 +4394,38 @@ 87, 5, 0, - 19, - 28, - 67, - 124, - 172, - 129, - 201, - 135, - 94, - 72, - 64, - 197, - 38, - 95, - 35, - 44, - 43, - 75, - 225, - 178, - 139, - 236, - 218, - 45, - 144, - 227, - 8, - 251, + 59, + 108, + 50, + 74, + 213, + 79, + 106, + 125, + 253, + 73, + 21, + 147, + 88, + 162, + 5, + 112, 114, - 45, - 40, - 137, + 33, + 115, + 150, + 141, + 52, + 16, + 155, + 67, + 64, + 238, + 47, + 93, + 160, + 0, + 166, 2, 0, 0, @@ -4455,38 +4458,38 @@ 0, 0, 0, - 225, - 151, - 122, - 183, - 140, - 80, - 88, - 134, - 103, - 4, - 35, - 29, - 155, - 30, - 74, - 213, - 228, - 35, + 108, + 40, + 196, + 252, + 163, + 173, + 193, + 94, + 164, + 230, + 184, + 198, + 204, + 18, + 123, + 60, + 106, 178, - 125, - 105, - 167, - 234, - 254, - 209, - 95, - 150, - 138, - 239, + 22, + 165, + 164, + 139, + 14, + 118, + 211, + 241, + 48, 111, - 38, - 232, + 46, + 50, + 190, + 166, 0, 0, 0, @@ -4527,38 +4530,38 @@ 0, 0, 0, - 119, - 115, - 238, - 13, - 243, - 22, + 207, + 142, + 181, + 82, + 246, + 96, + 33, + 74, + 90, + 56, + 145, + 143, + 46, 28, - 78, - 108, - 60, - 101, - 25, - 123, - 138, - 116, - 103, - 87, - 57, - 235, - 83, - 123, + 153, + 117, + 152, + 156, + 147, + 134, + 238, + 82, + 35, + 40, + 184, + 181, + 214, + 55, + 172, + 241, + 198, 185, - 5, - 43, - 108, - 250, - 199, - 194, - 8, - 58, - 14, - 13, 0, 0, 0, @@ -4567,38 +4570,38 @@ 0, 0, 0, - 255, - 42, - 54, - 155, - 16, - 100, - 224, - 39, - 217, - 65, - 114, - 0, - 139, - 225, - 83, - 252, + 51, 84, - 75, - 243, - 235, + 101, + 220, + 46, + 36, + 85, + 197, + 147, + 147, + 125, + 12, + 56, 17, - 199, - 41, - 252, - 146, - 124, - 26, - 180, - 181, - 181, - 29, - 244, + 67, + 119, + 195, + 95, + 56, + 94, + 15, + 137, + 43, + 71, + 194, + 93, + 226, + 107, + 211, + 131, + 49, + 249, 0, 0, 0, @@ -4608,38 +4611,38 @@ 0, 0, 0, - 245, - 64, - 131, - 228, - 230, - 202, - 193, - 136, - 58, - 201, - 134, - 167, - 174, - 61, - 63, - 171, - 27, - 171, - 150, - 193, - 39, - 53, - 93, - 49, - 184, - 198, - 180, - 117, - 20, - 160, - 225, - 139, + 65, + 119, + 141, + 91, + 121, + 40, + 78, + 112, + 108, + 168, + 67, + 121, + 215, + 227, + 91, + 86, + 123, + 222, + 128, + 244, + 168, + 163, + 104, + 36, + 106, + 26, + 199, + 101, + 150, + 31, + 77, + 246, 4, 0, 0, @@ -4648,38 +4651,38 @@ 0, 0, 0, - 100, - 96, - 140, - 115, - 178, - 133, - 212, - 21, - 85, - 180, - 158, + 248, + 95, + 83, + 236, + 37, + 203, + 11, + 183, + 224, + 125, + 215, + 95, + 150, + 93, + 127, 44, - 146, - 235, - 132, - 110, - 13, - 239, - 115, - 223, - 110, - 114, - 226, - 165, + 137, + 50, + 171, 144, - 102, - 85, - 239, - 12, - 249, - 109, - 45, + 155, + 76, + 155, + 221, + 24, + 193, + 84, + 110, + 121, + 104, + 150, + 67, 0, 0, 0, @@ -4688,38 +4691,38 @@ 0, 0, 0, - 171, - 39, - 109, - 25, - 86, - 101, - 155, - 65, - 21, + 179, + 14, + 31, + 87, + 158, + 157, + 134, + 161, + 237, + 3, + 179, + 19, + 186, + 28, + 70, + 5, + 64, + 107, + 107, 200, - 37, - 226, - 115, - 169, - 182, - 74, - 60, - 111, - 254, - 140, - 247, - 230, - 222, - 63, - 45, - 45, - 35, - 196, - 16, - 111, - 145, - 85, + 76, + 190, + 130, + 65, + 58, + 49, + 149, + 28, + 197, + 72, + 72, + 138, 0, 0, 0, @@ -4729,38 +4732,38 @@ 0, 0, 0, - 254, - 222, - 88, - 194, - 222, - 164, - 236, - 45, - 117, - 125, - 80, - 122, - 1, - 119, - 21, - 186, - 58, - 42, - 210, - 122, - 75, - 254, - 158, - 92, + 28, 161, - 201, - 100, - 39, - 218, - 24, - 41, - 151, + 62, + 44, + 161, + 193, + 27, + 253, + 247, + 82, + 36, + 113, + 189, + 212, + 63, + 98, + 102, + 124, + 133, + 107, + 126, + 108, + 75, + 64, + 117, + 53, + 6, + 173, + 38, + 184, + 43, + 140, 0, 0, 0, @@ -4841,38 +4844,39 @@ 0, 0, 0, - 166, - 4, - 47, - 112, - 189, - 16, - 209, - 252, + 163, + 199, + 132, + 1, + 104, + 188, + 192, 102, - 57, - 148, - 80, - 98, + 85, + 112, + 28, + 24, + 204, + 28, + 44, + 217, 167, - 43, - 219, - 234, - 27, - 136, - 160, - 254, - 187, - 150, - 197, - 7, - 70, - 7, - 202, + 224, 220, - 47, - 159, - 89, + 3, + 115, + 213, + 223, + 147, + 195, + 199, + 87, + 24, + 133, + 15, + 14, + 113, + 0, 0, 0, 0, @@ -4923,46 +4927,46 @@ 0, 0, 0, - 83, 125, - 6, - 216, - 146, + 214, + 31, + 8, + 147, 1, 0, 0, - 36, - 82, - 30, - 65, - 183, - 192, - 23, - 72, - 123, - 231, - 100, - 128, - 86, - 159, - 136, + 93, + 232, + 20, + 94, + 111, + 235, + 90, + 111, + 84, + 154, + 75, + 94, + 63, + 132, + 198, + 26, + 0, + 126, + 154, + 246, + 119, + 55, + 52, + 57, + 187, 163, + 189, + 178, + 113, + 185, + 37, 24, - 82, - 67, - 139, - 141, - 248, - 200, - 171, - 163, - 5, - 98, - 244, - 137, - 223, - 150, - 206, 0, 0, 0, @@ -4977,7 +4981,7 @@ "owner": { "ObjectOwner": "0x0000000000000000000000000000000000000000000000000000000000000005" }, - "previous_transaction": "8eZxmVup35tyyVdZ31sKB9av3iNMKuJrxZ8ouJ4SRWtu", + "previous_transaction": "D8mYY9UVTGgXVKCzDptpq2MbXkeC93eJrNUirJb9UrAs", "storage_rebate": 0 } ], @@ -5044,7 +5048,7 @@ "initial_shared_version": 1 } }, - "previous_transaction": "326n9ZcQDrJVxyFL8aWkknSmFahVxwpqZQ5q5ySmWrUy", + "previous_transaction": "5SBQBPHqvQqSCTZ6PS3tRfiwagqLbtU9mmjENYUuKTbt", "storage_rebate": 0 }, { @@ -5135,38 +5139,38 @@ 0, 0, 0, - 57, - 250, - 115, - 22, - 182, - 11, - 178, - 229, - 253, - 205, - 92, - 179, - 236, - 134, - 160, - 75, - 54, - 44, - 186, - 33, - 145, - 160, - 137, - 160, - 136, - 5, - 12, + 109, + 174, 185, - 38, - 134, - 120, - 155, + 125, + 21, + 211, + 205, + 144, + 244, + 138, + 46, + 73, + 101, + 130, + 123, + 170, + 249, + 251, + 30, + 112, + 221, + 29, + 102, + 88, + 209, + 45, + 76, + 125, + 21, + 32, + 104, + 125, 0, 224, 244, @@ -5184,38 +5188,38 @@ 26, 0, 4, - 59, - 251, + 248, + 10, + 231, + 126, + 120, + 48, + 135, + 152, + 78, + 85, + 88, + 7, + 209, + 238, + 133, + 144, + 184, + 112, + 22, + 137, + 157, + 124, 52, - 173, + 247, + 254, + 95, + 20, 111, - 69, - 44, - 97, - 173, - 211, - 105, - 121, - 206, - 147, - 8, - 165, - 7, - 244, - 202, - 119, - 73, - 129, - 123, - 165, - 161, - 154, - 87, - 212, - 255, - 44, - 213, - 63, + 37, + 76, + 43, + 233, 96, 141, 207, @@ -5314,120 +5318,120 @@ 56, 212, 32, - 32, - 38, - 163, - 54, - 223, - 222, - 200, - 16, - 231, - 136, - 101, - 109, - 60, - 170, - 54, - 183, - 183, - 132, - 232, + 103, + 97, 253, - 218, - 17, - 151, - 230, - 164, - 94, - 212, - 132, - 90, - 230, - 7, - 98, + 85, + 71, + 199, + 95, + 41, 32, - 217, - 53, - 60, - 49, - 54, - 152, - 131, - 119, - 1, + 133, + 72, + 250, + 242, + 207, + 198, + 135, + 191, + 56, + 50, + 241, + 143, + 194, + 48, + 227, + 82, + 111, + 238, + 202, + 219, + 96, + 242, + 115, 32, 5, - 215, - 206, - 234, - 120, - 214, - 210, - 148, - 142, - 129, - 161, - 106, - 254, - 253, - 73, - 188, - 78, + 187, + 103, 237, - 59, - 75, - 133, - 63, - 48, - 175, - 52, - 76, - 124, - 156, - 164, - 117, - 75, - 204, - 212, - 49, - 8, - 33, + 221, + 215, + 220, + 163, 96, - 102, - 254, - 60, - 113, - 252, + 92, + 220, + 33, + 7, + 255, + 152, + 197, + 83, + 119, 79, - 3, - 66, - 110, - 30, + 219, + 146, + 195, + 233, + 109, + 168, + 67, + 89, + 157, + 15, + 150, + 2, + 29, + 48, + 169, + 171, + 20, + 40, + 215, + 65, + 199, + 159, + 253, + 58, + 56, 211, - 234, - 248, - 46, - 26, - 12, + 84, + 55, + 112, + 200, + 169, + 97, + 250, + 251, + 238, 142, - 136, - 104, - 199, - 247, - 129, - 48, - 228, + 231, + 234, + 185, + 236, + 251, + 59, + 203, + 231, + 52, + 209, + 160, + 86, 61, - 39, 13, - 72, - 101, - 101, - 199, - 19, - 109, - 21, + 11, + 136, + 42, + 78, + 51, + 106, + 23, + 139, + 171, + 147, + 7, + 169, 11, 118, 97, @@ -5463,11 +5467,11 @@ 99, 112, 47, - 54, 53, - 52, - 52, - 54, + 48, + 56, + 55, + 49, 47, 104, 116, @@ -5493,11 +5497,11 @@ 100, 112, 47, - 54, 53, - 52, - 52, + 48, 56, + 55, + 51, 24, 47, 105, @@ -5518,11 +5522,11 @@ 100, 112, 47, - 54, 53, - 52, - 53, - 52, + 48, + 56, + 55, + 55, 0, 0, 0, @@ -5530,38 +5534,38 @@ 0, 0, 0, - 237, - 202, - 141, - 82, - 243, - 82, - 185, - 130, - 172, - 46, - 92, - 14, - 227, - 72, - 139, + 80, + 120, + 18, + 177, + 245, + 197, + 208, 162, - 213, - 206, - 89, - 121, - 179, + 248, + 73, 214, - 64, - 241, - 40, - 30, - 200, - 224, - 136, - 215, + 252, + 81, + 203, + 84, + 183, + 3, + 148, + 210, + 87, + 104, + 198, + 105, + 159, + 34, + 83, + 46, + 98, + 15, + 95, + 128, 39, - 57, 0, 0, 0, @@ -5578,38 +5582,38 @@ 0, 0, 0, - 74, - 247, - 153, - 224, - 143, - 124, - 199, - 167, - 208, - 50, - 229, - 166, - 53, - 141, - 230, - 155, - 237, - 8, - 69, - 247, - 162, - 221, - 120, - 65, + 72, + 85, + 56, + 159, + 30, + 128, + 164, + 236, + 81, + 2, + 90, + 19, + 63, + 129, + 240, + 0, + 194, + 165, + 109, 215, + 222, + 233, + 179, + 250, + 250, + 245, + 170, 137, - 47, - 111, - 156, - 51, - 80, - 173, + 246, + 132, + 201, + 67, 232, 3, 0, @@ -5618,38 +5622,38 @@ 0, 0, 0, - 15, - 179, - 7, - 220, - 99, - 116, - 11, - 43, - 34, - 99, - 124, - 173, - 183, - 91, - 122, - 153, - 83, - 227, - 216, - 174, - 143, - 123, + 108, + 8, + 131, + 255, + 10, + 126, + 40, + 96, + 0, + 240, + 181, + 84, + 198, + 78, + 38, 179, - 93, - 16, - 223, - 139, - 50, - 20, - 184, - 146, - 41, + 32, + 56, + 224, + 3, + 131, + 55, + 202, + 245, + 210, + 94, + 134, + 100, + 211, + 3, + 231, + 206, 1, 0, 0, @@ -5684,38 +5688,38 @@ 90, 5, 0, - 100, - 80, - 70, - 13, - 126, - 123, - 228, - 117, - 64, - 121, - 8, - 228, - 129, - 68, - 240, - 149, - 80, - 11, - 199, - 60, - 247, - 37, - 79, - 145, - 193, - 130, + 249, + 226, + 213, 164, - 85, - 112, - 208, - 202, - 198, + 2, + 234, + 134, + 28, + 37, + 29, + 180, + 138, + 19, + 211, + 19, + 99, + 206, + 27, + 218, + 241, + 86, + 137, + 153, + 51, + 221, + 192, + 140, + 177, + 24, + 184, + 70, + 178, 3, 0, 0, @@ -5748,38 +5752,38 @@ 0, 0, 0, + 203, + 26, + 23, + 238, 66, - 171, - 40, - 184, - 198, - 248, - 37, - 80, - 178, - 91, - 133, - 208, - 36, - 170, - 67, - 205, - 191, - 10, - 49, + 227, + 187, + 112, + 177, + 165, + 31, + 209, + 60, + 48, + 107, 13, - 172, - 27, - 248, - 33, - 15, - 228, + 141, + 41, + 48, + 215, 163, - 61, - 156, + 127, + 196, + 8, + 232, + 152, + 9, 207, - 73, - 153, + 166, + 218, + 70, + 22, 0, 0, 0, @@ -5820,38 +5824,38 @@ 0, 0, 0, - 154, - 63, - 153, - 219, - 190, - 60, - 107, - 172, - 161, - 128, - 223, - 192, - 219, - 114, - 132, - 40, - 213, - 246, - 227, - 9, - 177, - 93, - 243, - 81, - 126, - 145, - 127, + 207, + 35, + 255, + 110, 241, - 139, - 224, - 194, - 8, + 180, + 144, + 58, + 126, + 52, + 100, + 3, + 20, + 184, + 55, + 115, + 217, + 178, + 167, + 162, + 51, + 111, + 11, + 83, + 26, + 188, + 86, + 38, + 125, + 81, + 201, + 5, 0, 0, 0, @@ -5860,38 +5864,38 @@ 0, 0, 0, - 45, - 177, 156, - 231, - 178, - 150, - 99, - 62, - 73, - 244, - 142, - 134, + 251, + 177, + 121, + 242, + 58, + 135, + 83, + 2, + 207, + 186, + 206, + 186, + 137, + 34, + 253, + 202, 60, - 43, - 8, - 213, - 234, - 10, - 136, - 82, - 115, - 191, - 165, - 116, - 226, - 219, - 10, - 133, - 236, - 226, - 37, + 164, + 177, + 78, + 235, + 56, + 178, + 240, + 113, + 148, + 103, + 21, 229, + 226, + 49, 96, 153, 242, @@ -5990,119 +5994,119 @@ 26, 16, 32, - 122, - 3, - 30, - 157, - 52, - 195, - 36, + 58, + 68, + 223, + 26, + 225, + 53, + 99, + 20, + 243, + 82, + 64, + 9, + 179, + 62, + 250, + 66, + 234, + 253, + 82, + 217, + 35, 160, - 76, + 23, + 187, + 55, + 240, + 46, 194, - 183, - 16, - 106, - 36, - 32, - 2, - 216, - 206, 21, - 7, - 4, - 151, - 70, - 39, - 234, - 215, - 20, - 41, - 150, - 113, - 224, - 91, + 100, + 88, + 1, 32, - 3, - 60, - 195, + 135, + 180, 7, + 14, + 63, + 186, + 73, + 223, + 105, + 164, + 178, + 29, 177, - 11, - 189, - 198, - 69, - 193, - 118, - 101, - 132, - 133, - 243, - 255, - 102, - 108, - 2, - 133, + 110, + 165, + 249, + 120, + 124, + 229, + 13, + 134, 7, - 68, - 189, - 150, - 46, - 93, - 146, - 0, - 141, - 222, - 107, - 252, + 9, + 120, + 49, + 124, + 43, + 186, + 202, + 230, + 49, + 155, 48, + 131, + 230, + 161, + 113, + 143, + 16, + 233, + 116, + 129, + 138, + 235, + 108, + 8, + 238, + 100, + 74, 173, - 72, - 33, - 196, - 123, - 102, - 115, + 39, + 77, + 146, + 76, + 206, + 147, + 25, + 55, + 180, + 171, + 112, + 39, + 31, + 178, + 21, + 170, + 49, + 40, + 27, + 178, + 35, + 84, + 120, + 57, + 87, 188, - 207, - 117, - 48, - 189, - 20, - 63, - 36, - 94, - 101, - 110, - 96, - 96, - 218, - 135, - 207, - 130, - 60, - 108, - 28, - 33, - 226, - 4, - 178, - 120, - 120, - 61, - 127, - 163, - 62, - 231, - 69, - 205, - 199, - 183, - 145, - 196, - 92, - 33, - 251, + 153, + 74, + 59, + 249, 211, 11, 118, @@ -6139,11 +6143,11 @@ 99, 112, 47, - 54, 53, - 52, - 51, + 48, + 56, 54, + 51, 47, 104, 116, @@ -6169,11 +6173,11 @@ 100, 112, 47, - 54, 53, - 52, - 51, + 48, 56, + 54, + 53, 24, 47, 105, @@ -6194,11 +6198,11 @@ 100, 112, 47, - 54, 53, - 52, - 52, - 52, + 48, + 56, + 54, + 57, 0, 0, 0, @@ -6206,38 +6210,38 @@ 0, 0, 0, - 139, - 224, - 68, - 32, - 91, + 80, + 4, + 215, + 153, + 109, + 192, + 223, + 67, + 182, + 151, + 193, + 64, 176, - 203, + 238, 154, - 171, - 120, - 35, - 40, - 91, + 188, + 119, + 123, + 122, + 60, + 111, + 49, + 96, + 64, + 25, + 39, + 111, + 203, + 172, 57, - 179, - 164, - 23, - 110, - 253, - 173, - 253, - 143, - 209, - 90, - 0, - 61, - 90, - 186, - 109, - 177, - 59, - 90, + 31, + 124, 0, 0, 0, @@ -6254,38 +6258,38 @@ 0, 0, 0, - 18, - 5, - 29, - 220, - 228, - 186, - 162, - 227, - 204, - 127, - 217, - 247, - 93, - 81, - 88, - 63, - 196, - 75, - 65, - 142, - 11, - 57, - 159, - 31, - 113, - 251, - 185, - 116, - 209, + 72, + 172, + 232, + 233, + 180, + 92, 4, - 123, + 34, + 241, + 8, + 219, + 225, + 28, + 39, + 60, + 71, + 239, + 66, + 169, + 201, + 184, + 20, + 161, + 67, + 63, + 9, 14, + 115, + 118, + 45, + 158, + 95, 232, 3, 0, @@ -6294,38 +6298,38 @@ 0, 0, 0, - 209, - 123, - 224, - 206, - 121, - 241, - 77, - 244, - 72, + 102, + 130, + 212, + 1, + 216, + 110, + 189, + 207, + 71, + 145, + 173, + 186, 86, - 107, - 103, - 131, - 192, - 239, - 101, - 12, - 50, - 118, - 14, - 142, - 183, - 157, - 157, - 157, - 178, - 187, - 220, - 115, - 108, 181, - 43, + 239, + 231, + 188, + 196, + 199, + 13, + 91, + 42, + 253, + 78, + 227, + 139, + 202, + 175, + 116, + 79, + 92, + 61, 1, 0, 0, @@ -6360,38 +6364,38 @@ 90, 5, 0, - 121, - 31, - 101, - 204, - 134, - 140, - 198, - 239, - 11, - 192, - 255, - 64, - 40, - 147, - 159, - 16, - 185, - 98, - 112, - 39, - 68, - 129, - 205, - 235, - 244, - 33, - 214, - 71, - 190, - 240, - 11, - 110, + 84, + 199, + 48, + 234, + 177, + 170, + 250, + 141, + 135, + 193, + 147, + 128, + 103, + 254, + 245, + 157, + 22, + 25, + 3, + 17, + 178, + 21, + 141, + 23, + 50, + 213, + 223, + 181, + 141, + 136, + 138, + 7, 3, 0, 0, @@ -6424,38 +6428,38 @@ 0, 0, 0, - 162, - 2, - 46, - 57, - 140, - 215, - 171, - 207, - 199, + 21, + 117, + 19, + 202, + 221, + 35, + 90, 51, - 119, - 103, - 99, + 224, 159, - 136, - 104, - 178, - 52, - 54, - 253, - 140, - 74, - 230, - 132, + 189, 248, - 104, - 75, - 249, - 252, - 181, - 229, - 232, + 208, + 158, + 210, + 27, + 28, + 250, + 213, + 162, + 182, + 1, + 241, + 3, + 230, + 117, + 187, + 136, + 122, + 239, + 176, + 48, 0, 0, 0, @@ -6496,38 +6500,38 @@ 0, 0, 0, - 251, - 213, - 102, - 25, - 149, - 159, - 37, 192, - 210, - 95, - 204, - 21, - 18, - 42, - 226, - 5, - 226, + 166, + 139, + 43, + 255, + 184, + 75, + 76, 152, - 81, + 3, + 181, + 175, + 174, + 91, + 13, + 96, + 15, 144, - 191, - 110, - 76, - 51, - 233, - 213, - 87, - 45, - 246, - 101, - 58, - 130, + 204, + 47, + 165, + 142, + 4, + 166, + 226, + 6, + 184, + 69, + 247, + 29, + 234, + 15, 0, 0, 0, @@ -6536,38 +6540,38 @@ 0, 0, 0, - 50, - 72, - 42, - 34, - 159, - 131, - 186, - 206, - 45, - 164, - 201, - 11, - 77, + 176, + 96, + 73, + 60, + 227, 217, - 156, - 138, - 115, - 6, - 58, - 106, + 191, + 1, 141, - 220, - 91, - 214, - 204, - 153, - 222, - 216, + 83, + 57, + 205, + 85, + 207, + 12, + 18, + 25, + 181, + 192, + 208, + 105, + 40, + 245, + 34, + 41, + 243, + 131, + 10, + 25, + 182, 112, - 100, - 145, - 42, + 64, 96, 173, 222, @@ -6666,120 +6670,120 @@ 88, 242, 32, - 97, - 138, - 198, - 62, - 136, - 198, - 103, + 37, + 38, + 164, + 22, 175, - 249, - 91, - 77, - 120, - 56, - 146, - 191, - 105, - 25, - 87, - 27, - 118, - 59, - 62, - 33, - 84, - 159, - 132, - 242, - 67, - 253, - 50, - 9, - 132, - 32, - 211, - 127, - 23, - 124, - 68, + 170, + 28, + 162, + 153, + 171, + 94, + 47, + 184, + 71, 158, - 122, - 141, - 69, - 188, - 41, - 144, - 117, - 211, + 147, + 57, + 24, + 106, + 26, + 178, + 213, + 142, + 36, + 230, 169, - 65, + 109, + 158, + 221, + 192, + 33, + 95, + 32, + 214, + 26, + 109, 239, - 69, - 38, - 170, + 172, + 184, + 100, + 15, + 255, + 126, + 43, + 4, + 21, + 108, + 237, + 244, 84, - 174, - 198, - 7, - 179, - 110, - 215, - 182, - 252, - 113, - 72, - 226, + 26, + 68, + 152, + 151, + 160, + 204, + 29, + 223, + 186, + 9, + 68, + 241, + 125, + 32, + 90, 48, 133, - 8, - 105, - 153, - 110, - 47, - 196, - 176, - 44, - 252, - 140, - 171, - 99, - 25, - 5, - 109, 170, - 61, + 149, + 94, + 20, + 162, + 65, + 130, + 229, + 89, + 162, + 227, + 212, + 120, + 210, + 147, + 251, + 230, + 72, + 164, + 82, + 11, 34, + 122, + 136, + 226, + 100, + 29, + 231, 234, - 19, - 78, - 134, - 220, - 12, - 12, - 146, - 181, + 4, + 20, + 66, + 93, + 111, + 110, + 247, + 125, + 205, + 117, + 38, + 32, 134, - 46, - 50, - 246, - 204, - 83, - 195, - 216, - 58, - 47, - 246, - 133, - 52, - 153, - 89, - 95, - 128, - 57, - 13, - 156, + 77, + 109, + 0, + 99, + 241, 11, 118, 97, @@ -6815,11 +6819,11 @@ 99, 112, 47, - 54, - 53, - 52, 53, - 54, + 48, + 56, + 55, + 57, 47, 104, 116, @@ -6845,11 +6849,11 @@ 100, 112, 47, - 54, - 53, - 52, 53, + 48, + 56, 56, + 49, 24, 47, 105, @@ -6870,11 +6874,11 @@ 100, 112, 47, - 54, 53, - 52, - 54, - 52, + 48, + 56, + 56, + 53, 0, 0, 0, @@ -6882,38 +6886,38 @@ 0, 0, 0, + 33, + 171, + 228, + 22, 121, - 245, - 173, - 214, - 62, - 45, - 78, - 231, - 42, - 141, - 80, - 70, - 101, - 210, - 114, - 51, + 63, + 72, + 15, + 172, + 204, + 76, + 171, + 127, + 157, + 190, + 64, + 26, + 119, + 128, + 123, + 171, + 225, + 184, 185, - 135, - 223, - 13, - 169, - 239, - 245, - 68, - 254, - 122, - 133, - 237, - 80, - 108, - 161, - 30, + 188, + 124, + 49, + 110, + 181, + 249, + 186, + 58, 0, 0, 0, @@ -6930,38 +6934,38 @@ 0, 0, 0, - 164, - 51, - 96, - 252, - 84, - 166, - 231, + 172, + 230, + 205, + 130, + 78, 126, - 125, - 69, - 141, - 222, + 78, + 157, + 52, + 126, + 41, + 82, + 157, + 103, + 72, + 93, + 221, + 14, + 39, + 182, + 150, + 241, + 24, + 240, + 11, 212, - 230, - 206, - 158, - 145, - 216, - 89, - 46, - 224, - 195, - 37, - 168, - 53, - 214, - 209, - 133, - 68, - 191, - 142, - 226, + 87, + 94, + 98, + 174, + 69, + 31, 232, 3, 0, @@ -6970,38 +6974,38 @@ 0, 0, 0, - 242, - 245, - 215, - 89, - 82, + 101, + 212, + 253, + 63, + 181, + 227, + 59, + 98, 128, - 97, - 158, - 1, - 156, - 124, - 176, - 4, - 137, - 192, - 182, - 113, - 144, - 74, - 11, - 72, - 130, - 17, - 145, - 107, 150, - 212, - 219, - 236, - 228, - 205, + 217, + 196, + 85, + 74, + 68, + 84, 29, + 253, + 46, + 147, + 10, + 123, + 61, + 25, + 96, + 151, + 138, + 209, + 99, + 92, + 178, + 216, 1, 0, 0, @@ -7036,38 +7040,38 @@ 90, 5, 0, - 60, - 50, - 180, - 43, - 227, - 162, - 219, - 29, - 125, - 221, - 81, - 200, - 83, - 117, + 167, + 20, + 82, + 96, + 120, + 106, + 194, + 248, + 105, + 204, + 207, + 65, + 161, + 169, 18, - 127, - 246, - 174, - 251, - 39, - 104, - 52, - 25, - 62, - 70, - 158, - 1, - 226, - 93, - 72, - 245, - 85, + 60, + 58, + 56, + 122, + 222, + 99, + 148, + 37, + 210, + 67, + 239, + 130, + 198, + 75, + 91, + 36, + 203, 3, 0, 0, @@ -7100,38 +7104,38 @@ 0, 0, 0, - 81, - 125, - 125, - 70, - 103, - 63, - 184, - 12, - 3, - 228, - 100, - 158, - 86, - 236, - 215, - 25, - 233, - 65, - 9, - 225, - 127, - 207, - 98, - 242, - 200, - 41, - 56, - 223, - 20, - 82, + 5, + 216, + 191, + 72, + 32, + 220, + 147, + 110, + 183, + 210, + 95, + 126, + 137, + 161, + 129, + 47, + 250, + 216, + 4, + 112, + 22, + 173, 36, - 144, + 56, + 55, + 67, + 102, + 23, + 246, + 106, + 121, + 137, 0, 0, 0, @@ -7172,39 +7176,38 @@ 0, 0, 0, - 49, - 246, - 218, - 38, - 205, - 194, - 217, - 99, - 178, - 200, - 79, - 165, + 133, + 185, + 110, + 72, 209, - 164, - 114, - 99, - 171, - 118, - 230, + 210, + 7, + 247, + 217, + 234, + 92, 130, - 90, - 255, - 202, - 41, - 223, - 145, - 76, - 62, - 88, - 164, - 241, - 120, + 33, + 84, + 205, + 22, + 203, + 189, + 192, + 28, + 14, + 51, + 197, 0, + 84, + 118, + 250, + 9, + 208, + 20, + 212, + 163, 0, 0, 0, @@ -7212,38 +7215,39 @@ 0, 0, 0, - 69, - 228, - 93, - 189, + 0, + 34, + 8, + 92, + 14, + 244, + 60, + 131, + 133, + 206, + 108, 144, - 86, - 66, - 204, - 44, + 82, + 136, + 241, + 144, + 236, + 7, + 68, + 32, + 65, + 203, + 98, + 18, + 7, + 34, + 27, + 72, + 145, + 65, + 8, + 152, 169, - 195, - 207, - 209, - 160, - 161, - 249, - 81, - 119, - 88, - 229, - 217, - 141, - 235, - 103, - 96, - 64, - 196, - 147, - 64, - 200, - 178, - 103, 96, 179, 253, @@ -7342,120 +7346,120 @@ 116, 244, 32, - 44, - 195, - 142, - 100, - 204, - 221, - 210, - 56, - 220, - 159, - 252, - 43, - 109, - 45, - 129, - 212, - 168, - 89, - 191, - 44, - 18, - 142, - 55, - 166, - 147, - 169, - 39, - 81, - 113, - 109, - 74, - 111, - 32, - 67, - 83, + 244, 247, - 195, - 31, - 24, - 188, - 165, - 86, - 175, + 1, + 226, + 200, + 243, + 125, + 254, + 218, + 138, + 155, + 227, 68, + 161, + 53, + 152, + 238, + 180, + 116, + 217, + 206, + 90, + 169, + 231, + 194, + 144, + 219, + 246, + 108, + 1, 17, - 34, - 236, + 24, + 32, + 251, + 217, + 47, 33, - 55, - 120, - 104, - 114, - 61, - 167, - 69, - 129, - 149, - 36, - 40, - 216, - 145, - 186, - 240, - 203, - 190, - 48, - 181, - 111, - 79, - 167, - 197, - 9, + 45, + 250, + 236, + 109, + 237, + 198, + 49, 154, - 150, - 224, - 28, - 60, - 46, - 8, - 148, - 63, - 84, - 203, - 153, - 87, - 15, - 26, - 86, - 208, - 145, - 204, - 145, - 25, - 124, - 35, - 62, - 14, - 136, - 91, - 231, - 161, + 193, + 140, + 6, + 164, + 38, + 163, + 217, + 23, + 218, + 105, + 138, + 126, + 165, + 98, 80, - 201, - 205, - 64, - 58, - 13, - 96, - 245, - 185, - 36, - 46, - 134, - 189, + 90, + 68, + 220, + 232, + 242, + 48, + 184, + 225, + 91, + 80, + 48, + 92, + 228, + 229, + 54, + 78, + 109, + 114, + 43, + 139, + 219, + 2, + 105, + 135, + 75, + 72, + 4, + 27, + 205, + 186, + 78, + 100, + 173, + 25, + 207, + 81, + 51, + 33, + 116, + 186, + 202, + 15, + 33, + 236, + 184, + 120, + 156, + 238, + 161, + 244, + 3, + 226, + 110, + 125, 11, 118, 97, @@ -7491,11 +7495,11 @@ 99, 112, 47, - 54, 53, - 52, - 54, - 54, + 48, + 56, + 56, + 55, 47, 104, 116, @@ -7521,11 +7525,11 @@ 100, 112, 47, - 54, 53, - 52, - 54, + 48, + 56, 56, + 57, 24, 47, 105, @@ -7546,11 +7550,11 @@ 100, 112, 47, - 54, 53, - 52, - 55, - 52, + 48, + 56, + 57, + 51, 0, 0, 0, @@ -7558,38 +7562,38 @@ 0, 0, 0, - 209, - 199, - 154, - 78, - 21, - 110, - 135, - 195, - 67, - 136, - 35, - 94, - 39, - 97, - 239, - 158, - 2, - 153, - 53, - 161, + 216, + 57, + 236, + 198, 61, - 9, - 6, - 74, - 159, + 54, + 126, + 99, + 77, + 31, + 233, + 214, + 237, + 111, + 161, + 24, + 166, + 231, + 209, + 0, + 186, + 75, + 20, 148, - 70, - 72, - 180, - 122, - 44, - 178, + 170, + 63, + 182, + 197, + 42, + 64, + 46, + 149, 0, 0, 0, @@ -7606,38 +7610,38 @@ 0, 0, 0, - 38, - 175, - 8, - 245, - 39, - 20, - 18, - 239, - 5, - 160, - 19, - 43, + 77, + 79, + 201, + 101, + 212, + 194, + 209, 237, - 138, - 215, - 107, - 149, - 49, - 242, - 105, - 61, - 6, - 20, - 174, - 86, - 220, - 229, - 145, - 50, - 170, - 76, - 138, + 17, + 74, + 238, + 180, + 77, + 25, + 183, + 183, + 83, + 162, + 54, + 98, + 184, + 162, + 153, + 177, + 248, + 47, + 164, + 141, + 18, + 69, + 173, + 98, 232, 3, 0, @@ -7646,38 +7650,38 @@ 0, 0, 0, - 26, - 73, - 49, - 169, - 67, - 19, - 121, - 35, - 127, - 251, - 115, - 102, - 203, - 11, + 252, + 9, + 3, + 95, + 199, + 228, + 138, + 44, + 8, + 192, + 170, + 242, + 138, + 90, + 129, 73, - 57, - 227, - 115, - 5, - 39, - 92, - 71, - 87, + 110, + 204, + 101, + 177, + 253, + 27, + 77, + 240, + 196, + 136, + 61, + 74, + 232, 245, - 250, - 108, - 229, - 163, - 116, - 21, - 52, - 122, + 31, + 44, 1, 0, 0, @@ -7712,38 +7716,38 @@ 90, 5, 0, - 19, - 28, + 59, + 108, + 50, + 74, + 213, + 79, + 106, + 125, + 253, + 73, + 21, + 147, + 88, + 162, + 5, + 112, + 114, + 33, + 115, + 150, + 141, + 52, + 16, + 155, 67, - 124, - 172, - 129, - 201, - 135, - 94, - 72, 64, - 197, - 38, - 95, - 35, - 44, - 43, - 75, - 225, - 178, - 139, - 236, - 218, - 45, - 144, - 227, - 8, - 251, - 114, - 45, - 40, - 137, + 238, + 47, + 93, + 160, + 0, + 166, 3, 0, 0, @@ -7776,38 +7780,38 @@ 0, 0, 0, - 225, - 151, - 122, - 183, - 140, - 80, - 88, - 134, - 103, - 4, - 35, - 29, - 155, - 30, - 74, - 213, - 228, - 35, + 108, + 40, + 196, + 252, + 163, + 173, + 193, + 94, + 164, + 230, + 184, + 198, + 204, + 18, + 123, + 60, + 106, 178, - 125, - 105, - 167, - 234, - 254, - 209, - 95, - 150, - 138, - 239, + 22, + 165, + 164, + 139, + 14, + 118, + 211, + 241, + 48, 111, - 38, - 232, + 46, + 50, + 190, + 166, 0, 0, 0, @@ -7848,39 +7852,38 @@ 0, 0, 0, - 119, - 115, - 238, - 13, - 243, - 22, + 207, + 142, + 181, + 82, + 246, + 96, + 33, + 74, + 90, + 56, + 145, + 143, + 46, 28, - 78, - 108, - 60, - 101, - 25, - 123, - 138, - 116, - 103, - 87, - 57, - 235, - 83, - 123, + 153, + 117, + 152, + 156, + 147, + 134, + 238, + 82, + 35, + 40, + 184, + 181, + 214, + 55, + 172, + 241, + 198, 185, - 5, - 43, - 108, - 250, - 199, - 194, - 8, - 58, - 14, - 13, - 0, 0, 0, 0, @@ -7888,38 +7891,39 @@ 0, 0, 0, - 255, - 42, - 54, - 155, - 16, - 100, - 224, - 39, - 217, - 65, - 114, 0, - 139, - 225, - 83, - 252, + 51, 84, - 75, - 243, - 235, + 101, + 220, + 46, + 36, + 85, + 197, + 147, + 147, + 125, + 12, + 56, 17, - 199, - 41, - 252, - 146, - 124, - 26, - 180, - 181, - 181, - 29, - 244, + 67, + 119, + 195, + 95, + 56, + 94, + 15, + 137, + 43, + 71, + 194, + 93, + 226, + 107, + 211, + 131, + 49, + 249, 0, 0, 0, @@ -7929,38 +7933,38 @@ 0, 0, 0, - 245, - 64, - 131, - 228, - 230, - 202, - 193, - 136, - 58, - 201, - 134, - 167, - 174, - 61, - 63, - 171, - 27, - 171, + 65, + 119, + 141, + 91, + 121, + 40, + 78, + 112, + 108, + 168, + 67, + 121, + 215, + 227, + 91, + 86, + 123, + 222, + 128, + 244, + 168, + 163, + 104, + 36, + 106, + 26, + 199, + 101, 150, - 193, - 39, - 53, - 93, - 49, - 184, - 198, - 180, - 117, - 20, - 160, - 225, - 139, + 31, + 77, + 246, 4, 0, 0, @@ -7969,38 +7973,38 @@ 0, 0, 0, - 100, - 96, - 140, - 115, - 178, - 133, - 212, - 21, - 85, - 180, - 158, + 248, + 95, + 83, + 236, + 37, + 203, + 11, + 183, + 224, + 125, + 215, + 95, + 150, + 93, + 127, 44, - 146, - 235, - 132, - 110, - 13, - 239, - 115, - 223, - 110, - 114, - 226, - 165, + 137, + 50, + 171, 144, - 102, - 85, - 239, - 12, - 249, - 109, - 45, + 155, + 76, + 155, + 221, + 24, + 193, + 84, + 110, + 121, + 104, + 150, + 67, 0, 0, 0, @@ -8009,38 +8013,38 @@ 0, 0, 0, - 171, - 39, - 109, - 25, - 86, - 101, - 155, - 65, - 21, + 179, + 14, + 31, + 87, + 158, + 157, + 134, + 161, + 237, + 3, + 179, + 19, + 186, + 28, + 70, + 5, + 64, + 107, + 107, 200, - 37, - 226, - 115, - 169, - 182, - 74, - 60, - 111, - 254, - 140, - 247, - 230, - 222, - 63, - 45, - 45, - 35, - 196, - 16, - 111, - 145, - 85, + 76, + 190, + 130, + 65, + 58, + 49, + 149, + 28, + 197, + 72, + 72, + 138, 0, 0, 0, @@ -8050,38 +8054,38 @@ 0, 0, 0, - 254, - 222, - 88, - 194, - 222, - 164, - 236, - 45, - 117, - 125, - 80, - 122, - 1, - 119, - 21, - 186, - 58, - 42, - 210, - 122, - 75, - 254, - 158, - 92, + 28, 161, - 201, - 100, - 39, - 218, - 24, - 41, - 151, + 62, + 44, + 161, + 193, + 27, + 253, + 247, + 82, + 36, + 113, + 189, + 212, + 63, + 98, + 102, + 124, + 133, + 107, + 126, + 108, + 75, + 64, + 117, + 53, + 6, + 173, + 38, + 184, + 43, + 140, 0, 0, 0, @@ -8162,217 +8166,38 @@ 0, 0, 0, - 166, - 4, - 47, - 112, - 189, - 16, - 209, - 252, + 163, + 199, + 132, + 1, + 104, + 188, + 192, 102, - 57, - 148, - 80, - 98, + 85, + 112, + 28, + 24, + 204, + 28, + 44, + 217, 167, - 43, - 219, - 234, - 27, - 136, - 160, - 254, - 187, - 150, - 197, - 7, - 70, - 7, - 202, + 224, 220, - 47, - 159, - 89, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 232, 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 210, - 104, - 7, - 216, - 146, - 1, - 0, - 0, - 36, - 82, - 30, - 65, - 183, - 192, - 23, - 72, - 123, - 231, - 100, - 128, - 86, - 159, - 136, - 163, - 24, - 82, - 67, - 139, - 141, - 248, - 200, - 171, - 163, - 5, - 98, - 244, - 137, + 115, + 213, 223, - 150, - 206, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - } - }, - "owner": { - "ObjectOwner": "0x0000000000000000000000000000000000000000000000000000000000000005" - }, - "previous_transaction": "326n9ZcQDrJVxyFL8aWkknSmFahVxwpqZQ5q5ySmWrUy", - "storage_rebate": 0 - }, - { - "data": { - "Move": { - "type_": "StakedIota", - "has_public_transfer": true, - "version": 3, - "contents": [ - 15, - 240, - 36, - 200, - 226, - 13, - 113, - 188, - 151, - 98, - 189, + 147, + 195, + 199, + 87, + 24, 133, - 39, - 114, - 83, - 101, - 18, - 88, - 68, - 96, - 185, - 32, - 236, - 146, - 53, - 166, - 101, - 26, - 67, - 5, - 250, - 235, - 209, - 123, - 224, - 206, - 121, - 241, - 77, - 244, - 72, - 86, - 107, - 103, - 131, - 192, - 239, - 101, - 12, - 50, - 118, + 15, 14, - 142, - 183, - 157, - 157, - 157, - 178, - 187, - 220, - 115, - 108, - 181, - 43, - 2, + 113, 0, 0, 0, @@ -8381,116 +8206,104 @@ 0, 0, 0, - 14, - 208, - 231, - 124, + 0, + 232, 3, 0, - 0 - ] - } - }, - "owner": { - "AddressOwner": "0x2db19ce7b296633e49f48e863c2b08d5ea0a885273bfa574e2db0a85ece225e5" - }, - "previous_transaction": "326n9ZcQDrJVxyFL8aWkknSmFahVxwpqZQ5q5ySmWrUy", - "storage_rebate": 0 - }, - { - "data": { - "Move": { - "type_": "StakedIota", - "has_public_transfer": true, - "version": 3, - "contents": [ - 40, - 202, - 112, - 217, - 109, - 109, - 156, - 205, - 135, - 25, - 51, - 46, - 187, - 222, - 63, - 176, - 72, - 93, - 21, - 89, - 146, - 13, - 133, - 38, - 9, - 203, - 166, - 67, - 189, - 17, - 60, - 53, - 15, - 179, - 7, - 220, - 99, - 116, - 11, - 43, - 34, - 99, - 124, - 173, - 183, - 91, - 122, - 153, - 83, - 227, - 216, - 174, - 143, - 123, - 179, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 197, + 193, + 32, + 8, + 147, + 1, + 0, + 0, 93, - 16, - 223, - 139, - 50, + 232, 20, - 184, - 146, - 41, - 2, - 0, + 94, + 111, + 235, + 90, + 111, + 84, + 154, + 75, + 94, + 63, + 132, + 198, + 26, 0, + 126, + 154, + 246, + 119, + 55, + 52, + 57, + 187, + 163, + 189, + 178, + 113, + 185, + 37, + 24, 0, 0, 0, 0, 0, 0, - 14, - 208, - 231, - 124, - 3, 0, 0 ] } }, "owner": { - "AddressOwner": "0x3bfb34ad6f452c61add36979ce9308a507f4ca7749817ba5a19a57d4ff2cd53f" + "ObjectOwner": "0x0000000000000000000000000000000000000000000000000000000000000005" }, - "previous_transaction": "326n9ZcQDrJVxyFL8aWkknSmFahVxwpqZQ5q5ySmWrUy", + "previous_transaction": "5SBQBPHqvQqSCTZ6PS3tRfiwagqLbtU9mmjENYUuKTbt", "storage_rebate": 0 }, { @@ -8517,38 +8330,38 @@ "has_public_transfer": false, "version": 3, "contents": [ - 55, - 182, - 163, - 91, - 229, - 253, - 149, - 44, - 130, - 137, - 97, - 206, - 185, - 13, - 28, - 140, - 90, - 166, - 199, - 140, - 40, 3, - 84, - 7, - 115, - 234, - 137, - 138, - 249, - 124, - 14, + 112, + 142, + 64, + 109, + 119, + 151, + 153, + 216, 221, + 234, + 27, + 176, + 87, + 179, + 213, + 74, + 43, + 34, + 62, + 35, + 202, + 18, + 161, + 108, + 251, + 160, + 117, + 15, + 225, + 197, + 111, 2, 0, 0, @@ -8577,9 +8390,105 @@ } }, "owner": { - "ObjectOwner": "0x3c32b42be3a2db1d7ddd51c85375127ff6aefb276834193e469e01e25d48f555" + "ObjectOwner": "0xa7145260786ac2f869cccf41a1a9123c3a387ade639425d243ef82c64b5b24cb" + }, + "previous_transaction": "5SBQBPHqvQqSCTZ6PS3tRfiwagqLbtU9mmjENYUuKTbt", + "storage_rebate": 0 + }, + { + "data": { + "Move": { + "type_": "StakedIota", + "has_public_transfer": true, + "version": 3, + "contents": [ + 3, + 193, + 74, + 211, + 162, + 48, + 232, + 51, + 68, + 69, + 16, + 72, + 17, + 98, + 156, + 156, + 61, + 34, + 67, + 118, + 137, + 58, + 68, + 121, + 200, + 252, + 192, + 36, + 250, + 133, + 108, + 231, + 252, + 9, + 3, + 95, + 199, + 228, + 138, + 44, + 8, + 192, + 170, + 242, + 138, + 90, + 129, + 73, + 110, + 204, + 101, + 177, + 253, + 27, + 77, + 240, + 196, + 136, + 61, + 74, + 232, + 245, + 31, + 44, + 2, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 14, + 208, + 231, + 124, + 3, + 0, + 0 + ] + } + }, + "owner": { + "AddressOwner": "0x22085c0ef43c8385ce6c905288f190ec07442041cb621207221b4891410898a9" }, - "previous_transaction": "326n9ZcQDrJVxyFL8aWkknSmFahVxwpqZQ5q5ySmWrUy", + "previous_transaction": "5SBQBPHqvQqSCTZ6PS3tRfiwagqLbtU9mmjENYUuKTbt", "storage_rebate": 0 }, { @@ -8606,38 +8515,38 @@ "has_public_transfer": false, "version": 3, "contents": [ - 142, - 231, - 82, + 42, + 111, + 113, + 170, + 106, + 15, + 52, + 219, + 174, + 35, + 216, 115, - 210, - 106, - 132, - 40, - 137, - 182, - 175, - 98, - 152, - 24, + 16, + 143, + 100, + 139, 76, - 112, - 170, - 149, - 73, + 247, + 172, 85, - 224, - 168, - 228, - 216, - 95, - 227, - 235, - 53, - 254, - 248, - 238, - 162, + 152, + 96, + 130, + 171, + 37, + 178, + 46, + 46, + 29, + 122, + 42, + 249, 2, 0, 0, @@ -8666,9 +8575,9 @@ } }, "owner": { - "ObjectOwner": "0x131c437cac81c9875e4840c5265f232c2b4be1b28becda2d90e308fb722d2889" + "ObjectOwner": "0x54c730eab1aafa8d87c1938067fef59d16190311b2158d1732d5dfb58d888a07" }, - "previous_transaction": "326n9ZcQDrJVxyFL8aWkknSmFahVxwpqZQ5q5ySmWrUy", + "previous_transaction": "5SBQBPHqvQqSCTZ6PS3tRfiwagqLbtU9mmjENYUuKTbt", "storage_rebate": 0 }, { @@ -8678,70 +8587,70 @@ "has_public_transfer": true, "version": 3, "contents": [ - 186, - 60, - 107, - 121, - 233, - 24, 94, - 249, - 190, - 4, - 213, - 102, - 149, - 57, - 122, - 144, + 125, + 34, + 194, + 198, + 222, + 0, + 66, + 93, 32, - 48, - 28, - 41, - 120, - 173, - 86, - 175, - 201, - 186, - 171, - 98, - 15, - 218, - 25, - 137, - 242, - 245, - 215, - 89, - 82, - 128, - 97, - 158, - 1, - 156, + 107, + 167, + 172, + 231, 124, - 176, - 4, - 137, - 192, - 182, - 113, + 110, + 55, + 52, + 208, 144, - 74, - 11, - 72, - 130, - 17, - 145, - 107, - 150, - 212, - 219, - 236, - 228, - 205, + 69, + 19, 29, + 86, + 94, + 197, + 153, + 31, + 35, + 28, + 20, + 191, + 108, + 8, + 131, + 255, + 10, + 126, + 40, + 96, + 0, + 240, + 181, + 84, + 198, + 78, + 38, + 179, + 32, + 56, + 224, + 3, + 131, + 55, + 202, + 245, + 210, + 94, + 134, + 100, + 211, + 3, + 231, + 206, 2, 0, 0, @@ -8762,9 +8671,9 @@ } }, "owner": { - "AddressOwner": "0x32482a229f83bace2da4c90b4dd99c8a73063a6a8ddc5bd6cc99ded87064912a" + "AddressOwner": "0xf80ae77e783087984e555807d1ee8590b87016899d7c34f7fe5f146f254c2be9" }, - "previous_transaction": "326n9ZcQDrJVxyFL8aWkknSmFahVxwpqZQ5q5ySmWrUy", + "previous_transaction": "5SBQBPHqvQqSCTZ6PS3tRfiwagqLbtU9mmjENYUuKTbt", "storage_rebate": 0 }, { @@ -8791,38 +8700,142 @@ "has_public_transfer": false, "version": 3, "contents": [ - 191, + 102, + 198, + 238, + 54, + 249, + 202, + 1, + 84, + 79, + 144, + 131, + 211, + 234, + 237, + 77, + 146, + 203, + 121, + 211, + 224, + 130, + 192, + 213, + 207, + 180, + 31, + 214, + 50, + 219, + 238, + 219, + 68, + 2, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 56, + 111, + 132, + 8, + 177, + 6, + 0, + 161, + 32, + 121, + 162, + 33, + 90, + 5, + 0 + ] + } + }, + "owner": { + "ObjectOwner": "0xf9e2d5a402ea861c251db48a13d31363ce1bdaf156899933ddc08cb118b846b2" + }, + "previous_transaction": "5SBQBPHqvQqSCTZ6PS3tRfiwagqLbtU9mmjENYUuKTbt", + "storage_rebate": 0 + }, + { + "data": { + "Move": { + "type_": "StakedIota", + "has_public_transfer": true, + "version": 3, + "contents": [ + 164, + 36, + 109, + 140, 224, - 72, - 221, 47, - 4, - 80, - 223, - 94, - 134, - 71, + 184, + 193, + 126, + 43, + 114, + 151, + 53, + 239, + 32, + 82, 236, - 24, - 230, - 72, - 163, - 174, - 161, - 36, - 105, - 146, - 112, - 27, - 201, - 168, - 81, - 3, - 125, - 199, - 39, + 215, 146, + 179, + 5, + 33, + 28, 152, + 252, + 238, + 213, + 250, + 71, + 95, + 164, + 250, + 101, + 212, + 253, + 63, + 181, + 227, + 59, + 98, + 128, + 150, + 217, + 196, + 85, + 74, + 68, + 84, + 29, + 253, + 46, + 147, + 10, + 123, + 61, + 25, + 96, + 151, + 138, + 209, + 99, + 92, + 178, + 216, 2, 0, 0, @@ -8832,28 +8845,20 @@ 0, 0, 0, - 56, - 111, - 132, - 8, - 177, - 6, + 14, + 208, + 231, + 124, + 3, 0, - 161, - 32, - 121, - 162, - 33, - 90, - 5, 0 ] } }, "owner": { - "ObjectOwner": "0x791f65cc868cc6ef0bc0ff4028939f10b96270274481cdebf421d647bef00b6e" + "AddressOwner": "0xb060493ce3d9bf018d5339cd55cf0c1219b5c0d06928f52229f3830a19b67040" }, - "previous_transaction": "326n9ZcQDrJVxyFL8aWkknSmFahVxwpqZQ5q5ySmWrUy", + "previous_transaction": "5SBQBPHqvQqSCTZ6PS3tRfiwagqLbtU9mmjENYUuKTbt", "storage_rebate": 0 }, { @@ -8863,70 +8868,70 @@ "has_public_transfer": true, "version": 3, "contents": [ - 193, - 61, - 149, - 198, - 192, - 159, - 114, - 12, - 76, - 102, - 113, - 132, - 102, - 48, - 147, 184, - 136, - 152, - 227, - 49, - 228, - 145, - 29, - 200, - 7, 113, - 151, - 147, - 111, - 71, - 3, - 89, + 120, + 125, + 143, + 171, 26, - 73, - 49, - 169, - 67, - 19, - 121, - 35, - 127, - 251, + 134, + 18, + 181, + 79, + 200, + 20, + 152, + 245, + 108, + 55, + 252, + 2, + 234, + 173, + 205, 115, - 102, - 203, + 167, + 201, + 188, + 164, + 91, + 86, 11, - 73, - 57, - 227, - 115, - 5, - 39, - 92, + 143, + 218, + 102, + 130, + 212, + 1, + 216, + 110, + 189, + 207, 71, - 87, - 245, - 250, - 108, - 229, - 163, + 145, + 173, + 186, + 86, + 181, + 239, + 231, + 188, + 196, + 199, + 13, + 91, + 42, + 253, + 78, + 227, + 139, + 202, + 175, 116, - 21, - 52, - 122, + 79, + 92, + 61, 2, 0, 0, @@ -8947,9 +8952,9 @@ } }, "owner": { - "AddressOwner": "0x45e45dbd905642cc2ca9c3cfd1a0a1f9517758e5d98deb676040c49340c8b267" + "AddressOwner": "0x9cfbb179f23a875302cfbaceba8922fdca3ca4b14eeb38b2f071946715e5e231" }, - "previous_transaction": "326n9ZcQDrJVxyFL8aWkknSmFahVxwpqZQ5q5ySmWrUy", + "previous_transaction": "5SBQBPHqvQqSCTZ6PS3tRfiwagqLbtU9mmjENYUuKTbt", "storage_rebate": 0 }, { @@ -8976,38 +8981,38 @@ "has_public_transfer": false, "version": 3, "contents": [ - 252, - 67, - 96, - 254, - 39, - 224, - 104, - 47, - 104, - 250, - 108, - 183, - 40, - 110, - 93, - 19, - 107, - 54, - 172, + 184, + 244, + 36, 99, - 55, - 209, - 47, - 162, - 51, + 98, + 235, + 126, + 29, + 163, + 105, + 241, + 164, + 197, 127, - 145, - 45, - 185, - 25, - 228, - 42, + 114, + 249, + 246, + 59, + 79, + 222, + 192, + 41, + 40, + 93, + 240, + 159, + 111, + 221, + 97, + 83, + 215, + 23, 2, 0, 0, @@ -9036,9 +9041,9 @@ } }, "owner": { - "ObjectOwner": "0x6450460d7e7be475407908e48144f095500bc73cf7254f91c182a45570d0cac6" + "ObjectOwner": "0x3b6c324ad54f6a7dfd49159358a20570722173968d34109b4340ee2f5da000a6" }, - "previous_transaction": "326n9ZcQDrJVxyFL8aWkknSmFahVxwpqZQ5q5ySmWrUy", + "previous_transaction": "5SBQBPHqvQqSCTZ6PS3tRfiwagqLbtU9mmjENYUuKTbt", "storage_rebate": 0 } ] diff --git a/crates/iota-light-client/example_config/532.chk b/crates/iota-light-client/example_config/532.chk deleted file mode 100644 index be1c182f1629d5f68a98d50f5878f2c0b33cecec..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 14576 zcmeHN2|SeB`+o;xAIVZEH6r`IMk8d&R@s+Sh_PfD%-Bg>vV<%V5)ny=w1|k3H7VIz znXH8_$(rpym3MBp?%Y@Z|L@-a{oPNm&u5M~=e*~6p7VU4Gw1u90|UN1EM#BG%`{(1 z9~eREij~6vM70n zjq}K)Fz`2zLwpDH%gDx7M0&9oU)(4sM#>{lh$-w-y{xa5>4 zCU04>ELs~HxFuM5h$l~fY39ZxoUQ?RaK0U&XriOX(XO=fw%Vial`4qvbnX&dE&xh?y zCm$@|9bJr}!Q!Y9Gm8^1Z&m6bVri$JGTdGf(lyUCni8>L>aAtrv+}vyB7N-kojUfD zeP;SfJDd^`WcP4s$9HjyCmpWhU?d7E>KQ-%G^H_C`9;r4eBFEa{3Bsp(9Ow8xiRvt zrY$c-IZUIc)$W|6k?6DJQ8X{9MWkdo_g8Q_zwe%=;7t`RDZ0k21Gjj?f)KeeX<35! zWo}@b(8SiR!o;kVy}r-QCW(TsEgfDs7|uhUQ^fq9J&D=MgmZ^y@_X>)& zzG=vyOa#XeU09B)tZ{H+sA-|!>_xY*`?{=tX5A&Yj+ddrnfyul@W*Gyldn!1IF(W< zWzl-GpWf&peQXjp1q%A)sZS3KKwgclY&@@eR20#ee{>Jb(kAhIn`q{sKsR-UR`|AM z8)sl5iX*9<3?N_%e5-6r2Ga&Hvp{i$y`@n@c6oBS=B4XJldyOtYPpna9iE3(+;UsA zleEnkFS_y2H|B0o5C>l-0~kMxB?HI-fDE}V&^%vXp-Tnjo$%PDVu~9*SEArAc-;93 zyeXz{V6+K&p!=#z!||Dg@Er1A`Fxm)2GuOiA?MuS15+^1PMtmCNY0f&a{8#O6fsSY zBdJpB9r1&1qoE;nMx1hqep2Ra+mQUo>Y1oFtwD`rAr-;aak~+;_x!z#r;7F8@fF{d z$Y3CYS%032zx0Fb^VEI$Bna9@u__G=8>DRRhjk-(i||W{2Ro`mk|WC_%VQroE5_Wp z_iT_mnGXf69q1g$o=C_Z5FNgg^moi45quEJ0g#v?KoL2;A$K=ZSAgnpyH3h>My;d5 zyW6;Du(jNKeDV7ZeZt05#(OM%Qn@Ql_k~*+g-W(*h3h!#aWU38@np5WndJwM6_* zCkoi7b?Wm2t>c$|pv2YJNEd4z5I~Y1V{I+pNrG9g?Zy97ukWOi7!7jC1zWq-twLM23z4T9 z8Ou45eYTPZ#?fJZB0*gm4%!#>mH-h+J@?0Aa(`TP4G1KA>1p^ z9H|Q9^Dsm+nW@qtrs+J zSKbH-);jP^+eVb*G3-cmw}~a?h&8 z*KcnFI~SyjFzUkAMeUBht%=mRR8!5~TEYIgS!t#nE5e;hFu9u-EC!d7ghL{&Tgwrf zqYqqch~_6ZqQZ_uM$HE>ydntE=C)gEX3(AW-tST9q}4mZo~+G5JCS-Z?_=qN_518; z7)tWGP=EFd&cIjtjfS2~K{Hnt_#C9!cWGq6`VMJM8^exHW|uWvReNpJ?rnd2KPf0S z(c9cgB4qx$bC9zod;OE&yp_p?IaS1tA4N)B=gq%g%@p|jNpT7jZ}4qza=c(B|1~-Kt)>N+Jwd58S(s^Baa_qTCTtD@KhX{WptODia`=|Pl(!6jb zi^nm+ZBx@Fee%EtzJwHlkm9l6op)f#HVqmEb@mBI7e!vQC#$SP9xXXQJEqhgY6J7# zif%a(T|Z7&v!cwOn8{dv#Enla_~GajSJ$396LhYyyNXHmHJKjtx_0iNcH)V*B2xM# z2I4szsoc*bV)l@m6NLPlZ8k7+hHai|@Cc4~>JIsHKAIG*W*@cwiKDq!)EaXE^?^fG zaVEQ4g!5}3wVltJ*Y`FXd=@imZ>4-cQMs|y9=51zwakZi5OetGT*mKuh}lWD&_=FJ zEL$olUZk9TK#(A0@%^hbL-PkJCbF}2m4o4Oi#OQPrS~WMBm3~Vp1vVgFk3wh#4-N? zPi0@~fnc?XBt5zY)a>^C@pnUVjNKkL*AtKdTV)XdsfV1-5rea~#QI`!XctnQ)>uzY z<7MsaXlsqbcrY8{teqTP?G4cGo@gvi-3#rC1KieKqk3tBqZ8U@6HruU;g@RI|Mbc! z|7(XBdrwNT+)5CDif*WOVkj^?9u5H4R?^D#akBrVW*ki~>BSIR zcJAD{(%Ubw&NqahmQSemf3oe9)7|C<$E`D9=>a7aku^8n|76=av?TIXnSHr~7O-{?=(Obfv2ebFdrYT4IuBmJu}b?vtrSr0|DU!ai1BWT zMdR2_!01B(Vt%1Hm__Erb zh4jtlIsjh_f%rVae>CKO+}}@#16lu?1)u={Lk-#ew`L!zw<>$!X5>O zCS(>?--4p;a8Pq1Z-V4^f2_|R)RG}=eO;|x9BnM^9MR6UaE(u&WMou-(Dmyoa#CJc z|BaP|HJE5;5<4V+S(O1A{B0@!5xe0gUFqP`!-LnxPMp_~6|UflKOcEM0#0Afd&1`| zFySZ&53v;jCM0H~Y1se@sAc~z&!!`hyccA9dm0&sBhW6W%d%x

LL+uRk-CbGRe) zz!23D&fZZ;H;y|OInrt-tE*0QxY$h)(uF{@ziPQkf7$W zvRg*EFYYJb?YgCXWKNWWJ~qOkVK!KNK#>ojiAFatyRgy`e;h>!lMir;Il4)UNl40x ziWB}M#BerlVzM&Q(z0R>IGh{XH?5wwUs`vNXpoU!b{mW2-H~FLbSb?e zFe;(8>L4Tt;|H`TULd0cfGbZ9zqt$m@y=~trlxQJik*OA2Wt3jxx0Y>R{h*|y;6&? z$2^x+A6C;!APP6lajhG;pqTzhD;4Zd+#0Ov0a^gorzxerxPx*k%sSp%^TH#PzjLOa z=IWsj`p4pf-k-$ZqXx%;`fdKp4`Pshc> zvOC@aNsg+ex=L47uYT7H9UAsw#m<>5j7qI4S@ci>5YywdC|;z=b>H6(TlvUSyoyDM z=P=sU%IbOeqY#wyX0ASpQXe11pbNW()gLyL#os^3wb1?*MhS-(q%bP=rx=wYg;8k` zqbKodNQ;sOX$3yq{1)=payGgy6)l}=I{+visBpQu^8n}p5Ti_R&X)rf+5Ig+&t?zl znyS(@Mi!$3`MD+F$$FnfWl}tnW%hpcfq3uDQ|n5%m{~4Y1yS{ z?V->)2c7xF8-s5^%RnrGu>x8E)-QD0u_tA2uX$qG!pbDr2k%SKkE?dom3rH0Dl&ss z2m!}|+CW+T)n|A}>!|u&5%u=P^A>x3b|h3gvYT%5+PRC%C^K|YbxD#Y6xklMF+eTD zFGjsmAkMQrUu9gK_p;HIda7%#-8UEAHT%TFs2x*X#qO5~FGd&Gu)|$0D{dQM-gn|9 zJ$=HB6QYtcErzvE6~t!3q*Ki;kIN&{zrv^_X^hJJDMn>TVN@2xsPA-9*DjHL!-6q- z8t5k;Qsv>ji2U(swPnAscY4lQTR;zh7|oHgS~R*id@N8srl(`5H6#A1xhTGN`z4vK zwlKBo*gnw1P}CP1qfpsMD2(a{25Q(V-J&NSu+1t=teLi0N4(UHkUfgQap20U?~ zWgr$wVN_z~Iq$=J&umH?_vg0dc-Rzp4TT(7X%^^>*WG27^WFy>2WppV^;aMNB86*X zZChSF+3_-SQOHFkxZ{#}wJ=kx+{MIvK7Dr=Z46S?aJF_UTV<|EvD*4=V_b4R4jzhm z>cL4o{7>U6CLY`ozk%7GS4WeUjNgnBr9Q1>^dQxA9f!%|_?CF~0PbB35f;N)dQA_N z6%ba_Y`90Qz<>Z}Xhl%=ETb)+@0p4RaPqa`qLI#r(e(`iiwOZ7*Kge5 zoC5m+)5^aL3^m`4P-r@lcSTXDU{gWzT|SvZ61VEFd$OE=eG)w4wzZ1JmWFk(8eh*4 zP8bb!MT}#6T|N48E~TUzyS;RT-Z&}XH{4mxA$T5Z)&43%h9t#JxU@X-1iwV z@y1|3V7bTaUQf=Lh-aXlAIzJzLP79}pU!f|!K@}*zUOQLXNVoY`NwMHO9iM{GO;~I zYl(xvCu#&{6^#f9ljHR{$709-JMhFHn=q#{= zWQ6!BwX~h~Lcl87|H%kR?zaC0jBqtM3mnX?dTa~>z$7gcBLv|{A|ikvW`wJHfNK`G z!}-Ywe=<4kH9Fq5kI>;hNbN84LuR9@Je&sH`$bfdKH55!Ar}^i@)D!~2z% zP?sg4&S$>U66y$U?OKA`k}ChV%$1&Siu~!$n57#ACG z4{Jd;?tr@JNt}Syg#jcXkheSk+a?0)b|=Y+fLfy0J`rEx7U~)(R6d-jEf`%;M;>d} zk`!LS`o9OaP*+%q6Ywo=p_s|qC*mu2LEUwQN(~dW1>FUe{a?G5pj$|le~-JM?&%UI O;9GY=B|FwU5&r`hS&vl! diff --git a/crates/iota-light-client/example_config/790.chk b/crates/iota-light-client/example_config/790.chk new file mode 100644 index 0000000000000000000000000000000000000000..e53a0abaddd73c502f44ce0110f43c9b4a46d2f7 GIT binary patch literal 14602 zcmeHN2|SeB`+sM~WDAjf9ZN;_EqfFdvXqb{GnTP4$`BPTlqkiWh@!Gp)(}}jc7;L| zDiLK%LUze-#5=dEJNMQ7|L*{~8~|>^H_i0*R)A%zn-eFqBP|+SJZ3(RoMH3hf6~1a_TR z{Y%U^p*Wt-$>K=mEt3~ZEkkA=Y5Y_K7*PyHfeERfXf&aq!Q!+zGNl=F#P)8#?R-m8 z30?3-qCCKt_oPOT(5>Bb6FH+u+G>==bQ3`Fh;}ueX1;0t6MNONEM;+_XPY;E$vV?f z7rl0S zM{B>7zW*FT?SZGFoA^BZDz9)S-36NQR{Hz%qI&zT8;^KcAYfT3F)XOkYyBn%j$Zc5C*g-PbE`BX@f3QNElssub98`C~-psF8CP zrFtyQVU9~|hvfW5@nc{|3nR6VU;ygkOb54B!O5%y^U#b>8{3}UD{e?{P5kJQMjL;V zV+=_R3Yo@q~+Zq8AjxZ0~T>9WGqCFGVrE(_5W7H^=xetSKIB(dzd2;RR zgOA?PWET%G%4D7PyQS`{S^oN%e0!xS9ZEs#Hbb987M*k5b4Lffql{sW8C-C>&~Ki` zv=igm5($S{ebwkM{eXY99u7JXMX}Ty7&fTMljzL5Z^y+RNV&ev6*W{iU#SpoFD%i#)NmN2i>lbee3~j(R`V*HEXWm5} z?wL8tGk8(nNs-o2ZFABh6o`+(P^pCi`D~1m&VysG1$iSg!u)b}h+k4y_0IMYyr9b* zltB_*=mbgyVmKjfTyQqdNX>;$001=-UU>Qs(khjuxtr7-q+7t&epn~apO89%f$^(O zP*cTkbfSO(OYg!J_-*k?ut%^RvN^QTOOK++HnGBr?|On+t?57}2cy>!{5OZodR^0c&vP|80EXJqwW@<*?0tQ0P|^8e4tPbG zs?oV)RWOmUq4H-FkINo_GbRm$T1Xf;@Ti-m^Il8@{wq-)dQ7>4VT@Vmdw10b#B&sJ zRO@OfG~gs`!BEW+FkPe*r5Ue>8&^iHj_L*GxY5WgeUTpJQv+Q5nF%COz!4X~wCb^~ z$nNQfZqSqx;Oz$#+hNgk;IjWxiYGa1LrYT!B-y6=J*b)5unQq};840E}WeEPE zo&b9u6G-$UVJP*`fwJ(Ss)PA;6;iH!KGh8A{e}jA>oCJ0+pF)zD@}TM>P7iQ+lT`Ta=8hs2u}S3W3PBfT8d z971pA`85|a(f z-6>6rHcBIwT939Pd@L$aXfbjlbAOd zmSxZdLbQuAbIoH!<>5;Q!SOzm%GmzJ!$1t z={*ZGu9h0eOr8k|EG3+<|1uuK%7I|aVhLfBdDf8=ayFO}He*-J8`63*bRAbtN05R4 zmpY+_wAr+t;@VV)+Qx|DSz;&lh8u;F*pO1qR6*X!xryCRvnYjG21Pbr$(3JUHuC8X zkb%)r?QVMj3)!Re*ra|n6Gu)-gQM`cfXF9*8jgGJ8nF4mW~x*t8nI^M9lm`C!dMVX z`dy{gzEG9?>Irds{;R}JTmmVO6ur-e4;57eILz#OSwXi$q>PW2aQ*s*$>aVe2-q!V zBaF9G*_2~l{g&7yCRJs{Bd={Pt$V8Z@l@5${X(@wjKh{#1wbw#XdQ8QE3}7?2OjH6 zPH2VY2x>1Y7e`wwJnqoiJ$Nf;M>l&T>_Jbg2Y#Cu)(sE1yHNSh)A$KvfZ-hDDueZR zQHq@ie}$Uyr`&`W(yrG2}R1`zi|C4RUHqWW&bgNjOh-j-Y(bY2MnUf&U9984MTn=uu zvB+wLiWaE)f3oeLsS)Vvx4~jmCCQ_~<|lRB>adw}T>8TmXVrB3#`(mc<~*qS|E2A8 zqpzP9jR4f!88A1a9d<>o`h@xR=Bs8IfYWj@jtz3-U^RJJG!}H z53%m~x|H~C3NQmB8(evltZmpKmg~y{1~~bAY0Hiz@aq;Hsp$8={3hrbbcpMnMIDK2 z6g(CnacU^~js!I)@g_)q_xt+%PAQzu*2m4t)zJoR=ZJN&MQ&gCgu^L+NA%kw1i4XQ zTxKP44kpZaVV>v}ZRO$U3o|OCeAu(UM+{;zZ{IJd%#?a+11oEdH#8Kt#K~m z($l>TRgTvM_DEPWpigW7(E`3mwM`VS^PWf;+zmHhtA27AC`)v0dEI|^W@bD&Xd>W| zCK#1aOLY(m#P$_&0aTf*0Kg)#sKEpV#G-uS_|1_36!!(^15m@|c`YZ~(AMtz?wN^v zjjB@4bRi;AE%C=IsQMzQ>u8Ytbi7P_6i!zrwog8k-9Jl4vyM1xp&E8K5 zvpw1gMzjJ)&UV@I^bSxkZ#{r>oAiC`xgK>!-xaVK`39phL_d(5N0t5vql(gGFsdlO z_zo6KYk~6Io z?yPA-iVB)`Y!gmCL7-(I7Rh1sbiSK*<5SAXwgHP%{Kk)2Yl}*_>18VcW3L(N2Il5? zupOvXF6OU34n~bl!nz)Q^8NB6_-eOStbF89HoonNc~Wm#=*tNg7$ZAswoQ^>d}h$~ zLzVQE((|hl*2lN8y>JZnOSIl)uJx*KR4VVy{#{ZQZ{KY)a6Ke??j_tYaHlo}*W&^M z+cb{)-Lm}nf*J2YE>GnQrqNb zqtDm>`~xnQ{bp|?P_UEvQnLEJ%8eQl;fqoLX&%)#e1vT-Yy7~dJCv=@k(;|GZj*Ih zTvX z5;Da%LCc^pT7MzOXad8pYpxh}QGz?lGcuZRX2?iTI4|e9Lh49WKG=?|G4_>&kVz$h z;JaFpQS)#)TG5grNOVWpfiCAJf9YvZ4%l)yWWSHFfxF9XO`n$T{ia7>pBTFx?;zyF zS&fb0)1LqjaHi0E2G`Zn=63qFpd$_(7YmX}3B9U!wVl1x*v-cwLKAH8E+?jO*wqIEj3sL}XIUn7HUUQI+5qf&f5<5nmkub0{pa zGjZo;uj3YLyVdy$;qk14P+q;4{WJspK~ggyXh;QQzf_i@zTTcW(8p|vdvA_2zOvI& zJ)nvc@Vhc`SV2zdetc2Z!TfdXU<2R43@rLhj$AR_f;vtka-naxy}ze~p!bA-qrmq+ zeuol5UETP;5i%uz2PFjUTsb8KBN-elFo&ds4ad=v8bGo&f zc=ow)(+Ta4!@02RB7PX-oUv}(ylot;-0ZPNUym3;uq#4cv;^rD7**iP8S-`|^nF!w zi|Xa&f0lRtm?NNWSCVxE6o**3Bj7M_Sav~O!-P6%AZZI;JcBw+`cqm$-Q$Ehv-?g< zsAJhbr6trwP^jI;@3e&4P+qx~%b~vf_um73s7tIQ2Q0nONOJ%bHCeeMzJWf}ZC9uR l43f4W^r6nER<7mp;aUFs?-?$ro4Ol#QWXm2E8rxX1o3ZagvPGg)wvb8`l1SN?Bx|;^ zWly>yOS1i^^3Lt%&V9Q*xBI{M_w;(6IrF~f%sJoX^F8nRe9u7ye7@L;KbJSDKbHuG z=jIFpK_Y|crNW|c1;^Z_%+2=_w55cIywb}(ejU9CL&%y6y3i~k6OV{3*B#%Uwn3Fn zL64IBPfy{xb%vk> zs%S-^BG8-FUv`8uLvwj9e;Q6%gD_ZV1xOxKQei1pTe%u6kmb3O{G4slyH|39`>HLM zWsS%ZYXni*Z>GpL>ton(1FYOXi^ zWTou&QUo~$OGZ7n^tStcu?lr0#cb!s2dliQ$C7kr_)Y2hDmHT)xs}z6`aF14#TYhl zR8wZ3bqqC8IrfsDG>1^^iHA%y_<^!|C(n0Ytc{d?(YqR5H3eU2L&4 zZ5VhP$`o5j1W*7l+s{7&h}Oz87v?0ZqPh&W(&~nXr!ErDtDZRG&&+1QrF!{+S-L&% zOi&?8K*6oM#BFL7{IB|f)gtVO4>ilFs&9%N(`4E&1TW;vsD9v9J7Vvy|9VGBP)2)HFk;@e zR@BS0+&6MXpmNKHxRsp14?{m>7hPujyl1A+z>I;-$N;Blc{zvwnbzUQpksjq}p?g#$BmEQR#3K<(I!J)w zu!yi%Z$8;oqV%R$^F8pi>Uv_dQo+Q_R}wTS77nBlj0Mh0YdV77BQz)(OmVFx!rW8z zaN41W_%Jjo*N^S~$-^)2P}fD@v!su~Bu$u(R)59=t|J)2N9&S9i27E&Ys>ar*BJL| z%TQhSKxyB`ZrgR?saoQu=lG_8K{HRwc0Q51Vb8`50E+}RBU7A-(l%nUKd7FPtufW{ zx8ZMe8F=c`0c#L7O{dRROt{{)Y8LjcE0f;ZQjg^*B~EUWZBDo!$kv_duMxW?Q~xa9=NPB!w?lZ86zf6E}Ng?e|qg)MoB>#F-;uy90Hl{H&{zogLcgH-#M`-MiKy7;&I+ZPuO(rP;O4wLV(S z?nTMdDN=L0#yCGrw!76v4Jb9=swb%WbtC<|-dj-18UTg}IwMZAkkdG}2}M+uwoq@v?_AZ-py1D{ zc$gAXS6QC}L$IuR6H|qzTohDvGKt?qYt=vO@H#M{N{3}{jK`j1+jfww8HobISa2BV zaD*(Itbu6ghkMlLO5?_y%MfOIXWI(`&K~WUAXVCd>{!IlwlD;96Kk%l8!hJX6M1oU z%mXpB+O6vNk=rE2WNj1CG)gV_rocWa^mzt-%#%dJZKL^CW^-^-HLsm{lN~H3UMI`g zseEwC<^Y;qXLDpcYT(^rlXuk9inbq_hG#Pb_qZ4JbY7QT1w<5g??^gT)WDzinDTJf zl~BwE$&(S?`t9}cy`2tb(Ys;C&6?<#-R>4kAd>(GpT4EL7dYC~5ix0Stuw2_e&=;@ zgLEP3h9s^H=8qWHC%g|MiP_Sc?{qyV%TvGGShJNT{0*>wQ8de5p3gX|)ylmghAf?Q zrp{H#-!nbslHRjbzBU<{Nqu1S#aV}U=`~0WO6efU4E@uF+s4_9{41iBt`v4m;Rcyg z64viJcz(pWWuvBBr*tfZRbqod*-gsD7lyaxPt}+J{5e-fbK^{28%6v47X)x3% zx4@T;p>tHK)#RvuaS#sJ@O36b@OP z!P#VtmKxeE<08{+DOZRaglncQ z(?8Pg*%gWAdbr7K+<_j~yzpW3D{pGjEz5InyTXtncXWrt_W4UgWkE zWt3J(gbf%f&K`kvVR~cYcehz@yLqx~xKlmk;qf!_MOfJV@kiTp6tX0|aDzzF=3f@4 zib|?;DdFvkp=1?1ArRHm#3L(se|gDGeB2pE&wSA9mjC0^ClqC?xKJE?yecnq!zP~d zM-7rKI`Q+IflWQjFh4z6Q1>{-NjNM{Z7SPABPSO8Pv9bd}HVlws%wA()wl0=19lkh82i*^s~7+gJ_C8sz*=_2{yI zv?C5pb=5dzz}6T$Kg_3*px@wZHlGj-C^pLRiN(?uRYkAebzJ2kftw8Wb^%VyP%>Qsvf@z z+SoMe1H#&eLe>9&>Q0T1cN7MVWz+?uU*5sq)KbaL-2PMC z>k0!_U@$^O@EF)|hW3dqiWC6TX0>1x7hhFCXX9?x>XqQSB$)>Aj|r`By8hOX|Lf{Q z1@Zs5`cQHFKdwGhDF3I_-}=S60foUDW6>z9kNK1>+MkvZ>!yICU}S@lir2R35MO~e z3v~FdrNi+J*Y5EXAim=3FTV@=O-i`+&Sx2MYZNRRz;kJyuYdQ|JsgxA&zm6m-B&#j zzWvTb2QeWp(0-*QZVtxl8OsRCU)BT#O$#axmJ%N@TkcWj4lh47$eRdGRuShbVvkNf zlNk)9$Eb0!W~y{U5$_g+Oqniud)_(u{_nZIL&{3km|q zmY>sJ7)d+vEb#aUsR^P>3@I#r@sukJ0qYoXdu^XAMARU*~iGQ(UZ5@9vz(f@pVp%iqFEk{@O|6JV*U;NCP~u;X{5azS zEP_@JqJqLAdj*7Wf5L)TQwKqDF;P)*K}#&wVcS==&Ssx$_YtTN6J2xBo4N?CcUpx3 zw*(9}4l0ISZEHB@p4Tor#lu?LAJV}s0YVOZkt)x}_n-Bu$!HQ8z9tqia`_FJ{QT7( zw*wt#1nsZv(Z~X$5^AXqLIKzRKKnqjoDBeAkp8gg2nYRX&YK6HmQV;&-`f73ebZ2?)Rji1c(6TwX|N^-r~&x=l1%)IM@Z{i zDSmyWFPs8-+U5qya}3{U`b7Iqh4q({f&Df&rdf7AZ?i02S{?=+@yR{rAOtT))Yin8n7?6et}Wk1|cDg z?)g)U?jeLxQ4phH{c;HXJ5MfUx^eL6OXQ_(wOh_wKHGd8kUCyuo3sBo=m8L;ba0mL zp`xpU^}b#6hMGrZDpd|dQc5JTIW87rn@K!3f*yvVRL~fON;p7a^eT~nM0iJLW6d5{ z3)7?!%Un_M<#6SZ!1tCa3rqRKW1war7Qt8nH2|M4wwW`=ChaV3LDe(R?H+&+T-1yz zu~Xgis!fl74lNk~_5-zmGWyZ`SR}w=Gk@JTXIw!5DFr*inkN2yu-H?o@vSm zx4kK~W1L|TT##t|F_fPK^_4F$Dnb~eVt2QlhC zo7FDOuQs|nLPG)F;@>Nh6)%5mOu#mY=MLcAds5{ZY`04=pOW#J5 z>DpcU`ZjBEMuD1vSR{l|;koBrPs_VZb8FSpo70?3GhIdkj<443>WfyDKAJY=2KEEB z$~F4YM=cP16_IB3JuUmXla_dG`Td_=KUTs=7rFOZ%nfc$M_Xlk#6j)(3bt*<>AJV& zXm?Do?{%|ulFE?xkLBd)j4pcnbep2kEUomekvbd3ykg|j8XAF#i%$TjP3<7+FWxYDN^Jcl#|XYDBktp%LP3EVwCGP*(~>Fx=DC4J@1>)4(nLqX)CD>o3nMhhoePq zs)m9Xg-TICV-zag35C&@7d#5WHI4>bkZ`bEW>sz*;>h*3${1g1M#Y6r+H-yLJnD-1 zmHOQlW;Gimn$a^9YoRCcTHCV_&TI3brkqT2BQ5sl|3~yQdbrt`8YTuTS_K#duCi2x0s>u{p!2Uo0DILfg3nx zM&X#;pl1w6?k4h`dmU&;J&EbFa~epGGCwj&wP4E+c9_X+%czUKe1M^L=K$u$J!Pc* zO8ERpuM9swM-|@%&DJ^*4XO2qCu(*Z1iYfh(M!jPNHT1UC@A#wZjcgu>`wW`qPV`jZjY>Nm60!{ (Committee, CheckpointData) #[tokio::test] async fn check_can_read_test_data() { - let (_committee, full_checkpoint) = read_data(532, 801).await; + let (_committee, full_checkpoint) = read_data(524, 790).await; assert!( full_checkpoint .checkpoint_summary @@ -75,7 +75,7 @@ async fn check_can_read_test_data() { #[tokio::test] async fn test_new_committee() { - let (committee, full_checkpoint) = read_data(532, 801).await; + let (committee, full_checkpoint) = read_data(524, 790).await; let new_committee_data = full_checkpoint .checkpoint_summary @@ -110,7 +110,7 @@ async fn test_new_committee() { // Fail if the new committee does not match the target of the proof #[tokio::test] async fn test_incorrect_new_committee() { - let (committee, full_checkpoint) = read_data(532, 801).await; + let (committee, full_checkpoint) = read_data(524, 790).await; let committee_proof = Proof { checkpoint_summary: full_checkpoint.checkpoint_summary.clone(), @@ -124,7 +124,7 @@ async fn test_incorrect_new_committee() { // Fail if the certificate is incorrect even if no proof targets are given #[tokio::test] async fn test_fail_incorrect_cert() { - let (_committee, full_checkpoint) = read_data(532, 801).await; + let (_committee, full_checkpoint) = read_data(524, 790).await; let new_committee_data = full_checkpoint .checkpoint_summary @@ -164,7 +164,7 @@ async fn test_fail_incorrect_cert() { #[tokio::test] async fn test_object_target_fail_no_data() { - let (committee, full_checkpoint) = read_data(532, 801).await; + let (committee, full_checkpoint) = read_data(524, 790).await; let sample_object: Object = full_checkpoint.transactions[0].output_objects[0].clone(); let sample_ref = sample_object.compute_object_reference(); @@ -180,7 +180,7 @@ async fn test_object_target_fail_no_data() { #[tokio::test] async fn test_object_target_success() { - let (committee, full_checkpoint) = read_data(532, 801).await; + let (committee, full_checkpoint) = read_data(524, 790).await; let sample_object: Object = full_checkpoint.transactions[0].output_objects[0].clone(); let sample_ref = sample_object.compute_object_reference(); @@ -193,7 +193,7 @@ async fn test_object_target_success() { #[tokio::test] async fn test_object_target_fail_wrong_object() { - let (committee, full_checkpoint) = read_data(532, 801).await; + let (committee, full_checkpoint) = read_data(524, 790).await; let sample_object: Object = full_checkpoint.transactions[0].output_objects[0].clone(); let wrong_object: Object = full_checkpoint.transactions[1].output_objects[1].clone(); @@ -214,7 +214,7 @@ async fn test_object_target_fail_wrong_object() { #[tokio::test] async fn test_event_target_fail_no_data() { - let (committee, full_checkpoint) = read_data(532, 801).await; + let (committee, full_checkpoint) = read_data(524, 790).await; let sample_event: Event = full_checkpoint.transactions[1] .events @@ -238,7 +238,7 @@ async fn test_event_target_fail_no_data() { #[tokio::test] async fn test_event_target_success() { - let (committee, full_checkpoint) = read_data(532, 801).await; + let (committee, full_checkpoint) = read_data(524, 790).await; let sample_event: Event = full_checkpoint.transactions[1] .events @@ -259,7 +259,7 @@ async fn test_event_target_success() { #[tokio::test] async fn test_event_target_fail_bad_event() { - let (committee, full_checkpoint) = read_data(532, 801).await; + let (committee, full_checkpoint) = read_data(524, 790).await; let sample_event: Event = full_checkpoint.transactions[1] .events From f169075002ad8dcf89cfa5f55094ea4aed9a57ed Mon Sep 17 00:00:00 2001 From: Chloe Martin Date: Fri, 8 Nov 2024 09:44:10 -0500 Subject: [PATCH 17/25] update hash --- Cargo.lock | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 04ce431709f..fb2e19e3ed4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -7612,7 +7612,7 @@ dependencies = [ [[package]] name = "iota-rust-sdk" version = "0.0.0" -source = "git+ssh://git@github.com/iotaledger/iota-rust-sdk.git?rev=fc75533f7e6a779990de70237f1f7250c3c2248c#fc75533f7e6a779990de70237f1f7250c3c2248c" +source = "git+ssh://git@github.com/iotaledger/iota-rust-sdk.git?rev=d605da95029e74376f0f39a95526bb1a5c0ebd7a#d605da95029e74376f0f39a95526bb1a5c0ebd7a" dependencies = [ "base64ct", "bcs", diff --git a/Cargo.toml b/Cargo.toml index f45b80bfff9..129ca5a6691 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -417,7 +417,7 @@ iota-rosetta = { path = "crates/iota-rosetta" } iota-rpc-loadgen = { path = "crates/iota-rpc-loadgen" } iota-sdk = { path = "crates/iota-sdk" } # core-types with json format for REST API -iota-sdk2 = { package = "iota-rust-sdk", git = "ssh://git@github.com/iotaledger/iota-rust-sdk.git", rev = "fc75533f7e6a779990de70237f1f7250c3c2248c", features = ["hash", "serde", "schemars"] } +iota-sdk2 = { package = "iota-rust-sdk", git = "ssh://git@github.com/iotaledger/iota-rust-sdk.git", rev = "d605da95029e74376f0f39a95526bb1a5c0ebd7a", features = ["hash", "serde", "schemars"] } iota-simulator = { path = "crates/iota-simulator" } iota-snapshot = { path = "crates/iota-snapshot" } iota-source-validation = { path = "crates/iota-source-validation" } From 0e5aca9f468bc05d16957a0363987cbcbcd15be3 Mon Sep 17 00:00:00 2001 From: muXxer Date: Fri, 8 Nov 2024 18:04:36 +0100 Subject: [PATCH 18/25] fix(tests): update test baselines --- .../tests/call/simple.exp | 4 +- .../tests/child_count/count_decremented.exp | 20 ++++----- .../tests/child_count/delete_by_wrap.exp | 8 ++-- .../child_count/delete_by_wrap_one_txn.exp | 4 +- .../child_count/delete_parent_invalid.exp | 8 ++-- .../tests/child_count/delete_parent_valid.exp | 10 ++--- .../delete_parent_valid_one_txn.exp | 8 ++-- .../child_count/freeze_parent_invalid.exp | 8 ++-- .../tests/child_count/freeze_parent_valid.exp | 10 ++--- .../freeze_parent_valid_one_txn.exp | 8 ++-- .../non_zero_child_count_valid.exp | 12 +++--- .../non_zero_child_count_valid_one_txn.exp | 4 +- .../tests/child_count/temp_parent_invalid.exp | 4 +- .../tests/child_count/unwrap_never_stored.exp | 6 +-- .../unwrap_never_stored_transfer.exp | 6 +-- .../unwrap_then_delete_invalid.exp | 8 ++-- .../tests/children/child_of_shared_object.exp | 10 ++--- .../coin_deny_and_undeny_receiver.exp | 12 +++--- .../coin_deny_and_undeny_sender.exp | 14 +++---- .../coin_deny_multiple_coin_types.exp | 4 +- .../tests/deny_list_v1/coin_global_pause.exp | 24 +++++------ .../delete_setting_object_same_epoch.exp | 14 +++---- .../delete_setting_object_set_once.exp | 18 ++++---- .../delete_setting_object_set_twice.exp | 22 +++++----- .../tests/deny_list_v1/double_add.exp | 16 +++---- .../send_many_coins_unregulated.exp | 8 ++-- .../tests/dev_inspect/load_old_object.exp | 10 ++--- .../tests/dynamic_fields/add_duplicate.exp | 4 +- .../dynamic_fields/add_duplicate_object.exp | 4 +- .../tests/dynamic_fields/bench.exp | 4 +- .../dynamic_fields/borrow_wrong_type.exp | 4 +- .../borrow_wrong_type_object.exp | 4 +- .../dynamic_object_field_swap.exp | 10 ++--- .../tests/dynamic_fields/exhaustive.exp | 20 ++++----- .../dynamic_fields/exhaustive_object.exp | 20 ++++----- .../read_field_from_immutable.exp | 6 +-- ...eceive_remove_add_back_and_remove_type.exp | 18 ++++---- .../remove_add_back_and_remove.exp | 16 +++---- .../remove_add_back_and_remove_type.exp | 8 ++-- .../dynamic_fields/remove_wrong_type.exp | 4 +- .../remove_wrong_type_object.exp | 4 +- .../tests/dynamic_fields/shared_object.exp | 6 +-- .../tests/dynamic_fields/transfer_object.exp | 18 ++++---- .../tests/dynamic_fields/unwrap_object.exp | 14 +++---- .../tests/dynamic_fields/wrap_object.exp | 14 +++---- .../wrapped_uid_after_delete.exp | 14 +++---- .../tests/entry_points/ascii.exp | 8 ++-- .../tests/entry_points/generic_by_ref.exp | 2 +- .../tests/entry_points/imm_txn_context.exp | 8 ++-- .../tests/entry_points/large_enum.exp | 4 +- .../tests/entry_points/missing_type.exp | 2 +- .../tests/entry_points/no_txn_context.exp | 6 +-- .../tests/entry_points/obj_vector.exp | 26 ++++++------ .../tests/entry_points/obj_vector_generic.exp | 24 +++++------ .../tests/entry_points/utf8.exp | 14 +++---- .../tests/entry_points/wrong_visibility.exp | 2 +- .../tests/enums/basic_enums.exp | 6 +-- .../tests/enums/coin_wrapper.exp | 4 +- .../tests/enums/enum_events.exp | 10 ++--- .../tests/enums/enum_otw_check.exp | 4 +- .../tests/enums/enums_upgrade.exp | 10 ++--- .../tests/enums/enums_upgrade_add_variant.exp | 6 +-- .../tests/epoch/advance.exp | 8 ++-- .../tests/iota/coin_in_vec.exp | 8 ++-- .../tests/iota/coin_transfer.exp | 4 +- .../tests/iota/freeze.exp | 6 +-- .../iota/move_call_args_type_mismatch.exp | 2 +- .../iota/move_call_incorrect_function.exp | 2 +- .../tests/iota/object_basics.exp | 12 +++--- .../tests/iota/unwrap.exp | 8 ++-- .../tests/iota/unwrap_then_delete.exp | 12 +++--- .../tests/iota/unwrap_then_freeze.exp | 8 ++-- .../tests/mvcc/child_of_child.exp | 14 +++---- .../tests/mvcc/find_all_uids.exp | 14 +++---- .../tests/mvcc/find_all_uids_dof.exp | 14 +++---- .../tests/mvcc/find_all_uids_dof_enum.exp | 14 +++---- .../tests/mvcc/find_all_uids_enums.exp | 14 +++---- .../tests/mvcc/find_all_uids_on_child.exp | 14 +++---- .../mvcc/find_all_uids_on_child_enum.exp | 14 +++---- .../mvcc/middle_version_less_than_child.exp | 8 ++-- .../middle_version_less_than_child_enum.exp | 8 ++-- .../tests/mvcc/not_root_version.exp | 16 +++---- .../mvcc/not_root_version_flipped_case.exp | 12 +++--- ...eceive_object_access_through_parent_df.exp | 8 ++-- ...ceive_object_access_through_parent_dof.exp | 8 ++-- .../tests/mvcc/receive_object_dof.exp | 16 +++---- .../tests/mvcc/v0/child_of_child.exp | 14 +++---- .../tests/mvcc/v0/find_all_uids.exp | 14 +++---- .../tests/mvcc/v0/find_all_uids_dof.exp | 14 +++---- .../tests/mvcc/v0/find_all_uids_on_child.exp | 14 +++---- .../v0/middle_version_less_than_child.exp | 8 ++-- .../tests/mvcc/v0/not_root_version.exp | 16 +++---- .../mvcc/v0/not_root_version_flipped_case.exp | 12 +++--- .../borrowed_arg_copyable_invalid.exp | 2 +- .../borrowed_arg_non_copyable_invalid.exp | 2 +- .../borrowed_arg_primitives_invalid.exp | 2 +- .../tests/programmable/borrowed_arg_valid.exp | 6 +-- .../tests/programmable/cannot_call_emit.exp | 2 +- .../tests/programmable/cannot_call_init.exp | 2 +- .../programmable/cannot_call_private.exp | 2 +- .../tests/programmable/coin_negative.exp | 4 +- .../coin_operations_custom_coin.exp | 6 +-- .../coin_operations_non_coins.exp | 2 +- .../tests/programmable/coin_overflow.exp | 4 +- .../delayed_invalid_gas_by_value.exp | 2 +- .../delayed_invalid_object_by_value.exp | 6 +-- .../programmable/gas_coin_by_reference.exp | 16 +++---- .../tests/programmable/gas_coin_by_value.exp | 2 +- .../gas_coin_by_value_invalid.exp | 2 +- .../programmable/generics_substitution.exp | 4 +- .../tests/programmable/invalid_option.exp | 2 +- .../invalid_public_function_return.exp | 2 +- .../programmable/invalid_result_arity.exp | 2 +- .../tests/programmable/make_vec_objects.exp | 12 +++--- .../make_vec_special_validation_invalid.exp | 2 +- .../merge_coin_mismatched_coin.exp | 4 +- .../programmable/nested_result_zero_zero.exp | 4 +- .../non_primitive_non_object_arguments.exp | 4 +- .../programmable/out_of_bounds_input.exp | 2 +- .../programmable/out_of_bounds_nested.exp | 2 +- .../programmable/out_of_bounds_result.exp | 2 +- ...value_restriction_by_ref_input_invalid.exp | 4 +- ...y_value_restriction_by_ref_input_valid.exp | 8 ++-- ...y_value_restriction_copied_input_valid.exp | 4 +- ...alue_restriction_make_move_vec_invalid.exp | 4 +- ..._value_restriction_make_move_vec_valid.exp | 8 ++-- ...lue_restriction_non_pure_input_invalid.exp | 2 +- ...e_entry_value_restriction_per_argument.exp | 4 +- ...ate_entry_value_restriction_type_check.exp | 4 +- .../programmable/private_transfer_invalid.exp | 2 +- .../programmable/private_transfer_valid.exp | 8 ++-- .../programmable/pure_arg_type_change.exp | 2 +- .../tests/programmable/split_coins.exp | 14 +++---- .../programmable/split_coins_invalid.exp | 6 +-- .../tests/programmable/transfer_objects.exp | 10 ++--- .../transfer_objects_invalid_address.exp | 2 +- .../transfer_objects_invalid_object.exp | 2 +- .../programmable/unused_values_invalid.exp | 2 +- .../programmable/unused_values_valid.exp | 10 ++--- .../coin_limit.exp | 6 +-- .../make_vec.exp | 10 ++--- .../make_vec_shared.exp | 6 +-- .../merge_coin_shared.exp | 4 +- .../merge_coin_shared_real_coin.exp | 6 +-- .../publish.exp | 8 ++-- .../receipt.exp | 4 +- .../split_coin_share.exp | 10 ++--- .../transfer_shared.exp | 4 +- .../upgrade.exp | 14 +++---- .../tests/publish/init.exp | 2 +- .../tests/publish/multi_module_publish.exp | 2 +- .../tests/publish/publish_with_upgrade.exp | 2 +- .../tests/random/happy_flows.exp | 14 +++---- .../random/move_call_clock_after_random.exp | 2 +- ...e_call_clock_after_random_and_transfer.exp | 2 +- .../random/move_call_u64_after_random.exp | 2 +- .../random/two_move_calls_with_random.exp | 2 +- .../tests/receive_object/basic_receive.exp | 6 +-- .../tests/receive_object/drop_receiving.exp | 10 ++--- .../duplicate_receive_argument.exp | 6 +-- .../move_vec_receiving_types.exp | 8 ++-- .../pass_receiver_immut_then_reuse.exp | 6 +-- .../pass_receiver_mut_then_reuse.exp | 6 +-- .../receive_object/pt_receive_type_fixing.exp | 6 +-- .../receive_add_dof_and_mutate.exp | 6 +-- .../receive_object/receive_and_abort.exp | 4 +- .../receive_object/receive_and_deleted.exp | 6 +-- .../receive_object/receive_and_send_back.exp | 6 +-- .../tests/receive_object/receive_and_wrap.exp | 6 +-- .../tests/receive_object/receive_by_ref.exp | 10 ++--- .../receive_by_value_flow_through.exp | 8 ++-- .../receive_object/receive_dof_and_mutate.exp | 6 +-- .../receive_object/receive_duo_struct.exp | 8 ++-- .../receive_invalid_param_ty.exp | 6 +-- .../receive_object/receive_invalid_type.exp | 4 +- .../receive_object/receive_many_move_vec.exp | 22 +++++----- .../receive_multiple_times_in_row.exp | 12 +++--- .../receive_object/receive_object_id.exp | 10 ++--- .../receive_object/receive_object_owner.exp | 4 +- .../receive_return_object_dont_touch.exp | 4 +- .../receive_return_object_then_transfer.exp | 6 +-- .../receive_ticket_coin_operations.exp | 4 +- .../shared_parent/basic_receive.exp | 6 +-- .../shared_parent/drop_receiving.exp | 10 ++--- .../shared_parent/receive_dof_and_mutate.exp | 6 +-- .../receive_multiple_times_in_row.exp | 12 +++--- .../shared_parent/transfer_then_share.exp | 6 +-- .../take_receiver_then_try_to_reuse.exp | 4 +- .../receive_object/transfer_object_cyclic.exp | 4 +- .../runtime_behavior/error_locations.exp | 2 +- .../versioned_check_swap_loc_new.exp | 6 +-- .../tests/shared/add_dynamic_field.exp | 10 ++--- .../tests/shared/become_dynamic_field.exp | 8 ++-- .../shared/become_dynamic_object_field.exp | 8 ++-- .../by_value_shared_object_deletion.exp | 12 +++--- ...ared_object_deletion_via_make_move_vec.exp | 12 +++--- ...bject_deletion_via_make_move_vec_fails.exp | 8 ++-- ...value_shared_object_deletion_via_merge.exp | 24 +++++------ ...shared_object_deletion_via_merge_fails.exp | 14 +++---- ...e_shared_object_deletion_via_move_call.exp | 14 +++---- ...ed_object_deletion_via_move_call_fails.exp | 8 ++-- .../tests/shared/freeze.exp | 4 +- .../tests/shared/re_share.exp | 12 +++--- .../tests/shared/transfer.exp | 4 +- .../tests/shared/upgrade.exp | 4 +- .../tests/shared/wrap.exp | 4 +- .../size_limits/deleted_id_limits_tests.exp | 8 ++-- .../tests/size_limits/event_limits_tests.exp | 10 ++--- .../event_limits_tests_out_of_gas.exp | 2 +- .../size_limits/identitifer_len_limits.exp | 2 +- .../size_limits/move_object_size_limit.exp | 6 +-- .../tests/size_limits/new_id_limits_tests.exp | 8 ++-- .../size_limits/object_runtime_limits.exp | 6 +-- .../transfered_id_limits_tests.exp | 8 ++-- .../tests/size_limits/vector_len_limits.exp | 8 ++-- .../transfer_object/does_not_have_store.exp | 6 +-- .../does_not_have_store_receive.exp | 16 +++---- .../tests/transfer_object/has_store.exp | 10 ++--- .../tests/transfer_object/immutable.exp | 4 +- .../tests/transfer_object/package.exp | 2 +- .../tests/transfer_object/quasi_shared.exp | 6 +-- .../tests/transfer_object/shared.exp | 6 +-- .../tests/transfer_object/transfer_coin.exp | 4 +- .../tests/transfer_object/wrap_unwrap.exp | 8 ++-- .../tests/upgrade/abort_code_resolution.exp | 6 +-- .../upgrade/add_ability_during_upgrade.exp | 2 +- .../add_ability_during_upgrade_enum.exp | 2 +- .../add_ability_during_upgrade_generics.exp | 2 +- ...d_ability_during_upgrade_generics_enum.exp | 2 +- .../tests/upgrade/add_key_during_upgrade.exp | 2 +- .../tests/upgrade/add_new_type_with_key.exp | 4 +- .../tests/upgrade/basic.exp | 2 +- .../tests/upgrade/constants.exp | 14 +++---- .../tests/upgrade/dep_override.exp | 24 +++++------ .../tests/upgrade/enum_struct_swap.exp | 2 +- .../tests/upgrade/enums.exp | 2 +- .../tests/upgrade/friend_fun_changes.exp | 12 +++--- .../upgrade/large_module_inclusion_checks.exp | 10 ++--- .../tests/upgrade/linkage.exp | 8 ++-- .../tests/upgrade/modules.exp | 2 +- .../tests/upgrade/multi_version.exp | 4 +- .../tests/upgrade/new_types.exp | 18 ++++---- .../tests/upgrade/private_fun_changes.exp | 16 +++---- .../tests/upgrade/public_fun_changes.exp | 6 +-- .../tests/upgrade/publisher.exp | 8 ++-- ...ve_ability_during_upgrade_fun_generics.exp | 8 ++-- ...remove_ability_during_upgrade_generics.exp | 2 +- .../tests/upgrade/remove_phantom.exp | 2 +- .../tests/upgrade/remove_phantom_enum.exp | 2 +- .../tests/upgrade/struct_enum_swap.exp | 2 +- .../tests/upgrade/structs.exp | 2 +- .../tests/upgrade/transitive_linkage.exp | 12 +++--- .../tests/upgrade/type_names.exp | 22 +++++----- .../tests/upgrade/upgrade_ratchet.exp | 16 +++---- ...rical_transaction_cost__good_snapshot.snap | 10 +++++ .../tests/available_range/available_range.exp | 16 +++---- .../tests/call/coin_metadata.exp | 4 +- .../tests/call/dynamic_fields.exp | 10 ++--- .../tests/call/owned_objects.exp | 4 +- .../tests/call/simple.exp | 18 ++++---- .../tests/consistency/balances.exp | 8 ++-- .../checkpoints/transaction_blocks.exp | 20 ++++----- .../tests/consistency/coins.exp | 8 ++-- .../consistency/dynamic_fields/deleted_df.exp | 12 +++--- .../dynamic_fields/deleted_dof.exp | 12 +++--- .../dof_add_reclaim_transfer.exp | 8 ++-- .../dof_add_reclaim_transfer_reclaim_add.exp | 14 +++---- .../dynamic_fields/dynamic_fields.exp | 12 +++--- .../dynamic_fields/immutable_dof.exp | 14 +++---- .../consistency/dynamic_fields/mutated_df.exp | 12 +++--- .../dynamic_fields/mutated_dof.exp | 14 +++---- .../consistency/dynamic_fields/nested_dof.exp | 16 +++---- .../consistency/epochs/transaction_blocks.exp | 16 +++---- .../tests/consistency/object_at_version.exp | 12 +++--- .../tests/consistency/objects_pagination.exp | 12 +++--- .../consistency/objects_pagination_single.exp | 12 +++--- .../consistency/performance/many_objects.exp | 10 ++--- .../tests/consistency/staked_iota.exp | 8 ++-- .../tests/consistency/tx_address_objects.exp | 8 ++-- .../tests/epoch/chain_identifier.exp | 2 +- .../tests/epoch/epoch.exp | 6 +-- .../tests/epoch/system_state.exp | 10 ++--- .../tests/errors/clever_errors.exp | 4 +- .../tests/errors/clever_errors_in_macros.exp | 2 +- .../event_connection/combo_filter_error.exp | 4 +- .../event_connection/event_connection.exp | 14 +++---- .../event_connection/nested_emit_event.exp | 4 +- .../tests/event_connection/no_filter.exp | 4 +- .../tests/event_connection/pagination.exp | 6 +-- .../tests/event_connection/tx_digest.exp | 8 ++-- .../tests/event_connection/type_filter.exp | 8 ++-- .../event_connection/type_param_filter.exp | 8 ++-- .../tests/limits/directives.exp | 4 +- .../tests/objects/coin.exp | 2 +- .../tests/objects/data.exp | 4 +- .../tests/objects/display.exp | 26 ++++++------ .../tests/objects/enum_data.exp | 4 +- .../tests/objects/filter_by_type.exp | 4 +- .../tests/objects/pagination.exp | 12 +++--- .../tests/objects/public_transfer.exp | 4 +- .../tests/objects/received.exp | 2 +- .../tests/objects/staked_iota.exp | 4 +- .../tests/owner/downcasts.exp | 2 +- .../tests/owner/root_version.exp | 20 ++++----- .../tests/packages/datatypes.exp | 2 +- .../tests/packages/enums.exp | 4 +- .../tests/packages/friends.exp | 4 +- .../tests/packages/functions.exp | 4 +- .../tests/packages/modules.exp | 2 +- .../tests/packages/structs.exp | 4 +- .../tests/packages/types.exp | 2 +- .../tests/packages/versioning.exp | 6 +-- .../balance_changes.exp | 4 +- .../dependencies.exp | 16 +++---- .../transaction_block_effects/events.exp | 8 ++-- .../object_changes.exp | 4 +- .../tests/transactions/at_checkpoint.exp | 2 +- .../tests/transactions/errors.exp | 2 +- .../tests/transactions/filters/kind.exp | 12 +++--- .../transactions/filters/transaction_ids.exp | 4 +- .../tests/transactions/programmable.exp | 8 ++-- .../transactions/scan_limit/alternating.exp | 22 +++++----- .../transactions/scan_limit/both_cursors.exp | 22 +++++----- .../transactions/scan_limit/equal/first.exp | 24 +++++------ .../transactions/scan_limit/equal/last.exp | 22 +++++----- .../transactions/scan_limit/ge_page/first.exp | 42 +++++++++---------- .../transactions/scan_limit/ge_page/last.exp | 42 +++++++++---------- .../scan_limit/invalid_limits.exp | 12 +++--- .../transactions/scan_limit/le_page/first.exp | 22 +++++----- .../transactions/scan_limit/le_page/last.exp | 22 +++++----- .../tests/transactions/scan_limit/require.exp | 22 +++++----- .../tests/transactions/shared.exp | 8 ++-- .../tests/validator/validator.exp | 40 +++++++++--------- .../tests/entry_points/clock_ref.exp | 2 +- .../generic_and_generic_object_params.exp | 2 +- .../generic_param_after_primitive.exp | 2 +- .../entry_points/generic_with_key_valid.exp | 2 +- .../tests/entry_points/id.exp | 2 +- .../nested_generic_vector_param.exp | 2 +- .../non_key_struct_generic_valid.exp | 2 +- .../tests/entry_points/ok.exp | 4 +- .../tests/entry_points/option.exp | 2 +- .../entry_points/optional_txn_context.exp | 4 +- .../tests/entry_points/random_ref.exp | 2 +- .../tests/entry_points/return_values.exp | 10 ++--- .../single_generic_vector_param.exp | 2 +- .../tests/entry_points/single_type_param.exp | 2 +- .../single_type_param_generic_object.exp | 2 +- .../entry_points/single_type_param_key.exp | 2 +- .../tests/entry_points/string.exp | 2 +- ...mut_borrow_generic_key_struct_id_field.exp | 2 +- .../mut_borrow_key_struct_id_field.exp | 2 +- .../mut_borrow_key_struct_non_id_field.exp | 2 +- .../mut_borrow_non_key_struct_id_field.exp | 2 +- .../id_leak/direct_leak_through_call.exp | 2 +- .../id_leak/indirect_leak_through_call.exp | 2 +- .../tests/id_leak/infinite_loop.exp | 4 +- .../tests/id_leak/loop.exp | 2 +- .../tests/id_leak/through_direct_return.exp | 2 +- .../tests/id_leak/through_pack.exp | 2 +- .../tests/id_leak/through_vector.exp | 2 +- .../tests/one_time_witness/bool_field.exp | 2 +- .../one_time_witness/many_fields_valid.exp | 2 +- .../one_time_witness/wrong_field_type.exp | 4 +- .../no_public_transfer_explicit.exp | 2 +- .../private_generics/private_event_emit.exp | 2 +- .../public_transfer_with_store.exp | 8 ++-- .../public_transfer_with_store_generic.exp | 8 ++-- .../receive_with_and_without_store.exp | 4 +- .../key_struct_id_field_valid.exp | 2 +- 370 files changed, 1461 insertions(+), 1451 deletions(-) diff --git a/crates/iota-adapter-transactional-tests/tests/call/simple.exp b/crates/iota-adapter-transactional-tests/tests/call/simple.exp index 4458e089d7a..8fa72608d3c 100644 --- a/crates/iota-adapter-transactional-tests/tests/call/simple.exp +++ b/crates/iota-adapter-transactional-tests/tests/call/simple.exp @@ -4,13 +4,13 @@ task 1, lines 7-26: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5563200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5563200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 28: //# run Test::M1::create --args 0 @A created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 3, line 30: //# view-object 2,0 diff --git a/crates/iota-adapter-transactional-tests/tests/child_count/count_decremented.exp b/crates/iota-adapter-transactional-tests/tests/child_count/count_decremented.exp index fdc2f3f7973..fa9ff7a6b44 100644 --- a/crates/iota-adapter-transactional-tests/tests/child_count/count_decremented.exp +++ b/crates/iota-adapter-transactional-tests/tests/child_count/count_decremented.exp @@ -7,13 +7,13 @@ task 1, lines 10-52: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 7508800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7508800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 54: //# run test::m::mint --sender A created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2181200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2181200, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 56: //# view-object 2,0 @@ -31,13 +31,13 @@ task 4, line 58: //# run test::m::add --sender A --args object(2,0) 1 created: object(4,0), object(4,1) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 5829200, storage_rebate: 2181200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5829200, storage_rebate: 2181200, non_refundable_storage_fee: 0 task 5, line 60: //# run test::m::remove --sender A --args object(2,0) 1 mutated: object(0,0), object(2,0) deleted: object(4,0), object(4,1) -gas summary: computation_cost: 1000000, storage_cost: 2181200, storage_rebate: 5829200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2181200, storage_rebate: 5829200, non_refundable_storage_fee: 0 task 6, lines 62-66: //# view-object 2,0 @@ -55,7 +55,7 @@ task 7, line 68: //# run test::m::mint --sender A created: object(7,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2181200, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2181200, storage_rebate: 980400, non_refundable_storage_fee: 0 task 8, line 70: //# view-object 7,0 @@ -73,12 +73,12 @@ task 9, line 72: //# run test::m::add --sender A --args object(7,0) 1 created: object(9,0), object(9,1) mutated: object(0,0), object(7,0) -gas summary: computation_cost: 1000000, storage_cost: 5829200, storage_rebate: 2181200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5829200, storage_rebate: 2181200, non_refundable_storage_fee: 0 task 10, line 74: //# run test::m::remove_and_add --sender A --args object(7,0) 1 mutated: object(0,0), object(7,0), object(9,0), object(9,1) -gas summary: computation_cost: 1000000, storage_cost: 5829200, storage_rebate: 5829200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5829200, storage_rebate: 5829200, non_refundable_storage_fee: 0 task 11, lines 76-80: //# view-object 7,0 @@ -96,7 +96,7 @@ task 12, line 82: //# run test::m::mint --sender A created: object(12,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2181200, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2181200, storage_rebate: 980400, non_refundable_storage_fee: 0 task 13, line 84: //# view-object 12,0 @@ -114,14 +114,14 @@ task 14, line 86: //# run test::m::add --sender A --args object(12,0) 1 created: object(14,0), object(14,1) mutated: object(0,0), object(12,0) -gas summary: computation_cost: 1000000, storage_cost: 5829200, storage_rebate: 2181200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5829200, storage_rebate: 2181200, non_refundable_storage_fee: 0 task 15, line 88: //# run test::m::remove_and_wrap --sender A --args object(12,0) 1 created: object(15,0) mutated: object(0,0), object(12,0), object(14,0) wrapped: object(14,1) -gas summary: computation_cost: 1000000, storage_cost: 6072400, storage_rebate: 5829200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6072400, storage_rebate: 5829200, non_refundable_storage_fee: 0 task 16, line 90: //# view-object 12,0 diff --git a/crates/iota-adapter-transactional-tests/tests/child_count/delete_by_wrap.exp b/crates/iota-adapter-transactional-tests/tests/child_count/delete_by_wrap.exp index 980f04cf27e..eb23f878d5c 100644 --- a/crates/iota-adapter-transactional-tests/tests/child_count/delete_by_wrap.exp +++ b/crates/iota-adapter-transactional-tests/tests/child_count/delete_by_wrap.exp @@ -7,19 +7,19 @@ task 1, lines 10-38: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 6505600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6505600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 40: //# run test::m::mint --sender A created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2181200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2181200, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 42: //# run test::m::add --sender A --args object(2,0) 0 created: object(3,0), object(3,1) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 5829200, storage_rebate: 2181200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5829200, storage_rebate: 2181200, non_refundable_storage_fee: 0 task 4, line 44: //# view-object 2,0 @@ -38,4 +38,4 @@ task 5, line 46: created: object(5,0) mutated: object(0,0) wrapped: object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2424400, storage_rebate: 2181200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2424400, storage_rebate: 2181200, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/child_count/delete_by_wrap_one_txn.exp b/crates/iota-adapter-transactional-tests/tests/child_count/delete_by_wrap_one_txn.exp index 2b69c360664..50b952dbdd4 100644 --- a/crates/iota-adapter-transactional-tests/tests/child_count/delete_by_wrap_one_txn.exp +++ b/crates/iota-adapter-transactional-tests/tests/child_count/delete_by_wrap_one_txn.exp @@ -7,10 +7,10 @@ task 1, lines 10-32: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 6095200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6095200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 34: //# run test::m::test_wrap --sender A created: object(2,0), object(2,1), object(2,2) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 6072400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6072400, storage_rebate: 0, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/child_count/delete_parent_invalid.exp b/crates/iota-adapter-transactional-tests/tests/child_count/delete_parent_invalid.exp index d1af3e03f13..5d9b5f41627 100644 --- a/crates/iota-adapter-transactional-tests/tests/child_count/delete_parent_invalid.exp +++ b/crates/iota-adapter-transactional-tests/tests/child_count/delete_parent_invalid.exp @@ -7,19 +7,19 @@ task 1, lines 10-33: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 6019200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6019200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 35: //# run test::m::mint --sender A created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2181200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2181200, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 37: //# run test::m::add --sender A --args object(2,0) 0 created: object(3,0), object(3,1) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 5829200, storage_rebate: 2181200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5829200, storage_rebate: 2181200, non_refundable_storage_fee: 0 task 4, line 39: //# view-object 2,0 @@ -37,4 +37,4 @@ task 5, line 41: //# run test::m::delete --sender A --args object(2,0) mutated: object(0,0) deleted: object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 2181200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 2181200, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/child_count/delete_parent_valid.exp b/crates/iota-adapter-transactional-tests/tests/child_count/delete_parent_valid.exp index e5c36bcf6f0..dd807b38b4c 100644 --- a/crates/iota-adapter-transactional-tests/tests/child_count/delete_parent_valid.exp +++ b/crates/iota-adapter-transactional-tests/tests/child_count/delete_parent_valid.exp @@ -7,19 +7,19 @@ task 1, lines 10-58: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 7980000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7980000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 59: //# run test::m::mint --sender A created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2181200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2181200, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 61: //# run test::m::add --sender A --args object(2,0) 0 created: object(3,0), object(3,1) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 5829200, storage_rebate: 2181200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5829200, storage_rebate: 2181200, non_refundable_storage_fee: 0 task 4, line 63: //# view-object 2,0 @@ -37,10 +37,10 @@ task 5, line 65: //# run test::m::remove --sender A --args object(2,0) 0 mutated: object(0,0), object(2,0) deleted: object(3,0), object(3,1) -gas summary: computation_cost: 1000000, storage_cost: 2181200, storage_rebate: 5829200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2181200, storage_rebate: 5829200, non_refundable_storage_fee: 0 task 6, line 67: //# run test::m::delete --sender A --args object(2,0) mutated: object(0,0) deleted: object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 2181200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 2181200, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/child_count/delete_parent_valid_one_txn.exp b/crates/iota-adapter-transactional-tests/tests/child_count/delete_parent_valid_one_txn.exp index a28fe362ace..b162b77a205 100644 --- a/crates/iota-adapter-transactional-tests/tests/child_count/delete_parent_valid_one_txn.exp +++ b/crates/iota-adapter-transactional-tests/tests/child_count/delete_parent_valid_one_txn.exp @@ -7,19 +7,19 @@ task 1, lines 11-70: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 8375200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 8375200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 72: //# run test::m::mint --sender A created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2181200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2181200, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 74: //# run test::m::add --sender A --args object(2,0) 0 created: object(3,0), object(3,1) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 5829200, storage_rebate: 2181200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5829200, storage_rebate: 2181200, non_refundable_storage_fee: 0 task 4, line 76: //# view-object 2,0 @@ -37,4 +37,4 @@ task 5, line 78: //# run test::m::remove_and_delete --sender A --args object(2,0) 0 mutated: object(0,0) deleted: object(2,0), object(3,0), object(3,1) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 5829200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 5829200, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/child_count/freeze_parent_invalid.exp b/crates/iota-adapter-transactional-tests/tests/child_count/freeze_parent_invalid.exp index dff97ce838f..c564c80773b 100644 --- a/crates/iota-adapter-transactional-tests/tests/child_count/freeze_parent_invalid.exp +++ b/crates/iota-adapter-transactional-tests/tests/child_count/freeze_parent_invalid.exp @@ -7,19 +7,19 @@ task 1, lines 10-62: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 8451200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 8451200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 64: //# run test::m::mint --sender A created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2181200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2181200, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 66: //# run test::m::add --sender A --args object(2,0) 0 created: object(3,0), object(3,1) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 5829200, storage_rebate: 2181200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5829200, storage_rebate: 2181200, non_refundable_storage_fee: 0 task 4, line 68: //# view-object 2,0 @@ -36,4 +36,4 @@ Contents: test::m::S { task 5, line 70: //# run test::m::freeze_object --sender A --args object(2,0) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2181200, storage_rebate: 2181200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2181200, storage_rebate: 2181200, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/child_count/freeze_parent_valid.exp b/crates/iota-adapter-transactional-tests/tests/child_count/freeze_parent_valid.exp index 2915fa7bb32..62691cd8dd5 100644 --- a/crates/iota-adapter-transactional-tests/tests/child_count/freeze_parent_valid.exp +++ b/crates/iota-adapter-transactional-tests/tests/child_count/freeze_parent_valid.exp @@ -7,19 +7,19 @@ task 1, lines 10-62: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 8451200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 8451200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 64: //# run test::m::mint --sender A created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2181200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2181200, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 66: //# run test::m::add --sender A --args object(2,0) 0 created: object(3,0), object(3,1) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 5829200, storage_rebate: 2181200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5829200, storage_rebate: 2181200, non_refundable_storage_fee: 0 task 4, line 68: //# view-object 2,0 @@ -37,9 +37,9 @@ task 5, line 70: //# run test::m::remove --sender A --args object(2,0) 0 mutated: object(0,0), object(2,0) deleted: object(3,0), object(3,1) -gas summary: computation_cost: 1000000, storage_cost: 2181200, storage_rebate: 5829200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2181200, storage_rebate: 5829200, non_refundable_storage_fee: 0 task 6, line 72: //# run test::m::freeze_object --sender A --args object(2,0) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2181200, storage_rebate: 2181200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2181200, storage_rebate: 2181200, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/child_count/freeze_parent_valid_one_txn.exp b/crates/iota-adapter-transactional-tests/tests/child_count/freeze_parent_valid_one_txn.exp index 8b5137756eb..896e596fb53 100644 --- a/crates/iota-adapter-transactional-tests/tests/child_count/freeze_parent_valid_one_txn.exp +++ b/crates/iota-adapter-transactional-tests/tests/child_count/freeze_parent_valid_one_txn.exp @@ -7,19 +7,19 @@ task 1, lines 11-65: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 8603200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 8603200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 67: //# run test::m::mint --sender A created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2181200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2181200, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 69: //# run test::m::add --sender A --args object(2,0) 0 created: object(3,0), object(3,1) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 5829200, storage_rebate: 2181200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5829200, storage_rebate: 2181200, non_refundable_storage_fee: 0 task 4, line 71: //# view-object 2,0 @@ -37,4 +37,4 @@ task 5, line 73: //# run test::m::remove_and_freeze --sender A --args object(2,0) 0 mutated: object(0,0), object(2,0) deleted: object(3,0), object(3,1) -gas summary: computation_cost: 1000000, storage_cost: 2181200, storage_rebate: 5829200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2181200, storage_rebate: 5829200, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/child_count/non_zero_child_count_valid.exp b/crates/iota-adapter-transactional-tests/tests/child_count/non_zero_child_count_valid.exp index 990315f15a3..43b02efd2f8 100644 --- a/crates/iota-adapter-transactional-tests/tests/child_count/non_zero_child_count_valid.exp +++ b/crates/iota-adapter-transactional-tests/tests/child_count/non_zero_child_count_valid.exp @@ -7,13 +7,13 @@ task 1, lines 10-46: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 6969200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6969200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 48: //# run test::m::mint_and_share --sender A created: object(2,0), object(2,1), object(2,2) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5829200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5829200, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, lines 50-54: //# view-object 2,2 @@ -31,12 +31,12 @@ task 4, line 56: //# run test::m::mint --sender A created: object(4,0), object(4,1), object(4,2) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5829200, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5829200, storage_rebate: 980400, non_refundable_storage_fee: 0 task 5, line 58: //# run test::m::transfer --sender A --args object(4,1) @B mutated: object(0,0), object(4,1) -gas summary: computation_cost: 1000000, storage_cost: 2181200, storage_rebate: 2181200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2181200, storage_rebate: 2181200, non_refundable_storage_fee: 0 task 6, lines 60-64: //# view-object 4,1 @@ -54,12 +54,12 @@ task 7, line 66: //# run test::m::mint --sender A created: object(7,0), object(7,1), object(7,2) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5829200, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5829200, storage_rebate: 980400, non_refundable_storage_fee: 0 task 8, line 68: //# transfer-object 7,1 --sender A --recipient B mutated: object(0,0), object(7,1) -gas summary: computation_cost: 1000000, storage_cost: 2181200, storage_rebate: 2181200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2181200, storage_rebate: 2181200, non_refundable_storage_fee: 0 task 9, line 70: //# view-object 7,1 diff --git a/crates/iota-adapter-transactional-tests/tests/child_count/non_zero_child_count_valid_one_txn.exp b/crates/iota-adapter-transactional-tests/tests/child_count/non_zero_child_count_valid_one_txn.exp index 4fad26d1143..19d28fdf146 100644 --- a/crates/iota-adapter-transactional-tests/tests/child_count/non_zero_child_count_valid_one_txn.exp +++ b/crates/iota-adapter-transactional-tests/tests/child_count/non_zero_child_count_valid_one_txn.exp @@ -7,13 +7,13 @@ task 1, lines 11-36: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 5943200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5943200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 38: //# run test::m::share --sender A created: object(2,0), object(2,1), object(2,2) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5829200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5829200, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 40: //# view-object 2,1 diff --git a/crates/iota-adapter-transactional-tests/tests/child_count/temp_parent_invalid.exp b/crates/iota-adapter-transactional-tests/tests/child_count/temp_parent_invalid.exp index d53c7657181..8e6165b55a5 100644 --- a/crates/iota-adapter-transactional-tests/tests/child_count/temp_parent_invalid.exp +++ b/crates/iota-adapter-transactional-tests/tests/child_count/temp_parent_invalid.exp @@ -7,10 +7,10 @@ task 1, lines 10-23: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 5259200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5259200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 25: //# run test::m::t --sender A created: object(2,0), object(2,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4628400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4628400, storage_rebate: 0, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/child_count/unwrap_never_stored.exp b/crates/iota-adapter-transactional-tests/tests/child_count/unwrap_never_stored.exp index 157a1c1200c..f6ca381adee 100644 --- a/crates/iota-adapter-transactional-tests/tests/child_count/unwrap_never_stored.exp +++ b/crates/iota-adapter-transactional-tests/tests/child_count/unwrap_never_stored.exp @@ -7,17 +7,17 @@ task 1, lines 10-38: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 5829200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5829200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 40: //# run test::m::create --sender A created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2424400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2424400, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 42: //# run test::m::delete --args object(2,0) --sender A mutated: object(0,0) deleted: object(2,0) unwrapped_then_deleted: object(_) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 2424400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 2424400, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/child_count/unwrap_never_stored_transfer.exp b/crates/iota-adapter-transactional-tests/tests/child_count/unwrap_never_stored_transfer.exp index 6ce77149fc1..fdd42237243 100644 --- a/crates/iota-adapter-transactional-tests/tests/child_count/unwrap_never_stored_transfer.exp +++ b/crates/iota-adapter-transactional-tests/tests/child_count/unwrap_never_stored_transfer.exp @@ -7,17 +7,17 @@ task 1, lines 10-37: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 6064800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6064800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 39: //# run test::m::create --sender A created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2424400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2424400, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 41: //# run test::m::unwrap_and_transfer --args object(2,0) --sender A mutated: object(0,0) unwrapped: object(3,0) deleted: object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2181200, storage_rebate: 2424400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2181200, storage_rebate: 2424400, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/child_count/unwrap_then_delete_invalid.exp b/crates/iota-adapter-transactional-tests/tests/child_count/unwrap_then_delete_invalid.exp index e69a160a304..e194d99a7af 100644 --- a/crates/iota-adapter-transactional-tests/tests/child_count/unwrap_then_delete_invalid.exp +++ b/crates/iota-adapter-transactional-tests/tests/child_count/unwrap_then_delete_invalid.exp @@ -7,23 +7,23 @@ task 1, lines 10-45: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 6680400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6680400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 47: //# run test::m::mint --sender A created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2181200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2181200, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 49: //# run test::m::add --sender A --args object(2,0) 0 created: object(3,0), object(3,1) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 5829200, storage_rebate: 2181200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5829200, storage_rebate: 2181200, non_refundable_storage_fee: 0 task 4, line 51: //# run test::m::wrap --sender A --args object(2,0) created: object(4,0) mutated: object(0,0) wrapped: object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2424400, storage_rebate: 2181200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2424400, storage_rebate: 2181200, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/children/child_of_shared_object.exp b/crates/iota-adapter-transactional-tests/tests/children/child_of_shared_object.exp index e210ea593bb..0d8de638649 100644 --- a/crates/iota-adapter-transactional-tests/tests/children/child_of_shared_object.exp +++ b/crates/iota-adapter-transactional-tests/tests/children/child_of_shared_object.exp @@ -7,31 +7,31 @@ task 1, lines 7-18: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 5175600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5175600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 20-46: //# publish --dependencies t3 created: object(2,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 7660800, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7660800, storage_rebate: 980400, non_refundable_storage_fee: 0 task 3, lines 49-73: //# publish --dependencies t2 t3 created: object(3,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 8208000, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 8208000, storage_rebate: 980400, non_refundable_storage_fee: 0 task 4, line 75: //# run t3::o3::create --sender A created: object(4,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2211600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2211600, storage_rebate: 0, non_refundable_storage_fee: 0 task 5, line 77: //# run t2::o2::create_shared --args object(4,0) --sender A created: object(5,0), object(5,1) mutated: object(0,0), object(4,0) -gas summary: computation_cost: 1000000, storage_cost: 5890000, storage_rebate: 2211600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5890000, storage_rebate: 2211600, non_refundable_storage_fee: 0 task 6, line 79: //# view-object 4,0 diff --git a/crates/iota-adapter-transactional-tests/tests/deny_list_v1/coin_deny_and_undeny_receiver.exp b/crates/iota-adapter-transactional-tests/tests/deny_list_v1/coin_deny_and_undeny_receiver.exp index 4b1f0f7a7a6..0752f3e790a 100644 --- a/crates/iota-adapter-transactional-tests/tests/deny_list_v1/coin_deny_and_undeny_receiver.exp +++ b/crates/iota-adapter-transactional-tests/tests/deny_list_v1/coin_deny_and_undeny_receiver.exp @@ -8,28 +8,28 @@ task 1, lines 13-38: created: object(1,0), object(1,1), object(1,2), object(1,3), object(1,4), object(1,5) mutated: object(0,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 18346400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 18346400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 39-41: //# run iota::pay::split_and_transfer --args object(1,0) 1 @B --type-args test::regulated_coin::REGULATED_COIN --sender A created: object(2,0) mutated: object(0,0), object(1,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 3914000, storage_rebate: 2447200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3914000, storage_rebate: 2447200, non_refundable_storage_fee: 0 task 3, lines 42-44: //# run iota::coin::deny_list_v1_add --args object(0x403) object(1,2) @B --type-args test::regulated_coin::REGULATED_COIN --sender A events: Event { package_id: iota, transaction_module: Identifier("coin"), sender: A, type_: StructTag { address: iota, module: Identifier("deny_list"), name: Identifier("PerTypeConfigCreated"), type_params: [] }, contents: [0, 0, 0, 0, 0, 0, 0, 0, 96, 53, 50, 50, 49, 97, 98, 98, 100, 53, 52, 97, 48, 52, 99, 53, 102, 53, 102, 48, 55, 97, 50, 57, 51, 49, 50, 48, 54, 55, 98, 102, 99, 51, 98, 53, 97, 55, 56, 57, 99, 51, 56, 51, 99, 101, 57, 101, 52, 98, 102, 55, 52, 102, 56, 49, 50, 49, 98, 48, 50, 57, 57, 51, 52, 58, 58, 114, 101, 103, 117, 108, 97, 116, 101, 100, 95, 99, 111, 105, 110, 58, 58, 82, 69, 71, 85, 76, 65, 84, 69, 68, 95, 67, 79, 73, 78, 23, 91, 249, 76, 213, 167, 145, 56, 66, 79, 184, 65, 52, 79, 167, 112, 45, 145, 181, 253, 130, 13, 151, 144, 60, 199, 196, 88, 134, 195, 245, 167] } created: object(3,0), object(3,1), object(3,2) mutated: 0x0000000000000000000000000000000000000000000000000000000000000403, object(0,0), object(1,2) -gas summary: computation_cost: 1000000, storage_cost: 12144800, storage_rebate: 2758800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 12144800, storage_rebate: 2758800, non_refundable_storage_fee: 0 task 4, line 45: //# run iota::pay::split_and_transfer --args object(1,0) 1 @B --type-args test::regulated_coin::REGULATED_COIN --sender A created: object(4,0) mutated: object(0,0), object(1,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 3914000, storage_rebate: 2447200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3914000, storage_rebate: 2447200, non_refundable_storage_fee: 0 task 5, lines 47-49: //# advance-epoch @@ -43,7 +43,7 @@ Execution Error: ExecutionError: ExecutionError { inner: ExecutionErrorInner { k task 7, lines 53-55: //# run iota::coin::deny_list_v1_remove --args object(0x403) object(1,2) @B --type-args test::regulated_coin::REGULATED_COIN --sender A mutated: 0x0000000000000000000000000000000000000000000000000000000000000403, object(0,0), object(1,2), object(3,1) -gas summary: computation_cost: 1000000, storage_cost: 6832400, storage_rebate: 6832400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6832400, storage_rebate: 6832400, non_refundable_storage_fee: 0 task 8, line 56: //# run iota::pay::split_and_transfer --args object(1,0) 1 @B --type-args test::regulated_coin::REGULATED_COIN --sender A @@ -59,4 +59,4 @@ task 10, line 61: created: object(10,0) mutated: object(0,0), object(1,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 3914000, storage_rebate: 2447200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3914000, storage_rebate: 2447200, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/deny_list_v1/coin_deny_and_undeny_sender.exp b/crates/iota-adapter-transactional-tests/tests/deny_list_v1/coin_deny_and_undeny_sender.exp index a77dbfe32c2..d5e6a426771 100644 --- a/crates/iota-adapter-transactional-tests/tests/deny_list_v1/coin_deny_and_undeny_sender.exp +++ b/crates/iota-adapter-transactional-tests/tests/deny_list_v1/coin_deny_and_undeny_sender.exp @@ -8,7 +8,7 @@ task 1, lines 14-49: created: object(1,0), object(1,1), object(1,2), object(1,3), object(1,4), object(1,5) mutated: object(0,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 19425600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 19425600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 50-52: //# view-object 1,2 @@ -28,20 +28,20 @@ task 3, lines 53-55: created: object(3,0) mutated: object(0,0), object(1,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 3914000, storage_rebate: 2447200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3914000, storage_rebate: 2447200, non_refundable_storage_fee: 0 task 4, lines 56-58: //# run iota::coin::deny_list_v1_add --args object(0x403) object(1,2) @B --type-args test::regulated_coin::REGULATED_COIN --sender A events: Event { package_id: iota, transaction_module: Identifier("coin"), sender: A, type_: StructTag { address: iota, module: Identifier("deny_list"), name: Identifier("PerTypeConfigCreated"), type_params: [] }, contents: [0, 0, 0, 0, 0, 0, 0, 0, 96, 49, 99, 57, 56, 57, 49, 57, 50, 99, 98, 55, 56, 53, 49, 102, 50, 54, 49, 99, 97, 51, 53, 55, 99, 99, 100, 55, 49, 48, 102, 51, 101, 57, 55, 50, 57, 54, 99, 101, 55, 51, 102, 53, 102, 48, 55, 48, 99, 100, 54, 97, 48, 52, 57, 102, 49, 49, 50, 52, 102, 101, 54, 49, 99, 58, 58, 114, 101, 103, 117, 108, 97, 116, 101, 100, 95, 99, 111, 105, 110, 58, 58, 82, 69, 71, 85, 76, 65, 84, 69, 68, 95, 67, 79, 73, 78, 227, 5, 87, 243, 17, 67, 48, 78, 223, 164, 121, 136, 98, 174, 80, 210, 249, 81, 188, 233, 5, 28, 211, 145, 148, 4, 203, 247, 202, 138, 227, 32] } created: object(4,0), object(4,1), object(4,2) mutated: 0x0000000000000000000000000000000000000000000000000000000000000403, object(0,0), object(1,2) -gas summary: computation_cost: 1000000, storage_cost: 12144800, storage_rebate: 2758800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 12144800, storage_rebate: 2758800, non_refundable_storage_fee: 0 task 5, lines 59-61: //# run test::regulated_coin::assert_address_deny_status --args immshared(0x403) @B true --sender A mutated: object(0,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 6, lines 62-64: //# transfer-object 3,0 --sender B --recipient A @@ -55,16 +55,16 @@ task 8, lines 68-70: //# run iota::coin::deny_list_v1_remove --args object(0x403) object(1,2) @B --type-args test::regulated_coin::REGULATED_COIN --sender A mutated: 0x0000000000000000000000000000000000000000000000000000000000000403, object(0,0), object(1,2) deleted: object(4,1) -gas summary: computation_cost: 1000000, storage_cost: 4377600, storage_rebate: 6832400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4377600, storage_rebate: 6832400, non_refundable_storage_fee: 0 task 9, lines 71-73: //# run test::regulated_coin::assert_address_deny_status --args immshared(0x403) @B false --sender A mutated: object(0,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 10, line 74: //# transfer-object 3,0 --sender B --recipient A mutated: object(0,1), object(3,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 2447200, storage_rebate: 1466800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2447200, storage_rebate: 1466800, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/deny_list_v1/coin_deny_multiple_coin_types.exp b/crates/iota-adapter-transactional-tests/tests/deny_list_v1/coin_deny_multiple_coin_types.exp index db334efad01..ad6d6463804 100644 --- a/crates/iota-adapter-transactional-tests/tests/deny_list_v1/coin_deny_multiple_coin_types.exp +++ b/crates/iota-adapter-transactional-tests/tests/deny_list_v1/coin_deny_multiple_coin_types.exp @@ -8,7 +8,7 @@ task 1, lines 12-61: created: object(1,0), object(1,1), object(1,2), object(1,3), object(1,4), object(1,5), object(1,6), object(1,7), object(1,8), object(1,9), object(1,10) mutated: object(0,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 34177200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 34177200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 62-64: //# view-object 1,0 @@ -45,7 +45,7 @@ task 4, line 68: events: Event { package_id: iota, transaction_module: Identifier("coin"), sender: A, type_: StructTag { address: iota, module: Identifier("deny_list"), name: Identifier("PerTypeConfigCreated"), type_params: [] }, contents: [0, 0, 0, 0, 0, 0, 0, 0, 98, 52, 98, 102, 54, 53, 50, 102, 50, 57, 101, 97, 99, 101, 100, 101, 55, 51, 102, 49, 49, 54, 50, 55, 101, 51, 53, 49, 51, 48, 53, 51, 57, 54, 102, 56, 100, 100, 48, 100, 52, 98, 48, 51, 98, 56, 49, 100, 99, 57, 57, 54, 52, 54, 51, 50, 101, 99, 50, 56, 56, 51, 48, 57, 54, 58, 58, 114, 101, 103, 117, 108, 97, 116, 101, 100, 95, 99, 111, 105, 110, 50, 58, 58, 82, 69, 71, 85, 76, 65, 84, 69, 68, 95, 67, 79, 73, 78, 50, 227, 141, 101, 138, 169, 244, 7, 146, 12, 116, 123, 110, 203, 78, 202, 249, 84, 223, 143, 1, 197, 97, 211, 82, 105, 65, 237, 171, 221, 101, 250, 91] } created: object(4,0), object(4,1), object(4,2) mutated: 0x0000000000000000000000000000000000000000000000000000000000000403, object(0,0), object(1,5) -gas summary: computation_cost: 1000000, storage_cost: 12175200, storage_rebate: 2774000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 12175200, storage_rebate: 2774000, non_refundable_storage_fee: 0 task 5, lines 70-71: //# programmable --sender A --inputs object(1,0) object(1,1) @A diff --git a/crates/iota-adapter-transactional-tests/tests/deny_list_v1/coin_global_pause.exp b/crates/iota-adapter-transactional-tests/tests/deny_list_v1/coin_global_pause.exp index 8feb6a37614..6a8c428e7e0 100644 --- a/crates/iota-adapter-transactional-tests/tests/deny_list_v1/coin_global_pause.exp +++ b/crates/iota-adapter-transactional-tests/tests/deny_list_v1/coin_global_pause.exp @@ -8,41 +8,41 @@ task 1, lines 11-73: created: object(1,0), object(1,1), object(1,2), object(1,3), object(1,4), object(1,5) mutated: object(0,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 21918400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 21918400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 74-76: //# run iota::pay::split_and_transfer --args object(1,0) 1 @B --type-args test::regulated_coin::REGULATED_COIN --sender A created: object(2,0) mutated: object(0,0), object(1,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 3914000, storage_rebate: 2447200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3914000, storage_rebate: 2447200, non_refundable_storage_fee: 0 task 3, lines 77-79: //# run test::regulated_coin::partial_wrap --args object(1,0) --sender A created: object(3,0) mutated: object(0,0), object(1,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 4096400, storage_rebate: 2447200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4096400, storage_rebate: 2447200, non_refundable_storage_fee: 0 task 4, lines 80-82: //# run test::regulated_coin::partial_wrap --args object(1,0) --sender A created: object(4,0) mutated: object(0,0), object(1,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 4096400, storage_rebate: 2447200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4096400, storage_rebate: 2447200, non_refundable_storage_fee: 0 task 5, lines 83-85: //# run iota::coin::deny_list_v1_enable_global_pause --args object(0x403) object(1,2) --type-args test::regulated_coin::REGULATED_COIN --sender A events: Event { package_id: iota, transaction_module: Identifier("coin"), sender: A, type_: StructTag { address: iota, module: Identifier("deny_list"), name: Identifier("PerTypeConfigCreated"), type_params: [] }, contents: [0, 0, 0, 0, 0, 0, 0, 0, 96, 100, 98, 98, 50, 48, 57, 57, 99, 55, 50, 51, 101, 101, 101, 54, 98, 50, 97, 52, 50, 50, 98, 97, 101, 98, 52, 101, 55, 100, 101, 51, 56, 102, 52, 100, 102, 97, 54, 97, 56, 55, 48, 57, 48, 50, 54, 48, 52, 51, 56, 102, 51, 48, 55, 54, 97, 52, 53, 97, 49, 49, 51, 54, 50, 58, 58, 114, 101, 103, 117, 108, 97, 116, 101, 100, 95, 99, 111, 105, 110, 58, 58, 82, 69, 71, 85, 76, 65, 84, 69, 68, 95, 67, 79, 73, 78, 250, 83, 162, 60, 201, 48, 73, 29, 0, 92, 232, 80, 164, 14, 89, 222, 167, 164, 224, 108, 130, 242, 158, 3, 51, 172, 111, 45, 104, 124, 143, 233] } created: object(5,0), object(5,1), object(5,2) mutated: 0x0000000000000000000000000000000000000000000000000000000000000403, object(0,0), object(1,2) -gas summary: computation_cost: 1000000, storage_cost: 11939600, storage_rebate: 2758800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 11939600, storage_rebate: 2758800, non_refundable_storage_fee: 0 task 6, lines 86-88: //# run test::regulated_coin::assert_global_pause_status --args immshared(0x403) true --sender A mutated: object(0,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 7, lines 89-91: //# run iota::pay::split_and_transfer --args object(1,0) 1 @B --type-args test::regulated_coin::REGULATED_COIN --sender A @@ -62,7 +62,7 @@ mutated: object(0,0) unwrapped: object(10,0) deleted: object(3,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 2447200, storage_rebate: 2629600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2447200, storage_rebate: 2629600, non_refundable_storage_fee: 0 task 11, lines 101-104: //# advance-epoch @@ -81,18 +81,18 @@ task 14, lines 111-113: //# run test::regulated_coin::assert_global_pause_status --args immshared(0x403) true --sender A mutated: object(0,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 15, lines 114-116: //# run iota::coin::deny_list_v1_disable_global_pause --args object(0x403) object(1,2) --type-args test::regulated_coin::REGULATED_COIN --sender A mutated: 0x0000000000000000000000000000000000000000000000000000000000000403, object(0,0), object(1,2), object(5,1) -gas summary: computation_cost: 1000000, storage_cost: 6627200, storage_rebate: 6627200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6627200, storage_rebate: 6627200, non_refundable_storage_fee: 0 task 16, lines 117-119: //# run test::regulated_coin::assert_global_pause_status --args immshared(0x403) false --sender A mutated: object(0,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 17, lines 120-122: //# run iota::pay::split_and_transfer --args object(1,0) 1 @B --type-args test::regulated_coin::REGULATED_COIN --sender A @@ -104,7 +104,7 @@ task 18, lines 123-126: created: object(18,0) mutated: object(0,0) wrapped: object(1,0) -gas summary: computation_cost: 1000000, storage_cost: 2629600, storage_rebate: 2447200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2629600, storage_rebate: 2447200, non_refundable_storage_fee: 0 task 19, line 127: //# run test::regulated_coin::unwrap --args object(18,0) --sender A @@ -121,4 +121,4 @@ mutated: object(0,0) unwrapped: object(1,0) deleted: object(18,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 2447200, storage_rebate: 2629600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2447200, storage_rebate: 2629600, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/deny_list_v1/delete_setting_object_same_epoch.exp b/crates/iota-adapter-transactional-tests/tests/deny_list_v1/delete_setting_object_same_epoch.exp index f5f6274447e..79e8d8f69d8 100644 --- a/crates/iota-adapter-transactional-tests/tests/deny_list_v1/delete_setting_object_same_epoch.exp +++ b/crates/iota-adapter-transactional-tests/tests/deny_list_v1/delete_setting_object_same_epoch.exp @@ -8,20 +8,20 @@ task 1, lines 10-54: created: object(1,0), object(1,1), object(1,2), object(1,3), object(1,4), object(1,5) mutated: object(0,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 20383200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 20383200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 55-57: //# run iota::coin::deny_list_v1_add --args object(0x403) object(1,2) @B --type-args test::regulated_coin::REGULATED_COIN --sender A events: Event { package_id: iota, transaction_module: Identifier("coin"), sender: A, type_: StructTag { address: iota, module: Identifier("deny_list"), name: Identifier("PerTypeConfigCreated"), type_params: [] }, contents: [0, 0, 0, 0, 0, 0, 0, 0, 96, 55, 52, 52, 102, 98, 48, 99, 57, 97, 49, 99, 54, 48, 56, 53, 53, 55, 51, 57, 102, 97, 53, 98, 98, 100, 101, 48, 101, 56, 98, 53, 100, 51, 52, 102, 55, 57, 53, 101, 54, 53, 54, 48, 53, 48, 50, 97, 98, 100, 52, 98, 97, 99, 53, 55, 52, 48, 56, 54, 53, 49, 98, 55, 50, 58, 58, 114, 101, 103, 117, 108, 97, 116, 101, 100, 95, 99, 111, 105, 110, 58, 58, 82, 69, 71, 85, 76, 65, 84, 69, 68, 95, 67, 79, 73, 78, 28, 36, 198, 89, 67, 105, 91, 135, 11, 174, 69, 30, 242, 96, 46, 239, 110, 118, 143, 61, 86, 105, 235, 26, 171, 124, 69, 187, 171, 122, 32, 57] } created: object(2,0), object(2,1), object(2,2) mutated: 0x0000000000000000000000000000000000000000000000000000000000000403, object(0,0), object(1,2) -gas summary: computation_cost: 1000000, storage_cost: 12144800, storage_rebate: 2758800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 12144800, storage_rebate: 2758800, non_refundable_storage_fee: 0 task 3, lines 58-60: //# run iota::coin::deny_list_v1_enable_global_pause --args object(0x403) object(1,2) --type-args test::regulated_coin::REGULATED_COIN --sender A created: object(3,0) mutated: 0x0000000000000000000000000000000000000000000000000000000000000403, object(0,0), object(1,2) -gas summary: computation_cost: 1000000, storage_cost: 6627200, storage_rebate: 4377600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6627200, storage_rebate: 4377600, non_refundable_storage_fee: 0 task 4, line 61: //# view-object 2,1 @@ -91,13 +91,13 @@ task 6, lines 66-68: //# run iota::coin::deny_list_v1_remove --args object(0x403) object(1,2) @B --type-args test::regulated_coin::REGULATED_COIN --sender A mutated: 0x0000000000000000000000000000000000000000000000000000000000000403, object(0,0), object(1,2) deleted: object(2,1) -gas summary: computation_cost: 1000000, storage_cost: 4377600, storage_rebate: 6832400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4377600, storage_rebate: 6832400, non_refundable_storage_fee: 0 task 7, lines 69-71: //# run iota::coin::deny_list_v1_disable_global_pause --args object(0x403) object(1,2) --type-args test::regulated_coin::REGULATED_COIN --sender A mutated: 0x0000000000000000000000000000000000000000000000000000000000000403, object(0,0), object(1,2) deleted: object(3,0) -gas summary: computation_cost: 1000000, storage_cost: 4377600, storage_rebate: 6627200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4377600, storage_rebate: 6627200, non_refundable_storage_fee: 0 task 8, line 72: //# view-object 2,1 @@ -111,10 +111,10 @@ task 10, lines 77-79: //# run test::regulated_coin::assert_address_deny_status --args immshared(0x403) @B false --sender A mutated: object(0,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 11, line 80: //# run test::regulated_coin::assert_global_pause_status --args immshared(0x403) false --sender A mutated: object(0,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/deny_list_v1/delete_setting_object_set_once.exp b/crates/iota-adapter-transactional-tests/tests/deny_list_v1/delete_setting_object_set_once.exp index 51c5afb1e6b..69fdec7a4ad 100644 --- a/crates/iota-adapter-transactional-tests/tests/deny_list_v1/delete_setting_object_set_once.exp +++ b/crates/iota-adapter-transactional-tests/tests/deny_list_v1/delete_setting_object_set_once.exp @@ -8,20 +8,20 @@ task 1, lines 10-54: created: object(1,0), object(1,1), object(1,2), object(1,3), object(1,4), object(1,5) mutated: object(0,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 20383200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 20383200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 55-57: //# run iota::coin::deny_list_v1_add --args object(0x403) object(1,2) @B --type-args test::regulated_coin::REGULATED_COIN --sender A events: Event { package_id: iota, transaction_module: Identifier("coin"), sender: A, type_: StructTag { address: iota, module: Identifier("deny_list"), name: Identifier("PerTypeConfigCreated"), type_params: [] }, contents: [0, 0, 0, 0, 0, 0, 0, 0, 96, 55, 52, 52, 102, 98, 48, 99, 57, 97, 49, 99, 54, 48, 56, 53, 53, 55, 51, 57, 102, 97, 53, 98, 98, 100, 101, 48, 101, 56, 98, 53, 100, 51, 52, 102, 55, 57, 53, 101, 54, 53, 54, 48, 53, 48, 50, 97, 98, 100, 52, 98, 97, 99, 53, 55, 52, 48, 56, 54, 53, 49, 98, 55, 50, 58, 58, 114, 101, 103, 117, 108, 97, 116, 101, 100, 95, 99, 111, 105, 110, 58, 58, 82, 69, 71, 85, 76, 65, 84, 69, 68, 95, 67, 79, 73, 78, 28, 36, 198, 89, 67, 105, 91, 135, 11, 174, 69, 30, 242, 96, 46, 239, 110, 118, 143, 61, 86, 105, 235, 26, 171, 124, 69, 187, 171, 122, 32, 57] } created: object(2,0), object(2,1), object(2,2) mutated: 0x0000000000000000000000000000000000000000000000000000000000000403, object(0,0), object(1,2) -gas summary: computation_cost: 1000000, storage_cost: 12144800, storage_rebate: 2758800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 12144800, storage_rebate: 2758800, non_refundable_storage_fee: 0 task 3, lines 58-60: //# run iota::coin::deny_list_v1_enable_global_pause --args object(0x403) object(1,2) --type-args test::regulated_coin::REGULATED_COIN --sender A created: object(3,0) mutated: 0x0000000000000000000000000000000000000000000000000000000000000403, object(0,0), object(1,2) -gas summary: computation_cost: 1000000, storage_cost: 6627200, storage_rebate: 4377600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6627200, storage_rebate: 4377600, non_refundable_storage_fee: 0 task 4, line 61: //# view-object 2,1 @@ -94,12 +94,12 @@ Epoch advanced: 1 task 7, lines 68-70: //# run iota::coin::deny_list_v1_remove --args object(0x403) object(1,2) @B --type-args test::regulated_coin::REGULATED_COIN --sender A mutated: 0x0000000000000000000000000000000000000000000000000000000000000403, object(0,0), object(1,2), object(2,1) -gas summary: computation_cost: 1000000, storage_cost: 6832400, storage_rebate: 6832400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6832400, storage_rebate: 6832400, non_refundable_storage_fee: 0 task 8, lines 71-73: //# run iota::coin::deny_list_v1_disable_global_pause --args object(0x403) object(1,2) --type-args test::regulated_coin::REGULATED_COIN --sender A mutated: 0x0000000000000000000000000000000000000000000000000000000000000403, object(0,0), object(1,2), object(3,0) -gas summary: computation_cost: 1000000, storage_cost: 6627200, storage_rebate: 6627200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6627200, storage_rebate: 6627200, non_refundable_storage_fee: 0 task 9, line 74: //# view-object 2,1 @@ -173,13 +173,13 @@ task 12, lines 81-83: //# run iota::coin::deny_list_v1_remove --args object(0x403) object(1,2) @B --type-args test::regulated_coin::REGULATED_COIN --sender A mutated: 0x0000000000000000000000000000000000000000000000000000000000000403, object(0,0), object(1,2) deleted: object(2,1) -gas summary: computation_cost: 1000000, storage_cost: 4377600, storage_rebate: 6832400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4377600, storage_rebate: 6832400, non_refundable_storage_fee: 0 task 13, lines 84-86: //# run iota::coin::deny_list_v1_disable_global_pause --args object(0x403) object(1,2) --type-args test::regulated_coin::REGULATED_COIN --sender A mutated: 0x0000000000000000000000000000000000000000000000000000000000000403, object(0,0), object(1,2) deleted: object(3,0) -gas summary: computation_cost: 1000000, storage_cost: 4377600, storage_rebate: 6627200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4377600, storage_rebate: 6627200, non_refundable_storage_fee: 0 task 14, line 87: //# view-object 2,1 @@ -193,10 +193,10 @@ task 16, lines 92-94: //# run test::regulated_coin::assert_address_deny_status --args immshared(0x403) @B false --sender A mutated: object(0,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 17, line 95: //# run test::regulated_coin::assert_global_pause_status --args immshared(0x403) false --sender A mutated: object(0,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/deny_list_v1/delete_setting_object_set_twice.exp b/crates/iota-adapter-transactional-tests/tests/deny_list_v1/delete_setting_object_set_twice.exp index 15d21d342c6..42b31c3b7bb 100644 --- a/crates/iota-adapter-transactional-tests/tests/deny_list_v1/delete_setting_object_set_twice.exp +++ b/crates/iota-adapter-transactional-tests/tests/deny_list_v1/delete_setting_object_set_twice.exp @@ -8,20 +8,20 @@ task 1, lines 10-54: created: object(1,0), object(1,1), object(1,2), object(1,3), object(1,4), object(1,5) mutated: object(0,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 20383200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 20383200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 55-57: //# run iota::coin::deny_list_v1_add --args object(0x403) object(1,2) @B --type-args test::regulated_coin::REGULATED_COIN --sender A events: Event { package_id: iota, transaction_module: Identifier("coin"), sender: A, type_: StructTag { address: iota, module: Identifier("deny_list"), name: Identifier("PerTypeConfigCreated"), type_params: [] }, contents: [0, 0, 0, 0, 0, 0, 0, 0, 96, 55, 52, 52, 102, 98, 48, 99, 57, 97, 49, 99, 54, 48, 56, 53, 53, 55, 51, 57, 102, 97, 53, 98, 98, 100, 101, 48, 101, 56, 98, 53, 100, 51, 52, 102, 55, 57, 53, 101, 54, 53, 54, 48, 53, 48, 50, 97, 98, 100, 52, 98, 97, 99, 53, 55, 52, 48, 56, 54, 53, 49, 98, 55, 50, 58, 58, 114, 101, 103, 117, 108, 97, 116, 101, 100, 95, 99, 111, 105, 110, 58, 58, 82, 69, 71, 85, 76, 65, 84, 69, 68, 95, 67, 79, 73, 78, 28, 36, 198, 89, 67, 105, 91, 135, 11, 174, 69, 30, 242, 96, 46, 239, 110, 118, 143, 61, 86, 105, 235, 26, 171, 124, 69, 187, 171, 122, 32, 57] } created: object(2,0), object(2,1), object(2,2) mutated: 0x0000000000000000000000000000000000000000000000000000000000000403, object(0,0), object(1,2) -gas summary: computation_cost: 1000000, storage_cost: 12144800, storage_rebate: 2758800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 12144800, storage_rebate: 2758800, non_refundable_storage_fee: 0 task 3, lines 58-60: //# run iota::coin::deny_list_v1_enable_global_pause --args object(0x403) object(1,2) --type-args test::regulated_coin::REGULATED_COIN --sender A created: object(3,0) mutated: 0x0000000000000000000000000000000000000000000000000000000000000403, object(0,0), object(1,2) -gas summary: computation_cost: 1000000, storage_cost: 6627200, storage_rebate: 4377600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6627200, storage_rebate: 4377600, non_refundable_storage_fee: 0 task 4, line 61: //# view-object 2,1 @@ -94,12 +94,12 @@ Epoch advanced: 1 task 7, lines 68-70: //# run iota::coin::deny_list_v1_add --args object(0x403) object(1,2) @B --type-args test::regulated_coin::REGULATED_COIN --sender A mutated: 0x0000000000000000000000000000000000000000000000000000000000000403, object(0,0), object(1,2), object(2,1) -gas summary: computation_cost: 1000000, storage_cost: 6840000, storage_rebate: 6832400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6840000, storage_rebate: 6832400, non_refundable_storage_fee: 0 task 8, lines 71-73: //# run iota::coin::deny_list_v1_enable_global_pause --args object(0x403) object(1,2) --type-args test::regulated_coin::REGULATED_COIN --sender A mutated: 0x0000000000000000000000000000000000000000000000000000000000000403, object(0,0), object(1,2), object(3,0) -gas summary: computation_cost: 1000000, storage_cost: 6634800, storage_rebate: 6627200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6634800, storage_rebate: 6627200, non_refundable_storage_fee: 0 task 9, line 74: //# view-object 2,1 @@ -176,12 +176,12 @@ Epoch advanced: 2 task 12, lines 81-83: //# run iota::coin::deny_list_v1_remove --args object(0x403) object(1,2) @B --type-args test::regulated_coin::REGULATED_COIN --sender A mutated: 0x0000000000000000000000000000000000000000000000000000000000000403, object(0,0), object(1,2), object(2,1) -gas summary: computation_cost: 1000000, storage_cost: 6832400, storage_rebate: 6840000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6832400, storage_rebate: 6840000, non_refundable_storage_fee: 0 task 13, lines 84-86: //# run iota::coin::deny_list_v1_disable_global_pause --args object(0x403) object(1,2) --type-args test::regulated_coin::REGULATED_COIN --sender A mutated: 0x0000000000000000000000000000000000000000000000000000000000000403, object(0,0), object(1,2), object(3,0) -gas summary: computation_cost: 1000000, storage_cost: 6627200, storage_rebate: 6634800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6627200, storage_rebate: 6634800, non_refundable_storage_fee: 0 task 14, line 87: //# view-object 2,1 @@ -255,13 +255,13 @@ task 17, lines 94-96: //# run iota::coin::deny_list_v1_remove --args object(0x403) object(1,2) @B --type-args test::regulated_coin::REGULATED_COIN --sender A mutated: 0x0000000000000000000000000000000000000000000000000000000000000403, object(0,0), object(1,2) deleted: object(2,1) -gas summary: computation_cost: 1000000, storage_cost: 4377600, storage_rebate: 6832400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4377600, storage_rebate: 6832400, non_refundable_storage_fee: 0 task 18, lines 97-99: //# run iota::coin::deny_list_v1_disable_global_pause --args object(0x403) object(1,2) --type-args test::regulated_coin::REGULATED_COIN --sender A mutated: 0x0000000000000000000000000000000000000000000000000000000000000403, object(0,0), object(1,2) deleted: object(3,0) -gas summary: computation_cost: 1000000, storage_cost: 4377600, storage_rebate: 6627200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4377600, storage_rebate: 6627200, non_refundable_storage_fee: 0 task 19, line 100: //# view-object 2,1 @@ -275,10 +275,10 @@ task 21, lines 105-107: //# run test::regulated_coin::assert_address_deny_status --args immshared(0x403) @B false --sender A mutated: object(0,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 22, line 108: //# run test::regulated_coin::assert_global_pause_status --args immshared(0x403) false --sender A mutated: object(0,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/deny_list_v1/double_add.exp b/crates/iota-adapter-transactional-tests/tests/deny_list_v1/double_add.exp index 7b518cc693e..6dddbfa1041 100644 --- a/crates/iota-adapter-transactional-tests/tests/deny_list_v1/double_add.exp +++ b/crates/iota-adapter-transactional-tests/tests/deny_list_v1/double_add.exp @@ -8,32 +8,32 @@ task 1, lines 10-45: created: object(1,0), object(1,1), object(1,2), object(1,3), object(1,4), object(1,5) mutated: object(0,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 19425600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 19425600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 46-48: //# run iota::pay::split_and_transfer --args object(1,0) 1 @B --type-args test::regulated_coin::REGULATED_COIN --sender A created: object(2,0) mutated: object(0,0), object(1,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 3914000, storage_rebate: 2447200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3914000, storage_rebate: 2447200, non_refundable_storage_fee: 0 task 3, lines 49-51: //# run iota::coin::deny_list_v1_add --args object(0x403) object(1,2) @B --type-args test::regulated_coin::REGULATED_COIN --sender A events: Event { package_id: iota, transaction_module: Identifier("coin"), sender: A, type_: StructTag { address: iota, module: Identifier("deny_list"), name: Identifier("PerTypeConfigCreated"), type_params: [] }, contents: [0, 0, 0, 0, 0, 0, 0, 0, 96, 49, 99, 57, 56, 57, 49, 57, 50, 99, 98, 55, 56, 53, 49, 102, 50, 54, 49, 99, 97, 51, 53, 55, 99, 99, 100, 55, 49, 48, 102, 51, 101, 57, 55, 50, 57, 54, 99, 101, 55, 51, 102, 53, 102, 48, 55, 48, 99, 100, 54, 97, 48, 52, 57, 102, 49, 49, 50, 52, 102, 101, 54, 49, 99, 58, 58, 114, 101, 103, 117, 108, 97, 116, 101, 100, 95, 99, 111, 105, 110, 58, 58, 82, 69, 71, 85, 76, 65, 84, 69, 68, 95, 67, 79, 73, 78, 227, 5, 87, 243, 17, 67, 48, 78, 223, 164, 121, 136, 98, 174, 80, 210, 249, 81, 188, 233, 5, 28, 211, 145, 148, 4, 203, 247, 202, 138, 227, 32] } created: object(3,0), object(3,1), object(3,2) mutated: 0x0000000000000000000000000000000000000000000000000000000000000403, object(0,0), object(1,2) -gas summary: computation_cost: 1000000, storage_cost: 12144800, storage_rebate: 2758800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 12144800, storage_rebate: 2758800, non_refundable_storage_fee: 0 task 4, lines 52-54: //# run iota::coin::deny_list_v1_add --args object(0x403) object(1,2) @B --type-args test::regulated_coin::REGULATED_COIN --sender A mutated: 0x0000000000000000000000000000000000000000000000000000000000000403, object(0,0), object(1,2), object(3,1) -gas summary: computation_cost: 1000000, storage_cost: 6832400, storage_rebate: 6832400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6832400, storage_rebate: 6832400, non_refundable_storage_fee: 0 task 5, lines 55-57: //# run test::regulated_coin::assert_address_deny_status --args immshared(0x403) @B true --sender A mutated: object(0,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 6, lines 58-60: //# transfer-object 2,0 --sender B --recipient A @@ -47,16 +47,16 @@ task 8, lines 64-66: //# run iota::coin::deny_list_v1_remove --args object(0x403) object(1,2) @B --type-args test::regulated_coin::REGULATED_COIN --sender A mutated: 0x0000000000000000000000000000000000000000000000000000000000000403, object(0,0), object(1,2) deleted: object(3,1) -gas summary: computation_cost: 1000000, storage_cost: 4377600, storage_rebate: 6832400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4377600, storage_rebate: 6832400, non_refundable_storage_fee: 0 task 9, lines 67-69: //# run test::regulated_coin::assert_address_deny_status --args immshared(0x403) @B false --sender A mutated: object(0,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 10, line 70: //# transfer-object 2,0 --sender B --recipient A mutated: object(0,1), object(2,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 2447200, storage_rebate: 1466800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2447200, storage_rebate: 1466800, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/deny_list_v1/send_many_coins_unregulated.exp b/crates/iota-adapter-transactional-tests/tests/deny_list_v1/send_many_coins_unregulated.exp index bf841ce720c..4afff5f80f0 100644 --- a/crates/iota-adapter-transactional-tests/tests/deny_list_v1/send_many_coins_unregulated.exp +++ b/crates/iota-adapter-transactional-tests/tests/deny_list_v1/send_many_coins_unregulated.exp @@ -8,7 +8,7 @@ task 1, lines 7-53: created: object(1,0), object(1,1), object(1,2), object(1,3) mutated: object(0,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 15017600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 15017600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 55: //# view-object 1,1 @@ -30,18 +30,18 @@ task 3, line 57: created: object(3,0) mutated: object(0,0), object(1,1) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 3610000, storage_rebate: 2295200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3610000, storage_rebate: 2295200, non_refundable_storage_fee: 0 task 4, line 59: //# run test::coin::send_10 --args object(1,1) --sender A created: object(4,0), object(4,1), object(4,2), object(4,3), object(4,4), object(4,5), object(4,6), object(4,7), object(4,8), object(4,9) mutated: object(0,0), object(1,1) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 2000000, storage_cost: 15443200, storage_rebate: 2295200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 2000000, computation_cost_burned: 2000000, storage_cost: 15443200, storage_rebate: 2295200, non_refundable_storage_fee: 0 task 5, line 61: //# run test::coin::send_100 --args object(1,1) --sender A created: object(5,0), object(5,1), object(5,2), object(5,3), object(5,4), object(5,5), object(5,6), object(5,7), object(5,8), object(5,9), object(5,10), object(5,11), object(5,12), object(5,13), object(5,14), object(5,15), object(5,16), object(5,17), object(5,18), object(5,19), object(5,20), object(5,21), object(5,22), object(5,23), object(5,24), object(5,25), object(5,26), object(5,27), object(5,28), object(5,29), object(5,30), object(5,31), object(5,32), object(5,33), object(5,34), object(5,35), object(5,36), object(5,37), object(5,38), object(5,39), object(5,40), object(5,41), object(5,42), object(5,43), object(5,44), object(5,45), object(5,46), object(5,47), object(5,48), object(5,49), object(5,50), object(5,51), object(5,52), object(5,53), object(5,54), object(5,55), object(5,56), object(5,57), object(5,58), object(5,59), object(5,60), object(5,61), object(5,62), object(5,63), object(5,64), object(5,65), object(5,66), object(5,67), object(5,68), object(5,69), object(5,70), object(5,71), object(5,72), object(5,73), object(5,74), object(5,75), object(5,76), object(5,77), object(5,78), object(5,79), object(5,80), object(5,81), object(5,82), object(5,83), object(5,84), object(5,85), object(5,86), object(5,87), object(5,88), object(5,89), object(5,90), object(5,91), object(5,92), object(5,93), object(5,94), object(5,95), object(5,96), object(5,97), object(5,98), object(5,99) mutated: object(0,0), object(1,1) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 16000000, storage_cost: 133775200, storage_rebate: 2295200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 16000000, computation_cost_burned: 16000000, storage_cost: 133775200, storage_rebate: 2295200, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/dev_inspect/load_old_object.exp b/crates/iota-adapter-transactional-tests/tests/dev_inspect/load_old_object.exp index 89e91b6cc99..2013093765c 100644 --- a/crates/iota-adapter-transactional-tests/tests/dev_inspect/load_old_object.exp +++ b/crates/iota-adapter-transactional-tests/tests/dev_inspect/load_old_object.exp @@ -7,7 +7,7 @@ task 1, lines 9-31: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 5266800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5266800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 33-35: //# programmable --sender A --inputs @A @@ -15,7 +15,7 @@ task 2, lines 33-35: //> TransferObjects([Result(0)], Input(0)) created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2242000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2242000, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 37: //# view-object 2,0 @@ -34,7 +34,7 @@ task 4, lines 39-40: //# programmable --sender A --inputs object(2,0) 112 //> test::m::set(Input(0), Input(1)) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2242000, storage_rebate: 2242000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2242000, storage_rebate: 2242000, non_refundable_storage_fee: 0 task 5, lines 42-45: //# view-object 2,0 @@ -53,14 +53,14 @@ task 6, lines 47-48: //# programmable --sender A --inputs object(2,0)@2 0 --dev-inspect //> test::m::check(Input(0), Input(1)) mutated: object(_), object(2,0) -gas summary: computation_cost: 500000, storage_cost: 2242000, storage_rebate: 1261600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 2242000, storage_rebate: 1261600, non_refundable_storage_fee: 0 task 7, lines 50-54: //# programmable --sender A --inputs object(2,0)@3 112 --dev-inspect //> test::m::check(Input(0), Input(1)) // dev-inspect with 'check' and _incorrect_ values mutated: object(_), object(2,0) -gas summary: computation_cost: 500000, storage_cost: 2242000, storage_rebate: 1261600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 2242000, storage_rebate: 1261600, non_refundable_storage_fee: 0 task 8, lines 56-57: //# programmable --sender A --inputs object(2,0)@2 112 --dev-inspect diff --git a/crates/iota-adapter-transactional-tests/tests/dynamic_fields/add_duplicate.exp b/crates/iota-adapter-transactional-tests/tests/dynamic_fields/add_duplicate.exp index 2a567213f2b..cef30b6ea50 100644 --- a/crates/iota-adapter-transactional-tests/tests/dynamic_fields/add_duplicate.exp +++ b/crates/iota-adapter-transactional-tests/tests/dynamic_fields/add_duplicate.exp @@ -7,13 +7,13 @@ task 1, lines 10-29: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 5859600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5859600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 31: //# run a::m::t1 --sender A created: object(2,0), object(2,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3655600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3655600, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 33: //# run a::m::t2 --sender A --args object(2,0) diff --git a/crates/iota-adapter-transactional-tests/tests/dynamic_fields/add_duplicate_object.exp b/crates/iota-adapter-transactional-tests/tests/dynamic_fields/add_duplicate_object.exp index 2a83ac471fd..e4c2ea2e62b 100644 --- a/crates/iota-adapter-transactional-tests/tests/dynamic_fields/add_duplicate_object.exp +++ b/crates/iota-adapter-transactional-tests/tests/dynamic_fields/add_duplicate_object.exp @@ -7,13 +7,13 @@ task 1, lines 11-30: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 6019200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6019200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 32: //# run a::m::t1 --sender A created: object(2,0), object(2,1), object(2,2) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5859600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5859600, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 34: //# run a::m::t2 --sender A --args object(2,1) diff --git a/crates/iota-adapter-transactional-tests/tests/dynamic_fields/bench.exp b/crates/iota-adapter-transactional-tests/tests/dynamic_fields/bench.exp index f8521a8d340..97bec0abe1b 100644 --- a/crates/iota-adapter-transactional-tests/tests/dynamic_fields/bench.exp +++ b/crates/iota-adapter-transactional-tests/tests/dynamic_fields/bench.exp @@ -7,10 +7,10 @@ task 1, lines 10-61: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 8595600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 8595600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 63: //# run a::m::t0 --sender A created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2196400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2196400, storage_rebate: 0, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/dynamic_fields/borrow_wrong_type.exp b/crates/iota-adapter-transactional-tests/tests/dynamic_fields/borrow_wrong_type.exp index d7051e21d00..983eb34df9c 100644 --- a/crates/iota-adapter-transactional-tests/tests/dynamic_fields/borrow_wrong_type.exp +++ b/crates/iota-adapter-transactional-tests/tests/dynamic_fields/borrow_wrong_type.exp @@ -7,13 +7,13 @@ task 1, lines 10-33: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 6498000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6498000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 35: //# run a::m::t1 --sender A created: object(2,0), object(2,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3655600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3655600, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 37: //# run a::m::t2 --sender A --args object(2,0) diff --git a/crates/iota-adapter-transactional-tests/tests/dynamic_fields/borrow_wrong_type_object.exp b/crates/iota-adapter-transactional-tests/tests/dynamic_fields/borrow_wrong_type_object.exp index bc96fdc396f..c85387dae83 100644 --- a/crates/iota-adapter-transactional-tests/tests/dynamic_fields/borrow_wrong_type_object.exp +++ b/crates/iota-adapter-transactional-tests/tests/dynamic_fields/borrow_wrong_type_object.exp @@ -7,13 +7,13 @@ task 1, lines 11-38: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 7068000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7068000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 40: //# run a::m::t1 --sender A created: object(2,0), object(2,1), object(2,2) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5859600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5859600, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 42: //# run a::m::t2 --sender A --args object(2,0) diff --git a/crates/iota-adapter-transactional-tests/tests/dynamic_fields/dynamic_object_field_swap.exp b/crates/iota-adapter-transactional-tests/tests/dynamic_fields/dynamic_object_field_swap.exp index 2335766bdc6..14bb826e7c1 100644 --- a/crates/iota-adapter-transactional-tests/tests/dynamic_fields/dynamic_object_field_swap.exp +++ b/crates/iota-adapter-transactional-tests/tests/dynamic_fields/dynamic_object_field_swap.exp @@ -7,25 +7,25 @@ task 1, lines 7-60: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 8930000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 8930000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 62: //# run test::m::parent --sender A created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2454800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2454800, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 64: //# run test::m::child --sender A created: object(3,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2272400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2272400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 4, line 66: //# run test::m::add_field --sender A --args object(2,0) object(3,0) created: object(4,0) mutated: object(0,0), object(2,0), object(3,0) -gas summary: computation_cost: 1000000, storage_cost: 6194000, storage_rebate: 3746800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6194000, storage_rebate: 3746800, non_refundable_storage_fee: 0 task 5, line 68: //# view-object 3,0 @@ -45,7 +45,7 @@ task 6, line 70: created: object(6,0) mutated: object(0,0), object(2,0), object(3,0) deleted: object(4,0) -gas summary: computation_cost: 1000000, storage_cost: 5221200, storage_rebate: 6194000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5221200, storage_rebate: 6194000, non_refundable_storage_fee: 0 task 7, line 72: //# view-object 3,0 diff --git a/crates/iota-adapter-transactional-tests/tests/dynamic_fields/exhaustive.exp b/crates/iota-adapter-transactional-tests/tests/dynamic_fields/exhaustive.exp index ac4c50ddcfe..bd5a913674a 100644 --- a/crates/iota-adapter-transactional-tests/tests/dynamic_fields/exhaustive.exp +++ b/crates/iota-adapter-transactional-tests/tests/dynamic_fields/exhaustive.exp @@ -7,53 +7,53 @@ task 1, lines 10-78: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 12198000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 12198000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 80: //# run a::m::t0 --sender A created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2196400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2196400, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 82: //# run a::m::t1 --sender A --args object(2,0) created: object(3,0), object(3,1), object(3,2) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 6475200, storage_rebate: 2196400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6475200, storage_rebate: 2196400, non_refundable_storage_fee: 0 task 4, line 84: //# run a::m::t2 --sender A --args object(2,0) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2196400, storage_rebate: 2196400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2196400, storage_rebate: 2196400, non_refundable_storage_fee: 0 task 5, line 86: //# run a::m::t3 --sender A --args object(2,0) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2196400, storage_rebate: 2196400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2196400, storage_rebate: 2196400, non_refundable_storage_fee: 0 task 6, line 88: //# run a::m::t4 --sender A --args object(2,0) mutated: object(0,0), object(2,0), object(3,0), object(3,1), object(3,2) -gas summary: computation_cost: 1000000, storage_cost: 6475200, storage_rebate: 6475200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6475200, storage_rebate: 6475200, non_refundable_storage_fee: 0 task 7, line 90: //# run a::m::t5 --sender A --args object(2,0) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2196400, storage_rebate: 2196400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2196400, storage_rebate: 2196400, non_refundable_storage_fee: 0 task 8, line 92: //# run a::m::t6 --sender A --args object(2,0) mutated: object(0,0), object(2,0) deleted: object(3,1), object(3,2) -gas summary: computation_cost: 1000000, storage_cost: 2196400, storage_rebate: 5069200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2196400, storage_rebate: 5069200, non_refundable_storage_fee: 0 task 9, line 94: //# run a::m::t7 --sender A --args object(2,0) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2196400, storage_rebate: 2196400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2196400, storage_rebate: 2196400, non_refundable_storage_fee: 0 task 10, line 96: //# run a::m::t8 --sender A --args object(2,0) mutated: object(0,0) deleted: object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 2196400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 2196400, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/dynamic_fields/exhaustive_object.exp b/crates/iota-adapter-transactional-tests/tests/dynamic_fields/exhaustive_object.exp index 767f6956096..b13fe6b5098 100644 --- a/crates/iota-adapter-transactional-tests/tests/dynamic_fields/exhaustive_object.exp +++ b/crates/iota-adapter-transactional-tests/tests/dynamic_fields/exhaustive_object.exp @@ -7,53 +7,53 @@ task 1, lines 11-103: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 13474800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 13474800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 105: //# run a::m::t0 --sender A created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2196400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2196400, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 107: //# run a::m::t1 --sender A --args object(2,0) created: object(3,0), object(3,1), object(3,2), object(3,3), object(3,4), object(3,5) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 13360800, storage_rebate: 2196400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 13360800, storage_rebate: 2196400, non_refundable_storage_fee: 0 task 4, line 109: //# run a::m::t2 --sender A --args object(2,0) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2196400, storage_rebate: 2196400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2196400, storage_rebate: 2196400, non_refundable_storage_fee: 0 task 5, line 111: //# run a::m::t3 --sender A --args object(2,0) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2196400, storage_rebate: 2196400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2196400, storage_rebate: 2196400, non_refundable_storage_fee: 0 task 6, line 113: //# run a::m::t4 --sender A --args object(2,0) mutated: object(0,0), object(2,0), object(3,0), object(3,1), object(3,2) -gas summary: computation_cost: 1000000, storage_cost: 6118000, storage_rebate: 6118000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6118000, storage_rebate: 6118000, non_refundable_storage_fee: 0 task 7, line 115: //# run a::m::t5 --sender A --args object(2,0) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2196400, storage_rebate: 2196400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2196400, storage_rebate: 2196400, non_refundable_storage_fee: 0 task 8, line 117: //# run a::m::t6 --sender A --args object(2,0) mutated: object(0,0), object(2,0) deleted: object(3,0), object(3,2), object(3,4), object(3,5) -gas summary: computation_cost: 1000000, storage_cost: 2196400, storage_rebate: 9659600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2196400, storage_rebate: 9659600, non_refundable_storage_fee: 0 task 9, line 119: //# run a::m::t7 --sender A --args object(2,0) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2196400, storage_rebate: 2196400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2196400, storage_rebate: 2196400, non_refundable_storage_fee: 0 task 10, line 121: //# run a::m::t8 --sender A --args object(2,0) mutated: object(0,0) deleted: object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 2196400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 2196400, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/dynamic_fields/read_field_from_immutable.exp b/crates/iota-adapter-transactional-tests/tests/dynamic_fields/read_field_from_immutable.exp index 783edbb02f2..69d0a4a322f 100644 --- a/crates/iota-adapter-transactional-tests/tests/dynamic_fields/read_field_from_immutable.exp +++ b/crates/iota-adapter-transactional-tests/tests/dynamic_fields/read_field_from_immutable.exp @@ -7,15 +7,15 @@ task 1, lines 10-29: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 6125600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6125600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 31: //# run a::m::add_then_freeze --sender A created: object(2,0), object(2,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3655600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3655600, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 33: //# run a::m::read_from_frozen --sender A --args object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/dynamic_fields/receive_remove_add_back_and_remove_type.exp b/crates/iota-adapter-transactional-tests/tests/dynamic_fields/receive_remove_add_back_and_remove_type.exp index c0b7dcce6f9..a8a96b45c73 100644 --- a/crates/iota-adapter-transactional-tests/tests/dynamic_fields/receive_remove_add_back_and_remove_type.exp +++ b/crates/iota-adapter-transactional-tests/tests/dynamic_fields/receive_remove_add_back_and_remove_type.exp @@ -7,54 +7,54 @@ task 1, lines 12-88: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 12889600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 12889600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 90: //# run test::m1::create --sender A created: object(2,0), object(2,1), object(2,2) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4658800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4658800, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 92: //# run test::m1::test_dof --args object(2,2) receiving(2,0) receiving(2,1) --sender A mutated: object(0,0), object(2,0), object(2,2) deleted: object(2,1) -gas summary: computation_cost: 1000000, storage_cost: 3442800, storage_rebate: 4658800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3442800, storage_rebate: 4658800, non_refundable_storage_fee: 0 task 4, line 94: //# run test::m1::create --sender A created: object(4,0), object(4,1), object(4,2) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4658800, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4658800, storage_rebate: 980400, non_refundable_storage_fee: 0 task 5, line 96: //# run test::m1::test_df --args object(4,2) receiving(4,0) receiving(4,1) --sender A mutated: object(0,0), object(4,0), object(4,2) deleted: object(4,1) -gas summary: computation_cost: 1000000, storage_cost: 3442800, storage_rebate: 4658800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3442800, storage_rebate: 4658800, non_refundable_storage_fee: 0 task 6, line 98: //# run test::m1::create --sender A created: object(6,0), object(6,1), object(6,2) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4658800, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4658800, storage_rebate: 980400, non_refundable_storage_fee: 0 task 7, line 100: //# run test::m1::test_dof_wrapper --args object(6,2) receiving(6,0) receiving(6,1) --sender A created: object(7,0) mutated: object(0,0), object(6,2) wrapped: object(6,0) -gas summary: computation_cost: 1000000, storage_cost: 4028000, storage_rebate: 3442800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4028000, storage_rebate: 3442800, non_refundable_storage_fee: 0 task 8, line 102: //# run test::m1::create --sender A created: object(8,0), object(8,1), object(8,2) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4658800, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4658800, storage_rebate: 980400, non_refundable_storage_fee: 0 task 9, line 104: //# run test::m1::test_df_wrapper --args object(8,2) receiving(8,0) receiving(8,1) --sender A created: object(9,0) mutated: object(0,0), object(8,2) wrapped: object(8,0) -gas summary: computation_cost: 1000000, storage_cost: 4028000, storage_rebate: 3442800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4028000, storage_rebate: 3442800, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/dynamic_fields/remove_add_back_and_remove.exp b/crates/iota-adapter-transactional-tests/tests/dynamic_fields/remove_add_back_and_remove.exp index 3478a6d2692..c8490cc496a 100644 --- a/crates/iota-adapter-transactional-tests/tests/dynamic_fields/remove_add_back_and_remove.exp +++ b/crates/iota-adapter-transactional-tests/tests/dynamic_fields/remove_add_back_and_remove.exp @@ -7,47 +7,47 @@ task 1, lines 12-53: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 9606400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 9606400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 55-57: //# run test::m1::create --sender A created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2234400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2234400, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 58: //# run test::m1::add_child --args object(2,0) --sender A created: object(3,0), object(3,1) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 5920400, storage_rebate: 2234400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5920400, storage_rebate: 2234400, non_refundable_storage_fee: 0 task 4, lines 60-62: //# run test::m1::transfer_child --args object(2,0) --sender A mutated: object(0,0), object(2,0), object(3,1) deleted: object(3,0) -gas summary: computation_cost: 1000000, storage_cost: 3473200, storage_rebate: 5920400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3473200, storage_rebate: 5920400, non_refundable_storage_fee: 0 task 5, line 63: //# run test::m1::add_child --args object(2,0) --sender A created: object(3,0), object(5,0) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 5920400, storage_rebate: 2234400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5920400, storage_rebate: 2234400, non_refundable_storage_fee: 0 task 6, lines 65-67: //# run test::m1::delete_child --args object(2,0) --sender A mutated: object(0,0), object(2,0) deleted: object(3,0), object(5,0) -gas summary: computation_cost: 1000000, storage_cost: 2234400, storage_rebate: 5920400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2234400, storage_rebate: 5920400, non_refundable_storage_fee: 0 task 7, line 68: //# run test::m1::add_child --args object(2,0) --sender A created: object(3,0), object(7,0) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 5920400, storage_rebate: 2234400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5920400, storage_rebate: 2234400, non_refundable_storage_fee: 0 task 8, line 70: //# run test::m1::wrap_child --args object(2,0) --sender A mutated: object(0,0), object(2,0) deleted: object(3,0) wrapped: object(7,0) -gas summary: computation_cost: 1000000, storage_cost: 2477600, storage_rebate: 5920400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2477600, storage_rebate: 5920400, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/dynamic_fields/remove_add_back_and_remove_type.exp b/crates/iota-adapter-transactional-tests/tests/dynamic_fields/remove_add_back_and_remove_type.exp index 3f05bf97fa6..ea116f9868e 100644 --- a/crates/iota-adapter-transactional-tests/tests/dynamic_fields/remove_add_back_and_remove_type.exp +++ b/crates/iota-adapter-transactional-tests/tests/dynamic_fields/remove_add_back_and_remove_type.exp @@ -7,20 +7,20 @@ task 1, lines 12-49: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 8755200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 8755200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 51: //# run test::m1::create --sender A created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2226800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2226800, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 53: //# run test::m1::test_dof --args object(2,0) --sender A mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2226800, storage_rebate: 2226800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2226800, storage_rebate: 2226800, non_refundable_storage_fee: 0 task 4, line 55: //# run test::m1::test_df --args object(2,0) --sender A mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2226800, storage_rebate: 2226800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2226800, storage_rebate: 2226800, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/dynamic_fields/remove_wrong_type.exp b/crates/iota-adapter-transactional-tests/tests/dynamic_fields/remove_wrong_type.exp index 4df303d25f9..5b57fbca7b3 100644 --- a/crates/iota-adapter-transactional-tests/tests/dynamic_fields/remove_wrong_type.exp +++ b/crates/iota-adapter-transactional-tests/tests/dynamic_fields/remove_wrong_type.exp @@ -7,13 +7,13 @@ task 1, lines 10-30: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 6011600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6011600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 32: //# run a::m::t1 --sender A created: object(2,0), object(2,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3655600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3655600, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 34: //# run a::m::t2 --sender A --args object(2,0) diff --git a/crates/iota-adapter-transactional-tests/tests/dynamic_fields/remove_wrong_type_object.exp b/crates/iota-adapter-transactional-tests/tests/dynamic_fields/remove_wrong_type_object.exp index c4f424f1506..efb57c51785 100644 --- a/crates/iota-adapter-transactional-tests/tests/dynamic_fields/remove_wrong_type_object.exp +++ b/crates/iota-adapter-transactional-tests/tests/dynamic_fields/remove_wrong_type_object.exp @@ -7,13 +7,13 @@ task 1, lines 11-35: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 6688000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6688000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 37: //# run a::m::t1 --sender A created: object(2,0), object(2,1), object(2,2) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5859600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5859600, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 39: //# run a::m::t2 --sender A --args object(2,1) diff --git a/crates/iota-adapter-transactional-tests/tests/dynamic_fields/shared_object.exp b/crates/iota-adapter-transactional-tests/tests/dynamic_fields/shared_object.exp index aa03b0c8061..22309b385d4 100644 --- a/crates/iota-adapter-transactional-tests/tests/dynamic_fields/shared_object.exp +++ b/crates/iota-adapter-transactional-tests/tests/dynamic_fields/shared_object.exp @@ -7,19 +7,19 @@ task 1, lines 9-73: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 9682400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 9682400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 75: //# run test::m::parent --sender A created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2454800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2454800, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, lines 77-79: //# run test::m::child --sender A created: object(3,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2272400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2272400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 4, line 80: //# run test::m::add_field --sender A --args object(2,0) object(3,0) diff --git a/crates/iota-adapter-transactional-tests/tests/dynamic_fields/transfer_object.exp b/crates/iota-adapter-transactional-tests/tests/dynamic_fields/transfer_object.exp index f08c587ac46..5006a5f0c92 100644 --- a/crates/iota-adapter-transactional-tests/tests/dynamic_fields/transfer_object.exp +++ b/crates/iota-adapter-transactional-tests/tests/dynamic_fields/transfer_object.exp @@ -7,52 +7,52 @@ task 1, lines 11-66: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 9310000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 9310000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 68: //# run a::m::create --sender A created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2196400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2196400, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 70: //# run a::m::create --sender A created: object(3,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2196400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2196400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 4, line 72: //# run a::m::add_counter --sender A --args object(2,0) created: object(4,0), object(4,1) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 5950800, storage_rebate: 2196400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5950800, storage_rebate: 2196400, non_refundable_storage_fee: 0 task 5, line 74: //# run a::m::obj_bump --sender A --args object(2,0) mutated: object(0,0), object(2,0), object(4,0) -gas summary: computation_cost: 1000000, storage_cost: 3503600, storage_rebate: 3503600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3503600, storage_rebate: 3503600, non_refundable_storage_fee: 0 task 6, line 76: //# run a::m::assert_count --sender A --args object(2,0) 1 mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2196400, storage_rebate: 2196400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2196400, storage_rebate: 2196400, non_refundable_storage_fee: 0 task 7, line 78: //# run a::m::transfer --sender A --args object(2,0) object(3,0) created: object(7,0) mutated: object(0,0), object(2,0), object(3,0), object(4,0) deleted: object(4,1) -gas summary: computation_cost: 1000000, storage_cost: 7166800, storage_rebate: 7166800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7166800, storage_rebate: 7166800, non_refundable_storage_fee: 0 task 8, line 80: //# run a::m::obj_bump --sender A --args object(3,0) mutated: object(0,0), object(3,0), object(4,0) -gas summary: computation_cost: 1000000, storage_cost: 3503600, storage_rebate: 3503600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3503600, storage_rebate: 3503600, non_refundable_storage_fee: 0 task 9, line 82: //# run a::m::assert_count --sender A --args object(3,0) 2 mutated: object(0,0), object(3,0) -gas summary: computation_cost: 1000000, storage_cost: 2196400, storage_rebate: 2196400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2196400, storage_rebate: 2196400, non_refundable_storage_fee: 0 task 10, line 84: //# run a::m::obj_bump --sender A --args object(2,0) diff --git a/crates/iota-adapter-transactional-tests/tests/dynamic_fields/unwrap_object.exp b/crates/iota-adapter-transactional-tests/tests/dynamic_fields/unwrap_object.exp index e578531b3a2..289b1be7a8d 100644 --- a/crates/iota-adapter-transactional-tests/tests/dynamic_fields/unwrap_object.exp +++ b/crates/iota-adapter-transactional-tests/tests/dynamic_fields/unwrap_object.exp @@ -7,13 +7,13 @@ task 1, lines 9-40: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 7470800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7470800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 42: //# run a::m::mint --sender A created: object(2,0), object(2,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4134400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4134400, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 44: //# run a::m::take_and_wrap --sender A --args object(2,0) @@ -21,7 +21,7 @@ created: object(3,1) mutated: object(0,0), object(2,0) unwrapped: object(3,0) deleted: object(2,1) -gas summary: computation_cost: 1000000, storage_cost: 5859600, storage_rebate: 4134400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5859600, storage_rebate: 4134400, non_refundable_storage_fee: 0 task 4, line 46: //# view-object 3,0 @@ -39,27 +39,27 @@ task 5, line 49: //# run a::m::mint --sender A created: object(5,0), object(5,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4134400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4134400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 6, line 51: //# run a::m::take_and_destroy --sender A --args object(5,0) mutated: object(0,0), object(5,0) deleted: object(5,1) unwrapped_then_deleted: object(_) -gas summary: computation_cost: 1000000, storage_cost: 2196400, storage_rebate: 4134400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2196400, storage_rebate: 4134400, non_refundable_storage_fee: 0 task 7, line 54: //# run a::m::mint --sender A created: object(7,0), object(7,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4134400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4134400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 8, line 57: //# run a::m::take_and_take --sender A --args object(7,0) mutated: object(0,0), object(7,0) unwrapped: object(8,0) deleted: object(7,1) -gas summary: computation_cost: 1000000, storage_cost: 3412400, storage_rebate: 4134400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3412400, storage_rebate: 4134400, non_refundable_storage_fee: 0 task 9, line 59: //# view-object 7,0 diff --git a/crates/iota-adapter-transactional-tests/tests/dynamic_fields/wrap_object.exp b/crates/iota-adapter-transactional-tests/tests/dynamic_fields/wrap_object.exp index 3ba0ce0c893..22bbf5e3ad4 100644 --- a/crates/iota-adapter-transactional-tests/tests/dynamic_fields/wrap_object.exp +++ b/crates/iota-adapter-transactional-tests/tests/dynamic_fields/wrap_object.exp @@ -7,13 +7,13 @@ task 1, lines 9-40: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 7470800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7470800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 42: //# run a::m::mint --sender A created: object(2,0), object(2,1), object(2,2) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5859600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5859600, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 44: //# view-object 2,0 @@ -33,13 +33,13 @@ created: object(4,0) mutated: object(0,0), object(2,1) deleted: object(2,2) wrapped: object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 4134400, storage_rebate: 5859600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4134400, storage_rebate: 5859600, non_refundable_storage_fee: 0 task 5, line 49: //# run a::m::mint --sender A created: object(5,0), object(5,1), object(5,2) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5859600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5859600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 6, line 51: //# view-object 5,2 @@ -63,13 +63,13 @@ task 7, line 53: //# run a::m::take_and_destroy --sender A --args object(5,1) mutated: object(0,0), object(5,1) deleted: object(5,0), object(5,2) -gas summary: computation_cost: 1000000, storage_cost: 2196400, storage_rebate: 5859600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2196400, storage_rebate: 5859600, non_refundable_storage_fee: 0 task 8, line 56: //# run a::m::mint --sender A created: object(8,0), object(8,1), object(8,2) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5859600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5859600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 9, line 58: //# view-object 8,2 @@ -93,7 +93,7 @@ task 10, line 60: //# run a::m::take_and_take --sender A --args object(8,0) mutated: object(0,0), object(8,0), object(8,1) deleted: object(8,2) -gas summary: computation_cost: 1000000, storage_cost: 3412400, storage_rebate: 5859600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3412400, storage_rebate: 5859600, non_refundable_storage_fee: 0 task 11, line 62: //# view-object 8,2 diff --git a/crates/iota-adapter-transactional-tests/tests/dynamic_fields/wrapped_uid_after_delete.exp b/crates/iota-adapter-transactional-tests/tests/dynamic_fields/wrapped_uid_after_delete.exp index a8b3f84b806..1f59da11f4e 100644 --- a/crates/iota-adapter-transactional-tests/tests/dynamic_fields/wrapped_uid_after_delete.exp +++ b/crates/iota-adapter-transactional-tests/tests/dynamic_fields/wrapped_uid_after_delete.exp @@ -7,31 +7,31 @@ task 1, lines 11-83: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 10222000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 10222000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 85: //# run a::m::t0 --sender A created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2196400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2196400, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 87: //# run a::m::t1 --sender A --args object(2,0) created: object(3,0) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 4225600, storage_rebate: 2196400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4225600, storage_rebate: 2196400, non_refundable_storage_fee: 0 task 4, line 89: //# run a::m::t2 --sender A --args object(2,0) mutated: object(0,0), object(2,0), object(3,0) -gas summary: computation_cost: 1000000, storage_cost: 4225600, storage_rebate: 4225600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4225600, storage_rebate: 4225600, non_refundable_storage_fee: 0 task 5, line 91: //# run a::m::t3 --sender A --args object(2,0) created: object(5,0) mutated: object(0,0) wrapped: object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2470000, storage_rebate: 2196400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2470000, storage_rebate: 2196400, non_refundable_storage_fee: 0 task 6, line 93: //# view-object 3,0 @@ -57,14 +57,14 @@ Contents: iota::dynamic_field::Field { task 7, line 95: //# run a::m::t4 --sender A --args object(5,0) mutated: object(0,0), object(5,0) -gas summary: computation_cost: 1000000, storage_cost: 2470000, storage_rebate: 2470000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2470000, storage_rebate: 2470000, non_refundable_storage_fee: 0 task 8, line 97: //# run a::m::t5 --sender A --args object(5,0) mutated: object(0,0) deleted: object(5,0) unwrapped_then_deleted: object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 2470000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 2470000, non_refundable_storage_fee: 0 task 9, line 99: //# view-object 3,0 diff --git a/crates/iota-adapter-transactional-tests/tests/entry_points/ascii.exp b/crates/iota-adapter-transactional-tests/tests/entry_points/ascii.exp index dc04ba1211a..8f2b0fd8ebe 100644 --- a/crates/iota-adapter-transactional-tests/tests/entry_points/ascii.exp +++ b/crates/iota-adapter-transactional-tests/tests/entry_points/ascii.exp @@ -7,22 +7,22 @@ task 1, lines 7-26: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 5738000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5738000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 28-31: //# run Test::M::ascii_arg --sender A --args b"SomeString" mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, lines 33-36: //# run Test::M::ascii_arg --sender A --args "SomeString" mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 4, lines 38-46: //# run Test::M::ascii_vec_arg --sender A --args vector[b"Some",b"String"] mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 5, line 48: //# run Test::M::ascii_arg --sender A --args "Some∫tring" diff --git a/crates/iota-adapter-transactional-tests/tests/entry_points/generic_by_ref.exp b/crates/iota-adapter-transactional-tests/tests/entry_points/generic_by_ref.exp index 3f15148118e..ff3edcbef06 100644 --- a/crates/iota-adapter-transactional-tests/tests/entry_points/generic_by_ref.exp +++ b/crates/iota-adapter-transactional-tests/tests/entry_points/generic_by_ref.exp @@ -7,4 +7,4 @@ task 1, lines 7-15: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 4142000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4142000, storage_rebate: 0, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/entry_points/imm_txn_context.exp b/crates/iota-adapter-transactional-tests/tests/entry_points/imm_txn_context.exp index bde3e5456bb..fb5569ebe61 100644 --- a/crates/iota-adapter-transactional-tests/tests/entry_points/imm_txn_context.exp +++ b/crates/iota-adapter-transactional-tests/tests/entry_points/imm_txn_context.exp @@ -7,20 +7,20 @@ task 1, lines 7-28: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 6026800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6026800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 30: //# run Test::M::mint --sender A created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2257200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2257200, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 32: //# run Test::M::set_to_epoch --sender A --args object(2,0) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2257200, storage_rebate: 2257200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2257200, storage_rebate: 2257200, non_refundable_storage_fee: 0 task 4, line 34: //# run Test::M::check_is_epoch --sender A --args object(2,0) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2257200, storage_rebate: 2257200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2257200, storage_rebate: 2257200, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/entry_points/large_enum.exp b/crates/iota-adapter-transactional-tests/tests/entry_points/large_enum.exp index ae7708327f1..419d289ed14 100644 --- a/crates/iota-adapter-transactional-tests/tests/entry_points/large_enum.exp +++ b/crates/iota-adapter-transactional-tests/tests/entry_points/large_enum.exp @@ -7,13 +7,13 @@ task 1, lines 9-36: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 6444800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6444800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 38-39: //# programmable --sender A //> test::m::x1() mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, lines 41-42: //# programmable --sender A diff --git a/crates/iota-adapter-transactional-tests/tests/entry_points/missing_type.exp b/crates/iota-adapter-transactional-tests/tests/entry_points/missing_type.exp index f441f12095a..9831a1e2e21 100644 --- a/crates/iota-adapter-transactional-tests/tests/entry_points/missing_type.exp +++ b/crates/iota-adapter-transactional-tests/tests/entry_points/missing_type.exp @@ -7,7 +7,7 @@ task 1, lines 9-16: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 3868400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3868400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 18: //# run test::m::foo --type-args test::x::x diff --git a/crates/iota-adapter-transactional-tests/tests/entry_points/no_txn_context.exp b/crates/iota-adapter-transactional-tests/tests/entry_points/no_txn_context.exp index 6637db4c196..925ac0f3421 100644 --- a/crates/iota-adapter-transactional-tests/tests/entry_points/no_txn_context.exp +++ b/crates/iota-adapter-transactional-tests/tests/entry_points/no_txn_context.exp @@ -7,15 +7,15 @@ task 1, lines 7-24: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 5487200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5487200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 26: //# run Test::M::mint --sender A created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2257200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2257200, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 28: //# run Test::M::incr --sender A --args object(2,0) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2257200, storage_rebate: 2257200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2257200, storage_rebate: 2257200, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/entry_points/obj_vector.exp b/crates/iota-adapter-transactional-tests/tests/entry_points/obj_vector.exp index 4dfd89cbd82..bdd7b92052f 100644 --- a/crates/iota-adapter-transactional-tests/tests/entry_points/obj_vector.exp +++ b/crates/iota-adapter-transactional-tests/tests/entry_points/obj_vector.exp @@ -7,36 +7,36 @@ task 1, lines 9-112: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 12638800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 12638800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 114: //# run Test::M::prim_vec_len --sender A --args vector[7,42] mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, lines 116-120: //# run Test::M::mint --sender A --args 42 created: object(3,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2257200, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2257200, storage_rebate: 980400, non_refundable_storage_fee: 0 task 4, line 122: //# run Test::M::obj_vec_destroy --sender A --args vector[object(3,0)] mutated: object(0,0) deleted: object(3,0) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 2257200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 2257200, non_refundable_storage_fee: 0 task 5, line 124: //# run Test::M::mint --sender A --args 42 created: object(5,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2257200, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2257200, storage_rebate: 980400, non_refundable_storage_fee: 0 task 6, line 126: //# run Test::M::mint_child --sender A --args 42 object(5,0) created: object(6,0), object(6,1) mutated: object(0,0), object(5,0) -gas summary: computation_cost: 1000000, storage_cost: 5981200, storage_rebate: 2257200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5981200, storage_rebate: 2257200, non_refundable_storage_fee: 0 task 7, lines 128-132: //# run Test::M::child_access --sender A --args object(5,0) vector[object(6,0)] @@ -46,7 +46,7 @@ task 8, line 134: //# run Test::M::mint_another --sender A --args 42 created: object(8,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2310400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2310400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 9, lines 136-139: //# run Test::M::obj_vec_destroy --sender A --args vector[object(8,0)] @@ -57,13 +57,13 @@ task 10, line 141: //# run Test::M::mint_another --sender A --args 42 created: object(10,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2310400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2310400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 11, line 143: //# run Test::M::mint --sender A --args 42 created: object(11,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2257200, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2257200, storage_rebate: 980400, non_refundable_storage_fee: 0 task 12, lines 145-148: //# run Test::M::two_obj_vec_destroy --sender A --args vector[object(10,0),object(11,0)] @@ -74,19 +74,19 @@ task 13, line 150: //# run Test::M::mint_shared --sender A --args 42 created: object(13,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2257200, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2257200, storage_rebate: 980400, non_refundable_storage_fee: 0 task 14, lines 152-155: //# run Test::M::obj_vec_destroy --sender A --args vector[object(13,0)] mutated: object(0,0) deleted: object(13,0) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 2257200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 2257200, non_refundable_storage_fee: 0 task 15, line 157: //# run Test::M::mint --sender A --args 42 created: object(15,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2257200, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2257200, storage_rebate: 980400, non_refundable_storage_fee: 0 task 16, lines 159-162: //# run Test::M::same_objects --sender A --args object(15,0) vector[object(15,0)] @@ -97,7 +97,7 @@ task 17, line 164: //# run Test::M::mint --sender A --args 42 created: object(17,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2257200, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2257200, storage_rebate: 980400, non_refundable_storage_fee: 0 task 18, line 166: //# run Test::M::same_objects_ref --sender A --args object(17,0) vector[object(17,0)] diff --git a/crates/iota-adapter-transactional-tests/tests/entry_points/obj_vector_generic.exp b/crates/iota-adapter-transactional-tests/tests/entry_points/obj_vector_generic.exp index e030557ab44..43efb87fcc9 100644 --- a/crates/iota-adapter-transactional-tests/tests/entry_points/obj_vector_generic.exp +++ b/crates/iota-adapter-transactional-tests/tests/entry_points/obj_vector_generic.exp @@ -7,31 +7,31 @@ task 1, lines 9-111: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 13444400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 13444400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 113: //# run Test::M::mint_any --sender A --type-args Test::M::Any --args 42 created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2584000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2584000, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, lines 115-119: //# run Test::M::obj_vec_destroy_any --sender A --type-args Test::M::Any --args vector[object(2,0)] mutated: object(0,0) deleted: object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 2584000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 2584000, non_refundable_storage_fee: 0 task 4, line 121: //# run Test::M::mint_any --sender A --type-args Test::M::Any --args 42 created: object(4,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2584000, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2584000, storage_rebate: 980400, non_refundable_storage_fee: 0 task 5, line 123: //# run Test::M::mint_child_any --sender A --type-args Test::M::Any --args 42 object(4,0) created: object(5,0), object(5,1) mutated: object(0,0), object(4,0) -gas summary: computation_cost: 1000000, storage_cost: 6634800, storage_rebate: 2584000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6634800, storage_rebate: 2584000, non_refundable_storage_fee: 0 task 6, lines 125-129: //# run Test::M::child_access_any --sender A --type-args Test::M::Any --args object(4,0) vector[object(5,0)] @@ -41,7 +41,7 @@ task 7, line 131: //# run Test::M::mint_another_any --type-args Test::M::Any --sender A --args 42 created: object(7,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2637200, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2637200, storage_rebate: 980400, non_refundable_storage_fee: 0 task 8, lines 133-136: //# run Test::M::obj_vec_destroy_any --sender A --type-args Test::M::Any --args vector[object(7,0)] @@ -52,13 +52,13 @@ task 9, line 138: //# run Test::M::mint_another_any --sender A --type-args Test::M::Any --args 42 created: object(9,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2637200, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2637200, storage_rebate: 980400, non_refundable_storage_fee: 0 task 10, line 140: //# run Test::M::mint_any --sender A --type-args Test::M::Any --args 42 created: object(10,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2584000, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2584000, storage_rebate: 980400, non_refundable_storage_fee: 0 task 11, lines 142-145: //# run Test::M::two_obj_vec_destroy_any --sender A --type-args Test::M::Any --args vector[object(9,0),object(10,0)] @@ -69,19 +69,19 @@ task 12, line 147: //# run Test::M::mint_shared_any --sender A --type-args Test::M::Any --args 42 created: object(12,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2584000, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2584000, storage_rebate: 980400, non_refundable_storage_fee: 0 task 13, lines 149-152: //# run Test::M::obj_vec_destroy_any --sender A --type-args Test::M::Any --args vector[object(12,0)] mutated: object(0,0) deleted: object(12,0) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 2584000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 2584000, non_refundable_storage_fee: 0 task 14, line 154: //# run Test::M::mint_any --sender A --type-args Test::M::Any --args 42 created: object(14,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2584000, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2584000, storage_rebate: 980400, non_refundable_storage_fee: 0 task 15, lines 156-159: //# run Test::M::same_objects_any --sender A --type-args Test::M::Any --args object(14,0) vector[object(14,0)] @@ -92,7 +92,7 @@ task 16, line 161: //# run Test::M::mint_any --sender A --type-args Test::M::Any --args 42 created: object(16,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2584000, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2584000, storage_rebate: 980400, non_refundable_storage_fee: 0 task 17, line 163: //# run Test::M::same_objects_ref_any --sender A --type-args Test::M::Any --args object(16,0) vector[object(16,0)] diff --git a/crates/iota-adapter-transactional-tests/tests/entry_points/utf8.exp b/crates/iota-adapter-transactional-tests/tests/entry_points/utf8.exp index 64db8f7b718..504337d1d9c 100644 --- a/crates/iota-adapter-transactional-tests/tests/entry_points/utf8.exp +++ b/crates/iota-adapter-transactional-tests/tests/entry_points/utf8.exp @@ -7,34 +7,34 @@ task 1, lines 7-25: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 6004000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6004000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 27-30: //# run Test::M::utf8_arg --sender A --args b"SomeStringPlusSomeString" mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, lines 32-35: //# run Test::M::utf8_arg --sender A --args "SomeStringPlusSomeString" mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 4, lines 37-40: //# run Test::M::utf8_arg --sender A --args "çå∞≠¢õß∂ƒ∫" mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 5, lines 42-45: //# run Test::M::utf8_vec_arg --sender A --args vector[b"SomeStringPlus",b"SomeString"] mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 6, lines 47-50: //# run Test::M::utf8_vec_arg --sender A --args vector["SomeStringPlus","SomeString"] mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 7, line 52: //# run Test::M::utf8_vec_arg --sender A --args vector["çå∞≠¢","õß∂ƒ∫"] mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/entry_points/wrong_visibility.exp b/crates/iota-adapter-transactional-tests/tests/entry_points/wrong_visibility.exp index d64e7932b07..62367cffacf 100644 --- a/crates/iota-adapter-transactional-tests/tests/entry_points/wrong_visibility.exp +++ b/crates/iota-adapter-transactional-tests/tests/entry_points/wrong_visibility.exp @@ -4,7 +4,7 @@ task 1, lines 9-27: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4514400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4514400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 29: //# run Test::M::t2 diff --git a/crates/iota-adapter-transactional-tests/tests/enums/basic_enums.exp b/crates/iota-adapter-transactional-tests/tests/enums/basic_enums.exp index c931eebb9cf..ec22bef8e74 100644 --- a/crates/iota-adapter-transactional-tests/tests/enums/basic_enums.exp +++ b/crates/iota-adapter-transactional-tests/tests/enums/basic_enums.exp @@ -4,13 +4,13 @@ task 1, lines 7-32: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 6254800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6254800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 34: //# run Test::f::create_and_test created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2188800, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2188800, storage_rebate: 980400, non_refundable_storage_fee: 0 task 3, line 36: //# view-object 2,0 @@ -28,7 +28,7 @@ Contents: Test::f::S { task 4, line 38: //# run Test::f::update_inner --args object(2,0) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2249600, storage_rebate: 2188800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2249600, storage_rebate: 2188800, non_refundable_storage_fee: 0 task 5, line 40: //# view-object 2,0 diff --git a/crates/iota-adapter-transactional-tests/tests/enums/coin_wrapper.exp b/crates/iota-adapter-transactional-tests/tests/enums/coin_wrapper.exp index d9cc3ed71ca..a30896e3952 100644 --- a/crates/iota-adapter-transactional-tests/tests/enums/coin_wrapper.exp +++ b/crates/iota-adapter-transactional-tests/tests/enums/coin_wrapper.exp @@ -7,7 +7,7 @@ task 1, lines 7-49: //# publish --upgradeable --sender A created: object(1,0), object(1,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 9507600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 9507600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 51-53: //# programmable --sender A --inputs 10 @A @@ -15,4 +15,4 @@ task 2, lines 51-53: //> 1: TransferObjects([Result(0)], Input(1)) created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2561200, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2561200, storage_rebate: 980400, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/enums/enum_events.exp b/crates/iota-adapter-transactional-tests/tests/enums/enum_events.exp index 162b42bbf3e..56339b89eaf 100644 --- a/crates/iota-adapter-transactional-tests/tests/enums/enum_events.exp +++ b/crates/iota-adapter-transactional-tests/tests/enums/enum_events.exp @@ -4,28 +4,28 @@ task 1, lines 7-33: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5206000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5206000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 35: //# run Test::f::f1 events: Event { package_id: Test, transaction_module: Identifier("f"), sender: _, type_: StructTag { address: Test, module: Identifier("f"), name: Identifier("F"), type_params: [] }, contents: [0] } mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 3, line 37: //# run Test::f::f2 --args 42 events: Event { package_id: Test, transaction_module: Identifier("f"), sender: _, type_: StructTag { address: Test, module: Identifier("f"), name: Identifier("F"), type_params: [] }, contents: [1, 42, 0, 0, 0, 0, 0, 0, 0] } mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 4, line 39: //# run Test::f::f3 --args 42 43 events: Event { package_id: Test, transaction_module: Identifier("f"), sender: _, type_: StructTag { address: Test, module: Identifier("f"), name: Identifier("F"), type_params: [] }, contents: [2, 42, 0, 0, 0, 0, 0, 0, 0, 43, 0, 0, 0, 0, 0, 0, 0] } mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 5, line 41: //# run Test::f::f4 --args 42 events: Event { package_id: Test, transaction_module: Identifier("f"), sender: _, type_: StructTag { address: Test, module: Identifier("f"), name: Identifier("F"), type_params: [] }, contents: [3, 42, 0, 0, 0, 0, 0, 0, 0] } mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/enums/enum_otw_check.exp b/crates/iota-adapter-transactional-tests/tests/enums/enum_otw_check.exp index b67e2d1df09..29fe5f38db7 100644 --- a/crates/iota-adapter-transactional-tests/tests/enums/enum_otw_check.exp +++ b/crates/iota-adapter-transactional-tests/tests/enums/enum_otw_check.exp @@ -4,9 +4,9 @@ task 1, lines 7-16: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4628400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4628400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 18: //# run Test::f::test mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/enums/enums_upgrade.exp b/crates/iota-adapter-transactional-tests/tests/enums/enums_upgrade.exp index 1bea956174d..17c11d9182b 100644 --- a/crates/iota-adapter-transactional-tests/tests/enums/enums_upgrade.exp +++ b/crates/iota-adapter-transactional-tests/tests/enums/enums_upgrade.exp @@ -7,13 +7,13 @@ task 1, lines 7-32: //# publish --upgradeable --sender A created: object(1,0), object(1,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 7881200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7881200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 34: //# run Test::f::create_and_test created: object(2,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2188800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2188800, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 36: //# view-object 2,0 @@ -31,7 +31,7 @@ Contents: Test::f::S { task 4, line 38: //# run Test::f::update_inner --args object(2,0) mutated: object(0,1), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2249600, storage_rebate: 2188800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2249600, storage_rebate: 2188800, non_refundable_storage_fee: 0 task 5, line 40: //# view-object 2,0 @@ -52,7 +52,7 @@ task 6, lines 42-71: //# upgrade --package Test --upgrade-capability 1,1 --sender A created: object(6,0) mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 8299200, storage_rebate: 2606800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 8299200, storage_rebate: 2606800, non_refundable_storage_fee: 0 task 7, line 73: //# view-object 2,0 @@ -72,7 +72,7 @@ Contents: fake(1,0)::f::S { task 8, line 75: //# run Test::f::update_inner2 --args object(2,0) mutated: object(0,1), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2310400, storage_rebate: 2249600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2310400, storage_rebate: 2249600, non_refundable_storage_fee: 0 task 9, line 77: //# view-object 2,0 diff --git a/crates/iota-adapter-transactional-tests/tests/enums/enums_upgrade_add_variant.exp b/crates/iota-adapter-transactional-tests/tests/enums/enums_upgrade_add_variant.exp index 74ef51cd08d..d7c5a2459aa 100644 --- a/crates/iota-adapter-transactional-tests/tests/enums/enums_upgrade_add_variant.exp +++ b/crates/iota-adapter-transactional-tests/tests/enums/enums_upgrade_add_variant.exp @@ -7,13 +7,13 @@ task 1, lines 7-32: //# publish --upgradeable --sender A created: object(1,0), object(1,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 7881200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7881200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 34: //# run Test::f::create_and_test created: object(2,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2188800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2188800, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 36: //# view-object 2,0 @@ -31,7 +31,7 @@ Contents: Test::f::S { task 4, line 38: //# run Test::f::update_inner --args object(2,0) mutated: object(0,1), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2249600, storage_rebate: 2188800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2249600, storage_rebate: 2188800, non_refundable_storage_fee: 0 task 5, line 40: //# view-object 2,0 diff --git a/crates/iota-adapter-transactional-tests/tests/epoch/advance.exp b/crates/iota-adapter-transactional-tests/tests/epoch/advance.exp index 5ae5996bafa..5405b2a67a0 100644 --- a/crates/iota-adapter-transactional-tests/tests/epoch/advance.exp +++ b/crates/iota-adapter-transactional-tests/tests/epoch/advance.exp @@ -4,18 +4,18 @@ task 1, lines 7-25: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5631600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5631600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 27: //# run test::m::create created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2242000, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2242000, storage_rebate: 980400, non_refundable_storage_fee: 0 task 3, line 29: //# run test::m::check --args object(2,0) 0 mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2242000, storage_rebate: 2242000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2242000, storage_rebate: 2242000, non_refundable_storage_fee: 0 task 4, line 31: //# advance-epoch @@ -24,4 +24,4 @@ Epoch advanced: 1 task 5, line 33: //# run test::m::check --args object(2,0) 1 mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2242000, storage_rebate: 2242000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2242000, storage_rebate: 2242000, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/iota/coin_in_vec.exp b/crates/iota-adapter-transactional-tests/tests/iota/coin_in_vec.exp index 5c3d81c731c..c6d97f93885 100644 --- a/crates/iota-adapter-transactional-tests/tests/iota/coin_in_vec.exp +++ b/crates/iota-adapter-transactional-tests/tests/iota/coin_in_vec.exp @@ -7,7 +7,7 @@ task 1, lines 7-29: //# publish --sender A created: object(1,0), object(1,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 7926800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7926800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 31-33: //# programmable --sender A --inputs 10 @A @@ -15,16 +15,16 @@ task 2, lines 31-33: //> TransferObjects([Result(0)], Input(1)) created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 1960800, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 1960800, storage_rebate: 980400, non_refundable_storage_fee: 0 task 3, line 35: //# run test::coin_in_vec::deposit --args object(1,0) object(2,0) --sender A mutated: object(0,0), object(1,0) wrapped: object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2614400, storage_rebate: 3290800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2614400, storage_rebate: 3290800, non_refundable_storage_fee: 0 task 4, line 37: //# run test::coin_in_vec::withdraw --args object(1,0) --sender A mutated: object(0,0), object(1,0) unwrapped: object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 3290800, storage_rebate: 2614400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3290800, storage_rebate: 2614400, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/iota/coin_transfer.exp b/crates/iota-adapter-transactional-tests/tests/iota/coin_transfer.exp index 06e62d6f416..86bca4c693a 100644 --- a/crates/iota-adapter-transactional-tests/tests/iota/coin_transfer.exp +++ b/crates/iota-adapter-transactional-tests/tests/iota/coin_transfer.exp @@ -9,7 +9,7 @@ task 1, lines 9-11: //> TransferObjects([Result(0)], Input(1)) created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 1960800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 1960800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 13: //# view-object 1,0 @@ -30,7 +30,7 @@ task 3, line 15: //# run iota::pay::split_and_transfer --type-args iota::iota::IOTA --args object(1,0) 10 @A --sender B created: object(3,0) mutated: object(0,1), object(1,0) -gas summary: computation_cost: 1000000, storage_cost: 2941200, storage_rebate: 1960800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2941200, storage_rebate: 1960800, non_refundable_storage_fee: 0 task 4, line 17: //# view-object 1,0 diff --git a/crates/iota-adapter-transactional-tests/tests/iota/freeze.exp b/crates/iota-adapter-transactional-tests/tests/iota/freeze.exp index ea36eeb7a77..ad3a71863c6 100644 --- a/crates/iota-adapter-transactional-tests/tests/iota/freeze.exp +++ b/crates/iota-adapter-transactional-tests/tests/iota/freeze.exp @@ -7,18 +7,18 @@ task 1, lines 9-68: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 9310000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 9310000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 70: //# run test::object_basics::create --args 10 @A --sender A created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2371200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2371200, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 72: //# run test::object_basics::freeze_object --args object(2,0) --sender A mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2371200, storage_rebate: 2371200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2371200, storage_rebate: 2371200, non_refundable_storage_fee: 0 task 4, line 74: //# run test::object_basics::transfer_ --args object(2,0) @A --sender A diff --git a/crates/iota-adapter-transactional-tests/tests/iota/move_call_args_type_mismatch.exp b/crates/iota-adapter-transactional-tests/tests/iota/move_call_args_type_mismatch.exp index 949a1663539..7487b32c42d 100644 --- a/crates/iota-adapter-transactional-tests/tests/iota/move_call_args_type_mismatch.exp +++ b/crates/iota-adapter-transactional-tests/tests/iota/move_call_args_type_mismatch.exp @@ -4,7 +4,7 @@ task 1, lines 7-14: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3412400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3412400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 15-17: //# run Test::M::create --args 10 diff --git a/crates/iota-adapter-transactional-tests/tests/iota/move_call_incorrect_function.exp b/crates/iota-adapter-transactional-tests/tests/iota/move_call_incorrect_function.exp index 88aafe6043b..fcd1fbc5fc9 100644 --- a/crates/iota-adapter-transactional-tests/tests/iota/move_call_incorrect_function.exp +++ b/crates/iota-adapter-transactional-tests/tests/iota/move_call_incorrect_function.exp @@ -4,7 +4,7 @@ task 1, lines 9-16: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3412400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3412400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 17-19: //# run 0x242::M::create diff --git a/crates/iota-adapter-transactional-tests/tests/iota/object_basics.exp b/crates/iota-adapter-transactional-tests/tests/iota/object_basics.exp index 22d5d00332b..191478c012b 100644 --- a/crates/iota-adapter-transactional-tests/tests/iota/object_basics.exp +++ b/crates/iota-adapter-transactional-tests/tests/iota/object_basics.exp @@ -7,13 +7,13 @@ task 1, lines 9-68: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 9310000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 9310000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 70: //# run test::object_basics::create --sender A --args 10 @A created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2371200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2371200, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 72: //# view-object 2,0 @@ -31,7 +31,7 @@ Contents: test::object_basics::Object { task 4, line 74: //# run test::object_basics::transfer_ --sender A --args object(2,0) @B mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2371200, storage_rebate: 2371200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2371200, storage_rebate: 2371200, non_refundable_storage_fee: 0 task 5, line 76: //# view-object 2,0 @@ -50,16 +50,16 @@ task 6, line 78: //# run test::object_basics::create --sender B --args 20 @B created: object(6,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2371200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2371200, storage_rebate: 0, non_refundable_storage_fee: 0 task 7, line 80: //# run test::object_basics::update --sender B --args object(2,0) object(6,0) events: Event { package_id: test, transaction_module: Identifier("object_basics"), sender: B, type_: StructTag { address: test, module: Identifier("object_basics"), name: Identifier("NewValueEvent"), type_params: [] }, contents: [20, 0, 0, 0, 0, 0, 0, 0] } mutated: object(0,1), object(2,0), object(6,0) -gas summary: computation_cost: 1000000, storage_cost: 3762000, storage_rebate: 3762000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3762000, storage_rebate: 3762000, non_refundable_storage_fee: 0 task 8, line 82: //# run test::object_basics::delete --sender B --args object(2,0) mutated: object(0,1) deleted: object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 2371200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 2371200, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/iota/unwrap.exp b/crates/iota-adapter-transactional-tests/tests/iota/unwrap.exp index b62de586d86..4b6c84372e5 100644 --- a/crates/iota-adapter-transactional-tests/tests/iota/unwrap.exp +++ b/crates/iota-adapter-transactional-tests/tests/iota/unwrap.exp @@ -7,13 +7,13 @@ task 1, lines 10-69: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 9142800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 9142800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 71: //# run test::object_basics::create --args 10 @A created: object(2,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2371200, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2371200, storage_rebate: 980400, non_refundable_storage_fee: 0 task 3, line 73: //# view-object 2,0 @@ -33,14 +33,14 @@ task 4, line 75: created: object(4,0) mutated: object(0,0) wrapped: object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2622000, storage_rebate: 1390800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2622000, storage_rebate: 1390800, non_refundable_storage_fee: 0 task 5, line 77: //# run test::object_basics::unwrap --args object(4,0) --sender A mutated: object(0,0) unwrapped: object(2,0) deleted: object(4,0) -gas summary: computation_cost: 1000000, storage_cost: 2371200, storage_rebate: 2622000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2371200, storage_rebate: 2622000, non_refundable_storage_fee: 0 task 6, line 79: //# view-object 2,0 diff --git a/crates/iota-adapter-transactional-tests/tests/iota/unwrap_then_delete.exp b/crates/iota-adapter-transactional-tests/tests/iota/unwrap_then_delete.exp index f0ead29445e..d6f71a05e3e 100644 --- a/crates/iota-adapter-transactional-tests/tests/iota/unwrap_then_delete.exp +++ b/crates/iota-adapter-transactional-tests/tests/iota/unwrap_then_delete.exp @@ -7,37 +7,37 @@ task 1, lines 15-62: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 7508800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7508800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 64: //# run test::object_basics::create --args 10 created: object(2,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2371200, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2371200, storage_rebate: 980400, non_refundable_storage_fee: 0 task 3, line 66: //# run test::object_basics::wrap --args object(2,0) created: object(3,0) mutated: object(0,1) wrapped: object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2622000, storage_rebate: 2371200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2622000, storage_rebate: 2371200, non_refundable_storage_fee: 0 task 4, line 68: //# run test::object_basics::unwrap_and_delete --args object(3,0) mutated: object(0,1) deleted: object(3,0) unwrapped_then_deleted: object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 2622000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 2622000, non_refundable_storage_fee: 0 task 5, line 70: //# run test::object_basics::create_and_wrap --args 10 created: object(5,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2622000, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2622000, storage_rebate: 980400, non_refundable_storage_fee: 0 task 6, line 72: //# run test::object_basics::unwrap_and_delete --args object(5,0) mutated: object(0,1) deleted: object(5,0) unwrapped_then_deleted: object(_) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 2622000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 2622000, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/iota/unwrap_then_freeze.exp b/crates/iota-adapter-transactional-tests/tests/iota/unwrap_then_freeze.exp index bddc006d7bc..31e26d65910 100644 --- a/crates/iota-adapter-transactional-tests/tests/iota/unwrap_then_freeze.exp +++ b/crates/iota-adapter-transactional-tests/tests/iota/unwrap_then_freeze.exp @@ -7,13 +7,13 @@ task 1, lines 10-39: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 6938800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6938800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 41: //# run test::object_basics::create --args 10 @A created: object(2,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2371200, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2371200, storage_rebate: 980400, non_refundable_storage_fee: 0 task 3, line 43: //# view-object 2,0 @@ -33,14 +33,14 @@ task 4, line 45: created: object(4,0) mutated: object(0,0) wrapped: object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2622000, storage_rebate: 1390800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2622000, storage_rebate: 1390800, non_refundable_storage_fee: 0 task 5, line 47: //# run test::object_basics::unwrap_and_freeze --args object(4,0) --sender A mutated: object(0,0) unwrapped: object(2,0) deleted: object(4,0) -gas summary: computation_cost: 1000000, storage_cost: 2371200, storage_rebate: 2622000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2371200, storage_rebate: 2622000, non_refundable_storage_fee: 0 task 6, line 49: //# view-object 2,0 diff --git a/crates/iota-adapter-transactional-tests/tests/mvcc/child_of_child.exp b/crates/iota-adapter-transactional-tests/tests/mvcc/child_of_child.exp index 0703b1f5465..b727a793a40 100644 --- a/crates/iota-adapter-transactional-tests/tests/mvcc/child_of_child.exp +++ b/crates/iota-adapter-transactional-tests/tests/mvcc/child_of_child.exp @@ -7,7 +7,7 @@ task 1, lines 9-67: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 9211200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 9211200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 69-71: //# programmable --sender A --inputs @A @@ -15,7 +15,7 @@ task 2, lines 69-71: //> TransferObjects([Result(0)], Input(0)) created: object(2,0), object(2,1), object(2,2), object(2,3), object(2,4) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 9705200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 9705200, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 73: //# view-object 2,3 @@ -34,7 +34,7 @@ task 4, lines 75-76: //# programmable --sender A --inputs object(2,3) 1 2 3 //> test::m::set(Input(0), Input(1), Input(2), Input(3)) mutated: object(0,0), object(2,2), object(2,3), object(2,4) -gas summary: computation_cost: 1000000, storage_cost: 4810800, storage_rebate: 4810800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4810800, storage_rebate: 4810800, non_refundable_storage_fee: 0 task 5, line 78: //# view-object 2,3 @@ -54,7 +54,7 @@ task 6, lines 80-81: //> test::m::remove(Input(0)) mutated: object(0,0), object(2,3) deleted: object(2,0), object(2,2) -gas summary: computation_cost: 1000000, storage_cost: 2257200, storage_rebate: 5981200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2257200, storage_rebate: 5981200, non_refundable_storage_fee: 0 task 7, lines 83-86: //# view-object 2,3 @@ -73,20 +73,20 @@ task 8, lines 88-89: //# programmable --sender A --inputs object(2,3)@2 0 0 vector[0] --dev-inspect //> test::m::check(Input(0), Input(1), Input(2), Input(3)) mutated: object(_), object(2,3) -gas summary: computation_cost: 500000, storage_cost: 2257200, storage_rebate: 1276800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 2257200, storage_rebate: 1276800, non_refundable_storage_fee: 0 task 9, lines 91-92: //# programmable --sender A --inputs object(2,3)@3 1 2 vector[3] --dev-inspect //> test::m::check(Input(0), Input(1), Input(2), Input(3)) mutated: object(_), object(2,3) -gas summary: computation_cost: 500000, storage_cost: 2257200, storage_rebate: 1276800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 2257200, storage_rebate: 1276800, non_refundable_storage_fee: 0 task 10, lines 94-98: //# programmable --sender A --inputs object(2,3)@4 1 2 vector[] --dev-inspect //> test::m::check(Input(0), Input(1), Input(2), Input(3)) // dev-inspect with 'check' and _incorrect_ values mutated: object(_), object(2,3) -gas summary: computation_cost: 500000, storage_cost: 2257200, storage_rebate: 1276800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 2257200, storage_rebate: 1276800, non_refundable_storage_fee: 0 task 11, lines 100-101: //# programmable --sender A --inputs object(2,3)@3 0 0 vector[0] --dev-inspect diff --git a/crates/iota-adapter-transactional-tests/tests/mvcc/find_all_uids.exp b/crates/iota-adapter-transactional-tests/tests/mvcc/find_all_uids.exp index 6059b126c5f..769370a75b7 100644 --- a/crates/iota-adapter-transactional-tests/tests/mvcc/find_all_uids.exp +++ b/crates/iota-adapter-transactional-tests/tests/mvcc/find_all_uids.exp @@ -7,7 +7,7 @@ task 1, lines 9-118: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 12198000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 12198000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 120-122: //# programmable --sender A --inputs @A @@ -15,7 +15,7 @@ task 2, lines 120-122: //> TransferObjects([Result(0)], Input(0)) created: object(2,0), object(2,1), object(2,2), object(2,3), object(2,4), object(2,5), object(2,6), object(2,7), object(2,8) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 15564800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 15564800, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 124: //# view-object 2,8 @@ -76,7 +76,7 @@ task 4, lines 126-127: //# programmable --sender A --inputs object(2,8) 112 //> test::m::set(Input(0), Input(1)) mutated: object(0,0), object(2,0), object(2,1), object(2,2), object(2,3), object(2,4), object(2,5), object(2,6), object(2,7), object(2,8) -gas summary: computation_cost: 1000000, storage_cost: 15564800, storage_rebate: 15564800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 15564800, storage_rebate: 15564800, non_refundable_storage_fee: 0 task 5, line 129: //# view-object 2,8 @@ -138,7 +138,7 @@ task 6, lines 131-132: //> test::m::remove(Input(0)) mutated: object(0,0), object(2,8) deleted: object(2,0), object(2,1), object(2,2), object(2,3), object(2,4), object(2,5), object(2,6), object(2,7) -gas summary: computation_cost: 1000000, storage_cost: 3891200, storage_rebate: 15564800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3891200, storage_rebate: 15564800, non_refundable_storage_fee: 0 task 7, lines 134-137: //# view-object 2,8 @@ -199,20 +199,20 @@ task 8, lines 139-140: //# programmable --sender A --inputs object(2,8)@2 vector[0] --dev-inspect //> test::m::check(Input(0), Input(1)) mutated: object(_), object(2,8) -gas summary: computation_cost: 500000, storage_cost: 3891200, storage_rebate: 2910800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 3891200, storage_rebate: 2910800, non_refundable_storage_fee: 0 task 9, lines 142-143: //# programmable --sender A --inputs object(2,8)@3 vector[112] --dev-inspect //> test::m::check(Input(0), Input(1)) mutated: object(_), object(2,8) -gas summary: computation_cost: 500000, storage_cost: 3891200, storage_rebate: 2910800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 3891200, storage_rebate: 2910800, non_refundable_storage_fee: 0 task 10, lines 145-149: //# programmable --sender A --inputs object(2,8)@4 vector[] --dev-inspect //> test::m::check(Input(0), Input(1)) // dev-inspect with 'check' and _incorrect_ values mutated: object(_), object(2,8) -gas summary: computation_cost: 500000, storage_cost: 3891200, storage_rebate: 2910800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 3891200, storage_rebate: 2910800, non_refundable_storage_fee: 0 task 11, lines 151-152: //# programmable --sender A --inputs object(2,8)@3 vector[0] --dev-inspect diff --git a/crates/iota-adapter-transactional-tests/tests/mvcc/find_all_uids_dof.exp b/crates/iota-adapter-transactional-tests/tests/mvcc/find_all_uids_dof.exp index 64b9d443338..caacd932772 100644 --- a/crates/iota-adapter-transactional-tests/tests/mvcc/find_all_uids_dof.exp +++ b/crates/iota-adapter-transactional-tests/tests/mvcc/find_all_uids_dof.exp @@ -7,7 +7,7 @@ task 1, lines 9-131: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 13345600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 13345600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 133-135: //# programmable --sender A --inputs @A @@ -15,7 +15,7 @@ task 2, lines 133-135: //> TransferObjects([Result(0)], Input(0)) created: object(2,0), object(2,1), object(2,2), object(2,3), object(2,4), object(2,5), object(2,6), object(2,7), object(2,8), object(2,9), object(2,10), object(2,11), object(2,12), object(2,13), object(2,14), object(2,15), object(2,16) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 33804800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 33804800, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 137: //# view-object 2,8 @@ -76,7 +76,7 @@ task 4, lines 139-140: //# programmable --sender A --inputs object(2,8) 112 //> test::m::set(Input(0), Input(1)) mutated: object(0,0), object(2,8), object(2,9), object(2,10), object(2,11), object(2,12), object(2,13), object(2,14), object(2,15), object(2,16) -gas summary: computation_cost: 1000000, storage_cost: 14227200, storage_rebate: 14227200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 14227200, storage_rebate: 14227200, non_refundable_storage_fee: 0 task 5, line 142: //# view-object 2,8 @@ -138,7 +138,7 @@ task 6, lines 144-145: //> test::m::remove(Input(0)) mutated: object(0,0), object(2,8) deleted: object(2,0), object(2,1), object(2,2), object(2,3), object(2,4), object(2,5), object(2,6), object(2,7), object(2,9), object(2,10), object(2,11), object(2,12), object(2,13), object(2,14), object(2,15), object(2,16) -gas summary: computation_cost: 1000000, storage_cost: 3891200, storage_rebate: 33804800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3891200, storage_rebate: 33804800, non_refundable_storage_fee: 0 task 7, lines 147-150: //# view-object 2,8 @@ -199,20 +199,20 @@ task 8, lines 152-153: //# programmable --sender A --inputs object(2,8)@2 vector[0] --dev-inspect //> test::m::check(Input(0), Input(1)) mutated: object(_), object(2,8) -gas summary: computation_cost: 500000, storage_cost: 3891200, storage_rebate: 2910800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 3891200, storage_rebate: 2910800, non_refundable_storage_fee: 0 task 9, lines 155-156: //# programmable --sender A --inputs object(2,8)@3 vector[112] --dev-inspect //> test::m::check(Input(0), Input(1)) mutated: object(_), object(2,8) -gas summary: computation_cost: 500000, storage_cost: 3891200, storage_rebate: 2910800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 3891200, storage_rebate: 2910800, non_refundable_storage_fee: 0 task 10, lines 158-162: //# programmable --sender A --inputs object(2,8)@4 vector[] --dev-inspect //> test::m::check(Input(0), Input(1)) // dev-inspect with 'check' and _incorrect_ values mutated: object(_), object(2,8) -gas summary: computation_cost: 500000, storage_cost: 3891200, storage_rebate: 2910800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 3891200, storage_rebate: 2910800, non_refundable_storage_fee: 0 task 11, lines 164-165: //# programmable --sender A --inputs object(2,8)@3 vector[0] --dev-inspect diff --git a/crates/iota-adapter-transactional-tests/tests/mvcc/find_all_uids_dof_enum.exp b/crates/iota-adapter-transactional-tests/tests/mvcc/find_all_uids_dof_enum.exp index c7ae59b445e..cb7a207a5e7 100644 --- a/crates/iota-adapter-transactional-tests/tests/mvcc/find_all_uids_dof_enum.exp +++ b/crates/iota-adapter-transactional-tests/tests/mvcc/find_all_uids_dof_enum.exp @@ -7,7 +7,7 @@ task 1, lines 9-168: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 18156400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 18156400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 170-172: //# programmable --sender A --inputs @A @@ -15,7 +15,7 @@ task 2, lines 170-172: //> TransferObjects([Result(0)], Input(0)) created: object(2,0), object(2,1), object(2,2), object(2,3), object(2,4), object(2,5), object(2,6), object(2,7), object(2,8), object(2,9), object(2,10), object(2,11), object(2,12), object(2,13), object(2,14), object(2,15), object(2,16) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 33865600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 33865600, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 174: //# view-object 2,8 @@ -92,7 +92,7 @@ task 4, lines 176-177: //# programmable --sender A --inputs object(2,8) 112 //> test::m::set(Input(0), Input(1)) mutated: object(0,0), object(2,8), object(2,9), object(2,10), object(2,11), object(2,12), object(2,13), object(2,14), object(2,15), object(2,16) -gas summary: computation_cost: 1000000, storage_cost: 14288000, storage_rebate: 14288000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 14288000, storage_rebate: 14288000, non_refundable_storage_fee: 0 task 5, line 179: //# view-object 2,8 @@ -170,7 +170,7 @@ task 6, lines 181-182: //> test::m::remove(Input(0)) mutated: object(0,0), object(2,8) deleted: object(2,0), object(2,1), object(2,2), object(2,3), object(2,4), object(2,5), object(2,6), object(2,7), object(2,9), object(2,10), object(2,11), object(2,12), object(2,13), object(2,14), object(2,15), object(2,16) -gas summary: computation_cost: 1000000, storage_cost: 3952000, storage_rebate: 33865600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3952000, storage_rebate: 33865600, non_refundable_storage_fee: 0 task 7, lines 184-186: //# view-object 2,8 @@ -247,13 +247,13 @@ task 8, lines 188-189: //# programmable --sender A --inputs object(2,8)@2 vector[0] --dev-inspect //> test::m::check(Input(0), Input(1)) mutated: object(_), object(2,8) -gas summary: computation_cost: 500000, storage_cost: 3952000, storage_rebate: 2971600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 3952000, storage_rebate: 2971600, non_refundable_storage_fee: 0 task 9, lines 191-192: //# programmable --sender A --inputs object(2,8)@3 vector[112] --dev-inspect //> test::m::check(Input(0), Input(1)) mutated: object(_), object(2,8) -gas summary: computation_cost: 500000, storage_cost: 3952000, storage_rebate: 2971600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 3952000, storage_rebate: 2971600, non_refundable_storage_fee: 0 task 10, lines 194-199: //# programmable --sender A --inputs object(2,8)@4 vector[] --dev-inspect @@ -261,7 +261,7 @@ task 10, lines 194-199: // dev-inspect with 'check' and _incorrect_ values // Should fail since the field exists but with a different field. mutated: object(_), object(2,8) -gas summary: computation_cost: 500000, storage_cost: 3952000, storage_rebate: 2971600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 3952000, storage_rebate: 2971600, non_refundable_storage_fee: 0 task 11, lines 200-203: //# programmable --sender A --inputs object(2,8)@3 vector[0] --dev-inspect diff --git a/crates/iota-adapter-transactional-tests/tests/mvcc/find_all_uids_enums.exp b/crates/iota-adapter-transactional-tests/tests/mvcc/find_all_uids_enums.exp index 28d28472e61..8cef8c023e7 100644 --- a/crates/iota-adapter-transactional-tests/tests/mvcc/find_all_uids_enums.exp +++ b/crates/iota-adapter-transactional-tests/tests/mvcc/find_all_uids_enums.exp @@ -7,7 +7,7 @@ task 1, lines 9-135: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 14128400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 14128400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 137-139: //# programmable --sender A --inputs @A @@ -15,7 +15,7 @@ task 2, lines 137-139: //> TransferObjects([Result(0)], Input(0)) created: object(2,0), object(2,1), object(2,2), object(2,3), object(2,4), object(2,5), object(2,6), object(2,7), object(2,8) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 15595200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 15595200, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 141: //# view-object 2,8 @@ -84,7 +84,7 @@ task 4, lines 143-144: //# programmable --sender A --inputs object(2,8) 112 //> test::m::set(Input(0), Input(1)) mutated: object(0,0), object(2,0), object(2,1), object(2,2), object(2,3), object(2,4), object(2,5), object(2,6), object(2,7), object(2,8) -gas summary: computation_cost: 1000000, storage_cost: 15595200, storage_rebate: 15595200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 15595200, storage_rebate: 15595200, non_refundable_storage_fee: 0 task 5, line 146: //# view-object 2,8 @@ -154,7 +154,7 @@ task 6, lines 148-149: //> test::m::remove(Input(0)) mutated: object(0,0), object(2,8) deleted: object(2,0), object(2,1), object(2,2), object(2,3), object(2,4), object(2,5), object(2,6), object(2,7) -gas summary: computation_cost: 1000000, storage_cost: 3921600, storage_rebate: 15595200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3921600, storage_rebate: 15595200, non_refundable_storage_fee: 0 task 7, lines 151-153: //# view-object 2,8 @@ -223,13 +223,13 @@ task 8, lines 155-156: //# programmable --sender A --inputs object(2,8)@2 vector[0] --dev-inspect //> test::m::check(Input(0), Input(1)) mutated: object(_), object(2,8) -gas summary: computation_cost: 500000, storage_cost: 3921600, storage_rebate: 2941200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 3921600, storage_rebate: 2941200, non_refundable_storage_fee: 0 task 9, lines 158-159: //# programmable --sender A --inputs object(2,8)@3 vector[112] --dev-inspect //> test::m::check(Input(0), Input(1)) mutated: object(_), object(2,8) -gas summary: computation_cost: 500000, storage_cost: 3921600, storage_rebate: 2941200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 3921600, storage_rebate: 2941200, non_refundable_storage_fee: 0 task 10, lines 161-166: //# programmable --sender A --inputs object(2,8)@4 vector[] --dev-inspect @@ -237,7 +237,7 @@ task 10, lines 161-166: // dev-inspect with 'check' and _incorrect_ values // Should fail since the field exists but with a different field. mutated: object(_), object(2,8) -gas summary: computation_cost: 500000, storage_cost: 3921600, storage_rebate: 2941200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 3921600, storage_rebate: 2941200, non_refundable_storage_fee: 0 task 11, lines 167-170: //# programmable --sender A --inputs object(2,8)@3 vector[0] --dev-inspect diff --git a/crates/iota-adapter-transactional-tests/tests/mvcc/find_all_uids_on_child.exp b/crates/iota-adapter-transactional-tests/tests/mvcc/find_all_uids_on_child.exp index 8923aa2b13c..9eab2950c78 100644 --- a/crates/iota-adapter-transactional-tests/tests/mvcc/find_all_uids_on_child.exp +++ b/crates/iota-adapter-transactional-tests/tests/mvcc/find_all_uids_on_child.exp @@ -7,7 +7,7 @@ task 1, lines 9-141: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 13854800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 13854800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 143-145: //# programmable --sender A --inputs @A @@ -15,7 +15,7 @@ task 2, lines 143-145: //> TransferObjects([Result(0)], Input(0)) created: object(2,0), object(2,1), object(2,2), object(2,3), object(2,4), object(2,5), object(2,6), object(2,7), object(2,8), object(2,9) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 17525600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 17525600, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 147: //# view-object 2,9 @@ -33,7 +33,7 @@ task 4, lines 149-150: //# programmable --sender A --inputs object(2,9) 112 //> test::m::set(Input(0), Input(1)) mutated: object(0,0), object(2,1), object(2,2), object(2,3), object(2,4), object(2,5), object(2,6), object(2,7), object(2,8), object(2,9) -gas summary: computation_cost: 1000000, storage_cost: 13892800, storage_rebate: 13892800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 13892800, storage_rebate: 13892800, non_refundable_storage_fee: 0 task 5, line 152: //# view-object 2,9 @@ -52,7 +52,7 @@ task 6, lines 154-155: //> test::m::remove(Input(0)) mutated: object(0,0), object(2,9) deleted: object(2,1), object(2,2), object(2,3), object(2,4), object(2,5), object(2,6), object(2,7), object(2,8) -gas summary: computation_cost: 1000000, storage_cost: 2219200, storage_rebate: 13892800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2219200, storage_rebate: 13892800, non_refundable_storage_fee: 0 task 7, lines 157-160: //# view-object 2,9 @@ -70,20 +70,20 @@ task 8, lines 162-163: //# programmable --sender A --inputs object(2,9)@2 vector[0] --dev-inspect //> test::m::check(Input(0), Input(1)) mutated: object(_), object(2,9) -gas summary: computation_cost: 500000, storage_cost: 2219200, storage_rebate: 1238800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 2219200, storage_rebate: 1238800, non_refundable_storage_fee: 0 task 9, lines 165-166: //# programmable --sender A --inputs object(2,9)@3 vector[112] --dev-inspect //> test::m::check(Input(0), Input(1)) mutated: object(_), object(2,9) -gas summary: computation_cost: 500000, storage_cost: 2219200, storage_rebate: 1238800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 2219200, storage_rebate: 1238800, non_refundable_storage_fee: 0 task 10, lines 168-172: //# programmable --sender A --inputs object(2,9)@4 vector[] --dev-inspect //> test::m::check(Input(0), Input(1)) // dev-inspect with 'check' and _incorrect_ values mutated: object(_), object(2,9) -gas summary: computation_cost: 500000, storage_cost: 2219200, storage_rebate: 1238800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 2219200, storage_rebate: 1238800, non_refundable_storage_fee: 0 task 11, lines 174-175: //# programmable --sender A --inputs object(2,9)@3 vector[0] --dev-inspect diff --git a/crates/iota-adapter-transactional-tests/tests/mvcc/find_all_uids_on_child_enum.exp b/crates/iota-adapter-transactional-tests/tests/mvcc/find_all_uids_on_child_enum.exp index 87689b27888..4f39932b4b1 100644 --- a/crates/iota-adapter-transactional-tests/tests/mvcc/find_all_uids_on_child_enum.exp +++ b/crates/iota-adapter-transactional-tests/tests/mvcc/find_all_uids_on_child_enum.exp @@ -7,7 +7,7 @@ task 1, lines 9-220: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 20862000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 20862000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 222-224: //# programmable --sender A --inputs @A @@ -15,7 +15,7 @@ task 2, lines 222-224: //> TransferObjects([Result(0)], Input(0)) created: object(2,0), object(2,1), object(2,2), object(2,3), object(2,4), object(2,5), object(2,6), object(2,7), object(2,8), object(2,9) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 17571200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 17571200, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 226: //# view-object 2,9 @@ -33,7 +33,7 @@ task 4, lines 228-229: //# programmable --sender A --inputs object(2,9) 112 //> test::m::set(Input(0), Input(1)) mutated: object(0,0), object(2,1), object(2,2), object(2,3), object(2,4), object(2,5), object(2,6), object(2,7), object(2,8), object(2,9) -gas summary: computation_cost: 1000000, storage_cost: 13892800, storage_rebate: 13892800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 13892800, storage_rebate: 13892800, non_refundable_storage_fee: 0 task 5, line 231: //# view-object 2,9 @@ -52,7 +52,7 @@ task 6, lines 233-234: //> test::m::remove(Input(0)) mutated: object(0,0), object(2,9) deleted: object(2,1), object(2,2), object(2,3), object(2,4), object(2,5), object(2,6), object(2,7), object(2,8) -gas summary: computation_cost: 1000000, storage_cost: 2219200, storage_rebate: 13892800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2219200, storage_rebate: 13892800, non_refundable_storage_fee: 0 task 7, lines 236-239: //# view-object 2,9 @@ -70,13 +70,13 @@ task 8, lines 241-242: //# programmable --sender A --inputs object(2,9)@2 vector[0] --dev-inspect //> test::m::check(Input(0), Input(1)) mutated: object(_), object(2,9) -gas summary: computation_cost: 500000, storage_cost: 2219200, storage_rebate: 1238800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 2219200, storage_rebate: 1238800, non_refundable_storage_fee: 0 task 9, lines 244-245: //# programmable --sender A --inputs object(2,9)@3 vector[112] --dev-inspect //> test::m::check(Input(0), Input(1)) mutated: object(_), object(2,9) -gas summary: computation_cost: 500000, storage_cost: 2219200, storage_rebate: 1238800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 2219200, storage_rebate: 1238800, non_refundable_storage_fee: 0 task 10, lines 247-252: //# programmable --sender A --inputs object(2,9)@4 vector[] --dev-inspect @@ -84,7 +84,7 @@ task 10, lines 247-252: // dev-inspect with 'check' and _incorrect_ values // Should fail since the field exists but with a different field. mutated: object(_), object(2,9) -gas summary: computation_cost: 500000, storage_cost: 2219200, storage_rebate: 1238800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 2219200, storage_rebate: 1238800, non_refundable_storage_fee: 0 task 11, lines 253-256: //# programmable --sender A --inputs object(2,9)@3 vector[0] --dev-inspect diff --git a/crates/iota-adapter-transactional-tests/tests/mvcc/middle_version_less_than_child.exp b/crates/iota-adapter-transactional-tests/tests/mvcc/middle_version_less_than_child.exp index 875521c72a9..7253324d428 100644 --- a/crates/iota-adapter-transactional-tests/tests/mvcc/middle_version_less_than_child.exp +++ b/crates/iota-adapter-transactional-tests/tests/mvcc/middle_version_less_than_child.exp @@ -7,7 +7,7 @@ task 1, lines 9-52: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 7486000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7486000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 54-58: //# programmable --sender A --inputs @A @@ -16,7 +16,7 @@ task 2, lines 54-58: // All 3 objects have version 2 created: object(2,0), object(2,1), object(2,2) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 6254800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6254800, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 60: //# view-object 2,0 @@ -78,7 +78,7 @@ task 6, lines 66-69: //> test::m::set(Input(0), Input(1)) // The middle object has version 2, while the root and modified leaf have version 3 mutated: object(0,0), object(2,1), object(2,2) -gas summary: computation_cost: 1000000, storage_cost: 4256000, storage_rebate: 4256000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4256000, storage_rebate: 4256000, non_refundable_storage_fee: 0 task 7, line 71: //# view-object 2,0 @@ -139,4 +139,4 @@ task 10, lines 80-81: //# programmable --sender A --inputs object(2,2) 112 //> test::m::check(Input(0), Input(1)) mutated: object(0,0), object(2,2) -gas summary: computation_cost: 1000000, storage_cost: 2257200, storage_rebate: 2257200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2257200, storage_rebate: 2257200, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/mvcc/middle_version_less_than_child_enum.exp b/crates/iota-adapter-transactional-tests/tests/mvcc/middle_version_less_than_child_enum.exp index bf8bc973204..66fdff391d9 100644 --- a/crates/iota-adapter-transactional-tests/tests/mvcc/middle_version_less_than_child_enum.exp +++ b/crates/iota-adapter-transactional-tests/tests/mvcc/middle_version_less_than_child_enum.exp @@ -7,7 +7,7 @@ task 1, lines 9-77: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 9310000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 9310000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 79-83: //# programmable --sender A --inputs @A @@ -16,7 +16,7 @@ task 2, lines 79-83: // All 3 objects have version 2 created: object(2,0), object(2,1), object(2,2) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 6285200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6285200, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 85: //# view-object 2,0 @@ -78,7 +78,7 @@ task 6, lines 91-94: //> test::m::set(Input(0), Input(1)) // The middle object has version 2, while the root and modified leaf have version 3 mutated: object(0,0), object(2,0), object(2,2) -gas summary: computation_cost: 1000000, storage_cost: 4271200, storage_rebate: 4271200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4271200, storage_rebate: 4271200, non_refundable_storage_fee: 0 task 7, line 96: //# view-object 2,0 @@ -139,4 +139,4 @@ task 10, lines 105-106: //# programmable --sender A --inputs object(2,2) 112 //> test::m::check(Input(0), Input(1)) mutated: object(0,0), object(2,2) -gas summary: computation_cost: 1000000, storage_cost: 2257200, storage_rebate: 2257200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2257200, storage_rebate: 2257200, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/mvcc/not_root_version.exp b/crates/iota-adapter-transactional-tests/tests/mvcc/not_root_version.exp index 10228a3f02c..ab76edcf5b8 100644 --- a/crates/iota-adapter-transactional-tests/tests/mvcc/not_root_version.exp +++ b/crates/iota-adapter-transactional-tests/tests/mvcc/not_root_version.exp @@ -7,7 +7,7 @@ task 1, lines 9-54: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 7425200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7425200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 56-58: //# programmable --sender P1 --inputs @P1 @@ -15,19 +15,19 @@ task 2, lines 56-58: //> TransferObjects([Result(0)], Input(0)) created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2181200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2181200, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, lines 60-61: //# programmable --sender P1 --inputs object(2,0) //> test::m::nop(); mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2181200, storage_rebate: 2181200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2181200, storage_rebate: 2181200, non_refundable_storage_fee: 0 task 4, lines 63-64: //# programmable --sender P1 --inputs object(2,0) //> test::m::nop(); mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2181200, storage_rebate: 2181200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2181200, storage_rebate: 2181200, non_refundable_storage_fee: 0 task 5, lines 66-69: //# view-object 2,0 @@ -47,7 +47,7 @@ task 6, lines 71-73: //> TransferObjects([Result(0)], Input(0)) created: object(6,0), object(6,1) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 3640400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3640400, storage_rebate: 0, non_refundable_storage_fee: 0 task 7, line 75: //# view-object 6,0 @@ -67,7 +67,7 @@ task 8, lines 77-78: //# programmable --sender P2 --inputs object(6,1) //> 0: test::m::bump(Input(0)); mutated: object(0,1), object(6,0), object(6,1) -gas summary: computation_cost: 1000000, storage_cost: 3640400, storage_rebate: 3640400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3640400, storage_rebate: 3640400, non_refundable_storage_fee: 0 task 9, lines 80-84: //# view-object 6,0 @@ -92,7 +92,7 @@ task 10, lines 86-91: created: object(10,0) mutated: object(_), object(2,0) wrapped: object(6,1) -gas summary: computation_cost: 500000, storage_cost: 4104000, storage_rebate: 2401600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 4104000, storage_rebate: 2401600, non_refundable_storage_fee: 0 task 11, lines 93-97: //# programmable --sender P2 --inputs object(2,0)@4 object(6,1)@3 1 --dev-inspect @@ -102,7 +102,7 @@ task 11, lines 93-97: created: object(10,0) mutated: object(_), object(2,0) wrapped: object(6,1) -gas summary: computation_cost: 500000, storage_cost: 4104000, storage_rebate: 2401600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 4104000, storage_rebate: 2401600, non_refundable_storage_fee: 0 task 12, lines 99-103: //# programmable --sender P2 --inputs object(2,0)@4 object(6,1)@2 1 --dev-inspect diff --git a/crates/iota-adapter-transactional-tests/tests/mvcc/not_root_version_flipped_case.exp b/crates/iota-adapter-transactional-tests/tests/mvcc/not_root_version_flipped_case.exp index 8a1aa4e9238..a3f16edc70b 100644 --- a/crates/iota-adapter-transactional-tests/tests/mvcc/not_root_version_flipped_case.exp +++ b/crates/iota-adapter-transactional-tests/tests/mvcc/not_root_version_flipped_case.exp @@ -7,7 +7,7 @@ task 1, lines 9-54: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 7425200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7425200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 56-58: //# programmable --sender P1 --inputs @P1 @@ -15,7 +15,7 @@ task 2, lines 56-58: //> TransferObjects([Result(0)], Input(0)) created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2181200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2181200, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, lines 61-64: //# view-object 2,0 @@ -35,7 +35,7 @@ task 4, lines 66-68: //> TransferObjects([Result(0)], Input(0)) created: object(4,0), object(4,1) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 3640400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3640400, storage_rebate: 0, non_refundable_storage_fee: 0 task 5, line 70: //# view-object 4,0 @@ -55,7 +55,7 @@ task 6, lines 72-73: //# programmable --sender P2 --inputs object(4,1) //> 0: test::m::bump(Input(0)); mutated: object(0,1), object(4,0), object(4,1) -gas summary: computation_cost: 1000000, storage_cost: 3640400, storage_rebate: 3640400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3640400, storage_rebate: 3640400, non_refundable_storage_fee: 0 task 7, lines 75-78: //# view-object 4,0 @@ -80,7 +80,7 @@ task 8, lines 80-85: created: object(8,0) mutated: object(_), object(2,0) wrapped: object(4,1) -gas summary: computation_cost: 500000, storage_cost: 4104000, storage_rebate: 2401600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 4104000, storage_rebate: 2401600, non_refundable_storage_fee: 0 task 9, lines 87-91: //# programmable --sender P2 --inputs object(2,0)@2 object(4,1)@2 0 --dev-inspect @@ -90,7 +90,7 @@ task 9, lines 87-91: created: object(8,0) mutated: object(_), object(2,0) wrapped: object(4,1) -gas summary: computation_cost: 500000, storage_cost: 4104000, storage_rebate: 2401600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 4104000, storage_rebate: 2401600, non_refundable_storage_fee: 0 task 10, lines 93-97: //# programmable --sender P2 --inputs object(2,0)@2 object(4,1)@2 1 --dev-inspect diff --git a/crates/iota-adapter-transactional-tests/tests/mvcc/receive_object_access_through_parent_df.exp b/crates/iota-adapter-transactional-tests/tests/mvcc/receive_object_access_through_parent_df.exp index 2ce7e5f5b8e..ec55bd38427 100644 --- a/crates/iota-adapter-transactional-tests/tests/mvcc/receive_object_access_through_parent_df.exp +++ b/crates/iota-adapter-transactional-tests/tests/mvcc/receive_object_access_through_parent_df.exp @@ -7,13 +7,13 @@ task 1, lines 7-77: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 12517200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 12517200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 79: //# run tto::M1::start --sender A created: object(2,0), object(2,1), object(2,2), object(2,3), object(2,4), object(2,5), object(2,6), object(2,7) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 15230400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 15230400, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 81: //# view-object 2,0 @@ -243,11 +243,11 @@ task 12, line 101: created: object(12,0) mutated: object(0,0), object(2,6) wrapped: object(2,4) -gas summary: computation_cost: 1000000, storage_cost: 4256000, storage_rebate: 3534000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4256000, storage_rebate: 3534000, non_refundable_storage_fee: 0 task 13, line 103: //# run tto::M1::receive_wrapped --args object(2,6) receiving(2,7) --sender A created: object(13,0) mutated: object(0,0), object(2,6) wrapped: object(2,7) -gas summary: computation_cost: 1000000, storage_cost: 4833600, storage_rebate: 4111600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4833600, storage_rebate: 4111600, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/mvcc/receive_object_access_through_parent_dof.exp b/crates/iota-adapter-transactional-tests/tests/mvcc/receive_object_access_through_parent_dof.exp index 7d52f2beb6d..c81c0c36930 100644 --- a/crates/iota-adapter-transactional-tests/tests/mvcc/receive_object_access_through_parent_dof.exp +++ b/crates/iota-adapter-transactional-tests/tests/mvcc/receive_object_access_through_parent_dof.exp @@ -7,13 +7,13 @@ task 1, lines 7-77: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 12502000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 12502000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 79: //# run tto::M1::start --sender A created: object(2,0), object(2,1), object(2,2), object(2,3), object(2,4), object(2,5), object(2,6), object(2,7), object(2,8), object(2,9) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 18665600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 18665600, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 81: //# view-object 2,0 @@ -260,10 +260,10 @@ task 14, line 105: //# run tto::M1::receive_b_parent --args object(2,7) receiving(2,5) --sender A created: object(14,0) mutated: object(0,0), object(2,5), object(2,7) -gas summary: computation_cost: 1000000, storage_cost: 5981200, storage_rebate: 3534000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5981200, storage_rebate: 3534000, non_refundable_storage_fee: 0 task 15, line 107: //# run tto::M1::receive_wrapped --args object(2,7) receiving(2,9) --sender A created: object(15,0) mutated: object(0,0), object(2,7), object(2,9) -gas summary: computation_cost: 1000000, storage_cost: 6558800, storage_rebate: 4111600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6558800, storage_rebate: 4111600, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/mvcc/receive_object_dof.exp b/crates/iota-adapter-transactional-tests/tests/mvcc/receive_object_dof.exp index 574d8de36e1..2ba476cb445 100644 --- a/crates/iota-adapter-transactional-tests/tests/mvcc/receive_object_dof.exp +++ b/crates/iota-adapter-transactional-tests/tests/mvcc/receive_object_dof.exp @@ -7,13 +7,13 @@ task 1, lines 7-59: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 10526000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 10526000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 61: //# run tto::M1::start --sender A created: object(2,0), object(2,1), object(2,2), object(2,3) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 7235200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7235200, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 63: //# view-object 2,0 @@ -76,7 +76,7 @@ task 7, line 71: //# run tto::M1::receive --args object(2,2) receiving(2,3) --sender A created: object(7,0) mutated: object(0,0), object(2,2), object(2,3) -gas summary: computation_cost: 1000000, storage_cost: 5966000, storage_rebate: 3518800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5966000, storage_rebate: 3518800, non_refundable_storage_fee: 0 task 8, lines 73-75: //# view-object 2,0 @@ -139,7 +139,7 @@ task 12, lines 82-83: //# programmable --sender A --inputs object(2,2) 1 2 3 //> tto::M1::set(Input(0), Input(1), Input(2), Input(3)) mutated: object(0,0), object(2,1), object(2,2), object(2,3) -gas summary: computation_cost: 1000000, storage_cost: 4788000, storage_rebate: 4788000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4788000, storage_rebate: 4788000, non_refundable_storage_fee: 0 task 13, lines 85-87: //# view-object 2,0 @@ -204,26 +204,26 @@ task 17, lines 94-97: // dev-inspect with 'check' and correct values mutated: object(0,0), object(2,2) deleted: object(2,0), object(2,1) -gas summary: computation_cost: 1000000, storage_cost: 2249600, storage_rebate: 5966000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2249600, storage_rebate: 5966000, non_refundable_storage_fee: 0 task 18, lines 99-100: //# programmable --sender A --inputs object(2,2)@3 0 0 vector[0] --dev-inspect //> tto::M1::check(Input(0), Input(1), Input(2), Input(3)) mutated: object(_), object(2,2) -gas summary: computation_cost: 500000, storage_cost: 2249600, storage_rebate: 1269200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 2249600, storage_rebate: 1269200, non_refundable_storage_fee: 0 task 19, lines 102-103: //# programmable --sender A --inputs object(2,2)@4 1 2 vector[3] --dev-inspect //> tto::M1::check(Input(0), Input(1), Input(2), Input(3)) mutated: object(_), object(2,2) -gas summary: computation_cost: 500000, storage_cost: 2249600, storage_rebate: 1269200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 2249600, storage_rebate: 1269200, non_refundable_storage_fee: 0 task 20, lines 105-108: //# programmable --sender A --inputs object(2,2)@5 1 2 vector[] --dev-inspect //> tto::M1::check(Input(0), Input(1), Input(2), Input(3)) // dev-inspect with 'check' and _incorrect_ values mutated: object(_), object(2,2) -gas summary: computation_cost: 500000, storage_cost: 2249600, storage_rebate: 1269200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 2249600, storage_rebate: 1269200, non_refundable_storage_fee: 0 task 21, lines 110-111: //# programmable --sender A --inputs object(2,2)@4 0 0 vector[0] --dev-inspect diff --git a/crates/iota-adapter-transactional-tests/tests/mvcc/v0/child_of_child.exp b/crates/iota-adapter-transactional-tests/tests/mvcc/v0/child_of_child.exp index 0703b1f5465..b727a793a40 100644 --- a/crates/iota-adapter-transactional-tests/tests/mvcc/v0/child_of_child.exp +++ b/crates/iota-adapter-transactional-tests/tests/mvcc/v0/child_of_child.exp @@ -7,7 +7,7 @@ task 1, lines 9-67: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 9211200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 9211200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 69-71: //# programmable --sender A --inputs @A @@ -15,7 +15,7 @@ task 2, lines 69-71: //> TransferObjects([Result(0)], Input(0)) created: object(2,0), object(2,1), object(2,2), object(2,3), object(2,4) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 9705200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 9705200, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 73: //# view-object 2,3 @@ -34,7 +34,7 @@ task 4, lines 75-76: //# programmable --sender A --inputs object(2,3) 1 2 3 //> test::m::set(Input(0), Input(1), Input(2), Input(3)) mutated: object(0,0), object(2,2), object(2,3), object(2,4) -gas summary: computation_cost: 1000000, storage_cost: 4810800, storage_rebate: 4810800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4810800, storage_rebate: 4810800, non_refundable_storage_fee: 0 task 5, line 78: //# view-object 2,3 @@ -54,7 +54,7 @@ task 6, lines 80-81: //> test::m::remove(Input(0)) mutated: object(0,0), object(2,3) deleted: object(2,0), object(2,2) -gas summary: computation_cost: 1000000, storage_cost: 2257200, storage_rebate: 5981200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2257200, storage_rebate: 5981200, non_refundable_storage_fee: 0 task 7, lines 83-86: //# view-object 2,3 @@ -73,20 +73,20 @@ task 8, lines 88-89: //# programmable --sender A --inputs object(2,3)@2 0 0 vector[0] --dev-inspect //> test::m::check(Input(0), Input(1), Input(2), Input(3)) mutated: object(_), object(2,3) -gas summary: computation_cost: 500000, storage_cost: 2257200, storage_rebate: 1276800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 2257200, storage_rebate: 1276800, non_refundable_storage_fee: 0 task 9, lines 91-92: //# programmable --sender A --inputs object(2,3)@3 1 2 vector[3] --dev-inspect //> test::m::check(Input(0), Input(1), Input(2), Input(3)) mutated: object(_), object(2,3) -gas summary: computation_cost: 500000, storage_cost: 2257200, storage_rebate: 1276800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 2257200, storage_rebate: 1276800, non_refundable_storage_fee: 0 task 10, lines 94-98: //# programmable --sender A --inputs object(2,3)@4 1 2 vector[] --dev-inspect //> test::m::check(Input(0), Input(1), Input(2), Input(3)) // dev-inspect with 'check' and _incorrect_ values mutated: object(_), object(2,3) -gas summary: computation_cost: 500000, storage_cost: 2257200, storage_rebate: 1276800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 2257200, storage_rebate: 1276800, non_refundable_storage_fee: 0 task 11, lines 100-101: //# programmable --sender A --inputs object(2,3)@3 0 0 vector[0] --dev-inspect diff --git a/crates/iota-adapter-transactional-tests/tests/mvcc/v0/find_all_uids.exp b/crates/iota-adapter-transactional-tests/tests/mvcc/v0/find_all_uids.exp index 6059b126c5f..769370a75b7 100644 --- a/crates/iota-adapter-transactional-tests/tests/mvcc/v0/find_all_uids.exp +++ b/crates/iota-adapter-transactional-tests/tests/mvcc/v0/find_all_uids.exp @@ -7,7 +7,7 @@ task 1, lines 9-118: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 12198000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 12198000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 120-122: //# programmable --sender A --inputs @A @@ -15,7 +15,7 @@ task 2, lines 120-122: //> TransferObjects([Result(0)], Input(0)) created: object(2,0), object(2,1), object(2,2), object(2,3), object(2,4), object(2,5), object(2,6), object(2,7), object(2,8) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 15564800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 15564800, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 124: //# view-object 2,8 @@ -76,7 +76,7 @@ task 4, lines 126-127: //# programmable --sender A --inputs object(2,8) 112 //> test::m::set(Input(0), Input(1)) mutated: object(0,0), object(2,0), object(2,1), object(2,2), object(2,3), object(2,4), object(2,5), object(2,6), object(2,7), object(2,8) -gas summary: computation_cost: 1000000, storage_cost: 15564800, storage_rebate: 15564800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 15564800, storage_rebate: 15564800, non_refundable_storage_fee: 0 task 5, line 129: //# view-object 2,8 @@ -138,7 +138,7 @@ task 6, lines 131-132: //> test::m::remove(Input(0)) mutated: object(0,0), object(2,8) deleted: object(2,0), object(2,1), object(2,2), object(2,3), object(2,4), object(2,5), object(2,6), object(2,7) -gas summary: computation_cost: 1000000, storage_cost: 3891200, storage_rebate: 15564800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3891200, storage_rebate: 15564800, non_refundable_storage_fee: 0 task 7, lines 134-137: //# view-object 2,8 @@ -199,20 +199,20 @@ task 8, lines 139-140: //# programmable --sender A --inputs object(2,8)@2 vector[0] --dev-inspect //> test::m::check(Input(0), Input(1)) mutated: object(_), object(2,8) -gas summary: computation_cost: 500000, storage_cost: 3891200, storage_rebate: 2910800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 3891200, storage_rebate: 2910800, non_refundable_storage_fee: 0 task 9, lines 142-143: //# programmable --sender A --inputs object(2,8)@3 vector[112] --dev-inspect //> test::m::check(Input(0), Input(1)) mutated: object(_), object(2,8) -gas summary: computation_cost: 500000, storage_cost: 3891200, storage_rebate: 2910800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 3891200, storage_rebate: 2910800, non_refundable_storage_fee: 0 task 10, lines 145-149: //# programmable --sender A --inputs object(2,8)@4 vector[] --dev-inspect //> test::m::check(Input(0), Input(1)) // dev-inspect with 'check' and _incorrect_ values mutated: object(_), object(2,8) -gas summary: computation_cost: 500000, storage_cost: 3891200, storage_rebate: 2910800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 3891200, storage_rebate: 2910800, non_refundable_storage_fee: 0 task 11, lines 151-152: //# programmable --sender A --inputs object(2,8)@3 vector[0] --dev-inspect diff --git a/crates/iota-adapter-transactional-tests/tests/mvcc/v0/find_all_uids_dof.exp b/crates/iota-adapter-transactional-tests/tests/mvcc/v0/find_all_uids_dof.exp index 64b9d443338..caacd932772 100644 --- a/crates/iota-adapter-transactional-tests/tests/mvcc/v0/find_all_uids_dof.exp +++ b/crates/iota-adapter-transactional-tests/tests/mvcc/v0/find_all_uids_dof.exp @@ -7,7 +7,7 @@ task 1, lines 9-131: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 13345600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 13345600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 133-135: //# programmable --sender A --inputs @A @@ -15,7 +15,7 @@ task 2, lines 133-135: //> TransferObjects([Result(0)], Input(0)) created: object(2,0), object(2,1), object(2,2), object(2,3), object(2,4), object(2,5), object(2,6), object(2,7), object(2,8), object(2,9), object(2,10), object(2,11), object(2,12), object(2,13), object(2,14), object(2,15), object(2,16) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 33804800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 33804800, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 137: //# view-object 2,8 @@ -76,7 +76,7 @@ task 4, lines 139-140: //# programmable --sender A --inputs object(2,8) 112 //> test::m::set(Input(0), Input(1)) mutated: object(0,0), object(2,8), object(2,9), object(2,10), object(2,11), object(2,12), object(2,13), object(2,14), object(2,15), object(2,16) -gas summary: computation_cost: 1000000, storage_cost: 14227200, storage_rebate: 14227200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 14227200, storage_rebate: 14227200, non_refundable_storage_fee: 0 task 5, line 142: //# view-object 2,8 @@ -138,7 +138,7 @@ task 6, lines 144-145: //> test::m::remove(Input(0)) mutated: object(0,0), object(2,8) deleted: object(2,0), object(2,1), object(2,2), object(2,3), object(2,4), object(2,5), object(2,6), object(2,7), object(2,9), object(2,10), object(2,11), object(2,12), object(2,13), object(2,14), object(2,15), object(2,16) -gas summary: computation_cost: 1000000, storage_cost: 3891200, storage_rebate: 33804800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3891200, storage_rebate: 33804800, non_refundable_storage_fee: 0 task 7, lines 147-150: //# view-object 2,8 @@ -199,20 +199,20 @@ task 8, lines 152-153: //# programmable --sender A --inputs object(2,8)@2 vector[0] --dev-inspect //> test::m::check(Input(0), Input(1)) mutated: object(_), object(2,8) -gas summary: computation_cost: 500000, storage_cost: 3891200, storage_rebate: 2910800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 3891200, storage_rebate: 2910800, non_refundable_storage_fee: 0 task 9, lines 155-156: //# programmable --sender A --inputs object(2,8)@3 vector[112] --dev-inspect //> test::m::check(Input(0), Input(1)) mutated: object(_), object(2,8) -gas summary: computation_cost: 500000, storage_cost: 3891200, storage_rebate: 2910800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 3891200, storage_rebate: 2910800, non_refundable_storage_fee: 0 task 10, lines 158-162: //# programmable --sender A --inputs object(2,8)@4 vector[] --dev-inspect //> test::m::check(Input(0), Input(1)) // dev-inspect with 'check' and _incorrect_ values mutated: object(_), object(2,8) -gas summary: computation_cost: 500000, storage_cost: 3891200, storage_rebate: 2910800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 3891200, storage_rebate: 2910800, non_refundable_storage_fee: 0 task 11, lines 164-165: //# programmable --sender A --inputs object(2,8)@3 vector[0] --dev-inspect diff --git a/crates/iota-adapter-transactional-tests/tests/mvcc/v0/find_all_uids_on_child.exp b/crates/iota-adapter-transactional-tests/tests/mvcc/v0/find_all_uids_on_child.exp index 8923aa2b13c..9eab2950c78 100644 --- a/crates/iota-adapter-transactional-tests/tests/mvcc/v0/find_all_uids_on_child.exp +++ b/crates/iota-adapter-transactional-tests/tests/mvcc/v0/find_all_uids_on_child.exp @@ -7,7 +7,7 @@ task 1, lines 9-141: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 13854800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 13854800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 143-145: //# programmable --sender A --inputs @A @@ -15,7 +15,7 @@ task 2, lines 143-145: //> TransferObjects([Result(0)], Input(0)) created: object(2,0), object(2,1), object(2,2), object(2,3), object(2,4), object(2,5), object(2,6), object(2,7), object(2,8), object(2,9) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 17525600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 17525600, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 147: //# view-object 2,9 @@ -33,7 +33,7 @@ task 4, lines 149-150: //# programmable --sender A --inputs object(2,9) 112 //> test::m::set(Input(0), Input(1)) mutated: object(0,0), object(2,1), object(2,2), object(2,3), object(2,4), object(2,5), object(2,6), object(2,7), object(2,8), object(2,9) -gas summary: computation_cost: 1000000, storage_cost: 13892800, storage_rebate: 13892800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 13892800, storage_rebate: 13892800, non_refundable_storage_fee: 0 task 5, line 152: //# view-object 2,9 @@ -52,7 +52,7 @@ task 6, lines 154-155: //> test::m::remove(Input(0)) mutated: object(0,0), object(2,9) deleted: object(2,1), object(2,2), object(2,3), object(2,4), object(2,5), object(2,6), object(2,7), object(2,8) -gas summary: computation_cost: 1000000, storage_cost: 2219200, storage_rebate: 13892800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2219200, storage_rebate: 13892800, non_refundable_storage_fee: 0 task 7, lines 157-160: //# view-object 2,9 @@ -70,20 +70,20 @@ task 8, lines 162-163: //# programmable --sender A --inputs object(2,9)@2 vector[0] --dev-inspect //> test::m::check(Input(0), Input(1)) mutated: object(_), object(2,9) -gas summary: computation_cost: 500000, storage_cost: 2219200, storage_rebate: 1238800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 2219200, storage_rebate: 1238800, non_refundable_storage_fee: 0 task 9, lines 165-166: //# programmable --sender A --inputs object(2,9)@3 vector[112] --dev-inspect //> test::m::check(Input(0), Input(1)) mutated: object(_), object(2,9) -gas summary: computation_cost: 500000, storage_cost: 2219200, storage_rebate: 1238800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 2219200, storage_rebate: 1238800, non_refundable_storage_fee: 0 task 10, lines 168-172: //# programmable --sender A --inputs object(2,9)@4 vector[] --dev-inspect //> test::m::check(Input(0), Input(1)) // dev-inspect with 'check' and _incorrect_ values mutated: object(_), object(2,9) -gas summary: computation_cost: 500000, storage_cost: 2219200, storage_rebate: 1238800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 2219200, storage_rebate: 1238800, non_refundable_storage_fee: 0 task 11, lines 174-175: //# programmable --sender A --inputs object(2,9)@3 vector[0] --dev-inspect diff --git a/crates/iota-adapter-transactional-tests/tests/mvcc/v0/middle_version_less_than_child.exp b/crates/iota-adapter-transactional-tests/tests/mvcc/v0/middle_version_less_than_child.exp index 875521c72a9..7253324d428 100644 --- a/crates/iota-adapter-transactional-tests/tests/mvcc/v0/middle_version_less_than_child.exp +++ b/crates/iota-adapter-transactional-tests/tests/mvcc/v0/middle_version_less_than_child.exp @@ -7,7 +7,7 @@ task 1, lines 9-52: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 7486000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7486000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 54-58: //# programmable --sender A --inputs @A @@ -16,7 +16,7 @@ task 2, lines 54-58: // All 3 objects have version 2 created: object(2,0), object(2,1), object(2,2) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 6254800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6254800, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 60: //# view-object 2,0 @@ -78,7 +78,7 @@ task 6, lines 66-69: //> test::m::set(Input(0), Input(1)) // The middle object has version 2, while the root and modified leaf have version 3 mutated: object(0,0), object(2,1), object(2,2) -gas summary: computation_cost: 1000000, storage_cost: 4256000, storage_rebate: 4256000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4256000, storage_rebate: 4256000, non_refundable_storage_fee: 0 task 7, line 71: //# view-object 2,0 @@ -139,4 +139,4 @@ task 10, lines 80-81: //# programmable --sender A --inputs object(2,2) 112 //> test::m::check(Input(0), Input(1)) mutated: object(0,0), object(2,2) -gas summary: computation_cost: 1000000, storage_cost: 2257200, storage_rebate: 2257200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2257200, storage_rebate: 2257200, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/mvcc/v0/not_root_version.exp b/crates/iota-adapter-transactional-tests/tests/mvcc/v0/not_root_version.exp index 10228a3f02c..ab76edcf5b8 100644 --- a/crates/iota-adapter-transactional-tests/tests/mvcc/v0/not_root_version.exp +++ b/crates/iota-adapter-transactional-tests/tests/mvcc/v0/not_root_version.exp @@ -7,7 +7,7 @@ task 1, lines 9-54: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 7425200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7425200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 56-58: //# programmable --sender P1 --inputs @P1 @@ -15,19 +15,19 @@ task 2, lines 56-58: //> TransferObjects([Result(0)], Input(0)) created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2181200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2181200, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, lines 60-61: //# programmable --sender P1 --inputs object(2,0) //> test::m::nop(); mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2181200, storage_rebate: 2181200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2181200, storage_rebate: 2181200, non_refundable_storage_fee: 0 task 4, lines 63-64: //# programmable --sender P1 --inputs object(2,0) //> test::m::nop(); mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2181200, storage_rebate: 2181200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2181200, storage_rebate: 2181200, non_refundable_storage_fee: 0 task 5, lines 66-69: //# view-object 2,0 @@ -47,7 +47,7 @@ task 6, lines 71-73: //> TransferObjects([Result(0)], Input(0)) created: object(6,0), object(6,1) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 3640400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3640400, storage_rebate: 0, non_refundable_storage_fee: 0 task 7, line 75: //# view-object 6,0 @@ -67,7 +67,7 @@ task 8, lines 77-78: //# programmable --sender P2 --inputs object(6,1) //> 0: test::m::bump(Input(0)); mutated: object(0,1), object(6,0), object(6,1) -gas summary: computation_cost: 1000000, storage_cost: 3640400, storage_rebate: 3640400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3640400, storage_rebate: 3640400, non_refundable_storage_fee: 0 task 9, lines 80-84: //# view-object 6,0 @@ -92,7 +92,7 @@ task 10, lines 86-91: created: object(10,0) mutated: object(_), object(2,0) wrapped: object(6,1) -gas summary: computation_cost: 500000, storage_cost: 4104000, storage_rebate: 2401600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 4104000, storage_rebate: 2401600, non_refundable_storage_fee: 0 task 11, lines 93-97: //# programmable --sender P2 --inputs object(2,0)@4 object(6,1)@3 1 --dev-inspect @@ -102,7 +102,7 @@ task 11, lines 93-97: created: object(10,0) mutated: object(_), object(2,0) wrapped: object(6,1) -gas summary: computation_cost: 500000, storage_cost: 4104000, storage_rebate: 2401600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 4104000, storage_rebate: 2401600, non_refundable_storage_fee: 0 task 12, lines 99-103: //# programmable --sender P2 --inputs object(2,0)@4 object(6,1)@2 1 --dev-inspect diff --git a/crates/iota-adapter-transactional-tests/tests/mvcc/v0/not_root_version_flipped_case.exp b/crates/iota-adapter-transactional-tests/tests/mvcc/v0/not_root_version_flipped_case.exp index 8a1aa4e9238..a3f16edc70b 100644 --- a/crates/iota-adapter-transactional-tests/tests/mvcc/v0/not_root_version_flipped_case.exp +++ b/crates/iota-adapter-transactional-tests/tests/mvcc/v0/not_root_version_flipped_case.exp @@ -7,7 +7,7 @@ task 1, lines 9-54: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 7425200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7425200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 56-58: //# programmable --sender P1 --inputs @P1 @@ -15,7 +15,7 @@ task 2, lines 56-58: //> TransferObjects([Result(0)], Input(0)) created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2181200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2181200, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, lines 61-64: //# view-object 2,0 @@ -35,7 +35,7 @@ task 4, lines 66-68: //> TransferObjects([Result(0)], Input(0)) created: object(4,0), object(4,1) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 3640400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3640400, storage_rebate: 0, non_refundable_storage_fee: 0 task 5, line 70: //# view-object 4,0 @@ -55,7 +55,7 @@ task 6, lines 72-73: //# programmable --sender P2 --inputs object(4,1) //> 0: test::m::bump(Input(0)); mutated: object(0,1), object(4,0), object(4,1) -gas summary: computation_cost: 1000000, storage_cost: 3640400, storage_rebate: 3640400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3640400, storage_rebate: 3640400, non_refundable_storage_fee: 0 task 7, lines 75-78: //# view-object 4,0 @@ -80,7 +80,7 @@ task 8, lines 80-85: created: object(8,0) mutated: object(_), object(2,0) wrapped: object(4,1) -gas summary: computation_cost: 500000, storage_cost: 4104000, storage_rebate: 2401600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 4104000, storage_rebate: 2401600, non_refundable_storage_fee: 0 task 9, lines 87-91: //# programmable --sender P2 --inputs object(2,0)@2 object(4,1)@2 0 --dev-inspect @@ -90,7 +90,7 @@ task 9, lines 87-91: created: object(8,0) mutated: object(_), object(2,0) wrapped: object(4,1) -gas summary: computation_cost: 500000, storage_cost: 4104000, storage_rebate: 2401600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 500000, computation_cost_burned: 500000, storage_cost: 4104000, storage_rebate: 2401600, non_refundable_storage_fee: 0 task 10, lines 93-97: //# programmable --sender P2 --inputs object(2,0)@2 object(4,1)@2 1 --dev-inspect diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/borrowed_arg_copyable_invalid.exp b/crates/iota-adapter-transactional-tests/tests/programmable/borrowed_arg_copyable_invalid.exp index 778e65de5be..40e79b04393 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/borrowed_arg_copyable_invalid.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/borrowed_arg_copyable_invalid.exp @@ -7,7 +7,7 @@ task 1, lines 9-16: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 4453600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4453600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 18-19: //# programmable --inputs 0 diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/borrowed_arg_non_copyable_invalid.exp b/crates/iota-adapter-transactional-tests/tests/programmable/borrowed_arg_non_copyable_invalid.exp index bd9ba993050..2f2c13dcfb7 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/borrowed_arg_non_copyable_invalid.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/borrowed_arg_non_copyable_invalid.exp @@ -7,7 +7,7 @@ task 1, lines 9-25: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 6406800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6406800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 27-29: //# programmable diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/borrowed_arg_primitives_invalid.exp b/crates/iota-adapter-transactional-tests/tests/programmable/borrowed_arg_primitives_invalid.exp index 4d9cfc93c1b..09bf7d7f2b9 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/borrowed_arg_primitives_invalid.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/borrowed_arg_primitives_invalid.exp @@ -13,7 +13,7 @@ task 2, lines 12-13: //# programmable --sender B --inputs @A //> TransferObjects([Gas], Input(0)) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, lines 15-16: //# programmable --sender A --inputs object(0,1) diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/borrowed_arg_valid.exp b/crates/iota-adapter-transactional-tests/tests/programmable/borrowed_arg_valid.exp index 9caaf625821..811a98a31a5 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/borrowed_arg_valid.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/borrowed_arg_valid.exp @@ -7,7 +7,7 @@ task 1, lines 9-25: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 5380800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5380800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 27-36: //# programmable --inputs 0 @@ -21,7 +21,7 @@ task 2, lines 27-36: // mix all and borrow multiple times //> test::m1::multiple_copy(Input(0), Input(0), Input(0), Input(0)); mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 3, lines 38-41: //# programmable @@ -29,4 +29,4 @@ task 3, lines 38-41: // double borrow without copy //> test::m1::double_r(Result(0), Result(0)) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/cannot_call_emit.exp b/crates/iota-adapter-transactional-tests/tests/programmable/cannot_call_emit.exp index a4ab06d909c..f7f114292a0 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/cannot_call_emit.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/cannot_call_emit.exp @@ -7,7 +7,7 @@ task 1, lines 9-13: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 3898800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3898800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 15-17: //# programmable diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/cannot_call_init.exp b/crates/iota-adapter-transactional-tests/tests/programmable/cannot_call_init.exp index 8c6b3889d6b..3dc727ce0bc 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/cannot_call_init.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/cannot_call_init.exp @@ -7,7 +7,7 @@ task 1, lines 9-12: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 3891200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3891200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 14-15: //# programmable diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/cannot_call_private.exp b/crates/iota-adapter-transactional-tests/tests/programmable/cannot_call_private.exp index d7cd06e7456..559c0b47cd1 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/cannot_call_private.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/cannot_call_private.exp @@ -7,7 +7,7 @@ task 1, lines 9-12: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 3891200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3891200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 14-15: //# programmable diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/coin_negative.exp b/crates/iota-adapter-transactional-tests/tests/programmable/coin_negative.exp index 6a56ff7e483..14d194a8015 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/coin_negative.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/coin_negative.exp @@ -7,7 +7,7 @@ task 1, lines 9-21: //# publish --sender A created: object(1,0), object(1,1), object(1,2) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 10594400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 10594400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 23-25: //# programmable --sender A --inputs object(1,2) 1 @A @@ -16,7 +16,7 @@ task 2, lines 23-25: created: object(2,0) mutated: object(0,0), object(1,2) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 3990000, storage_rebate: 2675200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3990000, storage_rebate: 2675200, non_refundable_storage_fee: 0 task 3, lines 27-28: //# programmable --sender A --inputs object(2,0) 2 diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/coin_operations_custom_coin.exp b/crates/iota-adapter-transactional-tests/tests/programmable/coin_operations_custom_coin.exp index 88f938759bb..b6d984d303b 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/coin_operations_custom_coin.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/coin_operations_custom_coin.exp @@ -7,7 +7,7 @@ task 1, lines 9-21: //# publish --sender A created: object(1,0), object(1,1), object(1,2) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 10594400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 10594400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 23-25: //# programmable --sender A --inputs object(1,2) 100 @A @@ -16,7 +16,7 @@ task 2, lines 23-25: created: object(2,0) mutated: object(0,0), object(1,2) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 3990000, storage_rebate: 2675200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3990000, storage_rebate: 2675200, non_refundable_storage_fee: 0 task 3, line 27: //# view-object 2,0 @@ -45,4 +45,4 @@ created: object(4,0) mutated: object(0,0), object(1,2) deleted: object(2,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 3990000, storage_rebate: 3990000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3990000, storage_rebate: 3990000, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/coin_operations_non_coins.exp b/crates/iota-adapter-transactional-tests/tests/programmable/coin_operations_non_coins.exp index 724a85182b8..453fa18ce6f 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/coin_operations_non_coins.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/coin_operations_non_coins.exp @@ -7,7 +7,7 @@ task 1, lines 9-26: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 4886800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4886800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 27-31: //# programmable --sender A --inputs 0 diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/coin_overflow.exp b/crates/iota-adapter-transactional-tests/tests/programmable/coin_overflow.exp index 74fc3a75ad8..0472425f2b8 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/coin_overflow.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/coin_overflow.exp @@ -7,7 +7,7 @@ task 1, lines 9-21: //# publish --sender A created: object(1,0), object(1,1), object(1,2) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 10594400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 10594400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 23-25: //# programmable --sender A --inputs object(1,2) 18446744073709551614 @A @@ -16,7 +16,7 @@ task 2, lines 23-25: created: object(2,0) mutated: object(0,0), object(1,2) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 3990000, storage_rebate: 2675200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3990000, storage_rebate: 2675200, non_refundable_storage_fee: 0 task 3, lines 27-29: //# programmable --sender A --inputs object(1,2) 1 @A diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/delayed_invalid_gas_by_value.exp b/crates/iota-adapter-transactional-tests/tests/programmable/delayed_invalid_gas_by_value.exp index 37def6f0969..3ebc5712566 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/delayed_invalid_gas_by_value.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/delayed_invalid_gas_by_value.exp @@ -7,7 +7,7 @@ task 1, lines 9-14: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 3982400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3982400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 16-18: //# programmable --sender A --inputs @A diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/delayed_invalid_object_by_value.exp b/crates/iota-adapter-transactional-tests/tests/programmable/delayed_invalid_object_by_value.exp index c51ae851c96..57b324b0f68 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/delayed_invalid_object_by_value.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/delayed_invalid_object_by_value.exp @@ -7,14 +7,14 @@ task 1, lines 9-29: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 5753200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5753200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 31-32: //# programmable //> test::m1::share_r(); created: object(2,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2188800, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2188800, storage_rebate: 980400, non_refundable_storage_fee: 0 task 3, lines 34-35: //# programmable --inputs object(2,0) @@ -33,7 +33,7 @@ task 5, lines 40-41: //> test::m1::freeze_r(); created: object(5,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2188800, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2188800, storage_rebate: 980400, non_refundable_storage_fee: 0 task 6, lines 43-44: //# programmable --inputs object(5,0) diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/gas_coin_by_reference.exp b/crates/iota-adapter-transactional-tests/tests/programmable/gas_coin_by_reference.exp index de1a004dbfd..2ac4cf9d1d5 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/gas_coin_by_reference.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/gas_coin_by_reference.exp @@ -7,48 +7,48 @@ task 1, lines 9-25: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 4050800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4050800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 26-27: //# programmable --sender A //> test::m1::t1>(Gas) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, lines 29-30: //# programmable --sender A //> test::m1::t2>(Gas) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 4, lines 32-33: //# programmable --sender A //> test::m1::t2>(Gas) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 5, lines 35-36: //# programmable --sender A //> test::m1::t4>(Gas) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 6, lines 38-39: //# programmable --sender A //> test::m1::t5>(Gas) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 7, lines 41-44: //# programmable --sender A //> test::m1::t6>(Gas) // can pass to merge and split mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 8, lines 45-47: //# programmable --sender A --inputs 10 --gas-budget 10000000000 //> 0: SplitCoins(Gas, [Input(0)]); //> MergeCoins(Gas, [Result(0)]) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/gas_coin_by_value.exp b/crates/iota-adapter-transactional-tests/tests/programmable/gas_coin_by_value.exp index 4af77973e31..c11228c0db2 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/gas_coin_by_value.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/gas_coin_by_value.exp @@ -7,7 +7,7 @@ task 1, lines 9-10: //# programmable --sender A --inputs @B //> TransferObjects([Gas], Input(0)) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 12: //# view-object 0,0 diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/gas_coin_by_value_invalid.exp b/crates/iota-adapter-transactional-tests/tests/programmable/gas_coin_by_value_invalid.exp index 9046f0ab4c5..813c70f8c1f 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/gas_coin_by_value_invalid.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/gas_coin_by_value_invalid.exp @@ -7,7 +7,7 @@ task 1, lines 9-24: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 3853200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3853200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 25-26: //# programmable --sender A diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/generics_substitution.exp b/crates/iota-adapter-transactional-tests/tests/programmable/generics_substitution.exp index 7da9259bf79..86a95284ea2 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/generics_substitution.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/generics_substitution.exp @@ -7,7 +7,7 @@ task 1, lines 9-27: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 5449200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5449200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 28-37: //# programmable @@ -20,7 +20,7 @@ task 2, lines 28-37: //> test::m1::eat(NestedResult(4,1), NestedResult(4,0), NestedResult(4,1)); // invalid mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 3, lines 38-45: //# programmable diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/invalid_option.exp b/crates/iota-adapter-transactional-tests/tests/programmable/invalid_option.exp index 98ea367f3a1..75197b8dfad 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/invalid_option.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/invalid_option.exp @@ -7,7 +7,7 @@ task 1, lines 9-16: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 4415600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4415600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 18-19: //# programmable --inputs vector[false,true] diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/invalid_public_function_return.exp b/crates/iota-adapter-transactional-tests/tests/programmable/invalid_public_function_return.exp index 0858cf42efb..906a83d1679 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/invalid_public_function_return.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/invalid_public_function_return.exp @@ -7,7 +7,7 @@ task 1, lines 9-17: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 4674000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4674000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 19-20: //# programmable diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/invalid_result_arity.exp b/crates/iota-adapter-transactional-tests/tests/programmable/invalid_result_arity.exp index a1accb6f030..6a51d06da51 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/invalid_result_arity.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/invalid_result_arity.exp @@ -7,7 +7,7 @@ task 1, lines 9-16: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 4537200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4537200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 18-20: //# programmable diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/make_vec_objects.exp b/crates/iota-adapter-transactional-tests/tests/programmable/make_vec_objects.exp index 850a4fb0d82..e52fa5ec8de 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/make_vec_objects.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/make_vec_objects.exp @@ -7,7 +7,7 @@ task 1, lines 9-45: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 7151600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7151600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 46-53: //# programmable --sender A @@ -18,7 +18,7 @@ task 2, lines 46-53: //> test::m1::pubs(Result(3)); // annotated objects mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, lines 54-61: //# programmable --sender A @@ -29,7 +29,7 @@ task 3, lines 54-61: //> test::m1::pubs(Result(3)); // empty objects mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 4, lines 62-66: //# programmable --sender A @@ -37,7 +37,7 @@ task 4, lines 62-66: //> test::m1::pubs(Result(0)); // mixed new and old. Send an object to A and mix it in a vector with the newly created ones. mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 5, lines 67-69: //# programmable --sender A --inputs @A @@ -45,7 +45,7 @@ task 5, lines 67-69: //> TransferObjects([Result(0)], Input(0)); created: object(5,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2264800, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2264800, storage_rebate: 980400, non_refundable_storage_fee: 0 task 6, line 71: //# view-object 5,0 @@ -70,4 +70,4 @@ task 7, lines 73-79: //> test::m1::pubs(Result(3)); mutated: object(0,0) deleted: object(5,0) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 2264800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 2264800, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/make_vec_special_validation_invalid.exp b/crates/iota-adapter-transactional-tests/tests/programmable/make_vec_special_validation_invalid.exp index 952337bdef5..e4fc3672723 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/make_vec_special_validation_invalid.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/make_vec_special_validation_invalid.exp @@ -7,7 +7,7 @@ task 1, lines 9-30: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 6064800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6064800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 32-35: //# programmable --inputs vector[0u64,0u64] diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/merge_coin_mismatched_coin.exp b/crates/iota-adapter-transactional-tests/tests/programmable/merge_coin_mismatched_coin.exp index c0ef4910c27..d62a9017786 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/merge_coin_mismatched_coin.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/merge_coin_mismatched_coin.exp @@ -7,7 +7,7 @@ task 1, lines 9-21: //# publish --sender A created: object(1,0), object(1,1), object(1,2) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 10594400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 10594400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 23-25: //# programmable --sender A --inputs object(1,2) 100 @A @@ -16,7 +16,7 @@ task 2, lines 23-25: created: object(2,0) mutated: object(0,0), object(1,2) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 3990000, storage_rebate: 2675200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3990000, storage_rebate: 2675200, non_refundable_storage_fee: 0 task 3, line 27: //# view-object 2,0 diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/nested_result_zero_zero.exp b/crates/iota-adapter-transactional-tests/tests/programmable/nested_result_zero_zero.exp index d16a0c93daa..77c9a6a8a54 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/nested_result_zero_zero.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/nested_result_zero_zero.exp @@ -7,7 +7,7 @@ task 1, lines 9-14: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 4035600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4035600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 16-19: //# programmable @@ -15,4 +15,4 @@ task 2, lines 16-19: //> test::m1::copy_(Result(0)); //> test::m1::copy_(NestedResult(0, 0)); mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/non_primitive_non_object_arguments.exp b/crates/iota-adapter-transactional-tests/tests/programmable/non_primitive_non_object_arguments.exp index 0a381ae5695..fae07906a21 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/non_primitive_non_object_arguments.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/non_primitive_non_object_arguments.exp @@ -7,7 +7,7 @@ task 1, lines 9-20: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 4658800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4658800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 22-27: //# programmable @@ -17,4 +17,4 @@ task 2, lines 22-27: //> test::m1::mut_(Result(1)); //> test::m1::otatop(Result(1)); mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/out_of_bounds_input.exp b/crates/iota-adapter-transactional-tests/tests/programmable/out_of_bounds_input.exp index ff1cc58c079..5acc8029c64 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/out_of_bounds_input.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/out_of_bounds_input.exp @@ -7,7 +7,7 @@ task 1, lines 9-16: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 4658800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4658800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 18-19: //# programmable diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/out_of_bounds_nested.exp b/crates/iota-adapter-transactional-tests/tests/programmable/out_of_bounds_nested.exp index a6a775c0a03..0e5d5184020 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/out_of_bounds_nested.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/out_of_bounds_nested.exp @@ -7,7 +7,7 @@ task 1, lines 9-17: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 4856400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4856400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 19-21: //# programmable diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/out_of_bounds_result.exp b/crates/iota-adapter-transactional-tests/tests/programmable/out_of_bounds_result.exp index b606c8f9e51..4aae37ad130 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/out_of_bounds_result.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/out_of_bounds_result.exp @@ -7,7 +7,7 @@ task 1, lines 9-17: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 4788000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4788000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 19-20: //# programmable diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/private_entry_value_restriction_by_ref_input_invalid.exp b/crates/iota-adapter-transactional-tests/tests/programmable/private_entry_value_restriction_by_ref_input_invalid.exp index ba1ab62b9d5..cd99690120c 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/private_entry_value_restriction_by_ref_input_invalid.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/private_entry_value_restriction_by_ref_input_invalid.exp @@ -7,7 +7,7 @@ task 1, lines 10-19: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 5046400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5046400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 21-26: //# programmable --sender A --inputs @A @@ -16,7 +16,7 @@ task 2, lines 21-26: // cannot use results from other functions created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2188800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2188800, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, lines 28-30: //# programmable diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/private_entry_value_restriction_by_ref_input_valid.exp b/crates/iota-adapter-transactional-tests/tests/programmable/private_entry_value_restriction_by_ref_input_valid.exp index efab1a24f43..65660a61cbb 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/private_entry_value_restriction_by_ref_input_valid.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/private_entry_value_restriction_by_ref_input_valid.exp @@ -7,7 +7,7 @@ task 1, lines 10-24: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 5510000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5510000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 26-28: //# programmable --sender A --inputs @A @@ -15,7 +15,7 @@ task 2, lines 26-28: //> TransferObjects([Result(0)], Input(0)) created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2188800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2188800, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, lines 30-37: //# programmable --sender A --inputs object(2,0) 200 @@ -27,7 +27,7 @@ task 3, lines 30-37: //> test::m1::priv(Input(0)); //> test::m1::priv(Input(0)); mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2188800, storage_rebate: 2188800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2188800, storage_rebate: 2188800, non_refundable_storage_fee: 0 task 4, lines 39-44: //# programmable --sender A --inputs @A --gas-budget 10000000000 @@ -38,4 +38,4 @@ task 4, lines 39-44: //> TransferObjects([Result(1)], Input(0)) created: object(4,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 1960800, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 1960800, storage_rebate: 980400, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/private_entry_value_restriction_copied_input_valid.exp b/crates/iota-adapter-transactional-tests/tests/programmable/private_entry_value_restriction_copied_input_valid.exp index 8b5d516434c..1a4c7f33d79 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/private_entry_value_restriction_copied_input_valid.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/private_entry_value_restriction_copied_input_valid.exp @@ -7,11 +7,11 @@ task 1, lines 10-14: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 3541600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3541600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 16-18: //# programmable --inputs 0 //> test::m1::clean(Input(0)); //> test::m1::priv(Input(0)); mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/private_entry_value_restriction_make_move_vec_invalid.exp b/crates/iota-adapter-transactional-tests/tests/programmable/private_entry_value_restriction_make_move_vec_invalid.exp index 09f93e5d517..61eb4a2103c 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/private_entry_value_restriction_make_move_vec_invalid.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/private_entry_value_restriction_make_move_vec_invalid.exp @@ -7,7 +7,7 @@ task 1, lines 10-19: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 5396000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5396000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 21-25: //# programmable --sender A --inputs @A @@ -17,7 +17,7 @@ task 2, lines 21-25: //> TransferObjects([Result(0), Result(1), Result(2)], Input(0)) created: object(2,0), object(2,1), object(2,2) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4605600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4605600, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, lines 27-30: //# programmable --sender A --inputs object(2,0) object(2,1) object(2,2) diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/private_entry_value_restriction_make_move_vec_valid.exp b/crates/iota-adapter-transactional-tests/tests/programmable/private_entry_value_restriction_make_move_vec_valid.exp index 28bf1044511..c552fdcf0c3 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/private_entry_value_restriction_make_move_vec_valid.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/private_entry_value_restriction_make_move_vec_valid.exp @@ -7,7 +7,7 @@ task 1, lines 10-27: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 6239600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6239600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 29-33: //# programmable --sender A --inputs @A @@ -17,7 +17,7 @@ task 2, lines 29-33: //> TransferObjects([Result(0), Result(1), Result(2)], Input(0)) created: object(2,0), object(2,1), object(2,2) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4605600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4605600, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, lines 35-39: //# programmable --sender A --inputs object(2,0) object(2,1) object(2,2) @@ -27,7 +27,7 @@ task 3, lines 35-39: //> test::m1::priv2(Result(2)) mutated: object(0,0) deleted: object(2,0), object(2,1), object(2,2) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 4605600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 4605600, non_refundable_storage_fee: 0 task 4, lines 41-44: //# programmable --sender A --inputs 0 0 0 @@ -35,4 +35,4 @@ task 4, lines 41-44: //> 1: MakeMoveVec([Input(0), Input(1), Input(2)]); //> test::m1::priv3(Result(1)) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/private_entry_value_restriction_non_pure_input_invalid.exp b/crates/iota-adapter-transactional-tests/tests/programmable/private_entry_value_restriction_non_pure_input_invalid.exp index 86d7a2718c8..bfe35133939 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/private_entry_value_restriction_non_pure_input_invalid.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/private_entry_value_restriction_non_pure_input_invalid.exp @@ -7,7 +7,7 @@ task 1, lines 9-17: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 3997600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3997600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 18-20: //# programmable diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/private_entry_value_restriction_per_argument.exp b/crates/iota-adapter-transactional-tests/tests/programmable/private_entry_value_restriction_per_argument.exp index 07a794a7f16..bb86095d106 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/private_entry_value_restriction_per_argument.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/private_entry_value_restriction_per_argument.exp @@ -7,7 +7,7 @@ task 1, lines 9-16: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 4924800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4924800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 18-21: //# programmable --sender A --inputs @A @@ -16,7 +16,7 @@ task 2, lines 18-21: //> TransferObjects([Result(0), Result(1)], Input(0)) created: object(2,0), object(2,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3397200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3397200, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, lines 23-25: //# programmable --sender A --inputs object(2,0) object(2,1) diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/private_entry_value_restriction_type_check.exp b/crates/iota-adapter-transactional-tests/tests/programmable/private_entry_value_restriction_type_check.exp index 7a841808714..d9e060b7b20 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/private_entry_value_restriction_type_check.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/private_entry_value_restriction_type_check.exp @@ -7,7 +7,7 @@ task 1, lines 9-16: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 4894400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4894400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 18-20: //# programmable --sender A --inputs @A @@ -15,7 +15,7 @@ task 2, lines 18-20: //> TransferObjects([Result(0)], Input(0)) created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2188800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2188800, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, lines 22-24: //# programmable --sender A --inputs object(2,0) diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/private_transfer_invalid.exp b/crates/iota-adapter-transactional-tests/tests/programmable/private_transfer_invalid.exp index c406fa4ef54..627570bc58d 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/private_transfer_invalid.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/private_transfer_invalid.exp @@ -7,7 +7,7 @@ task 1, lines 9-18: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 5221200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5221200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 20-22: //# programmable --sender A --inputs @A diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/private_transfer_valid.exp b/crates/iota-adapter-transactional-tests/tests/programmable/private_transfer_valid.exp index a483976df58..8abcd29d0ae 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/private_transfer_valid.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/private_transfer_valid.exp @@ -7,7 +7,7 @@ task 1, lines 9-13: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 4620800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4620800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 15-17: //# programmable --sender A --inputs @A @@ -15,7 +15,7 @@ task 2, lines 15-17: //> iota::transfer::public_transfer(Result(0), Input(0)); created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2204000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2204000, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 19: //# view-object 2,0 @@ -35,7 +35,7 @@ task 4, lines 21-23: //> iota::transfer::public_share_object(Result(0)); created: object(4,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2204000, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2204000, storage_rebate: 980400, non_refundable_storage_fee: 0 task 5, line 25: //# view-object 4,0 @@ -55,7 +55,7 @@ task 6, lines 27-29: //> iota::transfer::public_freeze_object(Result(0)); created: object(6,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2204000, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2204000, storage_rebate: 980400, non_refundable_storage_fee: 0 task 7, line 31: //# view-object 6,0 diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/pure_arg_type_change.exp b/crates/iota-adapter-transactional-tests/tests/programmable/pure_arg_type_change.exp index 757999840ca..259a6cb4757 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/pure_arg_type_change.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/pure_arg_type_change.exp @@ -7,7 +7,7 @@ task 1, lines 9-26: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 5373200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5373200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 28-34: //# programmable --inputs "hello" diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/split_coins.exp b/crates/iota-adapter-transactional-tests/tests/programmable/split_coins.exp index eee9e2b6a1c..d8a0f8c589c 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/split_coins.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/split_coins.exp @@ -7,7 +7,7 @@ task 1, lines 10-23: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 5684800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5684800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 25-29: //# programmable --sender A --inputs 100000 @A @@ -16,13 +16,13 @@ task 2, lines 25-29: // let's get ourselves a coin worth 1000 created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 1960800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 1960800, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 30: //# run iota::pay::split_and_transfer --type-args iota::iota::IOTA --args object(2,0) 1000 @A --sender A created: object(3,0) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2941200, storage_rebate: 1960800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2941200, storage_rebate: 1960800, non_refundable_storage_fee: 0 task 4, lines 32-34: //# view-object 3,0 @@ -45,7 +45,7 @@ task 5, lines 35-37: //> TransferObjects([NestedResult(0,0)], Input(2)); created: object(5,0) mutated: object(0,0), object(3,0) -gas summary: computation_cost: 1000000, storage_cost: 2941200, storage_rebate: 1960800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2941200, storage_rebate: 1960800, non_refundable_storage_fee: 0 task 6, line 39: //# view-object 3,0 @@ -83,7 +83,7 @@ task 8, lines 45-47: //> TransferObjects([NestedResult(0,0), NestedResult(0,1)], Input(2)); created: object(8,0), object(8,1) mutated: object(0,0), object(3,0) -gas summary: computation_cost: 1000000, storage_cost: 3921600, storage_rebate: 1960800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3921600, storage_rebate: 1960800, non_refundable_storage_fee: 0 task 9, line 49: //# view-object 3,0 @@ -137,7 +137,7 @@ task 12, lines 56-59: //> TransferObjects([NestedResult(1,0), NestedResult(1,1)], Input(2)); created: object(12,0), object(12,1) mutated: object(0,0), object(3,0) -gas summary: computation_cost: 1000000, storage_cost: 3921600, storage_rebate: 1960800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3921600, storage_rebate: 1960800, non_refundable_storage_fee: 0 task 13, line 61: //# view-object 3,0 @@ -192,7 +192,7 @@ task 16, lines 69-73: //> test::m1::transfer_(Result(2), Input(2)); created: object(16,0), object(16,1) mutated: object(0,0), object(3,0) -gas summary: computation_cost: 1000000, storage_cost: 3921600, storage_rebate: 1960800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3921600, storage_rebate: 1960800, non_refundable_storage_fee: 0 task 17, line 75: //# view-object 3,0 diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/split_coins_invalid.exp b/crates/iota-adapter-transactional-tests/tests/programmable/split_coins_invalid.exp index be2d443e59a..c3f3ae52122 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/split_coins_invalid.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/split_coins_invalid.exp @@ -7,7 +7,7 @@ task 1, lines 10-25: //# publish created: object(1,0) mutated: object(0,3) -gas summary: computation_cost: 1000000, storage_cost: 5646800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5646800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 27-31: //# programmable --sender A --inputs 100000 @A @@ -16,13 +16,13 @@ task 2, lines 27-31: // let's get ourselves a coin worth 1000 created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 1960800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 1960800, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 32: //# run iota::pay::split_and_transfer --type-args iota::iota::IOTA --args object(2,0) 1000 @A --sender A created: object(3,0) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2941200, storage_rebate: 1960800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2941200, storage_rebate: 1960800, non_refundable_storage_fee: 0 task 4, lines 34-36: //# view-object 3,0 diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/transfer_objects.exp b/crates/iota-adapter-transactional-tests/tests/programmable/transfer_objects.exp index 34fb861b1f3..6d812f5162f 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/transfer_objects.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/transfer_objects.exp @@ -7,7 +7,7 @@ task 1, lines 9-33: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 5996400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5996400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 34-36: //# programmable --sender A --inputs @A @@ -15,7 +15,7 @@ task 2, lines 34-36: //> TransferObjects([Result(0)], Input(0)); created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2264800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2264800, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, lines 38-40: //# view-object 0,0 @@ -39,7 +39,7 @@ task 4, lines 41-44: //> TransferObjects([Result(1)], Result(0)); created: object(4,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2264800, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2264800, storage_rebate: 980400, non_refundable_storage_fee: 0 task 5, lines 46-48: //# view-object 4,0 @@ -63,7 +63,7 @@ task 6, lines 49-54: //> TransferObjects([Result(2)], Result(3)); created: object(6,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2264800, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2264800, storage_rebate: 980400, non_refundable_storage_fee: 0 task 7, lines 56-58: //# view-object 6,0 @@ -89,7 +89,7 @@ task 8, lines 59-66: //> TransferObjects([Result(4), Result(2), Result(5)], Result(3)); created: object(8,0), object(8,1), object(8,2) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5358000, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5358000, storage_rebate: 980400, non_refundable_storage_fee: 0 task 9, line 68: //# view-object 8,0 diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/transfer_objects_invalid_address.exp b/crates/iota-adapter-transactional-tests/tests/programmable/transfer_objects_invalid_address.exp index 6c75ab10034..b3495badcc3 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/transfer_objects_invalid_address.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/transfer_objects_invalid_address.exp @@ -7,7 +7,7 @@ task 1, lines 9-29: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 5624000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5624000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 30-34: //# programmable --sender A --inputs 0u64 diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/transfer_objects_invalid_object.exp b/crates/iota-adapter-transactional-tests/tests/programmable/transfer_objects_invalid_object.exp index ccb388828c6..bfb71f26c99 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/transfer_objects_invalid_object.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/transfer_objects_invalid_object.exp @@ -7,7 +7,7 @@ task 1, lines 9-36: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 6140800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6140800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 37-40: //# programmable --sender A --inputs @A diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/unused_values_invalid.exp b/crates/iota-adapter-transactional-tests/tests/programmable/unused_values_invalid.exp index 8f82ab79f25..b379e6ed285 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/unused_values_invalid.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/unused_values_invalid.exp @@ -7,7 +7,7 @@ task 1, lines 9-25: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 6596800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6596800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 27-32: //# programmable --sender A --inputs @A diff --git a/crates/iota-adapter-transactional-tests/tests/programmable/unused_values_valid.exp b/crates/iota-adapter-transactional-tests/tests/programmable/unused_values_valid.exp index 5d470dfb79d..867c31f5faa 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable/unused_values_valid.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable/unused_values_valid.exp @@ -7,7 +7,7 @@ task 1, lines 9-31: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 7235200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7235200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 32-36: //# programmable --sender A --inputs @A @@ -16,7 +16,7 @@ task 2, lines 32-36: // unused inputs and unused objects and unused results of various kinds created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2188800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2188800, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, lines 37-42: //# programmable --sender A --inputs object(2,0) 0 vector[@0,@0] @@ -25,7 +25,7 @@ task 3, lines 37-42: //> 2: test::m1::cup(Result(0)); // unconsumed copyable value, but most recent usage was by-value mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2188800, storage_rebate: 2188800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2188800, storage_rebate: 2188800, non_refundable_storage_fee: 0 task 4, lines 43-50: //# programmable --sender A @@ -36,10 +36,10 @@ task 4, lines 43-50: //> 4: test::m1::copy_(Result(0)); // unused pure that was cast mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 5, lines 51-52: //# programmable --sender A --inputs 0 //> test::m1::num_mut(Input(0)) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/programmable_transaction_examples/coin_limit.exp b/crates/iota-adapter-transactional-tests/tests/programmable_transaction_examples/coin_limit.exp index bcae07574eb..5df829ff02d 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable_transaction_examples/coin_limit.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable_transaction_examples/coin_limit.exp @@ -7,7 +7,7 @@ task 1, lines 7-26: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 6657600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6657600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 27-30: //# programmable --sender A --inputs 100 --gas-budget 10000000000 @@ -15,7 +15,7 @@ task 2, lines 27-30: //> 1: test::m1::purchase(Result(0)); created: object(2,0), object(2,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3237600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3237600, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 32: //# view-object 2,0 @@ -60,7 +60,7 @@ task 6, lines 43-48: //> TransferObjects([Result(1), Result(2)], Input(1)); created: object(6,0), object(6,1), object(6,2), object(6,3) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5494800, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5494800, storage_rebate: 980400, non_refundable_storage_fee: 0 task 7, line 50: //# view-object 6,0 diff --git a/crates/iota-adapter-transactional-tests/tests/programmable_transaction_examples/make_vec.exp b/crates/iota-adapter-transactional-tests/tests/programmable_transaction_examples/make_vec.exp index ea1fb4ab4cb..b5ee128d315 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable_transaction_examples/make_vec.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable_transaction_examples/make_vec.exp @@ -7,7 +7,7 @@ task 1, lines 7-50: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 8724800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 8724800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 52-58: //# programmable --inputs 112u64 @@ -18,7 +18,7 @@ task 2, lines 52-58: //> 2: MakeMoveVec>([Result(0), Result(0)]); //> 3: test::m1::vec_vec_u64(Result(2)); mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 3, lines 60-66: //# programmable --inputs vector[226u8,157u8,164u8,239u8,184u8,143u8] @@ -29,7 +29,7 @@ task 3, lines 60-66: //> 2: MakeMoveVec>([Result(0), Result(0)]); //> 3: test::m1::vec_vec_string(Result(2)); mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 4, lines 68-71: //# programmable --inputs vector[vector[226u8,157u8,164u8,239u8,184u8,143u8]] vector[] @@ -37,7 +37,7 @@ task 4, lines 68-71: //> 0: MakeMoveVec>([Input(0), Input(1)]); //> 1: test::m1::vec_option_string(Result(0)); mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 5, lines 73-76: //# programmable --inputs vector[255u8,157u8,164u8,239u8,184u8,143u8] @@ -54,4 +54,4 @@ task 6, lines 78-82: //> 2: MakeMoveVec([Result(0), Result(1)]); //> 3: test::m1::burn_markers(Result(2)); mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 0, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/programmable_transaction_examples/make_vec_shared.exp b/crates/iota-adapter-transactional-tests/tests/programmable_transaction_examples/make_vec_shared.exp index 15e6a3ae22b..56b167190c0 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable_transaction_examples/make_vec_shared.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable_transaction_examples/make_vec_shared.exp @@ -7,13 +7,13 @@ task 1, lines 9-30: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 6026800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6026800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 32: //# run t2::o2::create created: object(2,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 2211600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2211600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 3, line 34: //# view-object 2,0 @@ -33,4 +33,4 @@ task 4, lines 36-38: //> t2::o2::consume(Result(0)) mutated: object(0,0) deleted: object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 1231200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 1231200, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/programmable_transaction_examples/merge_coin_shared.exp b/crates/iota-adapter-transactional-tests/tests/programmable_transaction_examples/merge_coin_shared.exp index d4f21c8266c..0452ac15785 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable_transaction_examples/merge_coin_shared.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable_transaction_examples/merge_coin_shared.exp @@ -7,13 +7,13 @@ task 1, lines 9-27: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 5190800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5190800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 29: //# run test::m1::mint_shared created: object(2,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2272400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2272400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 3, line 31: //# view-object 2,0 diff --git a/crates/iota-adapter-transactional-tests/tests/programmable_transaction_examples/merge_coin_shared_real_coin.exp b/crates/iota-adapter-transactional-tests/tests/programmable_transaction_examples/merge_coin_shared_real_coin.exp index b7f5d95f81f..9d1e5d57c9d 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable_transaction_examples/merge_coin_shared_real_coin.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable_transaction_examples/merge_coin_shared_real_coin.exp @@ -7,13 +7,13 @@ task 1, lines 9-18: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 4818400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4818400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 20: //# run test::m1::mint_shared created: object(2,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 1960800, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 1960800, storage_rebate: 980400, non_refundable_storage_fee: 0 task 3, line 22: //# view-object 2,0 @@ -35,4 +35,4 @@ task 4, lines 24-25: //> MergeCoins(Gas, [Input(0)]) mutated: object(0,0) deleted: object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/programmable_transaction_examples/publish.exp b/crates/iota-adapter-transactional-tests/tests/programmable_transaction_examples/publish.exp index 3351eda8e43..88afa4c34d8 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable_transaction_examples/publish.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable_transaction_examples/publish.exp @@ -12,7 +12,7 @@ task 3, lines 29-34: //> TransferObjects([Result(1), Result(3)], Input(1)) created: object(3,0), object(3,1), object(3,2), object(3,3), object(3,4) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 8846400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 8846400, storage_rebate: 0, non_refundable_storage_fee: 0 task 4, line 36: //# view-object 3,3 @@ -27,15 +27,15 @@ task 8, lines 44-46: //> 0: q::m::x(); //> p::m::foo(Result(0)) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 9, lines 48-53: //# publish --dependencies p q created: object(9,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 5213600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5213600, storage_rebate: 0, non_refundable_storage_fee: 0 task 10, line 55: //# run r::all::foo_x mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/programmable_transaction_examples/receipt.exp b/crates/iota-adapter-transactional-tests/tests/programmable_transaction_examples/receipt.exp index 7f2213e43b1..991cd7def83 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable_transaction_examples/receipt.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable_transaction_examples/receipt.exp @@ -4,7 +4,7 @@ task 1, lines 7-24: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 6216800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6216800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 26-30: //# programmable @@ -13,7 +13,7 @@ task 2, lines 26-30: //> test::m1::epilogue(Result(0)); created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2234400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2234400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 3, line 32: //# view-object 2,0 diff --git a/crates/iota-adapter-transactional-tests/tests/programmable_transaction_examples/split_coin_share.exp b/crates/iota-adapter-transactional-tests/tests/programmable_transaction_examples/split_coin_share.exp index ba3d3cb1fe8..b91f381b3c2 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable_transaction_examples/split_coin_share.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable_transaction_examples/split_coin_share.exp @@ -7,7 +7,7 @@ task 1, lines 7-19: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 5000800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5000800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 21-23: //# programmable --sender A --inputs 10 @@ -15,7 +15,7 @@ task 2, lines 21-23: //> 1: iota::transfer::public_share_object>(Result(0)); created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 1960800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 1960800, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, lines 25-27: //# programmable --sender A --inputs 10 @@ -23,13 +23,13 @@ task 3, lines 25-27: //> 1: p::m::sharer>(Result(0)); created: object(3,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 1960800, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 1960800, storage_rebate: 980400, non_refundable_storage_fee: 0 task 4, line 29: //# run p::m::mint_shared created: object(4,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 1960800, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 1960800, storage_rebate: 980400, non_refundable_storage_fee: 0 task 5, lines 31-33: //# view-object 4,0 @@ -53,7 +53,7 @@ task 6, lines 34-38: // This is not OK -- split off from a shared object and transfer shared object created: object(6,0) mutated: object(0,0), object(4,0) -gas summary: computation_cost: 1000000, storage_cost: 2941200, storage_rebate: 1960800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2941200, storage_rebate: 1960800, non_refundable_storage_fee: 0 task 7, lines 39-42: //# programmable --sender A --inputs 0 object(4,0) @A diff --git a/crates/iota-adapter-transactional-tests/tests/programmable_transaction_examples/transfer_shared.exp b/crates/iota-adapter-transactional-tests/tests/programmable_transaction_examples/transfer_shared.exp index e54e0882764..7c5fdfa5937 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable_transaction_examples/transfer_shared.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable_transaction_examples/transfer_shared.exp @@ -7,13 +7,13 @@ task 1, lines 9-23: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 5023600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5023600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 25: //# run t2::o2::create created: object(2,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 2211600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2211600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 3, line 27: //# view-object 2,0 diff --git a/crates/iota-adapter-transactional-tests/tests/programmable_transaction_examples/upgrade.exp b/crates/iota-adapter-transactional-tests/tests/programmable_transaction_examples/upgrade.exp index 56266d5e039..999787c962f 100644 --- a/crates/iota-adapter-transactional-tests/tests/programmable_transaction_examples/upgrade.exp +++ b/crates/iota-adapter-transactional-tests/tests/programmable_transaction_examples/upgrade.exp @@ -7,19 +7,19 @@ task 1, lines 9-19: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 4347200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4347200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 21-24: //# publish --upgradeable --sender A created: object(2,0), object(2,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5061600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5061600, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, lines 26-29: //# publish created: object(3,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 3435200, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3435200, storage_rebate: 980400, non_refundable_storage_fee: 0 task 5, lines 37-42: //# programmable --sender A --inputs 10 @A object(2,0) 0u8 digest(q_2) @@ -30,7 +30,7 @@ task 5, lines 37-42: //> iota::package::commit_upgrade(Input(2), Result(2)) created: object(5,0), object(5,1) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 7030000, storage_rebate: 2606800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7030000, storage_rebate: 2606800, non_refundable_storage_fee: 0 task 6, lines 44-46: //# programmable --sender A @@ -44,15 +44,15 @@ task 8, lines 50-52: //> 0: q_2::m::x(); //> p::m::foo(Result(0)) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 9, lines 54-59: //# publish --dependencies p q_2 r created: object(9,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 5760800, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5760800, storage_rebate: 980400, non_refundable_storage_fee: 0 task 10, line 61: //# run s::all::foo_x mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/publish/init.exp b/crates/iota-adapter-transactional-tests/tests/publish/init.exp index 9d345b34928..2bde284c4f5 100644 --- a/crates/iota-adapter-transactional-tests/tests/publish/init.exp +++ b/crates/iota-adapter-transactional-tests/tests/publish/init.exp @@ -4,7 +4,7 @@ task 1, lines 7-20: //# publish created: object(1,0), object(1,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 6627200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6627200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 22: //# view-object 1,1 diff --git a/crates/iota-adapter-transactional-tests/tests/publish/multi_module_publish.exp b/crates/iota-adapter-transactional-tests/tests/publish/multi_module_publish.exp index 825b5ac63b1..4514d3ef2dd 100644 --- a/crates/iota-adapter-transactional-tests/tests/publish/multi_module_publish.exp +++ b/crates/iota-adapter-transactional-tests/tests/publish/multi_module_publish.exp @@ -4,7 +4,7 @@ task 1, lines 7-14: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5038800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5038800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 16: //# view-object 1,0 diff --git a/crates/iota-adapter-transactional-tests/tests/publish/publish_with_upgrade.exp b/crates/iota-adapter-transactional-tests/tests/publish/publish_with_upgrade.exp index bb23cb33819..9974bef7c0d 100644 --- a/crates/iota-adapter-transactional-tests/tests/publish/publish_with_upgrade.exp +++ b/crates/iota-adapter-transactional-tests/tests/publish/publish_with_upgrade.exp @@ -4,7 +4,7 @@ task 1, lines 7-10: //# publish --upgradeable created: object(1,0), object(1,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5517600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5517600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 12: //# view-object 1,1 diff --git a/crates/iota-adapter-transactional-tests/tests/random/happy_flows.exp b/crates/iota-adapter-transactional-tests/tests/random/happy_flows.exp index c7a10a8d7b4..cdbf46a875f 100644 --- a/crates/iota-adapter-transactional-tests/tests/random/happy_flows.exp +++ b/crates/iota-adapter-transactional-tests/tests/random/happy_flows.exp @@ -7,7 +7,7 @@ task 1, lines 7-26: //# publish --sender A created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 6201600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6201600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 27-30: //# programmable --sender A --inputs immshared(8) @@ -15,7 +15,7 @@ task 2, lines 27-30: // Good tx - use Clock and then Random mutated: object(0,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000008 -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 3, lines 31-35: //# programmable --sender A --inputs immshared(6) immshared(8) @A @@ -24,7 +24,7 @@ task 3, lines 31-35: // Good tx - use value and then Random mutated: object(0,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000006, 0x0000000000000000000000000000000000000000000000000000000000000008 -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 4, lines 36-40: //# programmable --sender A --inputs 10 immshared(8) @A @@ -33,7 +33,7 @@ task 4, lines 36-40: // Good tx - use Clock, then Random, then transfer mutated: object(0,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000008 -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 5, lines 41-47: //# programmable --sender A --inputs 10 immshared(6) immshared(8) @B @@ -45,7 +45,7 @@ task 5, lines 41-47: created: object(5,0) mutated: object(0,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000006, 0x0000000000000000000000000000000000000000000000000000000000000008 -gas summary: computation_cost: 1000000, storage_cost: 1960800, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 1960800, storage_rebate: 980400, non_refundable_storage_fee: 0 task 6, lines 48-54: //# programmable --sender A --inputs 10 immshared(6) immshared(8) @B @@ -56,11 +56,11 @@ task 6, lines 48-54: // Good tx - use Random twice in the same call mutated: object(0,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000006, 0x0000000000000000000000000000000000000000000000000000000000000008 -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 7, lines 55-56: //# programmable --sender A --inputs immshared(8) //> test::random::use_random_twice(Input(0), Input(0)); mutated: object(0,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000008 -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/random/move_call_clock_after_random.exp b/crates/iota-adapter-transactional-tests/tests/random/move_call_clock_after_random.exp index 21bc2b6e916..08bbe44dfed 100644 --- a/crates/iota-adapter-transactional-tests/tests/random/move_call_clock_after_random.exp +++ b/crates/iota-adapter-transactional-tests/tests/random/move_call_clock_after_random.exp @@ -7,7 +7,7 @@ task 1, lines 7-16: //# publish --sender A created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4233200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4233200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 17-19: //# programmable --sender A --inputs immshared(8) immshared(6) @A diff --git a/crates/iota-adapter-transactional-tests/tests/random/move_call_clock_after_random_and_transfer.exp b/crates/iota-adapter-transactional-tests/tests/random/move_call_clock_after_random_and_transfer.exp index 6ef1d3c0598..14b379f2406 100644 --- a/crates/iota-adapter-transactional-tests/tests/random/move_call_clock_after_random_and_transfer.exp +++ b/crates/iota-adapter-transactional-tests/tests/random/move_call_clock_after_random_and_transfer.exp @@ -7,7 +7,7 @@ task 1, lines 7-16: //# publish --sender A created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4233200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4233200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 17-21: //# programmable --sender A --inputs 10 immshared(8) immshared(6) @B diff --git a/crates/iota-adapter-transactional-tests/tests/random/move_call_u64_after_random.exp b/crates/iota-adapter-transactional-tests/tests/random/move_call_u64_after_random.exp index 7e5981a0ca9..79a41e3daa2 100644 --- a/crates/iota-adapter-transactional-tests/tests/random/move_call_u64_after_random.exp +++ b/crates/iota-adapter-transactional-tests/tests/random/move_call_u64_after_random.exp @@ -7,7 +7,7 @@ task 1, lines 7-15: //# publish --sender A created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4073600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4073600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 16-18: //# programmable --sender A --inputs 16 immshared(8) diff --git a/crates/iota-adapter-transactional-tests/tests/random/two_move_calls_with_random.exp b/crates/iota-adapter-transactional-tests/tests/random/two_move_calls_with_random.exp index 441f0e53091..985b1930d33 100644 --- a/crates/iota-adapter-transactional-tests/tests/random/two_move_calls_with_random.exp +++ b/crates/iota-adapter-transactional-tests/tests/random/two_move_calls_with_random.exp @@ -7,7 +7,7 @@ task 1, lines 7-14: //# publish --sender A created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3891200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3891200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 15-17: //# programmable --sender A --inputs immshared(8) @A diff --git a/crates/iota-adapter-transactional-tests/tests/receive_object/basic_receive.exp b/crates/iota-adapter-transactional-tests/tests/receive_object/basic_receive.exp index 06c66c17607..81f51cdb649 100644 --- a/crates/iota-adapter-transactional-tests/tests/receive_object/basic_receive.exp +++ b/crates/iota-adapter-transactional-tests/tests/receive_object/basic_receive.exp @@ -4,13 +4,13 @@ task 1, lines 7-31: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 6916000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6916000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 33: //# run tto::M1::start created: object(2,0), object(2,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3397200, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3397200, storage_rebate: 980400, non_refundable_storage_fee: 0 task 3, line 35: //# view-object 2,0 @@ -39,7 +39,7 @@ Contents: tto::M1::B { task 5, line 40: //# run tto::M1::receiver --args object(2,0) receiving(2,1) mutated: object(0,0), object(2,0), object(2,1) -gas summary: computation_cost: 1000000, storage_cost: 3397200, storage_rebate: 3397200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3397200, storage_rebate: 3397200, non_refundable_storage_fee: 0 task 6, line 42: //# view-object 2,0 diff --git a/crates/iota-adapter-transactional-tests/tests/receive_object/drop_receiving.exp b/crates/iota-adapter-transactional-tests/tests/receive_object/drop_receiving.exp index 3545ef45c51..5267688fe4d 100644 --- a/crates/iota-adapter-transactional-tests/tests/receive_object/drop_receiving.exp +++ b/crates/iota-adapter-transactional-tests/tests/receive_object/drop_receiving.exp @@ -4,20 +4,20 @@ task 1, lines 7-35: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 7136400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7136400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 37: //# run tto::M1::start created: object(2,0), object(2,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3397200, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3397200, storage_rebate: 980400, non_refundable_storage_fee: 0 task 3, lines 39-42: //# programmable --inputs object(2,0) receiving(2,1) //> tto::M1::send_back(Input(0), Input(1)) // Include the receiving argument, but don't use it at the PTB level mutated: object(0,0), object(2,0), object(2,1) -gas summary: computation_cost: 1000000, storage_cost: 3397200, storage_rebate: 3397200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3397200, storage_rebate: 3397200, non_refundable_storage_fee: 0 task 4, lines 43-47: //# programmable --inputs object(2,0) receiving(2,1) @@ -25,10 +25,10 @@ task 4, lines 43-47: // Include the receiving argument, but don't use it at the Move level. The // receiving object should not be mutated by this. mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2188800, storage_rebate: 2188800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2188800, storage_rebate: 2188800, non_refundable_storage_fee: 0 task 5, lines 48-49: //# programmable --inputs object(2,0) receiving(2,1) //> tto::M1::nop_with_receiver(Input(0), Input(1)) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2188800, storage_rebate: 2188800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2188800, storage_rebate: 2188800, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/receive_object/duplicate_receive_argument.exp b/crates/iota-adapter-transactional-tests/tests/receive_object/duplicate_receive_argument.exp index 139270fba68..4ea16eb1414 100644 --- a/crates/iota-adapter-transactional-tests/tests/receive_object/duplicate_receive_argument.exp +++ b/crates/iota-adapter-transactional-tests/tests/receive_object/duplicate_receive_argument.exp @@ -4,20 +4,20 @@ task 1, lines 7-32: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 6748800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6748800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 34: //# run tto::M1::start created: object(2,0), object(2,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3397200, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3397200, storage_rebate: 980400, non_refundable_storage_fee: 0 task 3, lines 36-39: //# programmable --inputs object(2,0) receiving(2,1) //> tto::M1::send_back(Input(0), Input(1)) // Duplicate object ref in input mutated: object(0,0), object(2,0), object(2,1) -gas summary: computation_cost: 1000000, storage_cost: 3397200, storage_rebate: 3397200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3397200, storage_rebate: 3397200, non_refundable_storage_fee: 0 task 4, lines 40-43: //# programmable --inputs object(2,0) receiving(2,1) receiving(2,1) diff --git a/crates/iota-adapter-transactional-tests/tests/receive_object/move_vec_receiving_types.exp b/crates/iota-adapter-transactional-tests/tests/receive_object/move_vec_receiving_types.exp index 564fb96038e..f2c18fec939 100644 --- a/crates/iota-adapter-transactional-tests/tests/receive_object/move_vec_receiving_types.exp +++ b/crates/iota-adapter-transactional-tests/tests/receive_object/move_vec_receiving_types.exp @@ -4,13 +4,13 @@ task 1, lines 7-64: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 10571600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 10571600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 66: //# run tto::M1::start created: object(2,0), object(2,1), object(2,2), object(2,3), object(2,4) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 7022400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7022400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 3, line 68: //# view-object 2,0 @@ -77,7 +77,7 @@ task 8, lines 79-82: //> 0: MakeMoveVec>([Input(1), Input(2), Input(3), Input(4)]); // As long as you don't load the object the type will not be checked. mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2188800, storage_rebate: 2188800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2188800, storage_rebate: 2188800, non_refundable_storage_fee: 0 task 9, lines 83-87: //# programmable --inputs object(2,0) receiving(2,1) receiving(2,2) receiving(2,3) receiving(2,4) @@ -85,7 +85,7 @@ task 9, lines 83-87: //> 1: tto::M1::receive_none(Result(0)); // Try to pass the wrong-type move vec to the function mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2188800, storage_rebate: 2188800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2188800, storage_rebate: 2188800, non_refundable_storage_fee: 0 task 10, lines 88-93: //# programmable --inputs object(2,0) receiving(2,1) receiving(2,2) receiving(2,3) receiving(2,4) diff --git a/crates/iota-adapter-transactional-tests/tests/receive_object/pass_receiver_immut_then_reuse.exp b/crates/iota-adapter-transactional-tests/tests/receive_object/pass_receiver_immut_then_reuse.exp index b13d38bbb66..133a72daf98 100644 --- a/crates/iota-adapter-transactional-tests/tests/receive_object/pass_receiver_immut_then_reuse.exp +++ b/crates/iota-adapter-transactional-tests/tests/receive_object/pass_receiver_immut_then_reuse.exp @@ -4,13 +4,13 @@ task 1, lines 7-33: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 7166800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7166800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 35: //# run tto::M1::start created: object(2,0), object(2,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3397200, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3397200, storage_rebate: 980400, non_refundable_storage_fee: 0 task 3, line 37: //# view-object 2,0 @@ -41,4 +41,4 @@ task 5, lines 42-44: //> tto::M1::pass_through(Input(1)); //> tto::M1::receiver(Input(0), Input(1)); mutated: object(0,0), object(2,0), object(2,1) -gas summary: computation_cost: 1000000, storage_cost: 3397200, storage_rebate: 3397200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3397200, storage_rebate: 3397200, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/receive_object/pass_receiver_mut_then_reuse.exp b/crates/iota-adapter-transactional-tests/tests/receive_object/pass_receiver_mut_then_reuse.exp index b13d38bbb66..133a72daf98 100644 --- a/crates/iota-adapter-transactional-tests/tests/receive_object/pass_receiver_mut_then_reuse.exp +++ b/crates/iota-adapter-transactional-tests/tests/receive_object/pass_receiver_mut_then_reuse.exp @@ -4,13 +4,13 @@ task 1, lines 7-33: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 7166800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7166800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 35: //# run tto::M1::start created: object(2,0), object(2,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3397200, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3397200, storage_rebate: 980400, non_refundable_storage_fee: 0 task 3, line 37: //# view-object 2,0 @@ -41,4 +41,4 @@ task 5, lines 42-44: //> tto::M1::pass_through(Input(1)); //> tto::M1::receiver(Input(0), Input(1)); mutated: object(0,0), object(2,0), object(2,1) -gas summary: computation_cost: 1000000, storage_cost: 3397200, storage_rebate: 3397200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3397200, storage_rebate: 3397200, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/receive_object/pt_receive_type_fixing.exp b/crates/iota-adapter-transactional-tests/tests/receive_object/pt_receive_type_fixing.exp index 90095fcb905..e03e30fe31b 100644 --- a/crates/iota-adapter-transactional-tests/tests/receive_object/pt_receive_type_fixing.exp +++ b/crates/iota-adapter-transactional-tests/tests/receive_object/pt_receive_type_fixing.exp @@ -4,13 +4,13 @@ task 1, lines 7-51: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 8930000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 8930000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 53: //# run tto::M1::start created: object(2,0), object(2,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3397200, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3397200, storage_rebate: 980400, non_refundable_storage_fee: 0 task 3, line 55: //# view-object 2,0 @@ -41,7 +41,7 @@ task 5, lines 61-63: //> 0: tto::M1::pass_through(Input(1)); //> tto::M1::receiver(Input(0), Result(0)); mutated: object(0,0), object(2,0), object(2,1) -gas summary: computation_cost: 1000000, storage_cost: 3397200, storage_rebate: 3397200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3397200, storage_rebate: 3397200, non_refundable_storage_fee: 0 task 6, lines 65-67: //# programmable --inputs object(2,0) receiving(2,1) diff --git a/crates/iota-adapter-transactional-tests/tests/receive_object/receive_add_dof_and_mutate.exp b/crates/iota-adapter-transactional-tests/tests/receive_object/receive_add_dof_and_mutate.exp index 9cd20ab7b97..77d2b4c4972 100644 --- a/crates/iota-adapter-transactional-tests/tests/receive_object/receive_add_dof_and_mutate.exp +++ b/crates/iota-adapter-transactional-tests/tests/receive_object/receive_add_dof_and_mutate.exp @@ -7,13 +7,13 @@ task 1, lines 7-37: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 7828000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7828000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 39: //# run tto::M1::start created: object(2,0), object(2,1) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 3518800, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3518800, storage_rebate: 980400, non_refundable_storage_fee: 0 task 3, line 41: //# view-object 2,0 @@ -45,7 +45,7 @@ task 5, line 45: //# run tto::M1::receive --args object(2,1) receiving(2,0) created: object(5,0), object(5,1), object(5,2) mutated: object(0,1), object(2,0), object(2,1) -gas summary: computation_cost: 1000000, storage_cost: 9682400, storage_rebate: 3518800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 9682400, storage_rebate: 3518800, non_refundable_storage_fee: 0 task 6, line 47: //# view-object 2,0 diff --git a/crates/iota-adapter-transactional-tests/tests/receive_object/receive_and_abort.exp b/crates/iota-adapter-transactional-tests/tests/receive_object/receive_and_abort.exp index 00100edc61b..c00acfca7c5 100644 --- a/crates/iota-adapter-transactional-tests/tests/receive_object/receive_and_abort.exp +++ b/crates/iota-adapter-transactional-tests/tests/receive_object/receive_and_abort.exp @@ -4,13 +4,13 @@ task 1, lines 7-31: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 6680400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6680400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 33: //# run tto::M1::start created: object(2,0), object(2,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3397200, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3397200, storage_rebate: 980400, non_refundable_storage_fee: 0 task 3, line 35: //# view-object 2,0 diff --git a/crates/iota-adapter-transactional-tests/tests/receive_object/receive_and_deleted.exp b/crates/iota-adapter-transactional-tests/tests/receive_object/receive_and_deleted.exp index e66087ea312..6fdd83dfa03 100644 --- a/crates/iota-adapter-transactional-tests/tests/receive_object/receive_and_deleted.exp +++ b/crates/iota-adapter-transactional-tests/tests/receive_object/receive_and_deleted.exp @@ -4,13 +4,13 @@ task 1, lines 7-31: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 6718400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6718400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 33: //# run tto::M1::start created: object(2,0), object(2,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3397200, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3397200, storage_rebate: 980400, non_refundable_storage_fee: 0 task 3, line 35: //# view-object 2,0 @@ -40,7 +40,7 @@ task 5, line 40: //# run tto::M1::deleter --args object(2,0) receiving(2,1) mutated: object(0,0), object(2,0) deleted: object(2,1) -gas summary: computation_cost: 1000000, storage_cost: 2188800, storage_rebate: 3397200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2188800, storage_rebate: 3397200, non_refundable_storage_fee: 0 task 6, line 42: //# view-object 2,0 diff --git a/crates/iota-adapter-transactional-tests/tests/receive_object/receive_and_send_back.exp b/crates/iota-adapter-transactional-tests/tests/receive_object/receive_and_send_back.exp index 56cfa3920d0..42d60c4a873 100644 --- a/crates/iota-adapter-transactional-tests/tests/receive_object/receive_and_send_back.exp +++ b/crates/iota-adapter-transactional-tests/tests/receive_object/receive_and_send_back.exp @@ -4,13 +4,13 @@ task 1, lines 7-32: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 6748800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6748800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 34: //# run tto::M1::start created: object(2,0), object(2,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3397200, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3397200, storage_rebate: 980400, non_refundable_storage_fee: 0 task 3, line 36: //# view-object 2,0 @@ -39,7 +39,7 @@ Contents: tto::M1::B { task 5, line 41: //# run tto::M1::send_back --args object(2,0) receiving(2,1) mutated: object(0,0), object(2,0), object(2,1) -gas summary: computation_cost: 1000000, storage_cost: 3397200, storage_rebate: 3397200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3397200, storage_rebate: 3397200, non_refundable_storage_fee: 0 task 6, line 43: //# view-object 2,0 diff --git a/crates/iota-adapter-transactional-tests/tests/receive_object/receive_and_wrap.exp b/crates/iota-adapter-transactional-tests/tests/receive_object/receive_and_wrap.exp index 67b6b532395..895dd85d85f 100644 --- a/crates/iota-adapter-transactional-tests/tests/receive_object/receive_and_wrap.exp +++ b/crates/iota-adapter-transactional-tests/tests/receive_object/receive_and_wrap.exp @@ -4,13 +4,13 @@ task 1, lines 7-40: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 7562000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7562000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 42: //# run tto::M1::start created: object(2,0), object(2,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3397200, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3397200, storage_rebate: 980400, non_refundable_storage_fee: 0 task 3, line 44: //# view-object 2,0 @@ -41,7 +41,7 @@ task 5, line 49: created: object(5,0) mutated: object(0,0), object(2,0) wrapped: object(2,1) -gas summary: computation_cost: 1000000, storage_cost: 3686000, storage_rebate: 3397200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3686000, storage_rebate: 3397200, non_refundable_storage_fee: 0 task 6, line 51: //# view-object 2,0 diff --git a/crates/iota-adapter-transactional-tests/tests/receive_object/receive_by_ref.exp b/crates/iota-adapter-transactional-tests/tests/receive_object/receive_by_ref.exp index ae690301ea4..d5cd40e7c65 100644 --- a/crates/iota-adapter-transactional-tests/tests/receive_object/receive_by_ref.exp +++ b/crates/iota-adapter-transactional-tests/tests/receive_object/receive_by_ref.exp @@ -4,13 +4,13 @@ task 1, lines 7-40: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 9864800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 9864800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 42: //# run tto::M1::start created: object(2,0), object(2,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3397200, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3397200, storage_rebate: 980400, non_refundable_storage_fee: 0 task 3, line 44: //# view-object 2,0 @@ -39,12 +39,12 @@ Contents: tto::M1::B { task 5, line 48: //# run tto::M1::call_mut_ref --args object(2,0) receiving(2,1) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2188800, storage_rebate: 2188800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2188800, storage_rebate: 2188800, non_refundable_storage_fee: 0 task 6, line 50: //# run tto::M1::call_immut_ref --args object(2,0) receiving(2,1) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2188800, storage_rebate: 2188800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2188800, storage_rebate: 2188800, non_refundable_storage_fee: 0 task 7, line 52: //# run tto::M1::call_mut_ref_ret --args object(2,0) receiving(2,1) @@ -60,7 +60,7 @@ task 9, lines 56-57: //# programmable --inputs receiving(2,1) //> tto::M1::immut_immut_ref(Input(0), Input(0)) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 10, lines 59-60: //# programmable --inputs receiving(2,1) diff --git a/crates/iota-adapter-transactional-tests/tests/receive_object/receive_by_value_flow_through.exp b/crates/iota-adapter-transactional-tests/tests/receive_object/receive_by_value_flow_through.exp index d31d4f4a147..14519260408 100644 --- a/crates/iota-adapter-transactional-tests/tests/receive_object/receive_by_value_flow_through.exp +++ b/crates/iota-adapter-transactional-tests/tests/receive_object/receive_by_value_flow_through.exp @@ -4,13 +4,13 @@ task 1, lines 7-29: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 6429600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6429600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 31: //# run tto::M1::start created: object(2,0), object(2,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3397200, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3397200, storage_rebate: 980400, non_refundable_storage_fee: 0 task 3, line 33: //# view-object 2,0 @@ -39,9 +39,9 @@ Contents: tto::M1::B { task 5, lines 38-40: //# run tto::M1::flow --args object(2,0) receiving(2,1) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2188800, storage_rebate: 2188800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2188800, storage_rebate: 2188800, non_refundable_storage_fee: 0 task 6, line 41: //# run tto::M1::drop --args object(2,0) receiving(2,1) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2188800, storage_rebate: 2188800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2188800, storage_rebate: 2188800, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/receive_object/receive_dof_and_mutate.exp b/crates/iota-adapter-transactional-tests/tests/receive_object/receive_dof_and_mutate.exp index 8ce89f88dfc..7ae7b518a99 100644 --- a/crates/iota-adapter-transactional-tests/tests/receive_object/receive_dof_and_mutate.exp +++ b/crates/iota-adapter-transactional-tests/tests/receive_object/receive_dof_and_mutate.exp @@ -7,13 +7,13 @@ task 1, lines 7-35: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 7820400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7820400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 37: //# run tto::M1::start --sender A created: object(2,0), object(2,1), object(2,2), object(2,3) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 7235200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7235200, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 39: //# view-object 2,0 @@ -76,7 +76,7 @@ task 7, line 47: //# run tto::M1::receive --args object(2,1) receiving(2,2) --sender A created: object(7,0) mutated: object(0,0), object(2,1), object(2,2) -gas summary: computation_cost: 1000000, storage_cost: 5966000, storage_rebate: 3518800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5966000, storage_rebate: 3518800, non_refundable_storage_fee: 0 task 8, line 49: //# view-object 2,0 diff --git a/crates/iota-adapter-transactional-tests/tests/receive_object/receive_duo_struct.exp b/crates/iota-adapter-transactional-tests/tests/receive_object/receive_duo_struct.exp index 6e252c3e618..0f413e31ad3 100644 --- a/crates/iota-adapter-transactional-tests/tests/receive_object/receive_duo_struct.exp +++ b/crates/iota-adapter-transactional-tests/tests/receive_object/receive_duo_struct.exp @@ -4,13 +4,13 @@ task 1, lines 7-45: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 8063600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 8063600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 47: //# run tto::M1::start created: object(2,0), object(2,1), object(2,2) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4605600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4605600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 3, line 49: //# view-object 2,0 @@ -53,7 +53,7 @@ task 6, lines 56-59: //> 0: tto::M1::make_duo(Input(1), Input(2)) // receive the objects and return them. Error since we need to do something with the returned objects mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2188800, storage_rebate: 2188800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2188800, storage_rebate: 2188800, non_refundable_storage_fee: 0 task 7, lines 60-64: //# programmable --inputs object(2,0) receiving(2,1) receiving(2,1) @@ -68,4 +68,4 @@ task 8, lines 65-68: //> 1: tto::M1::receive_duo(Input(0), Result(0)); //> 2: TransferObjects([NestedResult(1, 0), NestedResult(1, 1)], Input(3)); mutated: object(0,0), object(2,0), object(2,1), object(2,2) -gas summary: computation_cost: 1000000, storage_cost: 4605600, storage_rebate: 4605600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4605600, storage_rebate: 4605600, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/receive_object/receive_invalid_param_ty.exp b/crates/iota-adapter-transactional-tests/tests/receive_object/receive_invalid_param_ty.exp index 1cba8ad67c1..dd9e297c78e 100644 --- a/crates/iota-adapter-transactional-tests/tests/receive_object/receive_invalid_param_ty.exp +++ b/crates/iota-adapter-transactional-tests/tests/receive_object/receive_invalid_param_ty.exp @@ -4,13 +4,13 @@ task 1, lines 7-42: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 8512000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 8512000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 44: //# run tto::M1::start created: object(2,0), object(2,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3397200, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3397200, storage_rebate: 980400, non_refundable_storage_fee: 0 task 3, line 46: //# view-object 2,0 @@ -73,7 +73,7 @@ Execution Error: ExecutionError: ExecutionError { inner: ExecutionErrorInner { k task 12, line 64: //# run tto::M1::receiver6 --args receiving(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 13, line 66: //# run tto::M1::receiver6 --args 0 diff --git a/crates/iota-adapter-transactional-tests/tests/receive_object/receive_invalid_type.exp b/crates/iota-adapter-transactional-tests/tests/receive_object/receive_invalid_type.exp index 25964582eb9..73cef763217 100644 --- a/crates/iota-adapter-transactional-tests/tests/receive_object/receive_invalid_type.exp +++ b/crates/iota-adapter-transactional-tests/tests/receive_object/receive_invalid_type.exp @@ -4,13 +4,13 @@ task 1, lines 7-31: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 6916000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6916000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 33: //# run tto::M1::start created: object(2,0), object(2,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3397200, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3397200, storage_rebate: 980400, non_refundable_storage_fee: 0 task 3, line 35: //# view-object 2,0 diff --git a/crates/iota-adapter-transactional-tests/tests/receive_object/receive_many_move_vec.exp b/crates/iota-adapter-transactional-tests/tests/receive_object/receive_many_move_vec.exp index 18d20c9d6dd..e3607a25ccc 100644 --- a/crates/iota-adapter-transactional-tests/tests/receive_object/receive_many_move_vec.exp +++ b/crates/iota-adapter-transactional-tests/tests/receive_object/receive_many_move_vec.exp @@ -4,13 +4,13 @@ task 1, lines 7-78: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 11278400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 11278400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 80: //# run tto::M1::start created: object(2,0), object(2,1), object(2,2), object(2,3), object(2,4) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 7022400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7022400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 3, line 82: //# view-object 2,0 @@ -77,7 +77,7 @@ task 8, lines 93-96: //> 0: MakeMoveVec>([Input(1), Input(2), Input(3), Input(4)]); // Make the Move vec and pass, but never receive mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2188800, storage_rebate: 2188800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2188800, storage_rebate: 2188800, non_refundable_storage_fee: 0 task 9, lines 97-101: //# programmable --inputs object(2,0) receiving(2,1) receiving(2,2) receiving(2,3) receiving(2,4) @@ -85,7 +85,7 @@ task 9, lines 97-101: //> 1: tto::M1::receive_none(Input(0), Result(0)); // Make the Move vec of receiving arguments and then receive all but the last. Only the ince we receive should be mutated mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2188800, storage_rebate: 2188800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2188800, storage_rebate: 2188800, non_refundable_storage_fee: 0 task 10, lines 102-106: //# programmable --inputs object(2,0) receiving(2,1) receiving(2,2) receiving(2,3) receiving(2,4) @@ -93,7 +93,7 @@ task 10, lines 102-106: //> 1: tto::M1::receive_all_but_last(Input(0), Result(0)); // Make the Move vec of receiving arguments, pass to a function by immref, then later use the vec to receive all of them mutated: object(0,0), object(2,0), object(2,2), object(2,3), object(2,4) -gas summary: computation_cost: 1000000, storage_cost: 5814000, storage_rebate: 5814000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5814000, storage_rebate: 5814000, non_refundable_storage_fee: 0 task 11, lines 107-112: //# programmable --inputs object(2,0) receiving(2,1) receiving(2,2) receiving(2,3) receiving(2,4) @@ -102,7 +102,7 @@ task 11, lines 107-112: //> 2: tto::M1::receive_all_send_back(Input(0), Result(0)); // Make the Move vec of receiving arguments, pass to a function by mutref, then later use the vec to receive all of them mutated: object(0,0), object(2,0), object(2,1), object(2,2), object(2,3), object(2,4) -gas summary: computation_cost: 1000000, storage_cost: 7022400, storage_rebate: 7022400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7022400, storage_rebate: 7022400, non_refundable_storage_fee: 0 task 12, lines 113-118: //# programmable --inputs object(2,0) receiving(2,1) receiving(2,2) receiving(2,3) receiving(2,4) @@ -111,7 +111,7 @@ task 12, lines 113-118: //> 2: tto::M1::receive_all_send_back(Input(0), Result(0)); // Make the Move vec of receiving arguments, pass to a function by mutref and receive some mutated: object(0,0), object(2,0), object(2,1), object(2,2), object(2,3), object(2,4) -gas summary: computation_cost: 1000000, storage_cost: 7022400, storage_rebate: 7022400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7022400, storage_rebate: 7022400, non_refundable_storage_fee: 0 task 13, lines 119-124: //# programmable --inputs object(2,0) receiving(2,1) receiving(2,2) receiving(2,3) receiving(2,4) @@ -120,7 +120,7 @@ task 13, lines 119-124: //> 2: tto::M1::receive_all_by_mut_ref(Input(0), Result(0)); // Make the Move vec of receiving arguments, pass to a function by mutref, receive some, then pass by mutref again to receive the rest mutated: object(0,0), object(2,0), object(2,1), object(2,2), object(2,3), object(2,4) -gas summary: computation_cost: 1000000, storage_cost: 7022400, storage_rebate: 7022400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7022400, storage_rebate: 7022400, non_refundable_storage_fee: 0 task 14, lines 125-130: //# programmable --inputs object(2,0) receiving(2,1) receiving(2,2) receiving(2,3) receiving(2,4) @@ -129,7 +129,7 @@ task 14, lines 125-130: //> 2: tto::M1::receive_all_by_mut_ref(Input(0), Result(0)); // Make the Move vec of receiving arguments, pass to a function by mutref, receive some, then pass by value to receive the rest mutated: object(0,0), object(2,0), object(2,1), object(2,2), object(2,3), object(2,4) -gas summary: computation_cost: 1000000, storage_cost: 7022400, storage_rebate: 7022400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7022400, storage_rebate: 7022400, non_refundable_storage_fee: 0 task 15, lines 131-136: //# programmable --inputs object(2,0) receiving(2,1) receiving(2,2) receiving(2,3) receiving(2,4) @@ -138,14 +138,14 @@ task 15, lines 131-136: //> 2: tto::M1::receive_all_send_back(Input(0), Result(0)); // Make the Move vec of receiving arguments and then receive all of them mutated: object(0,0), object(2,0), object(2,1), object(2,2), object(2,3), object(2,4) -gas summary: computation_cost: 1000000, storage_cost: 7022400, storage_rebate: 7022400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7022400, storage_rebate: 7022400, non_refundable_storage_fee: 0 task 16, lines 137-139: //# programmable --inputs object(2,0) receiving(2,1) receiving(2,2) receiving(2,3) receiving(2,4) //> 0: MakeMoveVec>([Input(1), Input(2), Input(3), Input(4)]); //> 1: tto::M1::receive_all(Input(0), Result(0)); mutated: object(0,0), object(2,0), object(2,1), object(2,2), object(2,3), object(2,4) -gas summary: computation_cost: 1000000, storage_cost: 7022400, storage_rebate: 7022400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7022400, storage_rebate: 7022400, non_refundable_storage_fee: 0 task 17, line 141: //# view-object 2,0 diff --git a/crates/iota-adapter-transactional-tests/tests/receive_object/receive_multiple_times_in_row.exp b/crates/iota-adapter-transactional-tests/tests/receive_object/receive_multiple_times_in_row.exp index b9f911c1e7f..56760703400 100644 --- a/crates/iota-adapter-transactional-tests/tests/receive_object/receive_multiple_times_in_row.exp +++ b/crates/iota-adapter-transactional-tests/tests/receive_object/receive_multiple_times_in_row.exp @@ -7,19 +7,19 @@ task 1, lines 7-37: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 6999600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6999600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 39: //# run tto::M1::start created: object(2,0), object(2,1) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 3397200, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3397200, storage_rebate: 980400, non_refundable_storage_fee: 0 task 3, line 41: //# run tto::M1::middle --sender A created: object(3,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2188800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2188800, storage_rebate: 0, non_refundable_storage_fee: 0 task 4, line 43: //# view-object 2,0 @@ -48,7 +48,7 @@ Contents: tto::M1::B { task 6, line 48: //# run tto::M1::send_back --args object(2,0) receiving(2,1) mutated: object(0,1), object(2,0), object(2,1) -gas summary: computation_cost: 1000000, storage_cost: 3397200, storage_rebate: 3397200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3397200, storage_rebate: 3397200, non_refundable_storage_fee: 0 task 7, line 50: //# view-object 2,0 @@ -82,7 +82,7 @@ Execution Error: ExecutionError: ExecutionError { inner: ExecutionErrorInner { k task 10, lines 58-60: //# run tto::M1::send_back --args object(2,0) receiving(2,1)@4 mutated: object(0,1), object(2,0), object(2,1) -gas summary: computation_cost: 1000000, storage_cost: 3397200, storage_rebate: 3397200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3397200, storage_rebate: 3397200, non_refundable_storage_fee: 0 task 11, lines 61-63: //# run tto::M1::send_back --summarize --args object(3,0) receiving(2,1)@6 --sender A @@ -92,4 +92,4 @@ Execution Error: ExecutionError: ExecutionError { inner: ExecutionErrorInner { k task 12, line 64: //# run tto::M1::send_back --args object(2,0) receiving(2,1)@6 mutated: object(0,1), object(2,0), object(2,1) -gas summary: computation_cost: 1000000, storage_cost: 3397200, storage_rebate: 3397200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3397200, storage_rebate: 3397200, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/receive_object/receive_object_id.exp b/crates/iota-adapter-transactional-tests/tests/receive_object/receive_object_id.exp index b96c9222917..0057b7d5631 100644 --- a/crates/iota-adapter-transactional-tests/tests/receive_object/receive_object_id.exp +++ b/crates/iota-adapter-transactional-tests/tests/receive_object/receive_object_id.exp @@ -4,13 +4,13 @@ task 1, lines 7-30: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 6642400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6642400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 32: //# run tto::M1::start created: object(2,0), object(2,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3397200, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3397200, storage_rebate: 980400, non_refundable_storage_fee: 0 task 3, line 34: //# view-object 2,0 @@ -39,19 +39,19 @@ Contents: tto::M1::B { task 5, line 38: //# run tto::M1::receiver --args receiving(2,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 6, lines 40-41: //# programmable --inputs receiving(2,1) //> iota::transfer::receiving_object_id(Input(0)) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 7, lines 43-44: //# programmable --inputs receiving(2,1) //> tto::M1::receiver(Input(0)) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 8, line 46: //# view-object 2,0 diff --git a/crates/iota-adapter-transactional-tests/tests/receive_object/receive_object_owner.exp b/crates/iota-adapter-transactional-tests/tests/receive_object/receive_object_owner.exp index 88732191753..cbae9a9de31 100644 --- a/crates/iota-adapter-transactional-tests/tests/receive_object/receive_object_owner.exp +++ b/crates/iota-adapter-transactional-tests/tests/receive_object/receive_object_owner.exp @@ -7,13 +7,13 @@ task 1, lines 7-29: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 6627200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6627200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 31: //# run tto::M1::start --sender A created: object(2,0), object(2,1), object(2,2) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5966000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5966000, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 33: //# view-object 2,0 diff --git a/crates/iota-adapter-transactional-tests/tests/receive_object/receive_return_object_dont_touch.exp b/crates/iota-adapter-transactional-tests/tests/receive_object/receive_return_object_dont_touch.exp index 759640cfd62..bbbeb6784fe 100644 --- a/crates/iota-adapter-transactional-tests/tests/receive_object/receive_return_object_dont_touch.exp +++ b/crates/iota-adapter-transactional-tests/tests/receive_object/receive_return_object_dont_touch.exp @@ -4,13 +4,13 @@ task 1, lines 7-30: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 6596800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6596800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 32: //# run tto::M1::start created: object(2,0), object(2,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3397200, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3397200, storage_rebate: 980400, non_refundable_storage_fee: 0 task 3, line 34: //# view-object 2,0 diff --git a/crates/iota-adapter-transactional-tests/tests/receive_object/receive_return_object_then_transfer.exp b/crates/iota-adapter-transactional-tests/tests/receive_object/receive_return_object_then_transfer.exp index 5b481d15358..1f9e7c23417 100644 --- a/crates/iota-adapter-transactional-tests/tests/receive_object/receive_return_object_then_transfer.exp +++ b/crates/iota-adapter-transactional-tests/tests/receive_object/receive_return_object_then_transfer.exp @@ -4,13 +4,13 @@ task 1, lines 7-30: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 6596800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6596800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 32: //# run tto::M1::start created: object(2,0), object(2,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3397200, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3397200, storage_rebate: 980400, non_refundable_storage_fee: 0 task 3, line 34: //# view-object 2,0 @@ -41,7 +41,7 @@ task 5, lines 39-41: //> 0: tto::M1::receiver(Input(0), Input(1)); //> TransferObjects([Result(0)], Input(2)) mutated: object(0,0), object(2,0), object(2,1) -gas summary: computation_cost: 1000000, storage_cost: 3397200, storage_rebate: 3397200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3397200, storage_rebate: 3397200, non_refundable_storage_fee: 0 task 6, line 43: //# view-object 2,0 diff --git a/crates/iota-adapter-transactional-tests/tests/receive_object/receive_ticket_coin_operations.exp b/crates/iota-adapter-transactional-tests/tests/receive_object/receive_ticket_coin_operations.exp index 0ccecfb0eb7..0720f0f5f38 100644 --- a/crates/iota-adapter-transactional-tests/tests/receive_object/receive_ticket_coin_operations.exp +++ b/crates/iota-adapter-transactional-tests/tests/receive_object/receive_ticket_coin_operations.exp @@ -4,13 +4,13 @@ task 1, lines 7-24: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5920400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5920400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 26: //# run tto::M1::start created: object(2,0), object(2,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3397200, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3397200, storage_rebate: 980400, non_refundable_storage_fee: 0 task 3, line 28: //# view-object 2,0 diff --git a/crates/iota-adapter-transactional-tests/tests/receive_object/shared_parent/basic_receive.exp b/crates/iota-adapter-transactional-tests/tests/receive_object/shared_parent/basic_receive.exp index 72c598a6e0a..08dcc76bb85 100644 --- a/crates/iota-adapter-transactional-tests/tests/receive_object/shared_parent/basic_receive.exp +++ b/crates/iota-adapter-transactional-tests/tests/receive_object/shared_parent/basic_receive.exp @@ -4,13 +4,13 @@ task 1, lines 7-31: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 6961600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6961600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 33: //# run tto::M1::start created: object(2,0), object(2,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3397200, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3397200, storage_rebate: 980400, non_refundable_storage_fee: 0 task 3, line 35: //# view-object 2,0 @@ -39,7 +39,7 @@ Contents: tto::M1::B { task 5, line 39: //# run tto::M1::receiver --args object(2,0) receiving(2,1) mutated: object(0,0), object(2,0), object(2,1) -gas summary: computation_cost: 1000000, storage_cost: 3397200, storage_rebate: 3397200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3397200, storage_rebate: 3397200, non_refundable_storage_fee: 0 task 6, line 41: //# view-object 2,0 diff --git a/crates/iota-adapter-transactional-tests/tests/receive_object/shared_parent/drop_receiving.exp b/crates/iota-adapter-transactional-tests/tests/receive_object/shared_parent/drop_receiving.exp index 5a8ca53e1a3..a9745ece8e7 100644 --- a/crates/iota-adapter-transactional-tests/tests/receive_object/shared_parent/drop_receiving.exp +++ b/crates/iota-adapter-transactional-tests/tests/receive_object/shared_parent/drop_receiving.exp @@ -4,20 +4,20 @@ task 1, lines 7-34: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 7174400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7174400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 36: //# run tto::M1::start created: object(2,0), object(2,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3397200, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3397200, storage_rebate: 980400, non_refundable_storage_fee: 0 task 3, lines 38-41: //# programmable --inputs object(2,0) receiving(2,1) //> tto::M1::send_back(Input(0), Input(1)) // Include the receiving argument, but don't use it at the PTB level mutated: object(0,0), object(2,0), object(2,1) -gas summary: computation_cost: 1000000, storage_cost: 3397200, storage_rebate: 3397200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3397200, storage_rebate: 3397200, non_refundable_storage_fee: 0 task 4, lines 42-46: //# programmable --inputs object(2,0) receiving(2,1) @@ -25,10 +25,10 @@ task 4, lines 42-46: // Include the receiving argument, but don't use it at the Move level. The // receiving object should not be mutated by this. mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2188800, storage_rebate: 2188800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2188800, storage_rebate: 2188800, non_refundable_storage_fee: 0 task 5, lines 47-48: //# programmable --inputs object(2,0) receiving(2,1) //> tto::M1::nop_with_receiver(Input(0), Input(1)) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2188800, storage_rebate: 2188800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2188800, storage_rebate: 2188800, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/receive_object/shared_parent/receive_dof_and_mutate.exp b/crates/iota-adapter-transactional-tests/tests/receive_object/shared_parent/receive_dof_and_mutate.exp index 1423579b056..38f4b88ae25 100644 --- a/crates/iota-adapter-transactional-tests/tests/receive_object/shared_parent/receive_dof_and_mutate.exp +++ b/crates/iota-adapter-transactional-tests/tests/receive_object/shared_parent/receive_dof_and_mutate.exp @@ -7,13 +7,13 @@ task 1, lines 7-35: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 7873600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7873600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 37: //# run tto::M1::start created: object(2,0), object(2,1), object(2,2), object(2,3) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 7235200, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7235200, storage_rebate: 980400, non_refundable_storage_fee: 0 task 3, line 39: //# view-object 2,0 @@ -76,7 +76,7 @@ task 7, line 47: //# run tto::M1::receive --args object(2,3) receiving(2,1) created: object(7,0) mutated: object(0,1), object(2,1), object(2,3) -gas summary: computation_cost: 1000000, storage_cost: 5966000, storage_rebate: 3518800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5966000, storage_rebate: 3518800, non_refundable_storage_fee: 0 task 8, line 49: //# view-object 2,0 diff --git a/crates/iota-adapter-transactional-tests/tests/receive_object/shared_parent/receive_multiple_times_in_row.exp b/crates/iota-adapter-transactional-tests/tests/receive_object/shared_parent/receive_multiple_times_in_row.exp index 72c42408ce9..92ae8b70731 100644 --- a/crates/iota-adapter-transactional-tests/tests/receive_object/shared_parent/receive_multiple_times_in_row.exp +++ b/crates/iota-adapter-transactional-tests/tests/receive_object/shared_parent/receive_multiple_times_in_row.exp @@ -7,19 +7,19 @@ task 1, lines 7-38: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 7174400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7174400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 40: //# run tto::M1::start created: object(2,0), object(2,1) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 3397200, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3397200, storage_rebate: 980400, non_refundable_storage_fee: 0 task 3, line 42: //# run tto::M1::middle --sender A created: object(3,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2188800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2188800, storage_rebate: 0, non_refundable_storage_fee: 0 task 4, line 44: //# view-object 2,0 @@ -48,7 +48,7 @@ Contents: tto::M1::B { task 6, line 49: //# run tto::M1::send_back --args object(2,0) receiving(2,1) mutated: object(0,1), object(2,0), object(2,1) -gas summary: computation_cost: 1000000, storage_cost: 3397200, storage_rebate: 3397200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3397200, storage_rebate: 3397200, non_refundable_storage_fee: 0 task 7, line 51: //# view-object 2,0 @@ -82,7 +82,7 @@ Debug of error: MoveAbort(MoveLocation { module: ModuleId { address: iota, name: task 10, lines 59-61: //# run tto::M1::send_back --args object(2,0) receiving(2,1)@4 mutated: object(0,1), object(2,0), object(2,1) -gas summary: computation_cost: 1000000, storage_cost: 3397200, storage_rebate: 3397200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3397200, storage_rebate: 3397200, non_refundable_storage_fee: 0 task 11, lines 62-64: //# run tto::M1::send_back --summarize --args object(3,0) receiving(2,1)@6 --sender A @@ -92,4 +92,4 @@ Execution Error: ExecutionError: ExecutionError { inner: ExecutionErrorInner { k task 12, line 65: //# run tto::M1::send_back --args object(2,0) receiving(2,1)@6 mutated: object(0,1), object(2,0), object(2,1) -gas summary: computation_cost: 1000000, storage_cost: 3397200, storage_rebate: 3397200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3397200, storage_rebate: 3397200, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/receive_object/shared_parent/transfer_then_share.exp b/crates/iota-adapter-transactional-tests/tests/receive_object/shared_parent/transfer_then_share.exp index 8cc6e2654a0..67526cec9f4 100644 --- a/crates/iota-adapter-transactional-tests/tests/receive_object/shared_parent/transfer_then_share.exp +++ b/crates/iota-adapter-transactional-tests/tests/receive_object/shared_parent/transfer_then_share.exp @@ -4,13 +4,13 @@ task 1, lines 7-32: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 6908400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6908400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 34: //# run tto::M1::start created: object(2,0), object(2,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3397200, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3397200, storage_rebate: 980400, non_refundable_storage_fee: 0 task 3, line 36: //# view-object 2,0 @@ -39,7 +39,7 @@ Contents: tto::M1::B { task 5, line 40: //# run tto::M1::receiver --args object(2,0) receiving(2,1) mutated: object(0,0), object(2,0), object(2,1) -gas summary: computation_cost: 1000000, storage_cost: 3397200, storage_rebate: 3397200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3397200, storage_rebate: 3397200, non_refundable_storage_fee: 0 task 6, line 42: //# view-object 2,0 diff --git a/crates/iota-adapter-transactional-tests/tests/receive_object/take_receiver_then_try_to_reuse.exp b/crates/iota-adapter-transactional-tests/tests/receive_object/take_receiver_then_try_to_reuse.exp index b33c0e2377b..393dcc472cc 100644 --- a/crates/iota-adapter-transactional-tests/tests/receive_object/take_receiver_then_try_to_reuse.exp +++ b/crates/iota-adapter-transactional-tests/tests/receive_object/take_receiver_then_try_to_reuse.exp @@ -4,13 +4,13 @@ task 1, lines 7-33: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 7174400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7174400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 35: //# run tto::M1::start created: object(2,0), object(2,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3397200, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3397200, storage_rebate: 980400, non_refundable_storage_fee: 0 task 3, line 37: //# view-object 2,0 diff --git a/crates/iota-adapter-transactional-tests/tests/receive_object/transfer_object_cyclic.exp b/crates/iota-adapter-transactional-tests/tests/receive_object/transfer_object_cyclic.exp index 1f8a766c263..1562d827176 100644 --- a/crates/iota-adapter-transactional-tests/tests/receive_object/transfer_object_cyclic.exp +++ b/crates/iota-adapter-transactional-tests/tests/receive_object/transfer_object_cyclic.exp @@ -4,10 +4,10 @@ task 1, lines 7-25: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5844400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5844400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 27: //# run tto::M1::start created: object(2,0), object(2,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3397200, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3397200, storage_rebate: 980400, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/runtime_behavior/error_locations.exp b/crates/iota-adapter-transactional-tests/tests/runtime_behavior/error_locations.exp index 63ea7e4ebbc..69d4cf123a8 100644 --- a/crates/iota-adapter-transactional-tests/tests/runtime_behavior/error_locations.exp +++ b/crates/iota-adapter-transactional-tests/tests/runtime_behavior/error_locations.exp @@ -4,7 +4,7 @@ task 1, lines 9-31: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4324400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4324400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 33: //# run test::m::abort_ diff --git a/crates/iota-adapter-transactional-tests/tests/runtime_behavior/versioned_check_swap_loc_new.exp b/crates/iota-adapter-transactional-tests/tests/runtime_behavior/versioned_check_swap_loc_new.exp index ad5ecf95f8b..e4b52feb1d6 100644 --- a/crates/iota-adapter-transactional-tests/tests/runtime_behavior/versioned_check_swap_loc_new.exp +++ b/crates/iota-adapter-transactional-tests/tests/runtime_behavior/versioned_check_swap_loc_new.exp @@ -4,14 +4,14 @@ task 1, lines 9-43: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4484000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4484000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 45: //# run test::m::t1 --args true mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 3, line 47: //# run test::m::t2 --args true mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/shared/add_dynamic_field.exp b/crates/iota-adapter-transactional-tests/tests/shared/add_dynamic_field.exp index be2d7849db0..417acb55077 100644 --- a/crates/iota-adapter-transactional-tests/tests/shared/add_dynamic_field.exp +++ b/crates/iota-adapter-transactional-tests/tests/shared/add_dynamic_field.exp @@ -7,13 +7,13 @@ task 1, lines 10-33: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 6619600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6619600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 35: //# run a::m::create --sender A created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2196400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2196400, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 37: //# view-object 2,0 @@ -31,13 +31,13 @@ task 4, line 39: //# run a::m::add_dynamic_field --sender A --args object(2,0) created: object(4,0) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 3655600, storage_rebate: 2196400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3655600, storage_rebate: 2196400, non_refundable_storage_fee: 0 task 5, line 41: //# run a::m::create --sender A created: object(5,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2196400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2196400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 6, line 43: //# view-object 5,0 @@ -54,4 +54,4 @@ Contents: a::m::Obj { task 7, line 45: //# run a::m::add_and_remove_dynamic_field --sender A --args object(5,0) mutated: object(0,0), object(5,0) -gas summary: computation_cost: 1000000, storage_cost: 2196400, storage_rebate: 2196400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2196400, storage_rebate: 2196400, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/shared/become_dynamic_field.exp b/crates/iota-adapter-transactional-tests/tests/shared/become_dynamic_field.exp index 3d248fa7fbf..21f2ae3b4d0 100644 --- a/crates/iota-adapter-transactional-tests/tests/shared/become_dynamic_field.exp +++ b/crates/iota-adapter-transactional-tests/tests/shared/become_dynamic_field.exp @@ -7,13 +7,13 @@ task 1, lines 10-40: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 7524000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7524000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 42: //# run a::m::create_shared --sender A created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2211600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2211600, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 44: //# view-object 2,0 @@ -36,7 +36,7 @@ task 5, line 48: //# run a::m::create_shared --sender A created: object(5,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2211600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2211600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 6, line 50: //# view-object 5,0 @@ -54,4 +54,4 @@ task 7, line 52: //# run a::m::add_and_remove_dynamic_field --sender A --args object(5,0) created: object(7,0) mutated: object(0,0), object(5,0) -gas summary: computation_cost: 1000000, storage_cost: 3442800, storage_rebate: 2211600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3442800, storage_rebate: 2211600, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/shared/become_dynamic_object_field.exp b/crates/iota-adapter-transactional-tests/tests/shared/become_dynamic_object_field.exp index 677a4ef19d8..5a4f06b2c89 100644 --- a/crates/iota-adapter-transactional-tests/tests/shared/become_dynamic_object_field.exp +++ b/crates/iota-adapter-transactional-tests/tests/shared/become_dynamic_object_field.exp @@ -7,13 +7,13 @@ task 1, lines 10-40: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 7683600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7683600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 42: //# run a::m::create_shared --sender A created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2211600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2211600, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 44: //# view-object 2,0 @@ -36,7 +36,7 @@ task 5, line 48: //# run a::m::create_shared --sender A created: object(5,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2211600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2211600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 6, line 50: //# view-object 5,0 @@ -54,4 +54,4 @@ task 7, line 52: //# run a::m::add_and_remove_dynamic_object_field --sender A --args object(5,0) created: object(7,0) mutated: object(0,0), object(5,0) -gas summary: computation_cost: 1000000, storage_cost: 3442800, storage_rebate: 2211600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3442800, storage_rebate: 2211600, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/shared/by_value_shared_object_deletion.exp b/crates/iota-adapter-transactional-tests/tests/shared/by_value_shared_object_deletion.exp index 94499ba781b..4764acde518 100644 --- a/crates/iota-adapter-transactional-tests/tests/shared/by_value_shared_object_deletion.exp +++ b/crates/iota-adapter-transactional-tests/tests/shared/by_value_shared_object_deletion.exp @@ -4,19 +4,19 @@ task 1, lines 10-27: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5335200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5335200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 29-37: //# publish --dependencies t2 created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4446000, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4446000, storage_rebate: 980400, non_refundable_storage_fee: 0 task 3, line 39: //# run t2::o2::create created: object(3,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2211600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2211600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 4, lines 41-43: //# view-object 3,0 @@ -34,13 +34,13 @@ task 5, line 44: //# run t1::o1::consume_o2 --args object(3,0) mutated: object(0,0) deleted: object(3,0) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 2211600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 2211600, non_refundable_storage_fee: 0 task 6, line 46: //# run t2::o2::create created: object(6,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2211600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2211600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 7, lines 48-50: //# view-object 6,0 @@ -58,4 +58,4 @@ task 8, line 51: //# run t2::o2::consume_o2 --args object(6,0) mutated: object(0,0) deleted: object(6,0) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 2211600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 2211600, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/shared/by_value_shared_object_deletion_via_make_move_vec.exp b/crates/iota-adapter-transactional-tests/tests/shared/by_value_shared_object_deletion_via_make_move_vec.exp index fbbe8fe141b..d31dc71009b 100644 --- a/crates/iota-adapter-transactional-tests/tests/shared/by_value_shared_object_deletion_via_make_move_vec.exp +++ b/crates/iota-adapter-transactional-tests/tests/shared/by_value_shared_object_deletion_via_make_move_vec.exp @@ -4,19 +4,19 @@ task 1, lines 7-46: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 6908400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6908400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 48: //# run t2::o2::create created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2211600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2211600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 3, line 50: //# run t2::o2::create created: object(3,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2211600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2211600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 4, line 52: //# view-object 2,0 @@ -48,13 +48,13 @@ task 6, lines 57-59: //> 1: t2::o2::delete(Result(0)); mutated: object(0,0), object(2,0) deleted: object(3,0) -gas summary: computation_cost: 1000000, storage_cost: 2211600, storage_rebate: 3442800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2211600, storage_rebate: 3442800, non_refundable_storage_fee: 0 task 7, line 61: //# run t2::o2::mint_shared_coin created: object(7,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 1960800, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 1960800, storage_rebate: 980400, non_refundable_storage_fee: 0 task 8, lines 63-65: //# view-object 7,0 @@ -80,4 +80,4 @@ task 9, lines 66-71: //> 4: t2::o2::share_coin(Result(1)); created: object(9,0) mutated: object(0,0), object(7,0) -gas summary: computation_cost: 1000000, storage_cost: 2941200, storage_rebate: 1960800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2941200, storage_rebate: 1960800, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/shared/by_value_shared_object_deletion_via_make_move_vec_fails.exp b/crates/iota-adapter-transactional-tests/tests/shared/by_value_shared_object_deletion_via_make_move_vec_fails.exp index de5f3e93c4b..52bbddf17b8 100644 --- a/crates/iota-adapter-transactional-tests/tests/shared/by_value_shared_object_deletion_via_make_move_vec_fails.exp +++ b/crates/iota-adapter-transactional-tests/tests/shared/by_value_shared_object_deletion_via_make_move_vec_fails.exp @@ -4,19 +4,19 @@ task 1, lines 7-98: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 10951600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 10951600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 100: //# run t2::o2::create created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2211600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2211600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 3, line 102: //# run t2::o2::create created: object(3,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2211600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2211600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 4, line 104: //# view-object 2,0 @@ -122,7 +122,7 @@ task 15, line 158: //# run t2::o2::mint_shared_coin created: object(15,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 1960800, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 1960800, storage_rebate: 980400, non_refundable_storage_fee: 0 task 16, lines 160-163: //# view-object 15,0 diff --git a/crates/iota-adapter-transactional-tests/tests/shared/by_value_shared_object_deletion_via_merge.exp b/crates/iota-adapter-transactional-tests/tests/shared/by_value_shared_object_deletion_via_merge.exp index c81b9d88cf1..783f63f639b 100644 --- a/crates/iota-adapter-transactional-tests/tests/shared/by_value_shared_object_deletion_via_merge.exp +++ b/crates/iota-adapter-transactional-tests/tests/shared/by_value_shared_object_deletion_via_merge.exp @@ -7,19 +7,19 @@ task 1, lines 14-61: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 9272000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 9272000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 63: //# run t2::o2::mint_shared_coin created: object(2,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 1960800, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 1960800, storage_rebate: 980400, non_refundable_storage_fee: 0 task 3, line 65: //# run t2::o2::mint_owned_coin created: object(3,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 1960800, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 1960800, storage_rebate: 980400, non_refundable_storage_fee: 0 task 4, line 67: //# view-object 2,0 @@ -58,25 +58,25 @@ task 6, lines 73-77: // **Merge owned into shared** mutated: object(0,0), object(3,0) deleted: object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 1960800, storage_rebate: 1960800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 1960800, storage_rebate: 1960800, non_refundable_storage_fee: 0 task 7, line 79: //# run t2::o2::mint_owned_coin created: object(7,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 1960800, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 1960800, storage_rebate: 980400, non_refundable_storage_fee: 0 task 8, line 81: //# run t2::o2::mint_shared_coin created: object(8,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 1960800, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 1960800, storage_rebate: 980400, non_refundable_storage_fee: 0 task 9, line 83: //# run t2::o2::mint_shared_obj created: object(9,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2211600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2211600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 10, line 85: //# view-object 7,0 @@ -127,25 +127,25 @@ task 13, lines 92-96: // **Merge shared into shared** mutated: object(0,0), object(9,0) deleted: object(7,0), object(8,0) -gas summary: computation_cost: 1000000, storage_cost: 2211600, storage_rebate: 4172400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2211600, storage_rebate: 4172400, non_refundable_storage_fee: 0 task 14, line 98: //# run t2::o2::mint_shared_coin created: object(14,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 1960800, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 1960800, storage_rebate: 980400, non_refundable_storage_fee: 0 task 15, line 100: //# run t2::o2::mint_shared_coin created: object(15,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 1960800, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 1960800, storage_rebate: 980400, non_refundable_storage_fee: 0 task 16, line 102: //# run t2::o2::mint_shared_obj created: object(16,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2211600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2211600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 17, line 104: //# view-object 14,0 @@ -195,4 +195,4 @@ task 20, lines 111-113: //> 1: t2::o2::deleter(Input(1)); mutated: object(0,0), object(16,0) deleted: object(14,0), object(15,0) -gas summary: computation_cost: 1000000, storage_cost: 2211600, storage_rebate: 4172400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2211600, storage_rebate: 4172400, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/shared/by_value_shared_object_deletion_via_merge_fails.exp b/crates/iota-adapter-transactional-tests/tests/shared/by_value_shared_object_deletion_via_merge_fails.exp index 61db96f562e..9fa33541d90 100644 --- a/crates/iota-adapter-transactional-tests/tests/shared/by_value_shared_object_deletion_via_merge_fails.exp +++ b/crates/iota-adapter-transactional-tests/tests/shared/by_value_shared_object_deletion_via_merge_fails.exp @@ -7,25 +7,25 @@ task 1, lines 14-63: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 9272000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 9272000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 65: //# run t2::o2::mint_owned_coin created: object(2,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 1960800, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 1960800, storage_rebate: 980400, non_refundable_storage_fee: 0 task 3, line 67: //# run t2::o2::mint_shared_coin created: object(3,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 1960800, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 1960800, storage_rebate: 980400, non_refundable_storage_fee: 0 task 4, line 69: //# run t2::o2::mint_shared_obj created: object(4,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2211600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2211600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 5, line 71: //# view-object 2,0 @@ -113,19 +113,19 @@ task 13, line 104: //# run t2::o2::mint_shared_coin created: object(13,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 1960800, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 1960800, storage_rebate: 980400, non_refundable_storage_fee: 0 task 14, line 106: //# run t2::o2::mint_shared_coin created: object(14,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 1960800, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 1960800, storage_rebate: 980400, non_refundable_storage_fee: 0 task 15, line 108: //# run t2::o2::mint_shared_obj created: object(15,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2211600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2211600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 16, line 110: //# view-object 13,0 diff --git a/crates/iota-adapter-transactional-tests/tests/shared/by_value_shared_object_deletion_via_move_call.exp b/crates/iota-adapter-transactional-tests/tests/shared/by_value_shared_object_deletion_via_move_call.exp index 56d2aed454d..a4d0fdac8da 100644 --- a/crates/iota-adapter-transactional-tests/tests/shared/by_value_shared_object_deletion_via_move_call.exp +++ b/crates/iota-adapter-transactional-tests/tests/shared/by_value_shared_object_deletion_via_move_call.exp @@ -4,19 +4,19 @@ task 1, lines 7-36: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 6391600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6391600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 38: //# run t2::o2::create created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2211600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2211600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 3, line 40: //# run t2::o2::create created: object(3,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2211600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2211600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 4, line 42: //# view-object 2,0 @@ -48,13 +48,13 @@ task 6, lines 47-49: //> 1: t2::o2::deleter(Result(0)); mutated: object(0,0), object(2,0) deleted: object(3,0) -gas summary: computation_cost: 1000000, storage_cost: 2211600, storage_rebate: 3442800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2211600, storage_rebate: 3442800, non_refundable_storage_fee: 0 task 7, line 51: //# run t2::o2::mint_shared_coin created: object(7,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 1960800, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 1960800, storage_rebate: 980400, non_refundable_storage_fee: 0 task 8, lines 53-55: //# view-object 7,0 @@ -80,7 +80,7 @@ task 9, lines 56-62: // Try to call public_share_object directly -- this should work because the coin has `store`. created: object(9,0) mutated: object(0,0), object(7,0) -gas summary: computation_cost: 1000000, storage_cost: 2941200, storage_rebate: 1960800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2941200, storage_rebate: 1960800, non_refundable_storage_fee: 0 task 10, lines 63-67: //# programmable --inputs 0 object(7,0) @0x0 @@ -90,4 +90,4 @@ task 10, lines 63-67: //> 3: iota::transfer::public_share_object>(Result(0)); created: object(10,0) mutated: object(0,0), object(7,0) -gas summary: computation_cost: 1000000, storage_cost: 2941200, storage_rebate: 1960800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2941200, storage_rebate: 1960800, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/shared/by_value_shared_object_deletion_via_move_call_fails.exp b/crates/iota-adapter-transactional-tests/tests/shared/by_value_shared_object_deletion_via_move_call_fails.exp index 000627a65f5..4a3ac54f5a9 100644 --- a/crates/iota-adapter-transactional-tests/tests/shared/by_value_shared_object_deletion_via_move_call_fails.exp +++ b/crates/iota-adapter-transactional-tests/tests/shared/by_value_shared_object_deletion_via_move_call_fails.exp @@ -4,19 +4,19 @@ task 1, lines 7-58: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 8876800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 8876800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 60: //# run t2::o2::create created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2211600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2211600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 3, line 62: //# run t2::o2::create created: object(3,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2211600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2211600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 4, line 64: //# view-object 2,0 @@ -77,7 +77,7 @@ task 10, line 88: //# run t2::o2::mint_shared_coin created: object(10,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 1960800, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 1960800, storage_rebate: 980400, non_refundable_storage_fee: 0 task 11, lines 90-92: //# view-object 10,0 diff --git a/crates/iota-adapter-transactional-tests/tests/shared/freeze.exp b/crates/iota-adapter-transactional-tests/tests/shared/freeze.exp index d1f6cca6d6f..fe911f3b65b 100644 --- a/crates/iota-adapter-transactional-tests/tests/shared/freeze.exp +++ b/crates/iota-adapter-transactional-tests/tests/shared/freeze.exp @@ -4,13 +4,13 @@ task 1, lines 9-26: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5388400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5388400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 28: //# run t2::o2::create created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2211600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2211600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 3, line 30: //# view-object 2,0 diff --git a/crates/iota-adapter-transactional-tests/tests/shared/re_share.exp b/crates/iota-adapter-transactional-tests/tests/shared/re_share.exp index 33c5a94063c..416655e853b 100644 --- a/crates/iota-adapter-transactional-tests/tests/shared/re_share.exp +++ b/crates/iota-adapter-transactional-tests/tests/shared/re_share.exp @@ -4,13 +4,13 @@ task 1, lines 9-30: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5874800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5874800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 32: //# run t2::o2::create created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2211600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2211600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 3, line 34: //# view-object 2,0 @@ -27,7 +27,7 @@ Contents: t2::o2::Obj2 { task 4, line 36: //# run t2::o2::mut_o2 --args object(2,0) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2211600, storage_rebate: 2211600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2211600, storage_rebate: 2211600, non_refundable_storage_fee: 0 task 5, line 38: //# view-object 2,0 @@ -44,7 +44,7 @@ Contents: t2::o2::Obj2 { task 6, line 40: //# run t2::o2::re_share_o2 --args object(2,0) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2211600, storage_rebate: 2211600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2211600, storage_rebate: 2211600, non_refundable_storage_fee: 0 task 7, line 42: //# view-object 2,0 @@ -61,7 +61,7 @@ Contents: t2::o2::Obj2 { task 8, line 44: //# run t2::o2::re_share_non_public_o2 --args object(2,0) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2211600, storage_rebate: 2211600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2211600, storage_rebate: 2211600, non_refundable_storage_fee: 0 task 9, line 46: //# view-object 2,0 @@ -78,7 +78,7 @@ Contents: t2::o2::Obj2 { task 10, line 48: //# run t2::o2::mut_o2 --args object(2,0) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2211600, storage_rebate: 2211600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2211600, storage_rebate: 2211600, non_refundable_storage_fee: 0 task 11, line 50: //# view-object 2,0 diff --git a/crates/iota-adapter-transactional-tests/tests/shared/transfer.exp b/crates/iota-adapter-transactional-tests/tests/shared/transfer.exp index d356aeaae5d..39e7bee8500 100644 --- a/crates/iota-adapter-transactional-tests/tests/shared/transfer.exp +++ b/crates/iota-adapter-transactional-tests/tests/shared/transfer.exp @@ -4,13 +4,13 @@ task 1, lines 10-25: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5646800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5646800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 27: //# run t2::o2::create created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2211600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2211600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 3, line 29: //# view-object 2,0 diff --git a/crates/iota-adapter-transactional-tests/tests/shared/upgrade.exp b/crates/iota-adapter-transactional-tests/tests/shared/upgrade.exp index 7649498c134..234b3a2147b 100644 --- a/crates/iota-adapter-transactional-tests/tests/shared/upgrade.exp +++ b/crates/iota-adapter-transactional-tests/tests/shared/upgrade.exp @@ -7,13 +7,13 @@ task 1, lines 9-37: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 7432800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7432800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 39: //# run t::m::create --sender A created: object(2,0), object(2,1), object(2,2), object(2,3) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 7797600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7797600, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 41: //# view-object 2,3 diff --git a/crates/iota-adapter-transactional-tests/tests/shared/wrap.exp b/crates/iota-adapter-transactional-tests/tests/shared/wrap.exp index fbf36682706..cec47beb15f 100644 --- a/crates/iota-adapter-transactional-tests/tests/shared/wrap.exp +++ b/crates/iota-adapter-transactional-tests/tests/shared/wrap.exp @@ -4,13 +4,13 @@ task 1, lines 9-28: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 6057200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6057200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 31: //# run t2::o2::create created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2211600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2211600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 3, line 33: //# view-object 2,0 diff --git a/crates/iota-adapter-transactional-tests/tests/size_limits/deleted_id_limits_tests.exp b/crates/iota-adapter-transactional-tests/tests/size_limits/deleted_id_limits_tests.exp index 402cd66b779..44c93bb50c2 100644 --- a/crates/iota-adapter-transactional-tests/tests/size_limits/deleted_id_limits_tests.exp +++ b/crates/iota-adapter-transactional-tests/tests/size_limits/deleted_id_limits_tests.exp @@ -4,22 +4,22 @@ task 1, lines 9-33: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5251600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5251600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 34-36: //# run Test::M1::delete_n_ids --args 1 --gas-budget 100000000000000 mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 3, lines 37-39: //# run Test::M1::delete_n_ids --args 256 --gas-budget 100000000000000 mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 4, lines 40-42: //# run Test::M1::delete_n_ids --args 2048 --gas-budget 100000000000000 mutated: object(0,0) -gas summary: computation_cost: 5000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 5000000, computation_cost_burned: 5000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 5, lines 43-45: //# run Test::M1::delete_n_ids --args 2049 --gas-budget 100000000000000 diff --git a/crates/iota-adapter-transactional-tests/tests/size_limits/event_limits_tests.exp b/crates/iota-adapter-transactional-tests/tests/size_limits/event_limits_tests.exp index 27e43fefe2c..2891692ba6e 100644 --- a/crates/iota-adapter-transactional-tests/tests/size_limits/event_limits_tests.exp +++ b/crates/iota-adapter-transactional-tests/tests/size_limits/event_limits_tests.exp @@ -4,19 +4,19 @@ task 1, lines 9-56: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 7303600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7303600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 57-59: //# run Test::M1::emit_n_small_events --args 1 --gas-budget 100000000000000 --summarize events: 1 mutated: 1 -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 3, lines 60-62: //# run Test::M1::emit_n_small_events --args 1024 --gas-budget 100000000000000 --summarize events: 50 mutated: 1 -gas summary: computation_cost: 3000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 3000000, computation_cost_burned: 3000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 4, lines 63-65: //# run Test::M1::emit_n_small_events --args 1025 --gas-budget 100000000000000 @@ -32,13 +32,13 @@ task 6, lines 69-71: //# run Test::M1::emit_event_with_size --args 200000 --gas-budget 100000000000000 --summarize events: 1 mutated: 1 -gas summary: computation_cost: 1394000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1394000000, computation_cost_burned: 1394000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 7, lines 72-74: //# run Test::M1::emit_event_with_size --args 256000 --gas-budget 100000000000000 --summarize events: 1 mutated: 1 -gas summary: computation_cost: 1815000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1815000000, computation_cost_burned: 1815000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 8, lines 75-77: //# run Test::M1::emit_event_with_size --args 256001 --gas-budget 100000000000000 --summarize diff --git a/crates/iota-adapter-transactional-tests/tests/size_limits/event_limits_tests_out_of_gas.exp b/crates/iota-adapter-transactional-tests/tests/size_limits/event_limits_tests_out_of_gas.exp index 11653f08215..ae1c6244d1c 100644 --- a/crates/iota-adapter-transactional-tests/tests/size_limits/event_limits_tests_out_of_gas.exp +++ b/crates/iota-adapter-transactional-tests/tests/size_limits/event_limits_tests_out_of_gas.exp @@ -4,7 +4,7 @@ task 1, lines 9-67: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 7911600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7911600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 68-70: //# run Test::M1::emit_n_small_events --args 1025 --gas-budget 1000000000 diff --git a/crates/iota-adapter-transactional-tests/tests/size_limits/identitifer_len_limits.exp b/crates/iota-adapter-transactional-tests/tests/size_limits/identitifer_len_limits.exp index 13442e70f58..fc8f3400b48 100644 --- a/crates/iota-adapter-transactional-tests/tests/size_limits/identitifer_len_limits.exp +++ b/crates/iota-adapter-transactional-tests/tests/size_limits/identitifer_len_limits.exp @@ -14,4 +14,4 @@ task 3, lines 27-48: //# publish created: object(3,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 6087600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6087600, storage_rebate: 980400, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/size_limits/move_object_size_limit.exp b/crates/iota-adapter-transactional-tests/tests/size_limits/move_object_size_limit.exp index ec44b3da265..785bd326507 100644 --- a/crates/iota-adapter-transactional-tests/tests/size_limits/move_object_size_limit.exp +++ b/crates/iota-adapter-transactional-tests/tests/size_limits/move_object_size_limit.exp @@ -7,7 +7,7 @@ task 1, lines 9-79: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 9925600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 9925600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 80-82: //# run Test::M1::transfer_object_with_size --args 256001 --sender A --gas-budget 10000000000000 @@ -18,10 +18,10 @@ task 3, lines 83-85: //# run Test::M1::transfer_object_with_size --args 255999 --sender A --gas-budget 100000000000000 created: object(3,0) mutated: object(0,0) -gas summary: computation_cost: 1864000000, storage_cost: 1947538000, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1864000000, computation_cost_burned: 1864000000, storage_cost: 1947538000, storage_rebate: 980400, non_refundable_storage_fee: 0 task 4, line 86: //# run Test::M1::transfer_object_with_size --args 256000 --sender A --gas-budget 100000000000000 created: object(4,0) mutated: object(0,0) -gas summary: computation_cost: 1864000000, storage_cost: 1947545600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1864000000, computation_cost_burned: 1864000000, storage_cost: 1947545600, storage_rebate: 980400, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/size_limits/new_id_limits_tests.exp b/crates/iota-adapter-transactional-tests/tests/size_limits/new_id_limits_tests.exp index 6f90b2b06a6..4b71e28f78b 100644 --- a/crates/iota-adapter-transactional-tests/tests/size_limits/new_id_limits_tests.exp +++ b/crates/iota-adapter-transactional-tests/tests/size_limits/new_id_limits_tests.exp @@ -4,22 +4,22 @@ task 1, lines 9-34: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5251600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5251600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 35-37: //# run Test::M1::create_n_ids --args 1 --gas-budget 100000000000000 mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 3, lines 38-40: //# run Test::M1::create_n_ids --args 256 --gas-budget 100000000000000 mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 4, lines 41-43: //# run Test::M1::create_n_ids --args 2048 --gas-budget 100000000000000 mutated: object(0,0) -gas summary: computation_cost: 5000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 5000000, computation_cost_burned: 5000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 5, lines 44-46: //# run Test::M1::create_n_ids --args 2049 --gas-budget 100000000000000 diff --git a/crates/iota-adapter-transactional-tests/tests/size_limits/object_runtime_limits.exp b/crates/iota-adapter-transactional-tests/tests/size_limits/object_runtime_limits.exp index f803c9a4304..fbe366dfed6 100644 --- a/crates/iota-adapter-transactional-tests/tests/size_limits/object_runtime_limits.exp +++ b/crates/iota-adapter-transactional-tests/tests/size_limits/object_runtime_limits.exp @@ -7,19 +7,19 @@ task 1, lines 8-27: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 5814000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5814000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 29: //# run a::m::add_n_items --sender A --args 100 --gas-budget 1000000000000 --summarize created: 200 mutated: 1 -gas summary: computation_cost: 1000000, storage_cost: 268500400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 268500400, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 31: //# run a::m::add_n_items --sender A --args 1000 --gas-budget 1000000000000 --summarize created: 2000 mutated: 1 -gas summary: computation_cost: 7000000, storage_cost: 2676180400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 7000000, computation_cost_burned: 7000000, storage_cost: 2676180400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 4, line 33: //# run a::m::add_n_items --sender A --args 1025 --gas-budget 1000000000000 diff --git a/crates/iota-adapter-transactional-tests/tests/size_limits/transfered_id_limits_tests.exp b/crates/iota-adapter-transactional-tests/tests/size_limits/transfered_id_limits_tests.exp index f0b92be01dc..8ac70fe288a 100644 --- a/crates/iota-adapter-transactional-tests/tests/size_limits/transfered_id_limits_tests.exp +++ b/crates/iota-adapter-transactional-tests/tests/size_limits/transfered_id_limits_tests.exp @@ -4,25 +4,25 @@ task 1, lines 9-33: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5570800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5570800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 34-36: //# run Test::M1::transfer_n_ids --args 1 --gas-budget 100000000000000 --summarize created: 1 mutated: 1 -gas summary: computation_cost: 1000000, storage_cost: 2204000, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2204000, storage_rebate: 980400, non_refundable_storage_fee: 0 task 3, lines 37-39: //# run Test::M1::transfer_n_ids --args 256 --gas-budget 100000000000000 --summarize created: 256 mutated: 1 -gas summary: computation_cost: 1000000, storage_cost: 314222000, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 314222000, storage_rebate: 980400, non_refundable_storage_fee: 0 task 4, lines 40-42: //# run Test::M1::transfer_n_ids --args 2048 --gas-budget 100000000000000 --summarize created: 2048 mutated: 1 -gas summary: computation_cost: 4000000, storage_cost: 2506913200, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 4000000, computation_cost_burned: 4000000, storage_cost: 2506913200, storage_rebate: 980400, non_refundable_storage_fee: 0 task 5, lines 43-45: //# run Test::M1::transfer_n_ids --args 2049 --gas-budget 100000000000000 diff --git a/crates/iota-adapter-transactional-tests/tests/size_limits/vector_len_limits.exp b/crates/iota-adapter-transactional-tests/tests/size_limits/vector_len_limits.exp index b7b631b4498..c56fca62d5e 100644 --- a/crates/iota-adapter-transactional-tests/tests/size_limits/vector_len_limits.exp +++ b/crates/iota-adapter-transactional-tests/tests/size_limits/vector_len_limits.exp @@ -4,22 +4,22 @@ task 1, lines 9-32: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4309200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4309200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 33-35: //# run Test::M1::push_n_items --args 1 --gas-budget 100000000000000 mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 3, lines 36-38: //# run Test::M1::push_n_items --args 256 --gas-budget 100000000000000 mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 4, lines 39-41: //# run Test::M1::push_n_items --args 262144 --gas-budget 100000000000000 mutated: object(0,0) -gas summary: computation_cost: 4088000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 4088000000, computation_cost_burned: 4088000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 5, line 42: //# run Test::M1::push_n_items --args 262145 --gas-budget 100000000000000 diff --git a/crates/iota-adapter-transactional-tests/tests/transfer_object/does_not_have_store.exp b/crates/iota-adapter-transactional-tests/tests/transfer_object/does_not_have_store.exp index 0c339fb0db1..2863aaf4b3c 100644 --- a/crates/iota-adapter-transactional-tests/tests/transfer_object/does_not_have_store.exp +++ b/crates/iota-adapter-transactional-tests/tests/transfer_object/does_not_have_store.exp @@ -7,13 +7,13 @@ task 1, lines 9-26: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 5776000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5776000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 28: //# run test::m::mint_s --sender A created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2181200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2181200, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 30: //# view-object 2,0 @@ -48,7 +48,7 @@ task 6, line 39: //# run test::m::mint_cup --type-args test::m::S --sender A created: object(6,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2485200, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2485200, storage_rebate: 980400, non_refundable_storage_fee: 0 task 7, line 41: //# view-object 6,0 diff --git a/crates/iota-adapter-transactional-tests/tests/transfer_object/does_not_have_store_receive.exp b/crates/iota-adapter-transactional-tests/tests/transfer_object/does_not_have_store_receive.exp index 06fcea79356..a2757e95f41 100644 --- a/crates/iota-adapter-transactional-tests/tests/transfer_object/does_not_have_store_receive.exp +++ b/crates/iota-adapter-transactional-tests/tests/transfer_object/does_not_have_store_receive.exp @@ -7,13 +7,13 @@ task 1, lines 10-78: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 9652000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 9652000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 80: //# run test::m::mint_s --sender A created: object(2,0), object(2,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3420000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3420000, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 82: //# view-object 2,0 @@ -45,13 +45,13 @@ task 5, lines 86-88: //> 1: test::m::destroy_s(Result(0)); mutated: object(0,0), object(2,0) deleted: object(2,1) -gas summary: computation_cost: 1000000, storage_cost: 2219200, storage_rebate: 3420000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2219200, storage_rebate: 3420000, non_refundable_storage_fee: 0 task 6, line 90: //# run test::m::mint_cup --sender A --type-args u64 created: object(6,0), object(6,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3442800, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3442800, storage_rebate: 980400, non_refundable_storage_fee: 0 task 7, line 92: //# view-object 6,0 @@ -84,13 +84,13 @@ task 9, lines 96-100: // Try to directly call `public_receive` and `receive` on an object without public transfer. mutated: object(0,0), object(6,1) deleted: object(6,0) -gas summary: computation_cost: 1000000, storage_cost: 2219200, storage_rebate: 3442800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2219200, storage_rebate: 3442800, non_refundable_storage_fee: 0 task 10, line 102: //# run test::m::mint_s --sender A created: object(10,0), object(10,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3420000, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3420000, storage_rebate: 980400, non_refundable_storage_fee: 0 task 11, line 104: //# view-object 10,0 @@ -137,7 +137,7 @@ task 15, line 120: //# run test::m::mint_store --sender A created: object(15,0), object(15,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3450400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3450400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 16, line 122: //# view-object 15,0 @@ -179,4 +179,4 @@ task 19, lines 131-135: //> 3: iota::object::delete(Result(0)); mutated: object(0,0) deleted: object(15,0), object(15,1) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 3450400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 3450400, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/transfer_object/has_store.exp b/crates/iota-adapter-transactional-tests/tests/transfer_object/has_store.exp index d3690306b13..0a2aa8b5e4f 100644 --- a/crates/iota-adapter-transactional-tests/tests/transfer_object/has_store.exp +++ b/crates/iota-adapter-transactional-tests/tests/transfer_object/has_store.exp @@ -7,13 +7,13 @@ task 1, lines 9-26: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 5897600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5897600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 28: //# run test::m::mint_s --sender A created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2181200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2181200, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 30: //# view-object 2,0 @@ -30,7 +30,7 @@ Contents: test::m::S { task 4, line 32: //# transfer-object 2,0 --sender A --recipient B mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2181200, storage_rebate: 2181200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2181200, storage_rebate: 2181200, non_refundable_storage_fee: 0 task 5, lines 34-37: //# view-object 2,0 @@ -48,7 +48,7 @@ task 6, line 39: //# run test::m::mint_cup --type-args test::m::S --sender A created: object(6,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2485200, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2485200, storage_rebate: 980400, non_refundable_storage_fee: 0 task 7, line 41: //# view-object 6,0 @@ -65,7 +65,7 @@ Contents: test::m::Cup { task 8, line 43: //# transfer-object 6,0 --sender A --recipient B mutated: object(0,0), object(6,0) -gas summary: computation_cost: 1000000, storage_cost: 2485200, storage_rebate: 2485200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2485200, storage_rebate: 2485200, non_refundable_storage_fee: 0 task 9, line 45: //# view-object 6,0 diff --git a/crates/iota-adapter-transactional-tests/tests/transfer_object/immutable.exp b/crates/iota-adapter-transactional-tests/tests/transfer_object/immutable.exp index 0635ad5d6b8..1803d8bc641 100644 --- a/crates/iota-adapter-transactional-tests/tests/transfer_object/immutable.exp +++ b/crates/iota-adapter-transactional-tests/tests/transfer_object/immutable.exp @@ -7,13 +7,13 @@ task 1, lines 9-20: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 5358000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5358000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 22: //# run test::m::mint_s --sender A created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2181200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2181200, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 24: //# view-object 2,0 diff --git a/crates/iota-adapter-transactional-tests/tests/transfer_object/package.exp b/crates/iota-adapter-transactional-tests/tests/transfer_object/package.exp index ad85536f35e..67d34298edf 100644 --- a/crates/iota-adapter-transactional-tests/tests/transfer_object/package.exp +++ b/crates/iota-adapter-transactional-tests/tests/transfer_object/package.exp @@ -7,7 +7,7 @@ task 1, lines 9-11: //# publish --sender A created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3169200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3169200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 14: //# view-object 1,0 diff --git a/crates/iota-adapter-transactional-tests/tests/transfer_object/quasi_shared.exp b/crates/iota-adapter-transactional-tests/tests/transfer_object/quasi_shared.exp index 55370007a48..fa1e713f8c7 100644 --- a/crates/iota-adapter-transactional-tests/tests/transfer_object/quasi_shared.exp +++ b/crates/iota-adapter-transactional-tests/tests/transfer_object/quasi_shared.exp @@ -7,19 +7,19 @@ task 1, lines 9-24: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 6140800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6140800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 26: //# run test::m::mint_s created: object(2,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 2181200, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2181200, storage_rebate: 980400, non_refundable_storage_fee: 0 task 3, line 28: //# run test::m::mint_child --args object(2,0) created: object(3,0), object(3,1) mutated: object(0,2), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 5859600, storage_rebate: 2181200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5859600, storage_rebate: 2181200, non_refundable_storage_fee: 0 task 4, line 30: //# view-object 3,0 diff --git a/crates/iota-adapter-transactional-tests/tests/transfer_object/shared.exp b/crates/iota-adapter-transactional-tests/tests/transfer_object/shared.exp index 438bcb4e817..0949a219d39 100644 --- a/crates/iota-adapter-transactional-tests/tests/transfer_object/shared.exp +++ b/crates/iota-adapter-transactional-tests/tests/transfer_object/shared.exp @@ -7,19 +7,19 @@ task 1, lines 9-26: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 5517600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5517600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 28: //# run test::m::mint_s created: object(2,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 2181200, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2181200, storage_rebate: 980400, non_refundable_storage_fee: 0 task 3, line 30: //# run test::m::mint_s2 created: object(3,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 2188800, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2188800, storage_rebate: 980400, non_refundable_storage_fee: 0 task 4, line 32: //# view-object 2,0 diff --git a/crates/iota-adapter-transactional-tests/tests/transfer_object/transfer_coin.exp b/crates/iota-adapter-transactional-tests/tests/transfer_object/transfer_coin.exp index 93075402603..025d12c0fbc 100644 --- a/crates/iota-adapter-transactional-tests/tests/transfer_object/transfer_coin.exp +++ b/crates/iota-adapter-transactional-tests/tests/transfer_object/transfer_coin.exp @@ -7,7 +7,7 @@ task 1, lines 9-10: //# programmable --sender C --inputs @A //> TransferObjects([Gas], Input(0)) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 12: //# view-object 0,2 @@ -27,7 +27,7 @@ Contents: iota::coin::Coin { task 3, line 14: //# transfer-object 0,2 --sender A --recipient B mutated: object(0,0), object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 1960800, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 1960800, storage_rebate: 980400, non_refundable_storage_fee: 0 task 4, line 16: //# view-object 0,2 diff --git a/crates/iota-adapter-transactional-tests/tests/transfer_object/wrap_unwrap.exp b/crates/iota-adapter-transactional-tests/tests/transfer_object/wrap_unwrap.exp index 471c314b051..4e76f47a390 100644 --- a/crates/iota-adapter-transactional-tests/tests/transfer_object/wrap_unwrap.exp +++ b/crates/iota-adapter-transactional-tests/tests/transfer_object/wrap_unwrap.exp @@ -7,13 +7,13 @@ task 1, lines 9-40: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 6216800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6216800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 42: //# run a::m::mint --sender A created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2181200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2181200, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 44: //# view-object 2,0 @@ -32,7 +32,7 @@ task 4, line 46: created: object(4,0) mutated: object(0,0) wrapped: object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2424400, storage_rebate: 2181200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2424400, storage_rebate: 2181200, non_refundable_storage_fee: 0 task 5, line 48: //# view-object 4,0 @@ -58,7 +58,7 @@ task 6, line 50: mutated: object(0,0) unwrapped: object(2,0) deleted: object(4,0) -gas summary: computation_cost: 1000000, storage_cost: 2181200, storage_rebate: 2424400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2181200, storage_rebate: 2424400, non_refundable_storage_fee: 0 task 7, line 52: //# view-object 2,0 diff --git a/crates/iota-adapter-transactional-tests/tests/upgrade/abort_code_resolution.exp b/crates/iota-adapter-transactional-tests/tests/upgrade/abort_code_resolution.exp index 6c440e86d29..89c288786be 100644 --- a/crates/iota-adapter-transactional-tests/tests/upgrade/abort_code_resolution.exp +++ b/crates/iota-adapter-transactional-tests/tests/upgrade/abort_code_resolution.exp @@ -7,19 +7,19 @@ task 1, lines 7-12: //# publish --upgradeable --sender A created: object(1,0), object(1,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5069200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5069200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 15-20: //# upgrade --package Test1 --upgrade-capability 1,1 --sender A created: object(2,0) mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 5069200, storage_rebate: 2606800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5069200, storage_rebate: 2606800, non_refundable_storage_fee: 0 task 3, lines 22-27: //# upgrade --package Test2 --upgrade-capability 1,1 --sender A created: object(3,0) mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 5069200, storage_rebate: 2606800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5069200, storage_rebate: 2606800, non_refundable_storage_fee: 0 task 4, lines 29-31: //# run Test1::M1::f1 diff --git a/crates/iota-adapter-transactional-tests/tests/upgrade/add_ability_during_upgrade.exp b/crates/iota-adapter-transactional-tests/tests/upgrade/add_ability_during_upgrade.exp index 903126c3d25..95e29002e95 100644 --- a/crates/iota-adapter-transactional-tests/tests/upgrade/add_ability_during_upgrade.exp +++ b/crates/iota-adapter-transactional-tests/tests/upgrade/add_ability_during_upgrade.exp @@ -7,7 +7,7 @@ task 1, lines 7-11: //# publish --upgradeable --sender A created: object(1,0), object(1,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5373200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5373200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 13-19: //# upgrade --package Test_V0 --upgrade-capability 1,1 --sender A diff --git a/crates/iota-adapter-transactional-tests/tests/upgrade/add_ability_during_upgrade_enum.exp b/crates/iota-adapter-transactional-tests/tests/upgrade/add_ability_during_upgrade_enum.exp index 6f41a3fee9d..85b32e41c50 100644 --- a/crates/iota-adapter-transactional-tests/tests/upgrade/add_ability_during_upgrade_enum.exp +++ b/crates/iota-adapter-transactional-tests/tests/upgrade/add_ability_during_upgrade_enum.exp @@ -7,7 +7,7 @@ task 1, lines 7-12: //# publish --upgradeable --sender A created: object(1,0), object(1,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5304800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5304800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 14-20: //# upgrade --package Test_V0 --upgrade-capability 1,1 --sender A diff --git a/crates/iota-adapter-transactional-tests/tests/upgrade/add_ability_during_upgrade_generics.exp b/crates/iota-adapter-transactional-tests/tests/upgrade/add_ability_during_upgrade_generics.exp index da7401e998a..1c0c5cdb574 100644 --- a/crates/iota-adapter-transactional-tests/tests/upgrade/add_ability_during_upgrade_generics.exp +++ b/crates/iota-adapter-transactional-tests/tests/upgrade/add_ability_during_upgrade_generics.exp @@ -7,7 +7,7 @@ task 1, lines 7-10: //# publish --upgradeable --sender A created: object(1,0), object(1,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5388400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5388400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 12-15: //# upgrade --package A0 --upgrade-capability 1,1 --sender A diff --git a/crates/iota-adapter-transactional-tests/tests/upgrade/add_ability_during_upgrade_generics_enum.exp b/crates/iota-adapter-transactional-tests/tests/upgrade/add_ability_during_upgrade_generics_enum.exp index e352421f604..9ae5abec58d 100644 --- a/crates/iota-adapter-transactional-tests/tests/upgrade/add_ability_during_upgrade_generics_enum.exp +++ b/crates/iota-adapter-transactional-tests/tests/upgrade/add_ability_during_upgrade_generics_enum.exp @@ -7,7 +7,7 @@ task 1, lines 7-10: //# publish --upgradeable --sender A created: object(1,0), object(1,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5320000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5320000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 12-15: //# upgrade --package A0 --upgrade-capability 1,1 --sender A diff --git a/crates/iota-adapter-transactional-tests/tests/upgrade/add_key_during_upgrade.exp b/crates/iota-adapter-transactional-tests/tests/upgrade/add_key_during_upgrade.exp index 55dbb2b615a..8954ddeba19 100644 --- a/crates/iota-adapter-transactional-tests/tests/upgrade/add_key_during_upgrade.exp +++ b/crates/iota-adapter-transactional-tests/tests/upgrade/add_key_during_upgrade.exp @@ -7,7 +7,7 @@ task 1, lines 7-15: //# publish --upgradeable --sender A created: object(1,0), object(1,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 6087600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6087600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 17-25: //# upgrade --package Test_V0 --upgrade-capability 1,1 --sender A diff --git a/crates/iota-adapter-transactional-tests/tests/upgrade/add_new_type_with_key.exp b/crates/iota-adapter-transactional-tests/tests/upgrade/add_new_type_with_key.exp index 8211175a12b..743c7f4a939 100644 --- a/crates/iota-adapter-transactional-tests/tests/upgrade/add_new_type_with_key.exp +++ b/crates/iota-adapter-transactional-tests/tests/upgrade/add_new_type_with_key.exp @@ -7,10 +7,10 @@ task 1, lines 7-12: //# publish --upgradeable --sender A created: object(1,0), object(1,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5684800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5684800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 14-22: //# upgrade --package Test_V0 --upgrade-capability 1,1 --sender A created: object(2,0) mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 6087600, storage_rebate: 2606800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6087600, storage_rebate: 2606800, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/upgrade/basic.exp b/crates/iota-adapter-transactional-tests/tests/upgrade/basic.exp index 42ff60065db..aa5562ed2c1 100644 --- a/crates/iota-adapter-transactional-tests/tests/upgrade/basic.exp +++ b/crates/iota-adapter-transactional-tests/tests/upgrade/basic.exp @@ -7,7 +7,7 @@ task 1, lines 7-11: //# publish --upgradeable --sender A created: object(1,0), object(1,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5631600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5631600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 13-16: //# upgrade --package Test --upgrade-capability 1,1 --sender A diff --git a/crates/iota-adapter-transactional-tests/tests/upgrade/constants.exp b/crates/iota-adapter-transactional-tests/tests/upgrade/constants.exp index 38ae091c900..6fbc40349a0 100644 --- a/crates/iota-adapter-transactional-tests/tests/upgrade/constants.exp +++ b/crates/iota-adapter-transactional-tests/tests/upgrade/constants.exp @@ -7,19 +7,19 @@ task 1, lines 7-17: //# publish --upgradeable --sender A created: object(1,0), object(1,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5912800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5912800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 19-29: //# upgrade --package V0 --upgrade-capability 1,1 --sender A --policy compatible created: object(2,0) mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 5912800, storage_rebate: 2606800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5912800, storage_rebate: 2606800, non_refundable_storage_fee: 0 task 3, lines 31-43: //# upgrade --package V1 --upgrade-capability 1,1 --sender A --policy additive created: object(3,0) mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 5912800, storage_rebate: 2606800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5912800, storage_rebate: 2606800, non_refundable_storage_fee: 0 task 4, lines 45-55: //# upgrade --package V2 --upgrade-capability 1,1 --sender A --policy additive @@ -35,22 +35,22 @@ task 6, lines 70-88: //# upgrade --package V2 --upgrade-capability 1,1 --sender A --policy additive created: object(6,0) mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 6353600, storage_rebate: 2606800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6353600, storage_rebate: 2606800, non_refundable_storage_fee: 0 task 7, lines 89-104: //# upgrade --package V3 --upgrade-capability 1,1 --sender A --policy additive created: object(7,0) mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 6277600, storage_rebate: 2606800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6277600, storage_rebate: 2606800, non_refundable_storage_fee: 0 task 8, lines 105-119: //# upgrade --package V4 --upgrade-capability 1,1 --sender A --policy dep_only created: object(8,0) mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 6194000, storage_rebate: 2606800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6194000, storage_rebate: 2606800, non_refundable_storage_fee: 0 task 9, lines 120-133: //# upgrade --package V5 --upgrade-capability 1,1 --sender A --policy dep_only created: object(9,0) mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 6277600, storage_rebate: 2606800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6277600, storage_rebate: 2606800, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/upgrade/dep_override.exp b/crates/iota-adapter-transactional-tests/tests/upgrade/dep_override.exp index ddd6cb9a85a..bf33fa2d1c6 100644 --- a/crates/iota-adapter-transactional-tests/tests/upgrade/dep_override.exp +++ b/crates/iota-adapter-transactional-tests/tests/upgrade/dep_override.exp @@ -7,55 +7,55 @@ task 1, lines 11-19: //# publish --upgradeable --sender A created: object(1,0), object(1,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 6794400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6794400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 21-29: //# upgrade --package Test_DepDepV1 --upgrade-capability 1,1 --sender A created: object(2,0) mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 6794400, storage_rebate: 2606800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6794400, storage_rebate: 2606800, non_refundable_storage_fee: 0 task 3, lines 31-42: //# upgrade --package Test_DepDepV2 --upgrade-capability 1,1 --sender A created: object(3,0) mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 6794400, storage_rebate: 2606800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6794400, storage_rebate: 2606800, non_refundable_storage_fee: 0 task 4, lines 45-50: //# publish --upgradeable --dependencies Test_DepDepV1 --sender A created: object(4,0), object(4,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 6536000, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6536000, storage_rebate: 980400, non_refundable_storage_fee: 0 task 5, lines 52-60: //# upgrade --package Test_DepV1 --upgrade-capability 4,1 --dependencies Test_DepDepV2 --sender A created: object(5,0) mutated: object(0,0), object(4,1) -gas summary: computation_cost: 1000000, storage_cost: 6536000, storage_rebate: 2606800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6536000, storage_rebate: 2606800, non_refundable_storage_fee: 0 task 6, lines 63-70: //# publish --upgradeable --dependencies Test_DepV1 Test_DepDepV1 --sender A created: object(6,0), object(6,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 7014800, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7014800, storage_rebate: 980400, non_refundable_storage_fee: 0 task 7, lines 72-79: //# upgrade --package Test_V1 --upgrade-capability 6,1 --dependencies Test_DepV2 Test_DepDepV2 --sender A created: object(7,0) mutated: object(0,0), object(6,1) -gas summary: computation_cost: 1000000, storage_cost: 7014800, storage_rebate: 2606800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7014800, storage_rebate: 2606800, non_refundable_storage_fee: 0 task 8, lines 81-86: //# upgrade --package Test_V2 --upgrade-capability 6,1 --dependencies Test_DepV1 Test_DepDepV3 --sender A created: object(8,0) mutated: object(0,0), object(6,1) -gas summary: computation_cost: 1000000, storage_cost: 7014800, storage_rebate: 2606800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7014800, storage_rebate: 2606800, non_refundable_storage_fee: 0 task 9, line 88: //# run Test_V1::M1::baz created: object(9,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2310400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2310400, storage_rebate: 0, non_refundable_storage_fee: 0 task 10, line 90: //# view-object 9,0 @@ -74,7 +74,7 @@ task 11, line 92: //# run Test_V2::M1::baz created: object(11,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2310400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2310400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 12, line 94: //# view-object 11,0 @@ -93,7 +93,7 @@ task 13, line 96: //# run Test_V3::M1::baz created: object(13,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2310400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2310400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 14, lines 98-101: //# view-object 13,0 @@ -114,7 +114,7 @@ task 15, lines 102-104: //> 1: Test_V3::M1::baz(); created: object(15,0), object(15,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3640400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3640400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 16, line 106: //# view-object 15,0 diff --git a/crates/iota-adapter-transactional-tests/tests/upgrade/enum_struct_swap.exp b/crates/iota-adapter-transactional-tests/tests/upgrade/enum_struct_swap.exp index 8a4125c7a57..cdcfd98376a 100644 --- a/crates/iota-adapter-transactional-tests/tests/upgrade/enum_struct_swap.exp +++ b/crates/iota-adapter-transactional-tests/tests/upgrade/enum_struct_swap.exp @@ -7,7 +7,7 @@ task 1, lines 7-17: //# publish --upgradeable --sender A created: object(1,0), object(1,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5912800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5912800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 19-27: //# upgrade --package Test_V0 --upgrade-capability 1,1 --sender A diff --git a/crates/iota-adapter-transactional-tests/tests/upgrade/enums.exp b/crates/iota-adapter-transactional-tests/tests/upgrade/enums.exp index cba6aa792cb..ab27b98ec12 100644 --- a/crates/iota-adapter-transactional-tests/tests/upgrade/enums.exp +++ b/crates/iota-adapter-transactional-tests/tests/upgrade/enums.exp @@ -7,7 +7,7 @@ task 1, lines 7-17: //# publish --upgradeable --sender A created: object(1,0), object(1,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5912800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5912800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 19-29: //# upgrade --package Test_V0 --upgrade-capability 1,1 --sender A diff --git a/crates/iota-adapter-transactional-tests/tests/upgrade/friend_fun_changes.exp b/crates/iota-adapter-transactional-tests/tests/upgrade/friend_fun_changes.exp index 960d7c6af40..cebb72577f0 100644 --- a/crates/iota-adapter-transactional-tests/tests/upgrade/friend_fun_changes.exp +++ b/crates/iota-adapter-transactional-tests/tests/upgrade/friend_fun_changes.exp @@ -7,36 +7,36 @@ task 1, lines 7-21: //# publish --upgradeable --sender A created: object(1,0), object(1,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 7653200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7653200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 22-36: //# upgrade --package V0 --upgrade-capability 1,1 --sender A created: object(2,0) mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 7668400, storage_rebate: 2606800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7668400, storage_rebate: 2606800, non_refundable_storage_fee: 0 task 3, lines 37-61: //# upgrade --package V1 --upgrade-capability 1,1 --sender A created: object(3,0) mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 8892000, storage_rebate: 2606800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 8892000, storage_rebate: 2606800, non_refundable_storage_fee: 0 task 4, lines 62-84: //# upgrade --package V2 --upgrade-capability 1,1 --sender A created: object(4,0) mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 9819200, storage_rebate: 2606800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 9819200, storage_rebate: 2606800, non_refundable_storage_fee: 0 task 5, line 86: //# run V3::friend_module::call_friend mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 0, non_refundable_storage_fee: 0 task 6, line 88: //# run V3::friend_module::call_public created: object(6,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2416800, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2416800, storage_rebate: 980400, non_refundable_storage_fee: 0 task 7, line 90: //# view-object 6,0 diff --git a/crates/iota-adapter-transactional-tests/tests/upgrade/large_module_inclusion_checks.exp b/crates/iota-adapter-transactional-tests/tests/upgrade/large_module_inclusion_checks.exp index 692fbcc04c4..70d1c64d4ad 100644 --- a/crates/iota-adapter-transactional-tests/tests/upgrade/large_module_inclusion_checks.exp +++ b/crates/iota-adapter-transactional-tests/tests/upgrade/large_module_inclusion_checks.exp @@ -7,7 +7,7 @@ task 1, lines 7-57: //# publish --upgradeable --sender A created: object(1,0), object(1,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 11293600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 11293600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 58-109: //# upgrade --package V0 --upgrade-capability 1,1 --sender A --policy dep_only @@ -23,7 +23,7 @@ task 4, lines 162-212: //# upgrade --package V0 --upgrade-capability 1,1 --sender A --policy additive created: object(4,0) mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 11293600, storage_rebate: 2606800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 11293600, storage_rebate: 2606800, non_refundable_storage_fee: 0 task 5, lines 213-265: //# upgrade --package V1 --upgrade-capability 1,1 --sender A --policy dep_only @@ -34,16 +34,16 @@ task 6, lines 266-318: //# upgrade --package V1 --upgrade-capability 1,1 --sender A --policy additive created: object(6,0) mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 12068800, storage_rebate: 2606800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 12068800, storage_rebate: 2606800, non_refundable_storage_fee: 0 task 7, lines 319-371: //# upgrade --package V2 --upgrade-capability 1,1 --sender A --policy dep_only created: object(7,0) mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 12068800, storage_rebate: 2606800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 12068800, storage_rebate: 2606800, non_refundable_storage_fee: 0 task 8, lines 372-422: //# upgrade --package V3 --upgrade-capability 1,1 --sender A --policy additive created: object(8,0) mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 12068800, storage_rebate: 2606800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 12068800, storage_rebate: 2606800, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/upgrade/linkage.exp b/crates/iota-adapter-transactional-tests/tests/upgrade/linkage.exp index cc286c21f91..d295da660c1 100644 --- a/crates/iota-adapter-transactional-tests/tests/upgrade/linkage.exp +++ b/crates/iota-adapter-transactional-tests/tests/upgrade/linkage.exp @@ -7,22 +7,22 @@ task 1, lines 7-13: //# publish --upgradeable --sender A created: object(1,0), object(1,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 6201600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6201600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 15-25: //# upgrade --package Test_DepV1 --upgrade-capability 1,1 --sender A created: object(2,0) mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 6505600, storage_rebate: 2606800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6505600, storage_rebate: 2606800, non_refundable_storage_fee: 0 task 3, lines 27-33: //# publish --upgradeable --dependencies Test_DepV1 --sender A created: object(3,0), object(3,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 6186400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6186400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 4, lines 35-42: //# upgrade --package Test_V1 --upgrade-capability 3,1 --dependencies Test_DepV2 --sender A created: object(4,0) mutated: object(0,0), object(3,1) -gas summary: computation_cost: 1000000, storage_cost: 6232000, storage_rebate: 2606800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6232000, storage_rebate: 2606800, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/upgrade/modules.exp b/crates/iota-adapter-transactional-tests/tests/upgrade/modules.exp index 0e95f01316b..ca828ba50e3 100644 --- a/crates/iota-adapter-transactional-tests/tests/upgrade/modules.exp +++ b/crates/iota-adapter-transactional-tests/tests/upgrade/modules.exp @@ -7,7 +7,7 @@ task 1, lines 7-28: //# publish --upgradeable --sender A created: object(1,0), object(1,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 9568400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 9568400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 29-49: //# upgrade --package V0 --upgrade-capability 1,1 --sender A diff --git a/crates/iota-adapter-transactional-tests/tests/upgrade/multi_version.exp b/crates/iota-adapter-transactional-tests/tests/upgrade/multi_version.exp index 1da6fd8493a..aa44692bced 100644 --- a/crates/iota-adapter-transactional-tests/tests/upgrade/multi_version.exp +++ b/crates/iota-adapter-transactional-tests/tests/upgrade/multi_version.exp @@ -7,13 +7,13 @@ task 1, lines 7-10: //# publish --upgradeable --sender A created: object(1,0), object(1,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5517600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5517600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 12-16: //# upgrade --package Test_V1 --upgrade-capability 1,1 --sender A created: object(2,0) mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 5631600, storage_rebate: 2606800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5631600, storage_rebate: 2606800, non_refundable_storage_fee: 0 task 3, lines 18-21: //# upgrade --package Test_V2 --upgrade-capability 1,1 --sender A diff --git a/crates/iota-adapter-transactional-tests/tests/upgrade/new_types.exp b/crates/iota-adapter-transactional-tests/tests/upgrade/new_types.exp index bfc42bb257b..d4d50d17efc 100644 --- a/crates/iota-adapter-transactional-tests/tests/upgrade/new_types.exp +++ b/crates/iota-adapter-transactional-tests/tests/upgrade/new_types.exp @@ -7,37 +7,37 @@ task 1, lines 7-19: //# publish --upgradeable --sender A created: object(1,0), object(1,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 7151600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7151600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 22-34: //# upgrade --package Test_DepV1 --upgrade-capability 1,1 --sender A created: object(2,0) mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 7151600, storage_rebate: 2606800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7151600, storage_rebate: 2606800, non_refundable_storage_fee: 0 task 3, lines 37-48: //# publish --upgradeable --dependencies Test_DepV1 --sender A created: object(3,0), object(3,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 6893200, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6893200, storage_rebate: 980400, non_refundable_storage_fee: 0 task 4, lines 50-61: //# upgrade --package Test_V1 --upgrade-capability 3,1 --dependencies Test_DepV1 --sender A created: object(4,0) mutated: object(0,0), object(3,1) -gas summary: computation_cost: 1000000, storage_cost: 6893200, storage_rebate: 2606800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6893200, storage_rebate: 2606800, non_refundable_storage_fee: 0 task 5, lines 63-74: //# upgrade --package Test_V2 --upgrade-capability 3,1 --dependencies Test_DepV2 --sender A created: object(5,0) mutated: object(0,0), object(3,1) -gas summary: computation_cost: 1000000, storage_cost: 6893200, storage_rebate: 2606800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6893200, storage_rebate: 2606800, non_refundable_storage_fee: 0 task 6, line 77: //# run Test_DepV1::DepM1::foo created: object(6,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2310400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2310400, storage_rebate: 0, non_refundable_storage_fee: 0 task 7, lines 79-81: //# view-object 6,0 @@ -57,7 +57,7 @@ task 8, lines 82-84: //> 0: Test_DepV1::DepM1::mod_obj(Input(0)); //> 1: Test_DepV2::DepM1::mod_obj(Input(0)); mutated: object(0,0), object(6,0) -gas summary: computation_cost: 1000000, storage_cost: 2310400, storage_rebate: 2310400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2310400, storage_rebate: 2310400, non_refundable_storage_fee: 0 task 9, lines 86-89: //# view-object 6,0 @@ -77,7 +77,7 @@ task 10, lines 90-92: //> 0: Test_V1::M1::mod_dep_obj(Input(0)); //> 1: Test_V2::M1::mod_dep_obj(Input(0)); mutated: object(0,0), object(6,0) -gas summary: computation_cost: 1000000, storage_cost: 2310400, storage_rebate: 2310400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2310400, storage_rebate: 2310400, non_refundable_storage_fee: 0 task 11, lines 94-97: //# view-object 6,0 @@ -97,7 +97,7 @@ task 12, lines 98-100: //> 0: Test_V2::M1::mod_dep_obj(Input(0)); //> 1: Test_V3::M1::mod_dep_obj(Input(0)); mutated: object(0,0), object(6,0) -gas summary: computation_cost: 1000000, storage_cost: 2310400, storage_rebate: 2310400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2310400, storage_rebate: 2310400, non_refundable_storage_fee: 0 task 13, line 102: //# view-object 6,0 diff --git a/crates/iota-adapter-transactional-tests/tests/upgrade/private_fun_changes.exp b/crates/iota-adapter-transactional-tests/tests/upgrade/private_fun_changes.exp index 08fd6b2cf57..b142bc20715 100644 --- a/crates/iota-adapter-transactional-tests/tests/upgrade/private_fun_changes.exp +++ b/crates/iota-adapter-transactional-tests/tests/upgrade/private_fun_changes.exp @@ -7,49 +7,49 @@ task 1, lines 7-10: //# publish --upgradeable --sender A created: object(1,0), object(1,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5023600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5023600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 12-15: //# upgrade --package V0 --upgrade-capability 1,1 --sender A created: object(2,0) mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 5038800, storage_rebate: 2606800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5038800, storage_rebate: 2606800, non_refundable_storage_fee: 0 task 3, lines 17-20: //# upgrade --package V1 --upgrade-capability 1,1 --sender A created: object(3,0) mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 5107200, storage_rebate: 2606800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5107200, storage_rebate: 2606800, non_refundable_storage_fee: 0 task 4, lines 22-25: //# upgrade --package V2 --upgrade-capability 1,1 --sender A created: object(4,0) mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 5107200, storage_rebate: 2606800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5107200, storage_rebate: 2606800, non_refundable_storage_fee: 0 task 5, lines 27-30: //# upgrade --package V3 --upgrade-capability 1,1 --sender A created: object(5,0) mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 5107200, storage_rebate: 2606800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5107200, storage_rebate: 2606800, non_refundable_storage_fee: 0 task 6, lines 32-34: //# upgrade --package V4 --upgrade-capability 1,1 --sender A created: object(6,0) mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 4841200, storage_rebate: 2606800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4841200, storage_rebate: 2606800, non_refundable_storage_fee: 0 task 7, lines 36-39: //# upgrade --package V5 --upgrade-capability 1,1 --sender A created: object(7,0) mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 5107200, storage_rebate: 2606800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5107200, storage_rebate: 2606800, non_refundable_storage_fee: 0 task 8, lines 41-44: //# upgrade --package V6 --upgrade-capability 1,1 --sender A created: object(8,0) mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 5107200, storage_rebate: 2606800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5107200, storage_rebate: 2606800, non_refundable_storage_fee: 0 task 9, lines 46-49: //# upgrade --package V7 --upgrade-capability 1,1 --sender A diff --git a/crates/iota-adapter-transactional-tests/tests/upgrade/public_fun_changes.exp b/crates/iota-adapter-transactional-tests/tests/upgrade/public_fun_changes.exp index 7289acc0bcc..3f65059afad 100644 --- a/crates/iota-adapter-transactional-tests/tests/upgrade/public_fun_changes.exp +++ b/crates/iota-adapter-transactional-tests/tests/upgrade/public_fun_changes.exp @@ -7,7 +7,7 @@ task 1, lines 7-10: //# publish --upgradeable --sender A created: object(1,0), object(1,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5023600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5023600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 12-15: //# upgrade --package Test_V0 --upgrade-capability 1,1 --sender A @@ -33,7 +33,7 @@ task 6, lines 32-35: //# upgrade --package Test_V0 --upgrade-capability 1,1 --sender A created: object(6,0) mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 5023600, storage_rebate: 2606800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5023600, storage_rebate: 2606800, non_refundable_storage_fee: 0 task 7, lines 37-40: //# upgrade --package Test_V1 --upgrade-capability 1,1 --sender A @@ -49,4 +49,4 @@ task 9, lines 47-50: //# upgrade --package Test_V1 --upgrade-capability 1,1 --sender A created: object(9,0) mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 5023600, storage_rebate: 2606800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5023600, storage_rebate: 2606800, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/upgrade/publisher.exp b/crates/iota-adapter-transactional-tests/tests/upgrade/publisher.exp index 2a8b080d59b..aba8bd68f19 100644 --- a/crates/iota-adapter-transactional-tests/tests/upgrade/publisher.exp +++ b/crates/iota-adapter-transactional-tests/tests/upgrade/publisher.exp @@ -7,20 +7,20 @@ task 1, lines 7-17: //# publish --upgradeable --sender A created: object(1,0), object(1,1), object(1,2) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 8534800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 8534800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 19-34: //# upgrade --package A0 --upgrade-capability 1,1 --sender A created: object(2,0) mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 7676000, storage_rebate: 2606800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7676000, storage_rebate: 2606800, non_refundable_storage_fee: 0 task 3, line 36: //# run A1::m::test --type-args A0::m::A --args object(1,0) --sender A mutated: object(0,0), object(1,0) -gas summary: computation_cost: 1000000, storage_cost: 2796800, storage_rebate: 2796800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2796800, storage_rebate: 2796800, non_refundable_storage_fee: 0 task 4, line 38: //# run A1::m::test --type-args A1::m::B --args object(1,0) --sender A mutated: object(0,0), object(1,0) -gas summary: computation_cost: 1000000, storage_cost: 2796800, storage_rebate: 2796800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2796800, storage_rebate: 2796800, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/upgrade/remove_ability_during_upgrade_fun_generics.exp b/crates/iota-adapter-transactional-tests/tests/upgrade/remove_ability_during_upgrade_fun_generics.exp index ded9407fb21..773e02527e3 100644 --- a/crates/iota-adapter-transactional-tests/tests/upgrade/remove_ability_during_upgrade_fun_generics.exp +++ b/crates/iota-adapter-transactional-tests/tests/upgrade/remove_ability_during_upgrade_fun_generics.exp @@ -7,25 +7,25 @@ task 1, lines 7-10: //# publish --upgradeable --sender A created: object(1,0), object(1,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5031200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5031200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 12-15: //# upgrade --package A0 --upgrade-capability 1,1 --sender A created: object(2,0) mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 5031200, storage_rebate: 2606800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5031200, storage_rebate: 2606800, non_refundable_storage_fee: 0 task 3, lines 17-20: //# upgrade --package A1 --upgrade-capability 1,1 --sender A created: object(3,0) mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 5031200, storage_rebate: 2606800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5031200, storage_rebate: 2606800, non_refundable_storage_fee: 0 task 4, lines 22-25: //# upgrade --package A2 --upgrade-capability 1,1 --sender A created: object(4,0) mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 5031200, storage_rebate: 2606800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5031200, storage_rebate: 2606800, non_refundable_storage_fee: 0 task 5, lines 27-30: //# upgrade --package A3 --upgrade-capability 1,1 --sender A diff --git a/crates/iota-adapter-transactional-tests/tests/upgrade/remove_ability_during_upgrade_generics.exp b/crates/iota-adapter-transactional-tests/tests/upgrade/remove_ability_during_upgrade_generics.exp index 08ac4a8136b..13ca0fdf3a9 100644 --- a/crates/iota-adapter-transactional-tests/tests/upgrade/remove_ability_during_upgrade_generics.exp +++ b/crates/iota-adapter-transactional-tests/tests/upgrade/remove_ability_during_upgrade_generics.exp @@ -7,7 +7,7 @@ task 1, lines 7-12: //# publish --upgradeable --sender A created: object(1,0), object(1,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5320000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5320000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 14-19: //# upgrade --package A0 --upgrade-capability 1,1 --sender A diff --git a/crates/iota-adapter-transactional-tests/tests/upgrade/remove_phantom.exp b/crates/iota-adapter-transactional-tests/tests/upgrade/remove_phantom.exp index 6d9281323aa..e145568bfd8 100644 --- a/crates/iota-adapter-transactional-tests/tests/upgrade/remove_phantom.exp +++ b/crates/iota-adapter-transactional-tests/tests/upgrade/remove_phantom.exp @@ -7,7 +7,7 @@ task 1, lines 7-10: //# publish --upgradeable --sender A created: object(1,0), object(1,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5388400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5388400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 12-15: //# upgrade --package A0 --upgrade-capability 1,1 --sender A diff --git a/crates/iota-adapter-transactional-tests/tests/upgrade/remove_phantom_enum.exp b/crates/iota-adapter-transactional-tests/tests/upgrade/remove_phantom_enum.exp index d1f7b42ff2b..83278b57196 100644 --- a/crates/iota-adapter-transactional-tests/tests/upgrade/remove_phantom_enum.exp +++ b/crates/iota-adapter-transactional-tests/tests/upgrade/remove_phantom_enum.exp @@ -7,7 +7,7 @@ task 1, lines 7-10: //# publish --upgradeable --sender A created: object(1,0), object(1,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5312400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5312400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 12-15: //# upgrade --package A0 --upgrade-capability 1,1 --sender A diff --git a/crates/iota-adapter-transactional-tests/tests/upgrade/struct_enum_swap.exp b/crates/iota-adapter-transactional-tests/tests/upgrade/struct_enum_swap.exp index 6dc4253bad7..40d3c3e9b76 100644 --- a/crates/iota-adapter-transactional-tests/tests/upgrade/struct_enum_swap.exp +++ b/crates/iota-adapter-transactional-tests/tests/upgrade/struct_enum_swap.exp @@ -7,7 +7,7 @@ task 1, lines 7-15: //# publish --upgradeable --sender A created: object(1,0), object(1,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5867200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5867200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 17-27: //# upgrade --package Test_V0 --upgrade-capability 1,1 --sender A diff --git a/crates/iota-adapter-transactional-tests/tests/upgrade/structs.exp b/crates/iota-adapter-transactional-tests/tests/upgrade/structs.exp index e2d5a23c791..ebb9189bbef 100644 --- a/crates/iota-adapter-transactional-tests/tests/upgrade/structs.exp +++ b/crates/iota-adapter-transactional-tests/tests/upgrade/structs.exp @@ -7,7 +7,7 @@ task 1, lines 7-15: //# publish --upgradeable --sender A created: object(1,0), object(1,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5867200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5867200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 17-25: //# upgrade --package Test_V0 --upgrade-capability 1,1 --sender A diff --git a/crates/iota-adapter-transactional-tests/tests/upgrade/transitive_linkage.exp b/crates/iota-adapter-transactional-tests/tests/upgrade/transitive_linkage.exp index a0953f84d39..9a95134df3f 100644 --- a/crates/iota-adapter-transactional-tests/tests/upgrade/transitive_linkage.exp +++ b/crates/iota-adapter-transactional-tests/tests/upgrade/transitive_linkage.exp @@ -7,34 +7,34 @@ task 1, lines 7-13: //# publish --upgradeable --sender A created: object(1,0), object(1,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 6201600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6201600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 16-22: //# upgrade --package Test_DepV1 --upgrade-capability 1,1 --sender A created: object(2,0) mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 6201600, storage_rebate: 2606800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6201600, storage_rebate: 2606800, non_refundable_storage_fee: 0 task 3, lines 24-34: //# upgrade --package Test_DepV2 --upgrade-capability 1,1 --sender A created: object(3,0) mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 6505600, storage_rebate: 2606800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6505600, storage_rebate: 2606800, non_refundable_storage_fee: 0 task 4, lines 37-43: //# publish --upgradeable --dependencies Test_DepV1 --sender A created: object(4,0), object(4,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 6186400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6186400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 5, lines 45-51: //# upgrade --package Test_V1 --upgrade-capability 4,1 --dependencies Test_DepV2 --sender A created: object(5,0) mutated: object(0,0), object(4,1) -gas summary: computation_cost: 1000000, storage_cost: 6186400, storage_rebate: 2606800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6186400, storage_rebate: 2606800, non_refundable_storage_fee: 0 task 6, lines 53-60: //# upgrade --package Test_V2 --upgrade-capability 4,1 --dependencies Test_DepV3 --sender A created: object(6,0) mutated: object(0,0), object(4,1) -gas summary: computation_cost: 1000000, storage_cost: 6232000, storage_rebate: 2606800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6232000, storage_rebate: 2606800, non_refundable_storage_fee: 0 diff --git a/crates/iota-adapter-transactional-tests/tests/upgrade/type_names.exp b/crates/iota-adapter-transactional-tests/tests/upgrade/type_names.exp index 7e0052086fb..2771de9abbc 100644 --- a/crates/iota-adapter-transactional-tests/tests/upgrade/type_names.exp +++ b/crates/iota-adapter-transactional-tests/tests/upgrade/type_names.exp @@ -7,67 +7,67 @@ task 1, lines 7-17: //# publish --upgradeable --sender A created: object(1,0), object(1,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 6566400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6566400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 19-31: //# upgrade --package A0 --upgrade-capability 1,0 --sender A created: object(2,0) mutated: object(0,0), object(1,0) -gas summary: computation_cost: 1000000, storage_cost: 7265600, storage_rebate: 2606800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7265600, storage_rebate: 2606800, non_refundable_storage_fee: 0 task 3, lines 33-63: //# upgrade --package A1 --upgrade-capability 1,0 --sender A created: object(3,0) mutated: object(0,0), object(1,0) -gas summary: computation_cost: 1000000, storage_cost: 9887600, storage_rebate: 2606800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 9887600, storage_rebate: 2606800, non_refundable_storage_fee: 0 task 4, line 65: //# run A2::m::canary --type-args A0::m::A --args true --sender A created: object(4,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2713200, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2713200, storage_rebate: 980400, non_refundable_storage_fee: 0 task 5, line 67: //# run A2::m::canary --type-args A1::m::B --args true --sender A created: object(5,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2713200, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2713200, storage_rebate: 980400, non_refundable_storage_fee: 0 task 6, line 69: //# run A2::m::canary --type-args A0::m::A --args false --sender A created: object(6,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2713200, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2713200, storage_rebate: 980400, non_refundable_storage_fee: 0 task 7, line 71: //# run A2::m::canary --type-args A1::m::B --args false --sender A created: object(7,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2713200, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2713200, storage_rebate: 980400, non_refundable_storage_fee: 0 task 8, line 73: //# run A2::m::canary --type-args A0::m::EA --args true --sender A created: object(8,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2713200, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2713200, storage_rebate: 980400, non_refundable_storage_fee: 0 task 9, line 75: //# run A2::m::canary --type-args A1::m::EB --args true --sender A created: object(9,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2713200, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2713200, storage_rebate: 980400, non_refundable_storage_fee: 0 task 10, line 77: //# run A2::m::canary --type-args A0::m::EA --args false --sender A created: object(10,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2713200, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2713200, storage_rebate: 980400, non_refundable_storage_fee: 0 task 11, line 79: //# run A2::m::canary --type-args A1::m::EB --args false --sender A created: object(11,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2713200, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2713200, storage_rebate: 980400, non_refundable_storage_fee: 0 task 12, line 81: //# view-object 4,0 diff --git a/crates/iota-adapter-transactional-tests/tests/upgrade/upgrade_ratchet.exp b/crates/iota-adapter-transactional-tests/tests/upgrade/upgrade_ratchet.exp index 5d3a1bd4def..6448d82a9bc 100644 --- a/crates/iota-adapter-transactional-tests/tests/upgrade/upgrade_ratchet.exp +++ b/crates/iota-adapter-transactional-tests/tests/upgrade/upgrade_ratchet.exp @@ -7,18 +7,18 @@ task 1, lines 7-13: //# publish --upgradeable --sender A created: object(1,0), object(1,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5631600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5631600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 14-17: //# upgrade --package V0 --upgrade-capability 1,1 --sender A created: object(2,0) mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 5000800, storage_rebate: 2606800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5000800, storage_rebate: 2606800, non_refundable_storage_fee: 0 task 3, lines 19-21: //# run iota::package::only_additive_upgrades --args object(1,1) --sender A mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 2606800, storage_rebate: 2606800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2606800, storage_rebate: 2606800, non_refundable_storage_fee: 0 task 4, lines 22-27: //# upgrade --package V1 --upgrade-capability 1,1 --sender A --policy compatible @@ -29,18 +29,18 @@ task 5, lines 28-33: //# upgrade --package V1 --upgrade-capability 1,1 --sender A --policy additive created: object(5,0) mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 5000800, storage_rebate: 2606800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5000800, storage_rebate: 2606800, non_refundable_storage_fee: 0 task 6, lines 34-37: //# upgrade --package V2 --upgrade-capability 1,1 --sender A --policy dep_only created: object(6,0) mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 5000800, storage_rebate: 2606800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5000800, storage_rebate: 2606800, non_refundable_storage_fee: 0 task 7, lines 39-41: //# run iota::package::only_dep_upgrades --args object(1,1) --sender A mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 2606800, storage_rebate: 2606800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2606800, storage_rebate: 2606800, non_refundable_storage_fee: 0 task 8, lines 42-47: //# upgrade --package V3 --upgrade-capability 1,1 --sender A --policy compatible @@ -56,7 +56,7 @@ task 10, lines 54-59: //# upgrade --package V3 --upgrade-capability 1,1 --sender A --policy dep_only created: object(10,0) mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 5000800, storage_rebate: 2606800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5000800, storage_rebate: 2606800, non_refundable_storage_fee: 0 task 11, lines 60-62: //# run iota::package::only_additive_upgrades --args object(1,1) --sender A @@ -67,7 +67,7 @@ task 12, line 63: //# run iota::package::make_immutable --args object(1,1) --sender A mutated: object(0,0) deleted: object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 2606800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 2606800, non_refundable_storage_fee: 0 task 13, lines 65-67: //# view-object 1,1 diff --git a/crates/iota-cost/tests/snapshots/empirical_transaction_cost__good_snapshot.snap b/crates/iota-cost/tests/snapshots/empirical_transaction_cost__good_snapshot.snap index b142ef145db..cd5e5d19830 100644 --- a/crates/iota-cost/tests/snapshots/empirical_transaction_cost__good_snapshot.snap +++ b/crates/iota-cost/tests/snapshots/empirical_transaction_cost__good_snapshot.snap @@ -1,58 +1,68 @@ --- source: crates/iota-cost/tests/empirical_transaction_cost.rs expression: common_costs_actual +snapshot_kind: text --- { "MergeCoin": { "computationCost": "1000000", + "computationCostBurned": "1000000", "storageCost": "1960800", "storageRebate": "0", "nonRefundableStorageFee": "0" }, "Publish": { "computationCost": "1000000", + "computationCostBurned": "1000000", "storageCost": "13474800", "storageRebate": "0", "nonRefundableStorageFee": "0" }, "SharedCounterAssertValue": { "computationCost": "1000000", + "computationCostBurned": "1000000", "storageCost": "2576400", "storageRebate": "1596000", "nonRefundableStorageFee": "0" }, "SharedCounterCreate": { "computationCost": "1000000", + "computationCostBurned": "1000000", "storageCost": "2576400", "storageRebate": "0", "nonRefundableStorageFee": "0" }, "SharedCounterIncrement": { "computationCost": "1000000", + "computationCostBurned": "1000000", "storageCost": "2576400", "storageRebate": "1596000", "nonRefundableStorageFee": "0" }, "SplitCoin": { "computationCost": "1000000", + "computationCostBurned": "1000000", "storageCost": "4902000", "storageRebate": "0", "nonRefundableStorageFee": "0" }, "TransferPortionIotaCoin": { "computationCost": "1000000", + "computationCostBurned": "1000000", "storageCost": "1960800", "storageRebate": "0", "nonRefundableStorageFee": "0" }, "TransferWholeCoin": { "computationCost": "1000000", + "computationCostBurned": "1000000", "storageCost": "1960800", "storageRebate": "0", "nonRefundableStorageFee": "0" }, "TransferWholeIotaCoin": { "computationCost": "1000000", + "computationCostBurned": "1000000", "storageCost": "980400", "storageRebate": "0", "nonRefundableStorageFee": "0" diff --git a/crates/iota-graphql-e2e-tests/tests/available_range/available_range.exp b/crates/iota-graphql-e2e-tests/tests/available_range/available_range.exp index f75cf66cc08..6dfbb9b815e 100644 --- a/crates/iota-graphql-e2e-tests/tests/available_range/available_range.exp +++ b/crates/iota-graphql-e2e-tests/tests/available_range/available_range.exp @@ -6,20 +6,20 @@ Response: { "data": { "availableRange": { "first": { - "digest": "12SiJP1KTaGDQ5gYnZYPAuVuh6hmYq9z5FFYskDbYWBs", + "digest": "4ELBAJ4AW3LXSgsEoXn525rFUdvtAPNhdavRcGaFqNBr", "sequenceNumber": 0 }, "last": { - "digest": "12SiJP1KTaGDQ5gYnZYPAuVuh6hmYq9z5FFYskDbYWBs", + "digest": "4ELBAJ4AW3LXSgsEoXn525rFUdvtAPNhdavRcGaFqNBr", "sequenceNumber": 0 } }, "first": { - "digest": "12SiJP1KTaGDQ5gYnZYPAuVuh6hmYq9z5FFYskDbYWBs", + "digest": "4ELBAJ4AW3LXSgsEoXn525rFUdvtAPNhdavRcGaFqNBr", "sequenceNumber": 0 }, "last": { - "digest": "12SiJP1KTaGDQ5gYnZYPAuVuh6hmYq9z5FFYskDbYWBs", + "digest": "4ELBAJ4AW3LXSgsEoXn525rFUdvtAPNhdavRcGaFqNBr", "sequenceNumber": 0 } } @@ -39,20 +39,20 @@ Response: { "data": { "availableRange": { "first": { - "digest": "12SiJP1KTaGDQ5gYnZYPAuVuh6hmYq9z5FFYskDbYWBs", + "digest": "4ELBAJ4AW3LXSgsEoXn525rFUdvtAPNhdavRcGaFqNBr", "sequenceNumber": 0 }, "last": { - "digest": "7AeuzC9bvgWTqyx8DHTEmd6946NkTFyzq52kbERGSuP6", + "digest": "6rszwvzRELvaUnWaphcdzP4fd7Q3uhbGYa2sUHkxw6p3", "sequenceNumber": 2 } }, "first": { - "digest": "12SiJP1KTaGDQ5gYnZYPAuVuh6hmYq9z5FFYskDbYWBs", + "digest": "4ELBAJ4AW3LXSgsEoXn525rFUdvtAPNhdavRcGaFqNBr", "sequenceNumber": 0 }, "last": { - "digest": "7AeuzC9bvgWTqyx8DHTEmd6946NkTFyzq52kbERGSuP6", + "digest": "6rszwvzRELvaUnWaphcdzP4fd7Q3uhbGYa2sUHkxw6p3", "sequenceNumber": 2 } } diff --git a/crates/iota-graphql-e2e-tests/tests/call/coin_metadata.exp b/crates/iota-graphql-e2e-tests/tests/call/coin_metadata.exp index faa6fe702fe..e7603e9773d 100644 --- a/crates/iota-graphql-e2e-tests/tests/call/coin_metadata.exp +++ b/crates/iota-graphql-e2e-tests/tests/call/coin_metadata.exp @@ -7,7 +7,7 @@ task 1, lines 7-18: //# publish --sender A created: object(1,0), object(1,1), object(1,2) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 10594400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 10594400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 20: //# create-checkpoint @@ -35,7 +35,7 @@ task 4, lines 35-37: created: object(4,0) mutated: object(0,0), object(1,2) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 3990000, storage_rebate: 2675200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3990000, storage_rebate: 2675200, non_refundable_storage_fee: 0 task 5, line 39: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/call/dynamic_fields.exp b/crates/iota-graphql-e2e-tests/tests/call/dynamic_fields.exp index 5adc88e8764..4ea401d7a3f 100644 --- a/crates/iota-graphql-e2e-tests/tests/call/dynamic_fields.exp +++ b/crates/iota-graphql-e2e-tests/tests/call/dynamic_fields.exp @@ -7,25 +7,25 @@ task 1, lines 14-53: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 8322000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 8322000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 55: //# run Test::m::create_obj --sender A created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2219200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2219200, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 57: //# run Test::m::add_df --sender A --args object(2,0) created: object(3,0), object(3,1), object(3,2) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 6498000, storage_rebate: 2219200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6498000, storage_rebate: 2219200, non_refundable_storage_fee: 0 task 4, line 59: //# run Test::m::add_dof --sender A --args object(2,0) created: object(4,0), object(4,1) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 5897600, storage_rebate: 2219200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5897600, storage_rebate: 2219200, non_refundable_storage_fee: 0 task 5, line 61: //# create-checkpoint @@ -105,7 +105,7 @@ task 7, line 88: created: object(7,0) mutated: object(0,0) wrapped: object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2470000, storage_rebate: 2219200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2470000, storage_rebate: 2219200, non_refundable_storage_fee: 0 task 8, line 90: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/call/owned_objects.exp b/crates/iota-graphql-e2e-tests/tests/call/owned_objects.exp index d773db4aa52..4af89afdd54 100644 --- a/crates/iota-graphql-e2e-tests/tests/call/owned_objects.exp +++ b/crates/iota-graphql-e2e-tests/tests/call/owned_objects.exp @@ -4,7 +4,7 @@ task 1, lines 23-42: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5563200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5563200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 44-62: //# run-graphql @@ -22,7 +22,7 @@ task 3, line 64: //# run Test::M1::create --args 0 @A created: object(3,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 4, line 66: //# view-object 3,0 diff --git a/crates/iota-graphql-e2e-tests/tests/call/simple.exp b/crates/iota-graphql-e2e-tests/tests/call/simple.exp index 4c88670f4fc..12f214afc83 100644 --- a/crates/iota-graphql-e2e-tests/tests/call/simple.exp +++ b/crates/iota-graphql-e2e-tests/tests/call/simple.exp @@ -7,19 +7,19 @@ task 1, lines 7-26: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 5563200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5563200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 28: //# run Test::M1::create --args 0 @A --gas-price 1000 created: object(2,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 3, line 30: //# run Test::M1::create --args 0 @validator_0 created: object(3,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 4, line 32: //# view-object 0,0 @@ -69,7 +69,7 @@ Checkpoint created: 4 task 8, line 40: //# view-checkpoint CheckpointSummary { epoch: 0, seq: 4, content_digest: D3oWLCcqoa1D15gxzvMaDemNNY8YYVspAkYkcmtQKWRt, - epoch_rolling_gas_cost_summary: GasCostSummary { computation_cost: 3000000, storage_cost: 10138400, storage_rebate: 1960800, non_refundable_storage_fee: 0 }} + epoch_rolling_gas_cost_summary: GasCostSummary { computation_cost: 3000000, computation_cost_burned: 3000000, storage_cost: 10138400, storage_rebate: 1960800, non_refundable_storage_fee: 0 }} task 9, line 42: //# advance-epoch 6 @@ -77,8 +77,8 @@ Epoch advanced: 5 task 10, line 44: //# view-checkpoint -CheckpointSummary { epoch: 5, seq: 10, content_digest: J9enPhtE1VkToA7FTbCPZ6buGnHzVwuQXKAVjfohoWF2, - epoch_rolling_gas_cost_summary: GasCostSummary { computation_cost: 0, storage_cost: 0, storage_rebate: 0, non_refundable_storage_fee: 0 }} +CheckpointSummary { epoch: 5, seq: 10, content_digest: Ee6ZUSAsovYRwYFDNkWyii9fVgYaAmL9kcdgDwnDQ5if, + epoch_rolling_gas_cost_summary: GasCostSummary { computation_cost: 0, computation_cost_burned: 0, storage_cost: 0, storage_rebate: 0, non_refundable_storage_fee: 0 }} task 11, lines 46-51: //# run-graphql @@ -355,19 +355,19 @@ task 22, line 178: //# run Test::M1::create --args 0 @A --gas-price 999 created: object(22,0) mutated: object(0,1) -gas summary: computation_cost: 999000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 999000, computation_cost_burned: 999000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 23, line 180: //# run Test::M1::create --args 0 @A --gas-price 1000 created: object(23,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 24, line 182: //# run Test::M1::create --args 0 @A --gas-price 235 created: object(24,0) mutated: object(0,1) -gas summary: computation_cost: 235000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 235000, computation_cost_burned: 235000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 25, lines 184-189: //# run-graphql diff --git a/crates/iota-graphql-e2e-tests/tests/consistency/balances.exp b/crates/iota-graphql-e2e-tests/tests/consistency/balances.exp index bda939fce32..98f98b2c9c6 100644 --- a/crates/iota-graphql-e2e-tests/tests/consistency/balances.exp +++ b/crates/iota-graphql-e2e-tests/tests/consistency/balances.exp @@ -8,7 +8,7 @@ task 1, lines 20-47: created: object(1,0), object(1,1), object(1,2), object(1,3), object(1,4), object(1,5) mutated: object(0,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 15618000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 15618000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 49: //# create-checkpoint @@ -20,7 +20,7 @@ task 3, lines 51-53: //> MergeCoins(Input(2), [Result(0)]); mutated: object(0,0), object(1,1), object(1,5) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 3990000, storage_rebate: 3990000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3990000, storage_rebate: 3990000, non_refundable_storage_fee: 0 task 4, line 55: //# create-checkpoint @@ -30,7 +30,7 @@ task 5, line 57: //# transfer-object 1,2 --sender A --recipient B mutated: object(0,0), object(1,2) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 2295200, storage_rebate: 2295200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2295200, storage_rebate: 2295200, non_refundable_storage_fee: 0 task 6, line 59: //# create-checkpoint @@ -40,7 +40,7 @@ task 7, line 61: //# transfer-object 1,3 --sender A --recipient B mutated: object(0,0), object(1,3) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 2295200, storage_rebate: 2295200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2295200, storage_rebate: 2295200, non_refundable_storage_fee: 0 task 9, line 65: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/consistency/checkpoints/transaction_blocks.exp b/crates/iota-graphql-e2e-tests/tests/consistency/checkpoints/transaction_blocks.exp index db4710c8416..674bc426868 100644 --- a/crates/iota-graphql-e2e-tests/tests/consistency/checkpoints/transaction_blocks.exp +++ b/crates/iota-graphql-e2e-tests/tests/consistency/checkpoints/transaction_blocks.exp @@ -7,31 +7,31 @@ task 1, lines 14-27: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 5168000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5168000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 29: //# run Test::M1::create --args 0 @A --sender A created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 31: //# run Test::M1::create --args 0 @A --sender A created: object(3,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 4, line 33: //# run Test::M1::create --args 0 @A --sender A created: object(4,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 5, line 35: //# run Test::M1::create --args 0 @A --sender A created: object(5,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 6, line 37: //# create-checkpoint @@ -41,19 +41,19 @@ task 7, line 39: //# run Test::M1::create --args 0 @A --sender A created: object(7,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 8, line 41: //# run Test::M1::create --args 0 @A --sender A created: object(8,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 9, line 43: //# run Test::M1::create --args 0 @A --sender A created: object(9,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 10, line 45: //# create-checkpoint @@ -63,13 +63,13 @@ task 11, line 47: //# run Test::M1::create --args 0 @A --sender A created: object(11,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 12, line 49: //# run Test::M1::create --args 0 @A --sender A created: object(12,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 13, line 51: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/consistency/coins.exp b/crates/iota-graphql-e2e-tests/tests/consistency/coins.exp index 353daaefabc..f4477a71240 100644 --- a/crates/iota-graphql-e2e-tests/tests/consistency/coins.exp +++ b/crates/iota-graphql-e2e-tests/tests/consistency/coins.exp @@ -8,7 +8,7 @@ task 1, lines 13-40: created: object(1,0), object(1,1), object(1,2), object(1,3), object(1,4), object(1,5) mutated: object(0,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 15618000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 15618000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 42: //# create-checkpoint @@ -20,7 +20,7 @@ task 3, lines 44-46: //> MergeCoins(Input(2), [Result(0)]); mutated: object(0,0), object(1,1), object(1,5) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 3990000, storage_rebate: 3990000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3990000, storage_rebate: 3990000, non_refundable_storage_fee: 0 task 4, line 48: //# create-checkpoint @@ -434,13 +434,13 @@ task 7, line 136: //# transfer-object 1,2 --sender A --recipient B mutated: object(0,0), object(1,2) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 2295200, storage_rebate: 2295200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2295200, storage_rebate: 2295200, non_refundable_storage_fee: 0 task 8, line 138: //# transfer-object 1,3 --sender A --recipient B mutated: object(0,0), object(1,3) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 2295200, storage_rebate: 2295200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2295200, storage_rebate: 2295200, non_refundable_storage_fee: 0 task 9, line 140: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/deleted_df.exp b/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/deleted_df.exp index 63ada6cead3..7797f60515a 100644 --- a/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/deleted_df.exp +++ b/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/deleted_df.exp @@ -7,13 +7,13 @@ task 1, lines 15-56: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 8466400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 8466400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 58: //# run Test::M1::parent --sender A --args @A created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 60: //# view-object 2,0 @@ -32,7 +32,7 @@ task 4, line 62: //# run Test::M1::add_df --sender A --args object(2,0) created: object(4,0), object(4,1), object(4,2) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 8626000, storage_rebate: 2287600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 8626000, storage_rebate: 2287600, non_refundable_storage_fee: 0 task 5, line 64: //# view-object 2,0 @@ -51,7 +51,7 @@ task 6, line 66: //# run Test::M1::add_more_df --sender A --args object(2,0) created: object(6,0), object(6,1), object(6,2) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 8626000, storage_rebate: 2287600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 8626000, storage_rebate: 2287600, non_refundable_storage_fee: 0 task 7, line 68: //# view-object 2,0 @@ -70,12 +70,12 @@ task 8, line 70: //# run Test::M1::remove_df --sender A --args object(2,0) mutated: object(0,0), object(2,0) deleted: object(4,0), object(4,1), object(4,2) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 8626000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 8626000, non_refundable_storage_fee: 0 task 9, line 72: //# run Test::M1::mutate_parent --sender A --args object(2,0) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 2287600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 2287600, non_refundable_storage_fee: 0 task 10, line 74: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/deleted_dof.exp b/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/deleted_dof.exp index c3f4de9eeaa..64fbcfc0f80 100644 --- a/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/deleted_dof.exp +++ b/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/deleted_dof.exp @@ -7,7 +7,7 @@ task 1, lines 15-59: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 7942000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7942000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 61-63: //# programmable --sender A --inputs @A @@ -15,18 +15,18 @@ task 2, lines 61-63: //> 1: Test::M1::parent(Input(0)); created: object(2,0), object(2,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3587200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3587200, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 65: //# run Test::M1::add_child --sender A --args object(2,1) object(2,0) 42 created: object(3,0) mutated: object(0,0), object(2,0), object(2,1) -gas summary: computation_cost: 1000000, storage_cost: 6034400, storage_rebate: 3587200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6034400, storage_rebate: 3587200, non_refundable_storage_fee: 0 task 4, line 67: //# run Test::M1::mutate_parent --sender A --args object(2,1) mutated: object(0,0), object(2,1) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 2287600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 2287600, non_refundable_storage_fee: 0 task 5, line 69: //# create-checkpoint @@ -135,7 +135,7 @@ task 7, line 130: //# run Test::M1::delete_child --sender A --args object(2,1) 42 mutated: object(0,0), object(2,1) deleted: object(2,0), object(3,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 6034400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 6034400, non_refundable_storage_fee: 0 task 8, line 132: //# create-checkpoint @@ -181,7 +181,7 @@ Response: { task 10, line 187: //# run Test::M1::mutate_parent --sender A --args object(2,1) mutated: object(0,0), object(2,1) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 2287600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 2287600, non_refundable_storage_fee: 0 task 11, line 189: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/dof_add_reclaim_transfer.exp b/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/dof_add_reclaim_transfer.exp index 63df80a5517..404738532fc 100644 --- a/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/dof_add_reclaim_transfer.exp +++ b/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/dof_add_reclaim_transfer.exp @@ -7,7 +7,7 @@ task 1, lines 20-59: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 7592400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7592400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 61-63: //# programmable --sender A --inputs @A @@ -15,13 +15,13 @@ task 2, lines 61-63: //> 1: Test::M1::parent(Input(0)); created: object(2,0), object(2,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3587200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3587200, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 65: //# run Test::M1::add_child --sender A --args object(2,1) object(2,0) 42 created: object(3,0) mutated: object(0,0), object(2,0), object(2,1) -gas summary: computation_cost: 1000000, storage_cost: 6034400, storage_rebate: 3587200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6034400, storage_rebate: 3587200, non_refundable_storage_fee: 0 task 4, line 67: //# create-checkpoint @@ -152,7 +152,7 @@ task 6, line 133: //# run Test::M1::reclaim_and_transfer_child --sender A --args object(2,1) 42 @A mutated: object(0,0), object(2,0), object(2,1) deleted: object(3,0) -gas summary: computation_cost: 1000000, storage_cost: 3587200, storage_rebate: 6034400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3587200, storage_rebate: 6034400, non_refundable_storage_fee: 0 task 7, line 135: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/dof_add_reclaim_transfer_reclaim_add.exp b/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/dof_add_reclaim_transfer_reclaim_add.exp index 008d25aff2b..a941516ec37 100644 --- a/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/dof_add_reclaim_transfer_reclaim_add.exp +++ b/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/dof_add_reclaim_transfer_reclaim_add.exp @@ -7,7 +7,7 @@ task 1, lines 19-58: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 7592400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7592400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 60-63: //# programmable --sender A --inputs @A @@ -16,37 +16,37 @@ task 2, lines 60-63: //> 2: Test::M1::parent(Input(0)); created: object(2,0), object(2,1), object(2,2) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4894400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4894400, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 65: //# run Test::M1::add_child --sender A --args object(2,1) object(2,0) 42 created: object(3,0) mutated: object(0,0), object(2,0), object(2,1) -gas summary: computation_cost: 1000000, storage_cost: 6034400, storage_rebate: 3587200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6034400, storage_rebate: 3587200, non_refundable_storage_fee: 0 task 4, line 67: //# run Test::M1::reclaim_and_transfer_child --sender A --args object(2,1) 42 @A mutated: object(0,0), object(2,0), object(2,1) deleted: object(3,0) -gas summary: computation_cost: 1000000, storage_cost: 3587200, storage_rebate: 6034400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3587200, storage_rebate: 6034400, non_refundable_storage_fee: 0 task 5, line 69: //# run Test::M1::add_child --sender A --args object(2,2) object(2,0) 42 created: object(5,0) mutated: object(0,0), object(2,0), object(2,2) -gas summary: computation_cost: 1000000, storage_cost: 6034400, storage_rebate: 3587200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6034400, storage_rebate: 3587200, non_refundable_storage_fee: 0 task 6, line 71: //# run Test::M1::reclaim_and_transfer_child --sender A --args object(2,2) 42 @A mutated: object(0,0), object(2,0), object(2,2) deleted: object(5,0) -gas summary: computation_cost: 1000000, storage_cost: 3587200, storage_rebate: 6034400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3587200, storage_rebate: 6034400, non_refundable_storage_fee: 0 task 7, line 73: //# run Test::M1::add_child --sender A --args object(2,1) object(2,0) 42 created: object(3,0) mutated: object(0,0), object(2,0), object(2,1) -gas summary: computation_cost: 1000000, storage_cost: 6034400, storage_rebate: 3587200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6034400, storage_rebate: 3587200, non_refundable_storage_fee: 0 task 8, line 75: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/dynamic_fields.exp b/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/dynamic_fields.exp index a98d051e261..f553d2641e1 100644 --- a/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/dynamic_fields.exp +++ b/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/dynamic_fields.exp @@ -7,7 +7,7 @@ task 1, lines 13-83: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 11004800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 11004800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 85-87: //# programmable --sender A --inputs @A 42 @@ -15,7 +15,7 @@ task 2, lines 85-87: //> 1: Test::M1::child(Input(0)); created: object(2,0), object(2,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3526400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3526400, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 89: //# view-object 2,1 @@ -48,7 +48,7 @@ task 5, lines 93-95: //> Test::M1::mutate_child_via_parent(Input(0), Input(2)); created: object(5,0) mutated: object(0,0), object(2,0), object(2,1) -gas summary: computation_cost: 1000000, storage_cost: 5973600, storage_rebate: 3526400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5973600, storage_rebate: 3526400, non_refundable_storage_fee: 0 task 6, line 97: //# view-object 2,1 @@ -134,7 +134,7 @@ task 10, lines 167-169: //> Test::M1::add_df(Input(0)); created: object(10,0), object(10,1), object(10,2) mutated: object(0,0), object(2,0), object(2,1) -gas summary: computation_cost: 1000000, storage_cost: 9864800, storage_rebate: 3526400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 9864800, storage_rebate: 3526400, non_refundable_storage_fee: 0 task 11, line 171: //# view-object 2,1 @@ -359,7 +359,7 @@ task 16, lines 279-280: //> Test::M1::add_more_df(Input(0)); created: object(16,0), object(16,1), object(16,2) mutated: object(0,0), object(2,1) -gas summary: computation_cost: 1000000, storage_cost: 8565200, storage_rebate: 2226800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 8565200, storage_rebate: 2226800, non_refundable_storage_fee: 0 task 17, line 282: //# view-object 2,1 @@ -632,7 +632,7 @@ task 21, lines 340-341: //> Test::M1::remove_df(Input(0)); mutated: object(0,0), object(2,1) deleted: object(10,0), object(10,1), object(10,2) -gas summary: computation_cost: 1000000, storage_cost: 2226800, storage_rebate: 8565200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2226800, storage_rebate: 8565200, non_refundable_storage_fee: 0 task 22, line 343: //# view-object 2,1 diff --git a/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/immutable_dof.exp b/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/immutable_dof.exp index c9acb2d9cb6..67c09b48c94 100644 --- a/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/immutable_dof.exp +++ b/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/immutable_dof.exp @@ -7,43 +7,43 @@ task 1, lines 21-69: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 8762800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 8762800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 71: //# run Test::M1::parent --sender A --args @A created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 73: //# run Test::M1::child --sender A --args @A created: object(3,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2280000, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2280000, storage_rebate: 980400, non_refundable_storage_fee: 0 task 4, line 75: //# run Test::M1::child --sender A --args @A created: object(4,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2280000, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2280000, storage_rebate: 980400, non_refundable_storage_fee: 0 task 5, line 77: //# run Test::M1::add_child --sender A --args object(2,0) object(3,0) 42 created: object(5,0) mutated: object(0,0), object(2,0), object(3,0) -gas summary: computation_cost: 1000000, storage_cost: 6034400, storage_rebate: 3587200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6034400, storage_rebate: 3587200, non_refundable_storage_fee: 0 task 6, line 79: //# run Test::M1::add_nested_child --sender A --args object(2,0) 42 object(4,0) 420 created: object(6,0) mutated: object(0,0), object(2,0), object(4,0) -gas summary: computation_cost: 1000000, storage_cost: 6034400, storage_rebate: 3587200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6034400, storage_rebate: 3587200, non_refundable_storage_fee: 0 task 7, line 81: //# run Test::M1::reclaim_and_freeze_child --sender A --args object(2,0) 42 mutated: object(0,0), object(2,0), object(3,0) deleted: object(5,0) -gas summary: computation_cost: 1000000, storage_cost: 3587200, storage_rebate: 6034400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3587200, storage_rebate: 6034400, non_refundable_storage_fee: 0 task 8, line 83: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/mutated_df.exp b/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/mutated_df.exp index 937abb23e62..6d506e4c4b5 100644 --- a/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/mutated_df.exp +++ b/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/mutated_df.exp @@ -7,13 +7,13 @@ task 1, lines 15-46: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 7820400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7820400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 48: //# run Test::M1::parent --sender A --args @A created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 50: //# view-object 2,0 @@ -32,7 +32,7 @@ task 4, line 52: //# run Test::M1::add_df --sender A --args object(2,0) created: object(4,0), object(4,1), object(4,2) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 8626000, storage_rebate: 2287600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 8626000, storage_rebate: 2287600, non_refundable_storage_fee: 0 task 5, line 54: //# view-object 2,0 @@ -50,7 +50,7 @@ Contents: Test::M1::Parent { task 6, line 56: //# run Test::M1::mutate_parent --sender A --args object(2,0) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 2287600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 2287600, non_refundable_storage_fee: 0 task 7, line 58: //# view-object 2,0 @@ -155,7 +155,7 @@ Contents: Test::M1::Parent { task 11, line 114: //# run Test::M1::mutate_df1 --sender A --args object(2,0) mutated: object(0,0), object(2,0), object(4,0) -gas summary: computation_cost: 1000000, storage_cost: 4461200, storage_rebate: 4400400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4461200, storage_rebate: 4400400, non_refundable_storage_fee: 0 task 12, line 116: //# view-object 2,0 @@ -173,7 +173,7 @@ Contents: Test::M1::Parent { task 13, line 118: //# run Test::M1::mutate_parent --sender A --args object(2,0) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 2287600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 2287600, non_refundable_storage_fee: 0 task 14, line 120: //# view-object 2,0 diff --git a/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/mutated_dof.exp b/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/mutated_dof.exp index e1e46deb049..812f886b276 100644 --- a/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/mutated_dof.exp +++ b/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/mutated_dof.exp @@ -7,7 +7,7 @@ task 1, lines 16-63: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 8382800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 8382800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 65-67: //# programmable --sender A --inputs @A @@ -15,18 +15,18 @@ task 2, lines 65-67: //> 1: Test::M1::parent(Input(0)); created: object(2,0), object(2,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3587200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3587200, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 69: //# run Test::M1::add_child --sender A --args object(2,1) object(2,0) 42 created: object(3,0) mutated: object(0,0), object(2,0), object(2,1) -gas summary: computation_cost: 1000000, storage_cost: 6034400, storage_rebate: 3587200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6034400, storage_rebate: 3587200, non_refundable_storage_fee: 0 task 4, line 71: //# run Test::M1::mutate_parent --sender A --args object(2,1) mutated: object(0,0), object(2,1) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 2287600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 2287600, non_refundable_storage_fee: 0 task 5, line 73: //# create-checkpoint @@ -135,7 +135,7 @@ task 7, line 134: //# run Test::M1::reclaim_and_transfer_child --sender A --args object(2,1) 42 @A mutated: object(0,0), object(2,0), object(2,1) deleted: object(3,0) -gas summary: computation_cost: 1000000, storage_cost: 3587200, storage_rebate: 6034400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3587200, storage_rebate: 6034400, non_refundable_storage_fee: 0 task 8, line 136: //# create-checkpoint @@ -181,13 +181,13 @@ Response: { task 10, line 191: //# run Test::M1::mutate_child --sender A --args object(2,0) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2280000, storage_rebate: 2280000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2280000, storage_rebate: 2280000, non_refundable_storage_fee: 0 task 11, line 193: //# run Test::M1::add_child --sender A --args object(2,1) object(2,0) 42 created: object(3,0) mutated: object(0,0), object(2,0), object(2,1) -gas summary: computation_cost: 1000000, storage_cost: 6034400, storage_rebate: 3587200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6034400, storage_rebate: 3587200, non_refundable_storage_fee: 0 task 12, line 195: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/nested_dof.exp b/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/nested_dof.exp index 61b2cb39720..8f0b5aedb4b 100644 --- a/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/nested_dof.exp +++ b/crates/iota-graphql-e2e-tests/tests/consistency/dynamic_fields/nested_dof.exp @@ -7,47 +7,47 @@ task 1, lines 25-76: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 8952800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 8952800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 78: //# run Test::M1::parent --sender A --args @A created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 80: //# run Test::M1::child --sender A --args @A created: object(3,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2280000, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2280000, storage_rebate: 980400, non_refundable_storage_fee: 0 task 4, line 82: //# run Test::M1::child --sender A --args @A created: object(4,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2280000, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2280000, storage_rebate: 980400, non_refundable_storage_fee: 0 task 5, line 84: //# run Test::M1::add_child --sender A --args object(2,0) object(3,0) 42 created: object(5,0) mutated: object(0,0), object(2,0), object(3,0) -gas summary: computation_cost: 1000000, storage_cost: 6034400, storage_rebate: 3587200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6034400, storage_rebate: 3587200, non_refundable_storage_fee: 0 task 6, line 86: //# run Test::M1::add_nested_child --sender A --args object(2,0) 42 object(4,0) 420 created: object(6,0) mutated: object(0,0), object(2,0), object(4,0) -gas summary: computation_cost: 1000000, storage_cost: 6034400, storage_rebate: 3587200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6034400, storage_rebate: 3587200, non_refundable_storage_fee: 0 task 7, line 88: //# run Test::M1::mutate_child_on_parent --sender A --args object(2,0) 42 mutated: object(0,0), object(2,0), object(3,0) -gas summary: computation_cost: 1000000, storage_cost: 3587200, storage_rebate: 3587200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3587200, storage_rebate: 3587200, non_refundable_storage_fee: 0 task 8, line 90: //# run Test::M1::mutate_nested_child_on_parent --sender A --args object(2,0) 42 420 mutated: object(0,0), object(2,0), object(4,0) -gas summary: computation_cost: 1000000, storage_cost: 3587200, storage_rebate: 3587200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3587200, storage_rebate: 3587200, non_refundable_storage_fee: 0 task 9, line 92: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/consistency/epochs/transaction_blocks.exp b/crates/iota-graphql-e2e-tests/tests/consistency/epochs/transaction_blocks.exp index fb5dd244490..b8ef5a023ea 100644 --- a/crates/iota-graphql-e2e-tests/tests/consistency/epochs/transaction_blocks.exp +++ b/crates/iota-graphql-e2e-tests/tests/consistency/epochs/transaction_blocks.exp @@ -7,7 +7,7 @@ task 1, lines 23-36: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 5168000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5168000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 38: //# create-checkpoint @@ -17,7 +17,7 @@ task 3, line 40: //# run Test::M1::create --args 0 @A --sender A created: object(3,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 0, non_refundable_storage_fee: 0 task 4, line 42: //# create-checkpoint @@ -72,7 +72,7 @@ task 7, line 64: //# run Test::M1::create --args 0 @A --sender A created: object(7,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 8, line 66: //# create-checkpoint @@ -82,7 +82,7 @@ task 9, line 68: //# run Test::M1::create --args 0 @A --sender A created: object(9,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 10, line 70: //# create-checkpoint @@ -92,7 +92,7 @@ task 11, line 72: //# run Test::M1::create --args 0 @A --sender A created: object(11,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 12, line 74: //# create-checkpoint @@ -106,7 +106,7 @@ task 14, line 78: //# run Test::M1::create --args 0 @A --sender A created: object(14,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 15, line 80: //# create-checkpoint @@ -116,7 +116,7 @@ task 16, line 82: //# run Test::M1::create --args 0 @A --sender A created: object(16,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 17, line 84: //# create-checkpoint @@ -126,7 +126,7 @@ task 18, line 86: //# run Test::M1::create --args 0 @A --sender A created: object(18,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 19, line 88: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/consistency/object_at_version.exp b/crates/iota-graphql-e2e-tests/tests/consistency/object_at_version.exp index 8968247c3f9..6e02483be2f 100644 --- a/crates/iota-graphql-e2e-tests/tests/consistency/object_at_version.exp +++ b/crates/iota-graphql-e2e-tests/tests/consistency/object_at_version.exp @@ -7,13 +7,13 @@ task 1, lines 20-57: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 7007200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7007200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 59: //# run Test::M1::create --args 0 @A created: object(2,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 3, line 61: //# create-checkpoint @@ -41,7 +41,7 @@ Response: { task 5, line 78: //# run Test::M1::update --sender A --args object(2,0) 1 mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 1307200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 1307200, non_refundable_storage_fee: 0 task 6, line 80: //# create-checkpoint @@ -83,7 +83,7 @@ task 8, line 110: created: object(8,0) mutated: object(0,0) wrapped: object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2538400, storage_rebate: 2287600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2538400, storage_rebate: 2287600, non_refundable_storage_fee: 0 task 9, line 112: //# create-checkpoint @@ -118,7 +118,7 @@ task 11, line 142: mutated: object(0,0) unwrapped: object(2,0) deleted: object(8,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 2538400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 2538400, non_refundable_storage_fee: 0 task 12, line 144: //# create-checkpoint @@ -164,7 +164,7 @@ task 14, line 186: //# run Test::M1::delete --sender A --args object(2,0) mutated: object(0,0) deleted: object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 2287600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 2287600, non_refundable_storage_fee: 0 task 15, line 188: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/consistency/objects_pagination.exp b/crates/iota-graphql-e2e-tests/tests/consistency/objects_pagination.exp index 21598718729..0de0dc4a041 100644 --- a/crates/iota-graphql-e2e-tests/tests/consistency/objects_pagination.exp +++ b/crates/iota-graphql-e2e-tests/tests/consistency/objects_pagination.exp @@ -7,19 +7,19 @@ task 1, lines 16-29: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 5168000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5168000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 31: //# run Test::M1::create --args 0 @A created: object(2,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 3, line 33: //# run Test::M1::create --args 1 @A created: object(3,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 4, line 35: //# create-checkpoint @@ -57,13 +57,13 @@ task 6, line 67: //# run Test::M1::create --args 2 @A created: object(6,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 7, line 69: //# run Test::M1::create --args 3 @A created: object(7,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 8, line 71: //# create-checkpoint @@ -223,7 +223,7 @@ task 12, lines 147-148: //# programmable --sender A --inputs object(2,0) object(3,0) object(6,0) object(7,0) @B //> TransferObjects([Input(0), Input(1), Input(2), Input(3)], Input(4)) mutated: object(0,0), object(2,0), object(3,0), object(6,0), object(7,0) -gas summary: computation_cost: 1000000, storage_cost: 6209200, storage_rebate: 5228800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6209200, storage_rebate: 5228800, non_refundable_storage_fee: 0 task 13, line 150: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/consistency/objects_pagination_single.exp b/crates/iota-graphql-e2e-tests/tests/consistency/objects_pagination_single.exp index 99eb6456b69..fef91b92f80 100644 --- a/crates/iota-graphql-e2e-tests/tests/consistency/objects_pagination_single.exp +++ b/crates/iota-graphql-e2e-tests/tests/consistency/objects_pagination_single.exp @@ -7,24 +7,24 @@ task 1, lines 11-28: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 5449200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5449200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 30: //# run Test::M1::create --args 0 @A created: object(2,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 3, line 32: //# run Test::M1::create --args 1 @A created: object(3,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 4, line 34: //# run Test::M1::update --sender A --args 100 object(2,0) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 1307200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 1307200, non_refundable_storage_fee: 0 task 5, line 36: //# create-checkpoint @@ -63,7 +63,7 @@ Response: { task 7, line 68: //# run Test::M1::update --sender A --args 200 object(2,0) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 2287600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 2287600, non_refundable_storage_fee: 0 task 8, line 70: //# create-checkpoint @@ -194,7 +194,7 @@ Response: { task 11, line 180: //# run Test::M1::update --sender A --args 300 object(3,0) mutated: object(0,0), object(3,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 2287600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 2287600, non_refundable_storage_fee: 0 task 12, line 182: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/consistency/performance/many_objects.exp b/crates/iota-graphql-e2e-tests/tests/consistency/performance/many_objects.exp index 6fc274339b0..51eaea008d6 100644 --- a/crates/iota-graphql-e2e-tests/tests/consistency/performance/many_objects.exp +++ b/crates/iota-graphql-e2e-tests/tests/consistency/performance/many_objects.exp @@ -7,13 +7,13 @@ task 1, lines 13-36: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 6110400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6110400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 38: //# run Test::M1::create_many --sender A --args @A created: object(2,0), object(2,1), object(2,2), object(2,3), object(2,4), object(2,5), object(2,6), object(2,7), object(2,8), object(2,9), object(2,10), object(2,11), object(2,12), object(2,13), object(2,14), object(2,15), object(2,16), object(2,17), object(2,18), object(2,19), object(2,20), object(2,21), object(2,22), object(2,23), object(2,24), object(2,25), object(2,26), object(2,27), object(2,28), object(2,29), object(2,30), object(2,31), object(2,32), object(2,33), object(2,34), object(2,35), object(2,36), object(2,37), object(2,38), object(2,39), object(2,40), object(2,41), object(2,42), object(2,43), object(2,44), object(2,45), object(2,46), object(2,47), object(2,48), object(2,49), object(2,50), object(2,51), object(2,52), object(2,53), object(2,54), object(2,55), object(2,56), object(2,57), object(2,58), object(2,59), object(2,60), object(2,61), object(2,62), object(2,63), object(2,64), object(2,65), object(2,66), object(2,67), object(2,68), object(2,69), object(2,70), object(2,71), object(2,72), object(2,73), object(2,74), object(2,75), object(2,76), object(2,77), object(2,78), object(2,79), object(2,80), object(2,81), object(2,82), object(2,83), object(2,84), object(2,85), object(2,86), object(2,87), object(2,88), object(2,89), object(2,90), object(2,91), object(2,92), object(2,93), object(2,94), object(2,95), object(2,96), object(2,97), object(2,98), object(2,99), object(2,100), object(2,101), object(2,102), object(2,103), object(2,104), object(2,105), object(2,106), object(2,107), object(2,108), object(2,109), object(2,110), object(2,111), object(2,112), object(2,113), object(2,114), object(2,115), object(2,116), object(2,117), object(2,118), object(2,119), object(2,120), object(2,121), object(2,122), object(2,123), object(2,124), object(2,125), object(2,126), object(2,127), object(2,128), object(2,129), object(2,130), object(2,131), object(2,132), object(2,133), object(2,134), object(2,135), object(2,136), object(2,137), object(2,138), object(2,139), object(2,140), object(2,141), object(2,142), object(2,143), object(2,144), object(2,145), object(2,146), object(2,147), object(2,148), object(2,149), object(2,150), object(2,151), object(2,152), object(2,153), object(2,154), object(2,155), object(2,156), object(2,157), object(2,158), object(2,159), object(2,160), object(2,161), object(2,162), object(2,163), object(2,164), object(2,165), object(2,166), object(2,167), object(2,168), object(2,169), object(2,170), object(2,171), object(2,172), object(2,173), object(2,174), object(2,175), object(2,176), object(2,177), object(2,178), object(2,179), object(2,180), object(2,181), object(2,182), object(2,183), object(2,184), object(2,185), object(2,186), object(2,187), object(2,188), object(2,189), object(2,190), object(2,191), object(2,192), object(2,193), object(2,194), object(2,195), object(2,196), object(2,197), object(2,198), object(2,199), object(2,200), object(2,201), object(2,202), object(2,203), object(2,204), object(2,205), object(2,206), object(2,207), object(2,208), object(2,209), object(2,210), object(2,211), object(2,212), object(2,213), object(2,214), object(2,215), object(2,216), object(2,217), object(2,218), object(2,219), object(2,220), object(2,221), object(2,222), object(2,223), object(2,224), object(2,225), object(2,226), object(2,227), object(2,228), object(2,229), object(2,230), object(2,231), object(2,232), object(2,233), object(2,234), object(2,235), object(2,236), object(2,237), object(2,238), object(2,239), object(2,240), object(2,241), object(2,242), object(2,243), object(2,244), object(2,245), object(2,246), object(2,247), object(2,248), object(2,249), object(2,250), object(2,251), object(2,252), object(2,253), object(2,254), object(2,255), object(2,256), object(2,257), object(2,258), object(2,259), object(2,260), object(2,261), object(2,262), object(2,263), object(2,264), object(2,265), object(2,266), object(2,267), object(2,268), object(2,269), object(2,270), object(2,271), object(2,272), object(2,273), object(2,274), object(2,275), object(2,276), object(2,277), object(2,278), object(2,279), object(2,280), object(2,281), object(2,282), object(2,283), object(2,284), object(2,285), object(2,286), object(2,287), object(2,288), object(2,289), object(2,290), object(2,291), object(2,292), object(2,293), object(2,294), object(2,295), object(2,296), object(2,297), object(2,298), object(2,299), object(2,300), object(2,301), object(2,302), object(2,303), object(2,304), object(2,305), object(2,306), object(2,307), object(2,308), object(2,309), object(2,310), object(2,311), object(2,312), object(2,313), object(2,314), object(2,315), object(2,316), object(2,317), object(2,318), object(2,319), object(2,320), object(2,321), object(2,322), object(2,323), object(2,324), object(2,325), object(2,326), object(2,327), object(2,328), object(2,329), object(2,330), object(2,331), object(2,332), object(2,333), object(2,334), object(2,335), object(2,336), object(2,337), object(2,338), object(2,339), object(2,340), object(2,341), object(2,342), object(2,343), object(2,344), object(2,345), object(2,346), object(2,347), object(2,348), object(2,349), object(2,350), object(2,351), object(2,352), object(2,353), object(2,354), object(2,355), object(2,356), object(2,357), object(2,358), object(2,359), object(2,360), object(2,361), object(2,362), object(2,363), object(2,364), object(2,365), object(2,366), object(2,367), object(2,368), object(2,369), object(2,370), object(2,371), object(2,372), object(2,373), object(2,374), object(2,375), object(2,376), object(2,377), object(2,378), object(2,379), object(2,380), object(2,381), object(2,382), object(2,383), object(2,384), object(2,385), object(2,386), object(2,387), object(2,388), object(2,389), object(2,390), object(2,391), object(2,392), object(2,393), object(2,394), object(2,395), object(2,396), object(2,397), object(2,398), object(2,399), object(2,400), object(2,401), object(2,402), object(2,403), object(2,404), object(2,405), object(2,406), object(2,407), object(2,408), object(2,409), object(2,410), object(2,411), object(2,412), object(2,413), object(2,414), object(2,415), object(2,416), object(2,417), object(2,418), object(2,419), object(2,420), object(2,421), object(2,422), object(2,423), object(2,424), object(2,425), object(2,426), object(2,427), object(2,428), object(2,429), object(2,430), object(2,431), object(2,432), object(2,433), object(2,434), object(2,435), object(2,436), object(2,437), object(2,438), object(2,439), object(2,440), object(2,441), object(2,442), object(2,443), object(2,444), object(2,445), object(2,446), object(2,447), object(2,448), object(2,449), object(2,450), object(2,451), object(2,452), object(2,453), object(2,454), object(2,455), object(2,456), object(2,457), object(2,458), object(2,459), object(2,460), object(2,461), object(2,462), object(2,463), object(2,464), object(2,465), object(2,466), object(2,467), object(2,468), object(2,469), object(2,470), object(2,471), object(2,472), object(2,473), object(2,474), object(2,475), object(2,476), object(2,477), object(2,478), object(2,479), object(2,480), object(2,481), object(2,482), object(2,483), object(2,484), object(2,485), object(2,486), object(2,487), object(2,488), object(2,489), object(2,490), object(2,491), object(2,492), object(2,493), object(2,494), object(2,495), object(2,496), object(2,497), object(2,498), object(2,499) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 654580400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 654580400, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 40: //# create-checkpoint 2 @@ -141,17 +141,17 @@ Response: { task 5, line 85: //# transfer-object 2,499 --sender A --recipient B mutated: object(0,0), object(2,499) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 2287600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 2287600, non_refundable_storage_fee: 0 task 6, line 87: //# transfer-object 2,498 --sender A --recipient B mutated: object(0,0), object(2,498) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 2287600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 2287600, non_refundable_storage_fee: 0 task 7, line 89: //# transfer-object 2,497 --sender A --recipient B mutated: object(0,0), object(2,497) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 2287600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 2287600, non_refundable_storage_fee: 0 task 8, line 91: //# view-object 2,498 diff --git a/crates/iota-graphql-e2e-tests/tests/consistency/staked_iota.exp b/crates/iota-graphql-e2e-tests/tests/consistency/staked_iota.exp index 3daf3add05f..ad831cbb06f 100644 --- a/crates/iota-graphql-e2e-tests/tests/consistency/staked_iota.exp +++ b/crates/iota-graphql-e2e-tests/tests/consistency/staked_iota.exp @@ -21,7 +21,7 @@ task 2, lines 21-23: //> TransferObjects([Result(0)], Input(1)) created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 1960800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 1960800, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 25: //# run 0x3::iota_system::request_add_stake --args object(0x5) object(2,0) @validator_0 --sender C @@ -29,7 +29,7 @@ events: Event { package_id: iota_system, transaction_module: Identifier("iota_sy created: object(3,0) mutated: object(_), 0x0000000000000000000000000000000000000000000000000000000000000005, object(0,0) deleted: object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 14500800, storage_rebate: 1960800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 14500800, storage_rebate: 1960800, non_refundable_storage_fee: 0 task 4, line 27: //# create-checkpoint @@ -45,7 +45,7 @@ task 6, lines 31-33: //> TransferObjects([Result(0)], Input(1)) created: object(6,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 1960800, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 1960800, storage_rebate: 980400, non_refundable_storage_fee: 0 task 7, line 35: //# run 0x3::iota_system::request_add_stake --args object(0x5) object(6,0) @validator_0 --sender C @@ -53,7 +53,7 @@ events: Event { package_id: iota_system, transaction_module: Identifier("iota_sy created: object(7,0) mutated: object(_), 0x0000000000000000000000000000000000000000000000000000000000000005, object(0,0) deleted: object(6,0) -gas summary: computation_cost: 1000000, storage_cost: 14500800, storage_rebate: 14196800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 14500800, storage_rebate: 14196800, non_refundable_storage_fee: 0 task 8, line 37: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/consistency/tx_address_objects.exp b/crates/iota-graphql-e2e-tests/tests/consistency/tx_address_objects.exp index fdfc6899586..0b07261f1ff 100644 --- a/crates/iota-graphql-e2e-tests/tests/consistency/tx_address_objects.exp +++ b/crates/iota-graphql-e2e-tests/tests/consistency/tx_address_objects.exp @@ -7,14 +7,14 @@ task 1, lines 18-35: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 5472000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5472000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 37-38: //# programmable --sender A --inputs 0 1 @A //> 0: Test::M1::create(Input(0), Input(2)); created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 40: //# create-checkpoint @@ -27,7 +27,7 @@ task 4, lines 42-45: //> Test::M1::create(Input(3), Input(4)); created: object(4,0), object(4,1) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 4902000, storage_rebate: 2287600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4902000, storage_rebate: 2287600, non_refundable_storage_fee: 0 task 5, line 47: //# create-checkpoint @@ -41,7 +41,7 @@ task 6, lines 49-53: //> Test::M1::create(Input(4), Input(5)); created: object(6,0), object(6,1), object(6,2) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 6209200, storage_rebate: 2287600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6209200, storage_rebate: 2287600, non_refundable_storage_fee: 0 task 7, line 55: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/epoch/chain_identifier.exp b/crates/iota-graphql-e2e-tests/tests/epoch/chain_identifier.exp index 3fbdfda1c05..7bbd7811f87 100644 --- a/crates/iota-graphql-e2e-tests/tests/epoch/chain_identifier.exp +++ b/crates/iota-graphql-e2e-tests/tests/epoch/chain_identifier.exp @@ -11,6 +11,6 @@ task 2, lines 10-13: //# run-graphql Response: { "data": { - "chainIdentifier": "e7c22ce7" + "chainIdentifier": "e2a97689" } } diff --git a/crates/iota-graphql-e2e-tests/tests/epoch/epoch.exp b/crates/iota-graphql-e2e-tests/tests/epoch/epoch.exp index 74f80a22c72..30eef67e10a 100644 --- a/crates/iota-graphql-e2e-tests/tests/epoch/epoch.exp +++ b/crates/iota-graphql-e2e-tests/tests/epoch/epoch.exp @@ -17,7 +17,7 @@ task 3, lines 13-15: //> TransferObjects([Result(0)], Input(1)) created: object(3,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 1960800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 1960800, storage_rebate: 0, non_refundable_storage_fee: 0 task 4, lines 17-19: //# run 0x3::iota_system::request_add_stake --args object(0x5) object(3,0) @validator_0 --sender C @@ -25,7 +25,7 @@ events: Event { package_id: iota_system, transaction_module: Identifier("iota_sy created: object(4,0) mutated: object(_), 0x0000000000000000000000000000000000000000000000000000000000000005, object(0,0) deleted: object(3,0) -gas summary: computation_cost: 1000000, storage_cost: 14500800, storage_rebate: 1960800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 14500800, storage_rebate: 1960800, non_refundable_storage_fee: 0 task 5, line 20: //# create-checkpoint @@ -42,7 +42,7 @@ task 7, lines 25-29: // TODO: Short term hack to get around indexer epoch issue created: object(7,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 1960800, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 1960800, storage_rebate: 980400, non_refundable_storage_fee: 0 task 8, line 30: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/epoch/system_state.exp b/crates/iota-graphql-e2e-tests/tests/epoch/system_state.exp index 5a311159948..02077205f22 100644 --- a/crates/iota-graphql-e2e-tests/tests/epoch/system_state.exp +++ b/crates/iota-graphql-e2e-tests/tests/epoch/system_state.exp @@ -17,7 +17,7 @@ task 3, lines 15-17: //> TransferObjects([Result(0)], Input(1)) created: object(3,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 1960800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 1960800, storage_rebate: 0, non_refundable_storage_fee: 0 task 4, line 19: //# run 0x3::iota_system::request_add_stake --args object(0x5) object(3,0) @validator_0 --sender C @@ -25,7 +25,7 @@ events: Event { package_id: iota_system, transaction_module: Identifier("iota_sy created: object(4,0) mutated: object(_), 0x0000000000000000000000000000000000000000000000000000000000000005, object(0,0) deleted: object(3,0) -gas summary: computation_cost: 1000000, storage_cost: 14500800, storage_rebate: 1960800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 14500800, storage_rebate: 1960800, non_refundable_storage_fee: 0 task 5, line 21: //# create-checkpoint @@ -49,7 +49,7 @@ task 9, lines 29-31: //> TransferObjects([Result(0)], Input(1)) created: object(9,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 1960800, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 1960800, storage_rebate: 980400, non_refundable_storage_fee: 0 task 10, line 33: //# create-checkpoint @@ -65,7 +65,7 @@ events: Event { package_id: iota_system, transaction_module: Identifier("iota_sy created: object(12,0) mutated: object(_), 0x0000000000000000000000000000000000000000000000000000000000000005, object(0,0) deleted: object(4,0) -gas summary: computation_cost: 1000000, storage_cost: 14196800, storage_rebate: 14500800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 14196800, storage_rebate: 14500800, non_refundable_storage_fee: 0 task 13, line 39: //# create-checkpoint @@ -81,7 +81,7 @@ task 15, lines 43-45: //> TransferObjects([Result(0)], Input(1)) created: object(15,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 1960800, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 1960800, storage_rebate: 980400, non_refundable_storage_fee: 0 task 16, line 47: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/errors/clever_errors.exp b/crates/iota-graphql-e2e-tests/tests/errors/clever_errors.exp index 09bd00a3ba0..d56278abb77 100644 --- a/crates/iota-graphql-e2e-tests/tests/errors/clever_errors.exp +++ b/crates/iota-graphql-e2e-tests/tests/errors/clever_errors.exp @@ -7,7 +7,7 @@ task 1, lines 7-82: //# publish --upgradeable --sender A created: object(1,0), object(1,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 9728000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 9728000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 84: //# run P0::m::callU8 @@ -149,7 +149,7 @@ task 15, lines 120-198: //# upgrade --package P0 --upgrade-capability 1,0 --sender A created: object(15,0) mutated: object(0,0), object(1,0) -gas summary: computation_cost: 1000000, storage_cost: 9834400, storage_rebate: 2606800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 9834400, storage_rebate: 2606800, non_refundable_storage_fee: 0 task 16, line 200: //# run P0::m::callU8 diff --git a/crates/iota-graphql-e2e-tests/tests/errors/clever_errors_in_macros.exp b/crates/iota-graphql-e2e-tests/tests/errors/clever_errors_in_macros.exp index c0b002f7dfb..a36d804579a 100644 --- a/crates/iota-graphql-e2e-tests/tests/errors/clever_errors_in_macros.exp +++ b/crates/iota-graphql-e2e-tests/tests/errors/clever_errors_in_macros.exp @@ -7,7 +7,7 @@ task 1, lines 7-35: //# publish --sender A created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4180000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4180000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 37: //# run P0::m::t_a diff --git a/crates/iota-graphql-e2e-tests/tests/event_connection/combo_filter_error.exp b/crates/iota-graphql-e2e-tests/tests/event_connection/combo_filter_error.exp index f48c7b1dea2..d588d8ead95 100644 --- a/crates/iota-graphql-e2e-tests/tests/event_connection/combo_filter_error.exp +++ b/crates/iota-graphql-e2e-tests/tests/event_connection/combo_filter_error.exp @@ -7,13 +7,13 @@ task 1, lines 10-29: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 5373200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5373200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 31: //# run Test::M2::emit_emit_a --sender A --args 20 events: Event { package_id: Test, transaction_module: Identifier("M2"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [20, 0, 0, 0, 0, 0, 0, 0] } mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 33: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/event_connection/event_connection.exp b/crates/iota-graphql-e2e-tests/tests/event_connection/event_connection.exp index b48a5b9832a..20ea2fdff0d 100644 --- a/crates/iota-graphql-e2e-tests/tests/event_connection/event_connection.exp +++ b/crates/iota-graphql-e2e-tests/tests/event_connection/event_connection.exp @@ -7,43 +7,43 @@ task 1, lines 15-82: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 11255600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 11255600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 84: //# run Test::M1::create --sender A --args 0 @A created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 86: //# run Test::M1::emit_a --sender A --args object(2,0) 0 events: Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [0, 0, 0, 0, 0, 0, 0, 0] } mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 2287600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 2287600, non_refundable_storage_fee: 0 task 4, line 88: //# run Test::M1::emit_b --sender A --args object(2,0) 1 events: Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventB"), type_params: [Struct(StructTag { address: Test, module: Identifier("M1"), name: Identifier("Object"), type_params: [] })] }, contents: [1, 0, 0, 0, 0, 0, 0, 0] } mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 2287600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 2287600, non_refundable_storage_fee: 0 task 5, line 90: //# run Test::M2::create --sender A --args 2 @A created: object(5,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 6, line 92: //# run Test::M2::emit_a --sender A --args object(5,0) 2 events: Event { package_id: Test, transaction_module: Identifier("M2"), sender: A, type_: StructTag { address: Test, module: Identifier("M2"), name: Identifier("EventA"), type_params: [] }, contents: [2, 0, 0, 0, 0, 0, 0, 0] } mutated: object(0,0), object(5,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 2287600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 2287600, non_refundable_storage_fee: 0 task 7, line 94: //# run Test::M2::emit_b --sender A --args object(5,0) 3 events: Event { package_id: Test, transaction_module: Identifier("M2"), sender: A, type_: StructTag { address: Test, module: Identifier("M2"), name: Identifier("EventB"), type_params: [Struct(StructTag { address: Test, module: Identifier("M2"), name: Identifier("Object"), type_params: [] })] }, contents: [3, 0, 0, 0, 0, 0, 0, 0] } mutated: object(0,0), object(5,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 2287600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 2287600, non_refundable_storage_fee: 0 task 8, line 96: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/event_connection/nested_emit_event.exp b/crates/iota-graphql-e2e-tests/tests/event_connection/nested_emit_event.exp index 719633fe126..10fe278d63e 100644 --- a/crates/iota-graphql-e2e-tests/tests/event_connection/nested_emit_event.exp +++ b/crates/iota-graphql-e2e-tests/tests/event_connection/nested_emit_event.exp @@ -7,13 +7,13 @@ task 1, lines 11-38: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 6087600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6087600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 40: //# run Test::M3::yeet --sender A --args 2 events: Event { package_id: Test, transaction_module: Identifier("M3"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [2, 0, 0, 0, 0, 0, 0, 0] } mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 42: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/event_connection/no_filter.exp b/crates/iota-graphql-e2e-tests/tests/event_connection/no_filter.exp index 263e77d270f..8a1728c5601 100644 --- a/crates/iota-graphql-e2e-tests/tests/event_connection/no_filter.exp +++ b/crates/iota-graphql-e2e-tests/tests/event_connection/no_filter.exp @@ -7,13 +7,13 @@ task 1, lines 7-26: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 4962800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4962800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 28: //# run Test::M1::emit --sender A --args 0 events: Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [0, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [1, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [2, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [3, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [4, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [5, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [6, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [7, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [8, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [9, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [10, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [11, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [12, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [13, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [14, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [15, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [16, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [17, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [18, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [19, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [20, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [21, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [22, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [23, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [24, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [25, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [26, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [27, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [28, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [29, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [30, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [31, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [32, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [33, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [34, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [35, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [36, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [37, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [38, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [39, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [40, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [41, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [42, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [43, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [44, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [45, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [46, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [47, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [48, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [49, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [50, 0, 0, 0, 0, 0, 0, 0] } mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 30: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/event_connection/pagination.exp b/crates/iota-graphql-e2e-tests/tests/event_connection/pagination.exp index ad299870f3e..6015776f3fe 100644 --- a/crates/iota-graphql-e2e-tests/tests/event_connection/pagination.exp +++ b/crates/iota-graphql-e2e-tests/tests/event_connection/pagination.exp @@ -7,19 +7,19 @@ task 1, lines 7-23: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 4810800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4810800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 25: //# run Test::M1::emit_1 --sender A --args 0 events: Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [0, 0, 0, 0, 0, 0, 0, 0] } mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 27: //# run Test::M1::emit_2 --sender A --args 1 events: Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [1, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [2, 0, 0, 0, 0, 0, 0, 0] } mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 4, line 29: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/event_connection/tx_digest.exp b/crates/iota-graphql-e2e-tests/tests/event_connection/tx_digest.exp index 49c80aa1c10..2b1087ce2ef 100644 --- a/crates/iota-graphql-e2e-tests/tests/event_connection/tx_digest.exp +++ b/crates/iota-graphql-e2e-tests/tests/event_connection/tx_digest.exp @@ -7,24 +7,24 @@ task 1, lines 11-27: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 4788000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4788000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 29: //# run Test::M1::no_emit --sender A --args 0 mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 31: //# run Test::M1::emit_2 --sender A --args 2 events: Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [2, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [3, 0, 0, 0, 0, 0, 0, 0] } mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 4, line 33: //# run Test::M1::emit_2 --sender B --args 4 events: Event { package_id: Test, transaction_module: Identifier("M1"), sender: B, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [4, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: B, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [5, 0, 0, 0, 0, 0, 0, 0] } mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 0, non_refundable_storage_fee: 0 task 5, line 35: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/event_connection/type_filter.exp b/crates/iota-graphql-e2e-tests/tests/event_connection/type_filter.exp index b98e76ce11c..3b1903593bf 100644 --- a/crates/iota-graphql-e2e-tests/tests/event_connection/type_filter.exp +++ b/crates/iota-graphql-e2e-tests/tests/event_connection/type_filter.exp @@ -7,13 +7,13 @@ task 1, lines 7-35: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 6596800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6596800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 37: //# run Test::M2::emit_emit_a --sender A --args 20 events: Event { package_id: Test, transaction_module: Identifier("M2"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [20, 0, 0, 0, 0, 0, 0, 0] } mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 39: //# create-checkpoint @@ -49,13 +49,13 @@ task 5, line 60: //# run Test::M2::emit_b --sender A --args 42 events: Event { package_id: Test, transaction_module: Identifier("M2"), sender: A, type_: StructTag { address: Test, module: Identifier("M2"), name: Identifier("EventB"), type_params: [] }, contents: [42, 0, 0, 0, 0, 0, 0, 0] } mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 6, line 62: //# run Test::M2::emit_b --sender B --args 43 events: Event { package_id: Test, transaction_module: Identifier("M2"), sender: B, type_: StructTag { address: Test, module: Identifier("M2"), name: Identifier("EventB"), type_params: [] }, contents: [43, 0, 0, 0, 0, 0, 0, 0] } mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 0, non_refundable_storage_fee: 0 task 7, line 64: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/event_connection/type_param_filter.exp b/crates/iota-graphql-e2e-tests/tests/event_connection/type_param_filter.exp index 85f54391f61..034c36b518a 100644 --- a/crates/iota-graphql-e2e-tests/tests/event_connection/type_param_filter.exp +++ b/crates/iota-graphql-e2e-tests/tests/event_connection/type_param_filter.exp @@ -7,25 +7,25 @@ task 1, lines 7-30: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 5988800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5988800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 33: //# run Test::M1::emit_T1 --sender A events: Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [Struct(StructTag { address: Test, module: Identifier("M1"), name: Identifier("T1"), type_params: [] })] }, contents: [0] } mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 35: //# run Test::M1::emit_T2 --sender A events: Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [Struct(StructTag { address: Test, module: Identifier("M1"), name: Identifier("T2"), type_params: [] })] }, contents: [0] } mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 4, line 37: //# run Test::M1::emit_both --sender A events: Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [Struct(StructTag { address: Test, module: Identifier("M1"), name: Identifier("T1"), type_params: [] })] }, contents: [0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [Struct(StructTag { address: Test, module: Identifier("M1"), name: Identifier("T2"), type_params: [] })] }, contents: [0] } mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 5, line 39: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/limits/directives.exp b/crates/iota-graphql-e2e-tests/tests/limits/directives.exp index de29c39c64f..fbc8a46327c 100644 --- a/crates/iota-graphql-e2e-tests/tests/limits/directives.exp +++ b/crates/iota-graphql-e2e-tests/tests/limits/directives.exp @@ -73,7 +73,7 @@ task 5, lines 59-63: //# run-graphql Response: { "data": { - "chainIdentifier": "e7c22ce7" + "chainIdentifier": "e2a97689" } } @@ -81,7 +81,7 @@ task 6, lines 65-69: //# run-graphql Response: { "data": { - "chainIdentifier": "e7c22ce7" + "chainIdentifier": "e2a97689" } } diff --git a/crates/iota-graphql-e2e-tests/tests/objects/coin.exp b/crates/iota-graphql-e2e-tests/tests/objects/coin.exp index ec1c0c572ce..13c0fed33e1 100644 --- a/crates/iota-graphql-e2e-tests/tests/objects/coin.exp +++ b/crates/iota-graphql-e2e-tests/tests/objects/coin.exp @@ -8,7 +8,7 @@ task 1, lines 7-34: created: object(1,0), object(1,1), object(1,2), object(1,3), object(1,4), object(1,5) mutated: object(0,0) unchanged_shared: 0x0000000000000000000000000000000000000000000000000000000000000403 -gas summary: computation_cost: 1000000, storage_cost: 15618000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 15618000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 36: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/objects/data.exp b/crates/iota-graphql-e2e-tests/tests/objects/data.exp index 0bd9468394a..2fcc77702b3 100644 --- a/crates/iota-graphql-e2e-tests/tests/objects/data.exp +++ b/crates/iota-graphql-e2e-tests/tests/objects/data.exp @@ -7,7 +7,7 @@ task 1, lines 7-40: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 7615200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7615200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 42-44: //# programmable --inputs @A @@ -15,7 +15,7 @@ task 2, lines 42-44: //> TransferObjects([Result(0)], Input(0)) created: object(2,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2895600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2895600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 3, line 46: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/objects/display.exp b/crates/iota-graphql-e2e-tests/tests/objects/display.exp index 464790c22c5..8d17c8e4fd9 100644 --- a/crates/iota-graphql-e2e-tests/tests/objects/display.exp +++ b/crates/iota-graphql-e2e-tests/tests/objects/display.exp @@ -8,7 +8,7 @@ task 1, lines 7-131: events: Event { package_id: Test, transaction_module: Identifier("boars"), sender: A, type_: StructTag { address: iota, module: Identifier("display"), name: Identifier("DisplayCreated"), type_params: [Struct(StructTag { address: Test, module: Identifier("boars"), name: Identifier("Boar"), type_params: [] })] }, contents: [155, 85, 136, 164, 81, 63, 109, 148, 75, 198, 60, 36, 25, 208, 95, 122, 157, 232, 18, 97, 53, 211, 101, 208, 13, 29, 31, 165, 226, 122, 237, 179] } created: object(1,0), object(1,1), object(1,2) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 21447200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 21447200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 133: //# create-checkpoint @@ -16,20 +16,20 @@ Checkpoint created: 1 task 3, line 135: //# view-checkpoint -CheckpointSummary { epoch: 0, seq: 1, content_digest: EsXN98iwQZLcHGMD173BaKznE8ggnK8EKJk3np2JwnWT, - epoch_rolling_gas_cost_summary: GasCostSummary { computation_cost: 1000000, storage_cost: 21447200, storage_rebate: 0, non_refundable_storage_fee: 0 }} +CheckpointSummary { epoch: 0, seq: 1, content_digest: 4zAfAVwFXhmFipWuRjudEjJYvRVd67NfPr9qBW7F9WfZ, + epoch_rolling_gas_cost_summary: GasCostSummary { computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 21447200, storage_rebate: 0, non_refundable_storage_fee: 0 }} task 4, line 137: //# run Test::boars::create_bear --sender A created: object(4,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3541600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3541600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 5, line 139: //# run Test::boars::update_display_faulty --sender A --args object(1,1) events: Event { package_id: Test, transaction_module: Identifier("boars"), sender: A, type_: StructTag { address: iota, module: Identifier("display"), name: Identifier("VersionUpdated"), type_params: [Struct(StructTag { address: Test, module: Identifier("boars"), name: Identifier("Boar"), type_params: [] })] }, contents: [155, 85, 136, 164, 81, 63, 109, 148, 75, 198, 60, 36, 25, 208, 95, 122, 157, 232, 18, 97, 53, 211, 101, 208, 13, 29, 31, 165, 226, 122, 237, 179, 1, 0, 3, 7, 118, 101, 99, 116, 111, 114, 115, 5, 123, 118, 101, 99, 125, 3, 105, 100, 100, 5, 123, 105, 100, 100, 125, 5, 110, 97, 109, 101, 101, 7, 123, 110, 97, 109, 101, 101, 125] } mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 2926000, storage_rebate: 2637200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2926000, storage_rebate: 2637200, non_refundable_storage_fee: 0 task 6, line 141: //# create-checkpoint @@ -37,8 +37,8 @@ Checkpoint created: 2 task 7, line 143: //# view-checkpoint -CheckpointSummary { epoch: 0, seq: 2, content_digest: CeYGG9nhFTFVFWiyhWXFP7rk4CQEdgk9UjZBroYRA7ey, - epoch_rolling_gas_cost_summary: GasCostSummary { computation_cost: 3000000, storage_cost: 27914800, storage_rebate: 3617600, non_refundable_storage_fee: 0 }} +CheckpointSummary { epoch: 0, seq: 2, content_digest: GbyYdBVTebRQFzWA9B8nox5yAL4quujoQeZphrp9EguP, + epoch_rolling_gas_cost_summary: GasCostSummary { computation_cost: 3000000, computation_cost_burned: 3000000, storage_cost: 27914800, storage_rebate: 3617600, non_refundable_storage_fee: 0 }} task 8, lines 145-158: //# run-graphql @@ -76,7 +76,7 @@ task 9, line 160: //# run Test::boars::single_add --sender A --args object(1,1) events: Event { package_id: Test, transaction_module: Identifier("boars"), sender: A, type_: StructTag { address: iota, module: Identifier("display"), name: Identifier("VersionUpdated"), type_params: [Struct(StructTag { address: Test, module: Identifier("boars"), name: Identifier("Boar"), type_params: [] })] }, contents: [155, 85, 136, 164, 81, 63, 109, 148, 75, 198, 60, 36, 25, 208, 95, 122, 157, 232, 18, 97, 53, 211, 101, 208, 13, 29, 31, 165, 226, 122, 237, 179, 2, 0, 4, 7, 118, 101, 99, 116, 111, 114, 115, 5, 123, 118, 101, 99, 125, 3, 105, 100, 100, 5, 123, 105, 100, 100, 125, 5, 110, 97, 109, 101, 101, 7, 123, 110, 97, 109, 101, 101, 125, 4, 110, 117, 109, 115, 6, 123, 110, 117, 109, 115, 125] } mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 3017200, storage_rebate: 2926000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3017200, storage_rebate: 2926000, non_refundable_storage_fee: 0 task 10, line 162: //# create-checkpoint @@ -84,8 +84,8 @@ Checkpoint created: 3 task 11, line 164: //# view-checkpoint -CheckpointSummary { epoch: 0, seq: 3, content_digest: iS1YD4FxDZwFuiiGZvP8fpWeobYQecpLZNhhn6ZhGss, - epoch_rolling_gas_cost_summary: GasCostSummary { computation_cost: 4000000, storage_cost: 30932000, storage_rebate: 6543600, non_refundable_storage_fee: 0 }} +CheckpointSummary { epoch: 0, seq: 3, content_digest: 2KBZj5iLNbskohG5KL5VtdGE6onV6YEZQigAzeXZUwUc, + epoch_rolling_gas_cost_summary: GasCostSummary { computation_cost: 4000000, computation_cost_burned: 4000000, storage_cost: 30932000, storage_rebate: 6543600, non_refundable_storage_fee: 0 }} task 12, lines 166-179: //# run-graphql @@ -128,7 +128,7 @@ task 13, line 181: //# run Test::boars::multi_add --sender A --args object(1,1) events: Event { package_id: Test, transaction_module: Identifier("boars"), sender: A, type_: StructTag { address: iota, module: Identifier("display"), name: Identifier("VersionUpdated"), type_params: [Struct(StructTag { address: Test, module: Identifier("boars"), name: Identifier("Boar"), type_params: [] })] }, contents: [155, 85, 136, 164, 81, 63, 109, 148, 75, 198, 60, 36, 25, 208, 95, 122, 157, 232, 18, 97, 53, 211, 101, 208, 13, 29, 31, 165, 226, 122, 237, 179, 3, 0, 15, 7, 118, 101, 99, 116, 111, 114, 115, 5, 123, 118, 101, 99, 125, 3, 105, 100, 100, 5, 123, 105, 100, 100, 125, 5, 110, 97, 109, 101, 101, 7, 123, 110, 97, 109, 101, 101, 125, 4, 110, 117, 109, 115, 6, 123, 110, 117, 109, 115, 125, 5, 98, 111, 111, 108, 115, 7, 123, 98, 111, 111, 108, 115, 125, 5, 98, 117, 121, 101, 114, 7, 123, 98, 117, 121, 101, 114, 125, 4, 110, 97, 109, 101, 6, 123, 110, 97, 109, 101, 125, 7, 99, 114, 101, 97, 116, 111, 114, 9, 123, 99, 114, 101, 97, 116, 111, 114, 125, 5, 112, 114, 105, 99, 101, 7, 123, 112, 114, 105, 99, 101, 125, 11, 112, 114, 111, 106, 101, 99, 116, 95, 117, 114, 108, 58, 85, 110, 105, 113, 117, 101, 32, 66, 111, 97, 114, 32, 102, 114, 111, 109, 32, 116, 104, 101, 32, 66, 111, 97, 114, 115, 32, 99, 111, 108, 108, 101, 99, 116, 105, 111, 110, 32, 119, 105, 116, 104, 32, 123, 110, 97, 109, 101, 125, 32, 97, 110, 100, 32, 123, 105, 100, 125, 8, 98, 97, 115, 101, 95, 117, 114, 108, 32, 104, 116, 116, 112, 115, 58, 47, 47, 103, 101, 116, 45, 97, 45, 98, 111, 97, 114, 46, 99, 111, 109, 47, 123, 105, 109, 103, 95, 117, 114, 108, 125, 11, 110, 111, 95, 116, 101, 109, 112, 108, 97, 116, 101, 23, 104, 116, 116, 112, 115, 58, 47, 47, 103, 101, 116, 45, 97, 45, 98, 111, 97, 114, 46, 99, 111, 109, 47, 3, 97, 103, 101, 21, 123, 109, 101, 116, 97, 100, 97, 116, 97, 46, 110, 101, 115, 116, 101, 100, 46, 97, 103, 101, 125, 8, 102, 117, 108, 108, 95, 117, 114, 108, 10, 123, 102, 117, 108, 108, 95, 117, 114, 108, 125, 13, 101, 115, 99, 97, 112, 101, 95, 115, 121, 110, 116, 97, 120, 8, 92, 123, 110, 97, 109, 101, 92, 125] } mutated: object(0,0), object(1,1) -gas summary: computation_cost: 1000000, storage_cost: 5221200, storage_rebate: 3017200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5221200, storage_rebate: 3017200, non_refundable_storage_fee: 0 task 14, line 183: //# create-checkpoint @@ -136,8 +136,8 @@ Checkpoint created: 4 task 15, line 185: //# view-checkpoint -CheckpointSummary { epoch: 0, seq: 4, content_digest: GN5pxTc4ZJbDksz3EDfnboVFPh4wHnbHN75hFFCVbE1o, - epoch_rolling_gas_cost_summary: GasCostSummary { computation_cost: 5000000, storage_cost: 36153200, storage_rebate: 9560800, non_refundable_storage_fee: 0 }} +CheckpointSummary { epoch: 0, seq: 4, content_digest: D6dE1yK8HSeHb7QdiXFjf9qMKPdAYHdNWBMWkb26nbJt, + epoch_rolling_gas_cost_summary: GasCostSummary { computation_cost: 5000000, computation_cost_burned: 5000000, storage_cost: 36153200, storage_rebate: 9560800, non_refundable_storage_fee: 0 }} task 16, lines 187-200: //# run-graphql diff --git a/crates/iota-graphql-e2e-tests/tests/objects/enum_data.exp b/crates/iota-graphql-e2e-tests/tests/objects/enum_data.exp index 6798cae8985..cb3b64ecc62 100644 --- a/crates/iota-graphql-e2e-tests/tests/objects/enum_data.exp +++ b/crates/iota-graphql-e2e-tests/tests/objects/enum_data.exp @@ -7,7 +7,7 @@ task 1, lines 7-55: //# publish --upgradeable --sender A created: object(1,0), object(1,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 10495600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 10495600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 57-59: //# programmable --inputs @A @@ -15,7 +15,7 @@ task 2, lines 57-59: //> TransferObjects([Result(0)], Input(0)) created: object(2,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 3017200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3017200, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 61: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/objects/filter_by_type.exp b/crates/iota-graphql-e2e-tests/tests/objects/filter_by_type.exp index a472f6f0d3d..ee3a4125263 100644 --- a/crates/iota-graphql-e2e-tests/tests/objects/filter_by_type.exp +++ b/crates/iota-graphql-e2e-tests/tests/objects/filter_by_type.exp @@ -17,7 +17,7 @@ task 3, lines 12-14: //> TransferObjects([Result(0)], Input(1)) created: object(3,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 1960800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 1960800, storage_rebate: 0, non_refundable_storage_fee: 0 task 4, lines 16-18: //# run 0x3::iota_system::request_add_stake --args object(0x5) object(3,0) @validator_0 --sender C @@ -25,7 +25,7 @@ events: Event { package_id: iota_system, transaction_module: Identifier("iota_sy created: object(4,0) mutated: object(_), 0x0000000000000000000000000000000000000000000000000000000000000005, object(0,0) deleted: object(3,0) -gas summary: computation_cost: 1000000, storage_cost: 14500800, storage_rebate: 1960800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 14500800, storage_rebate: 1960800, non_refundable_storage_fee: 0 task 5, line 19: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/objects/pagination.exp b/crates/iota-graphql-e2e-tests/tests/objects/pagination.exp index 96fd4c943ba..38db19b6da2 100644 --- a/crates/iota-graphql-e2e-tests/tests/objects/pagination.exp +++ b/crates/iota-graphql-e2e-tests/tests/objects/pagination.exp @@ -4,37 +4,37 @@ task 1, lines 7-20: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5168000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5168000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 22-23: //# run Test::M1::create --args 0 @A created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 3, lines 25-26: //# run Test::M1::create --args 1 @A created: object(3,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 4, lines 28-29: //# run Test::M1::create --args 2 @A created: object(4,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 5, lines 31-32: //# run Test::M1::create --args 3 @A created: object(5,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 6, lines 34-35: //# run Test::M1::create --args 4 @A created: object(6,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 7, line 37: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/objects/public_transfer.exp b/crates/iota-graphql-e2e-tests/tests/objects/public_transfer.exp index 79581be18d2..5c4f5326f97 100644 --- a/crates/iota-graphql-e2e-tests/tests/objects/public_transfer.exp +++ b/crates/iota-graphql-e2e-tests/tests/objects/public_transfer.exp @@ -7,7 +7,7 @@ task 1, lines 7-27: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 5563200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5563200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 29-32: //# programmable --inputs @A @@ -16,7 +16,7 @@ task 2, lines 29-32: //> TransferObjects([Result(0)], Input(0)) created: object(2,0), object(2,1) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 3412400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3412400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 3, line 34: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/objects/received.exp b/crates/iota-graphql-e2e-tests/tests/objects/received.exp index 15030752fc2..2132f4d9a92 100644 --- a/crates/iota-graphql-e2e-tests/tests/objects/received.exp +++ b/crates/iota-graphql-e2e-tests/tests/objects/received.exp @@ -16,7 +16,7 @@ task 2, lines 18-28: //# publish created: object(2,0), object(2,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 6338400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6338400, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 30: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/objects/staked_iota.exp b/crates/iota-graphql-e2e-tests/tests/objects/staked_iota.exp index 44ab01fd152..af253fa6124 100644 --- a/crates/iota-graphql-e2e-tests/tests/objects/staked_iota.exp +++ b/crates/iota-graphql-e2e-tests/tests/objects/staked_iota.exp @@ -35,7 +35,7 @@ task 2, lines 34-36: //> TransferObjects([Result(0)], Input(1)) created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 1960800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 1960800, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 38: //# run 0x3::iota_system::request_add_stake --args object(0x5) object(2,0) @validator_0 --sender C @@ -43,7 +43,7 @@ events: Event { package_id: iota_system, transaction_module: Identifier("iota_sy created: object(3,0) mutated: object(_), 0x0000000000000000000000000000000000000000000000000000000000000005, object(0,0) deleted: object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 14500800, storage_rebate: 1960800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 14500800, storage_rebate: 1960800, non_refundable_storage_fee: 0 task 4, line 40: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/owner/downcasts.exp b/crates/iota-graphql-e2e-tests/tests/owner/downcasts.exp index 93feb5346b4..4c0135a646e 100644 --- a/crates/iota-graphql-e2e-tests/tests/owner/downcasts.exp +++ b/crates/iota-graphql-e2e-tests/tests/owner/downcasts.exp @@ -9,7 +9,7 @@ task 1, lines 8-10: //> TransferObjects([Result(0)], Input(1)) created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 1960800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 1960800, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 12: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/owner/root_version.exp b/crates/iota-graphql-e2e-tests/tests/owner/root_version.exp index 2227f3db4be..32e752065fb 100644 --- a/crates/iota-graphql-e2e-tests/tests/owner/root_version.exp +++ b/crates/iota-graphql-e2e-tests/tests/owner/root_version.exp @@ -7,38 +7,38 @@ task 1, lines 7-87: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 10579200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 10579200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 89-90: //# run P0::M::new_o created: object(2,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2249600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2249600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 3, lines 92-93: //# run P0::M::new_w created: object(3,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2242000, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2242000, storage_rebate: 980400, non_refundable_storage_fee: 0 task 4, lines 95-96: //# run P0::M::new_dof created: object(4,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2257200, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2257200, storage_rebate: 980400, non_refundable_storage_fee: 0 task 5, lines 98-99: //# run P0::M::new_dof created: object(5,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2257200, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2257200, storage_rebate: 980400, non_refundable_storage_fee: 0 task 6, lines 102-105: //# run P0::M::connect --args object(2,0) object(3,0) object(4,0) object(5,0) created: object(6,0), object(6,1) mutated: object(0,1), object(2,0), object(4,0), object(5,0) wrapped: object(3,0) -gas summary: computation_cost: 1000000, storage_cost: 9895200, storage_rebate: 6064800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 9895200, storage_rebate: 6064800, non_refundable_storage_fee: 0 task 7, lines 107-109: //# view-object 2,0 @@ -68,22 +68,22 @@ Contents: P0::M::O { task 8, lines 111-112: //# run P0::M::touch_root --args object(2,0) mutated: object(0,1), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2553600, storage_rebate: 2553600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2553600, storage_rebate: 2553600, non_refundable_storage_fee: 0 task 9, lines 114-115: //# run P0::M::touch_wrapped --args object(2,0) mutated: object(0,1), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 2553600, storage_rebate: 2553600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2553600, storage_rebate: 2553600, non_refundable_storage_fee: 0 task 10, lines 117-118: //# run P0::M::touch_inner --args object(2,0) mutated: object(0,1), object(2,0), object(4,0) -gas summary: computation_cost: 1000000, storage_cost: 3830400, storage_rebate: 3830400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3830400, storage_rebate: 3830400, non_refundable_storage_fee: 0 task 11, lines 120-121: //# run P0::M::touch_outer --args object(2,0) mutated: object(0,1), object(2,0), object(5,0) -gas summary: computation_cost: 1000000, storage_cost: 3830400, storage_rebate: 3830400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3830400, storage_rebate: 3830400, non_refundable_storage_fee: 0 task 12, line 123: //# view-object 2,0 diff --git a/crates/iota-graphql-e2e-tests/tests/packages/datatypes.exp b/crates/iota-graphql-e2e-tests/tests/packages/datatypes.exp index 8300d70420a..0b4e2611e4b 100644 --- a/crates/iota-graphql-e2e-tests/tests/packages/datatypes.exp +++ b/crates/iota-graphql-e2e-tests/tests/packages/datatypes.exp @@ -140,7 +140,7 @@ task 2, lines 57-67: //# publish --upgradeable --sender A created: object(2,0), object(2,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5966000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5966000, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 69: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/packages/enums.exp b/crates/iota-graphql-e2e-tests/tests/packages/enums.exp index 875d32a0ecb..49ab62fee88 100644 --- a/crates/iota-graphql-e2e-tests/tests/packages/enums.exp +++ b/crates/iota-graphql-e2e-tests/tests/packages/enums.exp @@ -7,7 +7,7 @@ task 1, lines 7-18: //# publish --upgradeable --sender A created: object(1,0), object(1,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5768400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5768400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 20: //# create-checkpoint @@ -107,7 +107,7 @@ task 4, lines 69-82: //# upgrade --package P0 --upgrade-capability 1,0 --sender A created: object(4,0) mutated: object(0,0), object(1,0) -gas summary: computation_cost: 1000000, storage_cost: 6642400, storage_rebate: 2606800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6642400, storage_rebate: 2606800, non_refundable_storage_fee: 0 task 5, line 84: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/packages/friends.exp b/crates/iota-graphql-e2e-tests/tests/packages/friends.exp index 53196f88bcf..ad3f49f048c 100644 --- a/crates/iota-graphql-e2e-tests/tests/packages/friends.exp +++ b/crates/iota-graphql-e2e-tests/tests/packages/friends.exp @@ -7,7 +7,7 @@ task 1, lines 7-15: //# publish --upgradeable --sender A created: object(1,0), object(1,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 7364400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 7364400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 17: //# create-checkpoint @@ -288,7 +288,7 @@ task 6, lines 175-184: //# upgrade --package P0 --upgrade-capability 1,0 --sender A created: object(6,0) mutated: object(0,0), object(1,0) -gas summary: computation_cost: 1000000, storage_cost: 8124400, storage_rebate: 2606800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 8124400, storage_rebate: 2606800, non_refundable_storage_fee: 0 task 7, line 186: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/packages/functions.exp b/crates/iota-graphql-e2e-tests/tests/packages/functions.exp index c00dd88427b..bb7442d617f 100644 --- a/crates/iota-graphql-e2e-tests/tests/packages/functions.exp +++ b/crates/iota-graphql-e2e-tests/tests/packages/functions.exp @@ -77,7 +77,7 @@ task 2, lines 41-45: //# publish --upgradeable --sender A created: object(2,0), object(2,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5168000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5168000, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 47: //# create-checkpoint @@ -157,7 +157,7 @@ task 5, lines 89-94: //# upgrade --package P0 --upgrade-capability 2,0 --sender A created: object(5,0) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 5403600, storage_rebate: 2606800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5403600, storage_rebate: 2606800, non_refundable_storage_fee: 0 task 6, line 96: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/packages/modules.exp b/crates/iota-graphql-e2e-tests/tests/packages/modules.exp index fabb29d2ecb..9351971dcea 100644 --- a/crates/iota-graphql-e2e-tests/tests/packages/modules.exp +++ b/crates/iota-graphql-e2e-tests/tests/packages/modules.exp @@ -4,7 +4,7 @@ task 1, lines 7-32: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 6011600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6011600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 34: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/packages/structs.exp b/crates/iota-graphql-e2e-tests/tests/packages/structs.exp index 85e950142b1..32e3769f08f 100644 --- a/crates/iota-graphql-e2e-tests/tests/packages/structs.exp +++ b/crates/iota-graphql-e2e-tests/tests/packages/structs.exp @@ -136,7 +136,7 @@ task 2, lines 53-57: //# publish --upgradeable --sender A created: object(2,0), object(2,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5198400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5198400, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 59: //# create-checkpoint @@ -206,7 +206,7 @@ task 5, lines 105-111: //# upgrade --package P0 --upgrade-capability 2,0 --sender A created: object(5,0) mutated: object(0,0), object(2,0) -gas summary: computation_cost: 1000000, storage_cost: 6034400, storage_rebate: 2606800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6034400, storage_rebate: 2606800, non_refundable_storage_fee: 0 task 6, line 113: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/packages/types.exp b/crates/iota-graphql-e2e-tests/tests/packages/types.exp index 8fb7340731b..f8cbbd79690 100644 --- a/crates/iota-graphql-e2e-tests/tests/packages/types.exp +++ b/crates/iota-graphql-e2e-tests/tests/packages/types.exp @@ -263,7 +263,7 @@ task 9, lines 124-141: //# publish created: object(9,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4453600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4453600, storage_rebate: 0, non_refundable_storage_fee: 0 task 10, line 143: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/packages/versioning.exp b/crates/iota-graphql-e2e-tests/tests/packages/versioning.exp index 8701c438097..9c380f32b9f 100644 --- a/crates/iota-graphql-e2e-tests/tests/packages/versioning.exp +++ b/crates/iota-graphql-e2e-tests/tests/packages/versioning.exp @@ -7,7 +7,7 @@ task 1, lines 7-10: //# publish --upgradeable --sender A created: object(1,0), object(1,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5061600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5061600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 12: //# create-checkpoint @@ -93,7 +93,7 @@ task 4, lines 53-57: //# upgrade --package P0 --upgrade-capability 1,0 --sender A created: object(4,0) mutated: object(0,0), object(1,0) -gas summary: computation_cost: 1000000, storage_cost: 5236400, storage_rebate: 2606800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5236400, storage_rebate: 2606800, non_refundable_storage_fee: 0 task 5, line 59: //# create-checkpoint @@ -194,7 +194,7 @@ task 7, lines 100-105: //# upgrade --package P1 --upgrade-capability 1,0 --sender A created: object(7,0) mutated: object(0,0), object(1,0) -gas summary: computation_cost: 1000000, storage_cost: 5411200, storage_rebate: 2606800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5411200, storage_rebate: 2606800, non_refundable_storage_fee: 0 task 8, line 107: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/transaction_block_effects/balance_changes.exp b/crates/iota-graphql-e2e-tests/tests/transaction_block_effects/balance_changes.exp index 6c365d1aeff..397cfbbfa29 100644 --- a/crates/iota-graphql-e2e-tests/tests/transaction_block_effects/balance_changes.exp +++ b/crates/iota-graphql-e2e-tests/tests/transaction_block_effects/balance_changes.exp @@ -9,7 +9,7 @@ task 1, lines 7-9: //> TransferObjects([NestedResult(0,0), NestedResult(0,1), NestedResult(0,2), NestedResult(0,3), NestedResult(0,4)], Input(0)); created: object(1,0), object(1,1), object(1,2), object(1,3), object(1,4) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5882400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5882400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 11-16: //# programmable --sender C --inputs object(1,0) object(1,1) object(1,2) object(1,3) object(1,4) @O @P @Q @R @S @@ -19,7 +19,7 @@ task 2, lines 11-16: //> TransferObjects([Input(3)], Input(8)); //> TransferObjects([Input(4)], Input(9)); mutated: object(0,0), object(1,0), object(1,1), object(1,2), object(1,3), object(1,4) -gas summary: computation_cost: 1000000, storage_cost: 5882400, storage_rebate: 5882400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5882400, storage_rebate: 5882400, non_refundable_storage_fee: 0 task 3, line 18: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/transaction_block_effects/dependencies.exp b/crates/iota-graphql-e2e-tests/tests/transaction_block_effects/dependencies.exp index 87011ef53c1..2419d46d870 100644 --- a/crates/iota-graphql-e2e-tests/tests/transaction_block_effects/dependencies.exp +++ b/crates/iota-graphql-e2e-tests/tests/transaction_block_effects/dependencies.exp @@ -7,37 +7,37 @@ task 1, lines 7-34: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 6186400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6186400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 36: //# run Test::M1::create --args 2 @A created: object(2,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 3, line 38: //# run Test::M1::create --args 3 @A created: object(3,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 4, line 40: //# run Test::M1::create --args 4 @A created: object(4,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 5, line 42: //# run Test::M1::create --args 5 @A created: object(5,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 6, line 44: //# run Test::M1::create --args 6 @A created: object(6,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 7, lines 46-50: //# programmable --sender A --inputs object(2,0) object(3,0) object(4,0) object(5,0) object(6,0) @A @@ -47,12 +47,12 @@ task 7, lines 46-50: //> 3: Test::M1::create(Result(2), Input(5)); created: object(7,0) mutated: object(0,0), object(2,0), object(3,0), object(4,0), object(5,0), object(6,0) -gas summary: computation_cost: 1000000, storage_cost: 8823600, storage_rebate: 6536000, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 8823600, storage_rebate: 6536000, non_refundable_storage_fee: 0 task 8, line 52: //# run Test::M1::increment --sender A --args object(7,0) 100 mutated: object(0,0), object(7,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 2287600, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 2287600, non_refundable_storage_fee: 0 task 9, line 54: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/transaction_block_effects/events.exp b/crates/iota-graphql-e2e-tests/tests/transaction_block_effects/events.exp index bb53bbe08bf..61265476233 100644 --- a/crates/iota-graphql-e2e-tests/tests/transaction_block_effects/events.exp +++ b/crates/iota-graphql-e2e-tests/tests/transaction_block_effects/events.exp @@ -7,25 +7,25 @@ task 1, lines 7-29: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 5244000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5244000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 31: //# run Test::M1::emit_1 --sender A --args 1 events: Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [1, 0, 0, 0, 0, 0, 0, 0] } mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 33: //# run Test::M1::emit_2 --sender A --args 10 events: Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [10, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [11, 0, 0, 0, 0, 0, 0, 0] } mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 4, line 35: //# run Test::M1::emit_3 --sender A --args 100 events: Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [100, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [101, 0, 0, 0, 0, 0, 0, 0] }, Event { package_id: Test, transaction_module: Identifier("M1"), sender: A, type_: StructTag { address: Test, module: Identifier("M1"), name: Identifier("EventA"), type_params: [] }, contents: [102, 0, 0, 0, 0, 0, 0, 0] } mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 5, line 37: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/transaction_block_effects/object_changes.exp b/crates/iota-graphql-e2e-tests/tests/transaction_block_effects/object_changes.exp index 3265225cb0c..bb8a7b9f4d4 100644 --- a/crates/iota-graphql-e2e-tests/tests/transaction_block_effects/object_changes.exp +++ b/crates/iota-graphql-e2e-tests/tests/transaction_block_effects/object_changes.exp @@ -7,13 +7,13 @@ task 1, lines 7-26: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 5563200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5563200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 28: //# run Test::M1::create --args 0 @A --gas-price 1000 created: object(2,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 3, line 30: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/transactions/at_checkpoint.exp b/crates/iota-graphql-e2e-tests/tests/transactions/at_checkpoint.exp index 5138b64c5c2..3bafc470eb3 100644 --- a/crates/iota-graphql-e2e-tests/tests/transactions/at_checkpoint.exp +++ b/crates/iota-graphql-e2e-tests/tests/transactions/at_checkpoint.exp @@ -9,7 +9,7 @@ task 2, lines 11-13: //> TransferObjects([Result(0)], Input(1)) created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 1960800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 1960800, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, line 15: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/transactions/errors.exp b/crates/iota-graphql-e2e-tests/tests/transactions/errors.exp index 6f89afa3256..5515b71fcc6 100644 --- a/crates/iota-graphql-e2e-tests/tests/transactions/errors.exp +++ b/crates/iota-graphql-e2e-tests/tests/transactions/errors.exp @@ -4,7 +4,7 @@ task 1, lines 7-12: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3655600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3655600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 14-15: //# programmable diff --git a/crates/iota-graphql-e2e-tests/tests/transactions/filters/kind.exp b/crates/iota-graphql-e2e-tests/tests/transactions/filters/kind.exp index 6ff4f733957..ddb946f16fd 100644 --- a/crates/iota-graphql-e2e-tests/tests/transactions/filters/kind.exp +++ b/crates/iota-graphql-e2e-tests/tests/transactions/filters/kind.exp @@ -7,7 +7,7 @@ task 1, lines 7-20: //# publish created: object(1,0) mutated: object(0,5) -gas summary: computation_cost: 1000000, storage_cost: 5168000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5168000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 22: //# create-checkpoint @@ -17,31 +17,31 @@ task 3, line 24: //# run Test::M1::create --args 0 @A --sender A created: object(3,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 0, non_refundable_storage_fee: 0 task 4, line 26: //# run Test::M1::create --args 1 @A --sender B created: object(4,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 0, non_refundable_storage_fee: 0 task 5, line 28: //# run Test::M1::create --args 2 @A --sender C created: object(5,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 0, non_refundable_storage_fee: 0 task 6, line 30: //# run Test::M1::create --args 3 @A --sender D created: object(6,0) mutated: object(0,3) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 0, non_refundable_storage_fee: 0 task 7, line 32: //# run Test::M1::create --args 4 @A --sender E created: object(7,0) mutated: object(0,4) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 0, non_refundable_storage_fee: 0 task 8, line 34: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/transactions/filters/transaction_ids.exp b/crates/iota-graphql-e2e-tests/tests/transactions/filters/transaction_ids.exp index ade1131f171..4832a909527 100644 --- a/crates/iota-graphql-e2e-tests/tests/transactions/filters/transaction_ids.exp +++ b/crates/iota-graphql-e2e-tests/tests/transactions/filters/transaction_ids.exp @@ -7,7 +7,7 @@ task 1, lines 7-20: //# publish created: object(1,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 5168000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5168000, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 22: //# create-checkpoint @@ -17,7 +17,7 @@ task 3, line 24: //# run Test::M1::create --args 0 @A --sender A created: object(3,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 0, non_refundable_storage_fee: 0 task 4, line 26: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/transactions/programmable.exp b/crates/iota-graphql-e2e-tests/tests/transactions/programmable.exp index faefcd132d5..ece5d01d0ae 100644 --- a/crates/iota-graphql-e2e-tests/tests/transactions/programmable.exp +++ b/crates/iota-graphql-e2e-tests/tests/transactions/programmable.exp @@ -7,7 +7,7 @@ task 1, lines 7-17: //# publish --upgradeable --sender A created: object(1,0), object(1,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 6300400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6300400, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 19: //# create-checkpoint @@ -177,7 +177,7 @@ task 4, lines 202-217: //# upgrade --package P0 --upgrade-capability 1,0 --sender A created: object(4,0) mutated: object(0,0), object(1,0) -gas summary: computation_cost: 1000000, storage_cost: 6574000, storage_rebate: 2606800, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6574000, storage_rebate: 2606800, non_refundable_storage_fee: 0 task 5, line 219: //# create-checkpoint @@ -454,7 +454,7 @@ task 7, lines 402-405: //> iota::transfer::public_transfer(Result(1), Input(1)) created: object(7,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2264800, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2264800, storage_rebate: 980400, non_refundable_storage_fee: 0 task 8, lines 407-416: //# programmable --sender A --inputs 42u64 43u64 1000 @A @@ -469,7 +469,7 @@ task 8, lines 407-416: //> TransferObjects([NestedResult(2,0)], Input(3)) created: object(8,0), object(8,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3306000, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3306000, storage_rebate: 980400, non_refundable_storage_fee: 0 task 9, line 418: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/alternating.exp b/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/alternating.exp index 36025bbae5f..157691e81c5 100644 --- a/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/alternating.exp +++ b/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/alternating.exp @@ -7,7 +7,7 @@ task 1, lines 9-30: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 5791200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5791200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 32: //# create-checkpoint @@ -17,31 +17,31 @@ task 3, line 34: //# run Test::M1::create --args 0 @A --sender A created: object(3,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 0, non_refundable_storage_fee: 0 task 4, line 36: //# run Test::M1::create --args 1 @B --sender B created: object(4,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 0, non_refundable_storage_fee: 0 task 5, line 38: //# run Test::M1::create --args 2 @A --sender A created: object(5,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 6, line 40: //# run Test::M1::create --args 3 @B --sender B created: object(6,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 7, line 42: //# run Test::M1::create --args 4 @A --sender A created: object(7,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 8, line 44: //# create-checkpoint @@ -51,31 +51,31 @@ task 9, line 46: //# run Test::M1::create --args 100 @B --sender B created: object(9,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 10, line 48: //# run Test::M1::create --args 101 @A --sender A created: object(10,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 11, line 50: //# run Test::M1::create --args 102 @B --sender B created: object(11,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 12, line 52: //# run Test::M1::create --args 103 @A --sender A created: object(12,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 13, line 54: //# run Test::M1::create --args 104 @B --sender B created: object(13,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 14, line 56: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/both_cursors.exp b/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/both_cursors.exp index 6ea975e5064..00684e0720f 100644 --- a/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/both_cursors.exp +++ b/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/both_cursors.exp @@ -7,7 +7,7 @@ task 1, lines 10-31: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 5791200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5791200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 33: //# create-checkpoint @@ -17,31 +17,31 @@ task 3, line 35: //# run Test::M1::create --args 0 @B --sender A created: object(3,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 0, non_refundable_storage_fee: 0 task 4, line 37: //# run Test::M1::create --args 1 @A --sender A created: object(4,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 5, line 39: //# run Test::M1::create --args 2 @B --sender A created: object(5,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 6, line 41: //# run Test::M1::create --args 3 @A --sender A created: object(6,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 7, line 43: //# run Test::M1::create --args 4 @B --sender A created: object(7,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 8, line 45: //# create-checkpoint @@ -51,31 +51,31 @@ task 9, line 47: //# run Test::M1::create --args 100 @A --sender A created: object(9,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 10, line 49: //# run Test::M1::create --args 101 @A --sender A created: object(10,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 11, line 51: //# run Test::M1::create --args 102 @A --sender A created: object(11,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 12, line 53: //# run Test::M1::create --args 103 @B --sender A created: object(12,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 13, line 55: //# run Test::M1::create --args 104 @B --sender A created: object(13,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 14, line 57: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/equal/first.exp b/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/equal/first.exp index 3fe147b388b..4f313117c03 100644 --- a/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/equal/first.exp +++ b/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/equal/first.exp @@ -7,7 +7,7 @@ task 1, lines 10-31: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 5791200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5791200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 33: //# create-checkpoint @@ -17,31 +17,31 @@ task 3, line 35: //# run Test::M1::create --args 0 @B --sender A created: object(3,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 0, non_refundable_storage_fee: 0 task 4, line 37: //# run Test::M1::create --args 1 @A --sender A created: object(4,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 5, line 39: //# run Test::M1::create --args 2 @B --sender A created: object(5,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 6, line 41: //# run Test::M1::create --args 3 @A --sender A created: object(6,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 7, line 43: //# run Test::M1::create --args 4 @B --sender A created: object(7,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 8, line 45: //# create-checkpoint @@ -51,31 +51,31 @@ task 9, line 47: //# run Test::M1::create --args 100 @A --sender A created: object(9,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 10, line 49: //# run Test::M1::create --args 101 @A --sender A created: object(10,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 11, line 51: //# run Test::M1::create --args 102 @A --sender A created: object(11,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 12, line 53: //# run Test::M1::create --args 103 @B --sender A created: object(12,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 13, line 55: //# run Test::M1::create --args 104 @B --sender A created: object(13,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 14, line 57: //# create-checkpoint @@ -296,7 +296,7 @@ task 21, line 223: //# run Test::M1::create --args 105 @A --sender A created: object(21,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 22, line 225: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/equal/last.exp b/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/equal/last.exp index 589967bb587..f70d192b281 100644 --- a/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/equal/last.exp +++ b/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/equal/last.exp @@ -7,7 +7,7 @@ task 1, lines 9-30: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 5791200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5791200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 32: //# create-checkpoint @@ -17,31 +17,31 @@ task 3, line 34: //# run Test::M1::create --args 0 @B --sender A created: object(3,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 0, non_refundable_storage_fee: 0 task 4, line 36: //# run Test::M1::create --args 1 @B --sender A created: object(4,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 5, line 38: //# run Test::M1::create --args 2 @A --sender A created: object(5,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 6, line 40: //# run Test::M1::create --args 3 @A --sender A created: object(6,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 7, line 42: //# run Test::M1::create --args 4 @A --sender A created: object(7,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 8, line 44: //# create-checkpoint @@ -51,31 +51,31 @@ task 9, line 46: //# run Test::M1::create --args 100 @B --sender A created: object(9,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 10, line 48: //# run Test::M1::create --args 101 @A --sender A created: object(10,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 11, line 50: //# run Test::M1::create --args 102 @B --sender A created: object(11,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 12, line 52: //# run Test::M1::create --args 103 @A --sender A created: object(12,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 13, line 54: //# run Test::M1::create --args 104 @B --sender A created: object(13,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 14, line 56: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/ge_page/first.exp b/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/ge_page/first.exp index 21c0732c8e8..ef865977112 100644 --- a/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/ge_page/first.exp +++ b/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/ge_page/first.exp @@ -7,7 +7,7 @@ task 1, lines 7-28: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 5791200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5791200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 30: //# create-checkpoint @@ -17,31 +17,31 @@ task 3, line 32: //# run Test::M1::create --args 0 @A --sender A created: object(3,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 0, non_refundable_storage_fee: 0 task 4, line 34: //# run Test::M1::create --args 1 @A --sender A created: object(4,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 5, line 36: //# run Test::M1::create --args 2 @B --sender B created: object(5,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 0, non_refundable_storage_fee: 0 task 6, line 38: //# run Test::M1::create --args 3 @B --sender B created: object(6,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 7, line 40: //# run Test::M1::create --args 4 @B --sender B created: object(7,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 8, line 42: //# create-checkpoint @@ -51,31 +51,31 @@ task 9, line 44: //# run Test::M1::create --args 100 @B --sender B created: object(9,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 10, line 46: //# run Test::M1::create --args 101 @B --sender B created: object(10,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 11, line 48: //# run Test::M1::create --args 102 @B --sender B created: object(11,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 12, line 50: //# run Test::M1::create --args 103 @B --sender B created: object(12,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 13, line 52: //# run Test::M1::create --args 104 @B --sender B created: object(13,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 14, line 54: //# create-checkpoint @@ -85,31 +85,31 @@ task 15, line 56: //# run Test::M1::create --args 100 @B --sender B created: object(15,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 16, line 58: //# run Test::M1::create --args 101 @B --sender B created: object(16,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 17, line 60: //# run Test::M1::create --args 102 @B --sender B created: object(17,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 18, line 62: //# run Test::M1::create --args 103 @B --sender B created: object(18,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 19, line 64: //# run Test::M1::create --args 104 @B --sender B created: object(19,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 20, line 66: //# create-checkpoint @@ -119,31 +119,31 @@ task 21, line 68: //# run Test::M1::create --args 200 @A --sender A created: object(21,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 22, line 70: //# run Test::M1::create --args 201 @B --sender A created: object(22,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 23, line 72: //# run Test::M1::create --args 202 @B --sender B created: object(23,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 24, line 74: //# run Test::M1::create --args 203 @B --sender B created: object(24,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 25, line 76: //# run Test::M1::create --args 204 @A --sender A created: object(25,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 26, line 78: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/ge_page/last.exp b/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/ge_page/last.exp index 8ed1415e904..237670042df 100644 --- a/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/ge_page/last.exp +++ b/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/ge_page/last.exp @@ -7,7 +7,7 @@ task 1, lines 7-28: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 5791200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5791200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 30: //# create-checkpoint @@ -17,31 +17,31 @@ task 3, line 32: //# run Test::M1::create --args 0 @A --sender A created: object(3,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 0, non_refundable_storage_fee: 0 task 4, line 34: //# run Test::M1::create --args 1 @A --sender A created: object(4,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 5, line 36: //# run Test::M1::create --args 2 @B --sender B created: object(5,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 0, non_refundable_storage_fee: 0 task 6, line 38: //# run Test::M1::create --args 3 @B --sender B created: object(6,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 7, line 40: //# run Test::M1::create --args 4 @B --sender B created: object(7,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 8, line 42: //# create-checkpoint @@ -51,31 +51,31 @@ task 9, line 44: //# run Test::M1::create --args 100 @B --sender B created: object(9,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 10, line 46: //# run Test::M1::create --args 101 @B --sender B created: object(10,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 11, line 48: //# run Test::M1::create --args 102 @B --sender B created: object(11,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 12, line 50: //# run Test::M1::create --args 103 @B --sender B created: object(12,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 13, line 52: //# run Test::M1::create --args 104 @B --sender B created: object(13,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 14, line 54: //# create-checkpoint @@ -85,31 +85,31 @@ task 15, line 56: //# run Test::M1::create --args 100 @B --sender B created: object(15,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 16, line 58: //# run Test::M1::create --args 101 @B --sender B created: object(16,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 17, line 60: //# run Test::M1::create --args 102 @B --sender B created: object(17,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 18, line 62: //# run Test::M1::create --args 103 @B --sender B created: object(18,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 19, line 64: //# run Test::M1::create --args 104 @B --sender B created: object(19,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 20, line 66: //# create-checkpoint @@ -119,31 +119,31 @@ task 21, line 68: //# run Test::M1::create --args 200 @A --sender A created: object(21,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 22, line 70: //# run Test::M1::create --args 201 @B --sender B created: object(22,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 23, line 72: //# run Test::M1::create --args 202 @B --sender B created: object(23,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 24, line 74: //# run Test::M1::create --args 203 @B --sender B created: object(24,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 25, line 76: //# run Test::M1::create --args 204 @A --sender A created: object(25,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 26, line 78: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/invalid_limits.exp b/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/invalid_limits.exp index 978aaded234..86eb2be6ee7 100644 --- a/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/invalid_limits.exp +++ b/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/invalid_limits.exp @@ -7,7 +7,7 @@ task 1, lines 9-30: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 5791200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5791200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 32: //# create-checkpoint @@ -17,31 +17,31 @@ task 3, line 34: //# run Test::M1::create --args 0 @B --sender A created: object(3,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 0, non_refundable_storage_fee: 0 task 4, line 36: //# run Test::M1::create --args 1 @A --sender A created: object(4,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 5, line 38: //# run Test::M1::create --args 2 @B --sender A created: object(5,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 6, line 40: //# run Test::M1::create --args 3 @A --sender A created: object(6,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 7, line 42: //# run Test::M1::create --args 4 @B --sender A created: object(7,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 8, line 44: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/le_page/first.exp b/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/le_page/first.exp index 92a9ec36eaa..377000f6c75 100644 --- a/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/le_page/first.exp +++ b/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/le_page/first.exp @@ -7,7 +7,7 @@ task 1, lines 11-32: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 5791200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5791200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 34: //# create-checkpoint @@ -17,31 +17,31 @@ task 3, line 36: //# run Test::M1::create --args 0 @A --sender A created: object(3,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 0, non_refundable_storage_fee: 0 task 4, line 38: //# run Test::M1::create --args 1 @B --sender B created: object(4,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 0, non_refundable_storage_fee: 0 task 5, line 40: //# run Test::M1::create --args 2 @A --sender A created: object(5,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 6, line 42: //# run Test::M1::create --args 3 @B --sender B created: object(6,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 7, line 44: //# run Test::M1::create --args 4 @A --sender A created: object(7,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 8, line 46: //# create-checkpoint @@ -51,31 +51,31 @@ task 9, line 48: //# run Test::M1::create --args 100 @B --sender B created: object(9,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 10, line 50: //# run Test::M1::create --args 101 @A --sender A created: object(10,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 11, line 52: //# run Test::M1::create --args 102 @B --sender B created: object(11,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 12, line 54: //# run Test::M1::create --args 103 @A --sender A created: object(12,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 13, line 56: //# run Test::M1::create --args 104 @B --sender B created: object(13,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 14, line 58: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/le_page/last.exp b/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/le_page/last.exp index 580a36c1b4d..3330dbf0293 100644 --- a/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/le_page/last.exp +++ b/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/le_page/last.exp @@ -7,7 +7,7 @@ task 1, lines 11-32: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 5791200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5791200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 34: //# create-checkpoint @@ -17,31 +17,31 @@ task 3, line 36: //# run Test::M1::create --args 0 @A --sender A created: object(3,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 0, non_refundable_storage_fee: 0 task 4, line 38: //# run Test::M1::create --args 1 @B --sender B created: object(4,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 0, non_refundable_storage_fee: 0 task 5, line 40: //# run Test::M1::create --args 2 @A --sender A created: object(5,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 6, line 42: //# run Test::M1::create --args 3 @B --sender B created: object(6,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 7, line 44: //# run Test::M1::create --args 4 @A --sender A created: object(7,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 8, line 46: //# create-checkpoint @@ -51,31 +51,31 @@ task 9, line 48: //# run Test::M1::create --args 100 @B --sender B created: object(9,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 10, line 50: //# run Test::M1::create --args 101 @A --sender A created: object(10,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 11, line 52: //# run Test::M1::create --args 102 @B --sender B created: object(11,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 12, line 54: //# run Test::M1::create --args 103 @A --sender A created: object(12,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 13, line 56: //# run Test::M1::create --args 104 @B --sender B created: object(13,0) mutated: object(0,1) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 14, line 58: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/require.exp b/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/require.exp index 541ac7728a3..f3a557539a2 100644 --- a/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/require.exp +++ b/crates/iota-graphql-e2e-tests/tests/transactions/scan_limit/require.exp @@ -7,7 +7,7 @@ task 1, lines 7-28: //# publish created: object(1,0) mutated: object(0,2) -gas summary: computation_cost: 1000000, storage_cost: 5791200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5791200, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, line 30: //# create-checkpoint @@ -17,31 +17,31 @@ task 3, line 32: //# run Test::M1::create --args 0 @B --sender A created: object(3,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 0, non_refundable_storage_fee: 0 task 4, line 34: //# run Test::M1::create --args 1 @B --sender A created: object(4,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 5, line 36: //# run Test::M1::create --args 2 @B --sender A created: object(5,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 6, line 38: //# run Test::M1::create --args 3 @B --sender A created: object(6,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 7, line 40: //# run Test::M1::create --args 4 @B --sender A created: object(7,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 8, line 42: //# create-checkpoint @@ -51,31 +51,31 @@ task 9, line 44: //# run Test::M1::create --args 100 @B --sender A created: object(9,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 10, line 46: //# run Test::M1::create --args 101 @B --sender A created: object(10,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 11, line 48: //# run Test::M1::create --args 102 @B --sender A created: object(11,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 12, line 50: //# run Test::M1::create --args 103 @B --sender A created: object(12,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 13, line 52: //# run Test::M1::create --args 104 @B --sender A created: object(13,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2287600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 14, line 54: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/transactions/shared.exp b/crates/iota-graphql-e2e-tests/tests/transactions/shared.exp index 39a61497828..13ed627e781 100644 --- a/crates/iota-graphql-e2e-tests/tests/transactions/shared.exp +++ b/crates/iota-graphql-e2e-tests/tests/transactions/shared.exp @@ -4,27 +4,27 @@ task 1, lines 7-23: //# publish created: object(1,0), object(1,1) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 6847600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 6847600, storage_rebate: 0, non_refundable_storage_fee: 0 task 2, lines 25-26: //# programmable --inputs immshared(1,0) //> 0: P0::m::get(Input(0)) mutated: object(0,0) unchanged_shared: object(1,0) -gas summary: computation_cost: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 980400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 3, lines 28-29: //# programmable --inputs object(1,0) //> 0: P0::m::inc(Input(0)) mutated: object(0,0), object(1,0) -gas summary: computation_cost: 1000000, storage_cost: 2257200, storage_rebate: 2257200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2257200, storage_rebate: 2257200, non_refundable_storage_fee: 0 task 4, lines 31-33: //# programmable --inputs object(1,0) //> 0: P0::m::get(Input(0)); //> P0::m::inc(Input(0)) mutated: object(0,0), object(1,0) -gas summary: computation_cost: 1000000, storage_cost: 2257200, storage_rebate: 2257200, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 2257200, storage_rebate: 2257200, non_refundable_storage_fee: 0 task 5, line 35: //# create-checkpoint diff --git a/crates/iota-graphql-e2e-tests/tests/validator/validator.exp b/crates/iota-graphql-e2e-tests/tests/validator/validator.exp index edf5eab338a..628c1f986e1 100644 --- a/crates/iota-graphql-e2e-tests/tests/validator/validator.exp +++ b/crates/iota-graphql-e2e-tests/tests/validator/validator.exp @@ -15,31 +15,31 @@ task 3, lines 13-38: //# publish --sender A --gas-budget 9999999999 created: object(3,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5912800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5912800, storage_rebate: 0, non_refundable_storage_fee: 0 task 4, line 40: //# run P0::m::new --sender A created: object(4,0) mutated: object(0,0) -gas summary: computation_cost: 1441000000, storage_cost: 1932254400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1441000000, computation_cost_burned: 1441000000, storage_cost: 1932254400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 5, line 42: //# run P0::m::new --sender A created: object(5,0) mutated: object(0,0) -gas summary: computation_cost: 1441000000, storage_cost: 1932254400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1441000000, computation_cost_burned: 1441000000, storage_cost: 1932254400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 6, line 44: //# run P0::m::new --sender A created: object(6,0) mutated: object(0,0) -gas summary: computation_cost: 1441000000, storage_cost: 1932254400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1441000000, computation_cost_burned: 1441000000, storage_cost: 1932254400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 7, line 46: //# run P0::m::new --sender A created: object(7,0) mutated: object(0,0) -gas summary: computation_cost: 1441000000, storage_cost: 1932254400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1441000000, computation_cost_burned: 1441000000, storage_cost: 1932254400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 8, line 48: //# create-checkpoint @@ -71,91 +71,91 @@ task 11, line 65: //# run P0::m::new --sender A created: object(11,0) mutated: object(0,0) -gas summary: computation_cost: 1441000000, storage_cost: 1932254400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1441000000, computation_cost_burned: 1441000000, storage_cost: 1932254400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 12, line 67: //# run P0::m::new --sender A created: object(12,0) mutated: object(0,0) -gas summary: computation_cost: 1441000000, storage_cost: 1932254400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1441000000, computation_cost_burned: 1441000000, storage_cost: 1932254400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 13, line 69: //# run P0::m::new --sender A created: object(13,0) mutated: object(0,0) -gas summary: computation_cost: 1441000000, storage_cost: 1932254400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1441000000, computation_cost_burned: 1441000000, storage_cost: 1932254400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 14, line 71: //# run P0::m::new --sender A created: object(14,0) mutated: object(0,0) -gas summary: computation_cost: 1441000000, storage_cost: 1932254400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1441000000, computation_cost_burned: 1441000000, storage_cost: 1932254400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 15, line 73: //# run P0::m::new --sender A created: object(15,0) mutated: object(0,0) -gas summary: computation_cost: 1441000000, storage_cost: 1932254400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1441000000, computation_cost_burned: 1441000000, storage_cost: 1932254400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 16, line 75: //# run P0::m::new --sender A created: object(16,0) mutated: object(0,0) -gas summary: computation_cost: 1441000000, storage_cost: 1932254400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1441000000, computation_cost_burned: 1441000000, storage_cost: 1932254400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 17, line 77: //# run P0::m::new --sender A created: object(17,0) mutated: object(0,0) -gas summary: computation_cost: 1441000000, storage_cost: 1932254400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1441000000, computation_cost_burned: 1441000000, storage_cost: 1932254400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 18, line 79: //# run P0::m::new --sender A created: object(18,0) mutated: object(0,0) -gas summary: computation_cost: 1441000000, storage_cost: 1932254400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1441000000, computation_cost_burned: 1441000000, storage_cost: 1932254400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 19, line 81: //# run P0::m::new --sender A created: object(19,0) mutated: object(0,0) -gas summary: computation_cost: 1441000000, storage_cost: 1932254400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1441000000, computation_cost_burned: 1441000000, storage_cost: 1932254400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 20, line 83: //# run P0::m::new --sender A created: object(20,0) mutated: object(0,0) -gas summary: computation_cost: 1441000000, storage_cost: 1932254400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1441000000, computation_cost_burned: 1441000000, storage_cost: 1932254400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 21, line 85: //# run P0::m::new --sender A created: object(21,0) mutated: object(0,0) -gas summary: computation_cost: 1441000000, storage_cost: 1932254400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1441000000, computation_cost_burned: 1441000000, storage_cost: 1932254400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 22, line 87: //# run P0::m::new --sender A created: object(22,0) mutated: object(0,0) -gas summary: computation_cost: 1441000000, storage_cost: 1932254400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1441000000, computation_cost_burned: 1441000000, storage_cost: 1932254400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 23, line 89: //# run P0::m::new --sender A created: object(23,0) mutated: object(0,0) -gas summary: computation_cost: 1441000000, storage_cost: 1932254400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1441000000, computation_cost_burned: 1441000000, storage_cost: 1932254400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 24, line 91: //# run P0::m::new --sender A created: object(24,0) mutated: object(0,0) -gas summary: computation_cost: 1441000000, storage_cost: 1932254400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1441000000, computation_cost_burned: 1441000000, storage_cost: 1932254400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 25, line 93: //# run P0::m::new --sender A created: object(25,0) mutated: object(0,0) -gas summary: computation_cost: 1441000000, storage_cost: 1932254400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1441000000, computation_cost_burned: 1441000000, storage_cost: 1932254400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 26, line 95: //# create-checkpoint diff --git a/crates/iota-verifier-transactional-tests/tests/entry_points/clock_ref.exp b/crates/iota-verifier-transactional-tests/tests/entry_points/clock_ref.exp index 5f59be2430c..b1a8d06a779 100644 --- a/crates/iota-verifier-transactional-tests/tests/entry_points/clock_ref.exp +++ b/crates/iota-verifier-transactional-tests/tests/entry_points/clock_ref.exp @@ -4,4 +4,4 @@ task 0, lines 7-15: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3944400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3944400, storage_rebate: 0, non_refundable_storage_fee: 0 diff --git a/crates/iota-verifier-transactional-tests/tests/entry_points/generic_and_generic_object_params.exp b/crates/iota-verifier-transactional-tests/tests/entry_points/generic_and_generic_object_params.exp index dc1f794017b..1f41055a689 100644 --- a/crates/iota-verifier-transactional-tests/tests/entry_points/generic_and_generic_object_params.exp +++ b/crates/iota-verifier-transactional-tests/tests/entry_points/generic_and_generic_object_params.exp @@ -4,4 +4,4 @@ task 0, lines 5-17: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4590400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4590400, storage_rebate: 0, non_refundable_storage_fee: 0 diff --git a/crates/iota-verifier-transactional-tests/tests/entry_points/generic_param_after_primitive.exp b/crates/iota-verifier-transactional-tests/tests/entry_points/generic_param_after_primitive.exp index 4dbe1a55eed..511de926e2e 100644 --- a/crates/iota-verifier-transactional-tests/tests/entry_points/generic_param_after_primitive.exp +++ b/crates/iota-verifier-transactional-tests/tests/entry_points/generic_param_after_primitive.exp @@ -4,4 +4,4 @@ task 0, lines 5-17: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4552400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4552400, storage_rebate: 0, non_refundable_storage_fee: 0 diff --git a/crates/iota-verifier-transactional-tests/tests/entry_points/generic_with_key_valid.exp b/crates/iota-verifier-transactional-tests/tests/entry_points/generic_with_key_valid.exp index 4492cdc6c20..4529b502b44 100644 --- a/crates/iota-verifier-transactional-tests/tests/entry_points/generic_with_key_valid.exp +++ b/crates/iota-verifier-transactional-tests/tests/entry_points/generic_with_key_valid.exp @@ -4,4 +4,4 @@ task 0, lines 7-17: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4324400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4324400, storage_rebate: 0, non_refundable_storage_fee: 0 diff --git a/crates/iota-verifier-transactional-tests/tests/entry_points/id.exp b/crates/iota-verifier-transactional-tests/tests/entry_points/id.exp index bf36ad951ce..ab8208ee397 100644 --- a/crates/iota-verifier-transactional-tests/tests/entry_points/id.exp +++ b/crates/iota-verifier-transactional-tests/tests/entry_points/id.exp @@ -4,4 +4,4 @@ task 0, lines 7-22: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4142000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4142000, storage_rebate: 0, non_refundable_storage_fee: 0 diff --git a/crates/iota-verifier-transactional-tests/tests/entry_points/nested_generic_vector_param.exp b/crates/iota-verifier-transactional-tests/tests/entry_points/nested_generic_vector_param.exp index 96293fc1c9c..33ad1081352 100644 --- a/crates/iota-verifier-transactional-tests/tests/entry_points/nested_generic_vector_param.exp +++ b/crates/iota-verifier-transactional-tests/tests/entry_points/nested_generic_vector_param.exp @@ -4,4 +4,4 @@ task 0, lines 5-14: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3974800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3974800, storage_rebate: 0, non_refundable_storage_fee: 0 diff --git a/crates/iota-verifier-transactional-tests/tests/entry_points/non_key_struct_generic_valid.exp b/crates/iota-verifier-transactional-tests/tests/entry_points/non_key_struct_generic_valid.exp index 0ffb452f306..5c532e70095 100644 --- a/crates/iota-verifier-transactional-tests/tests/entry_points/non_key_struct_generic_valid.exp +++ b/crates/iota-verifier-transactional-tests/tests/entry_points/non_key_struct_generic_valid.exp @@ -4,4 +4,4 @@ task 0, lines 7-19: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4560000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4560000, storage_rebate: 0, non_refundable_storage_fee: 0 diff --git a/crates/iota-verifier-transactional-tests/tests/entry_points/ok.exp b/crates/iota-verifier-transactional-tests/tests/entry_points/ok.exp index 96cf889920b..a7a879c6b86 100644 --- a/crates/iota-verifier-transactional-tests/tests/entry_points/ok.exp +++ b/crates/iota-verifier-transactional-tests/tests/entry_points/ok.exp @@ -4,10 +4,10 @@ task 0, lines 5-12: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3921600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3921600, storage_rebate: 0, non_refundable_storage_fee: 0 task 1, lines 14-21: //# publish created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3921600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3921600, storage_rebate: 980400, non_refundable_storage_fee: 0 diff --git a/crates/iota-verifier-transactional-tests/tests/entry_points/option.exp b/crates/iota-verifier-transactional-tests/tests/entry_points/option.exp index 6eb9341e8fc..3b9432e6dc1 100644 --- a/crates/iota-verifier-transactional-tests/tests/entry_points/option.exp +++ b/crates/iota-verifier-transactional-tests/tests/entry_points/option.exp @@ -4,4 +4,4 @@ task 0, lines 7-24: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4582800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4582800, storage_rebate: 0, non_refundable_storage_fee: 0 diff --git a/crates/iota-verifier-transactional-tests/tests/entry_points/optional_txn_context.exp b/crates/iota-verifier-transactional-tests/tests/entry_points/optional_txn_context.exp index 52990bb481e..9c8fafdf010 100644 --- a/crates/iota-verifier-transactional-tests/tests/entry_points/optional_txn_context.exp +++ b/crates/iota-verifier-transactional-tests/tests/entry_points/optional_txn_context.exp @@ -4,10 +4,10 @@ task 0, lines 5-12: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3762000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3762000, storage_rebate: 0, non_refundable_storage_fee: 0 task 1, lines 15-24: //# publish created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4385200, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4385200, storage_rebate: 980400, non_refundable_storage_fee: 0 diff --git a/crates/iota-verifier-transactional-tests/tests/entry_points/random_ref.exp b/crates/iota-verifier-transactional-tests/tests/entry_points/random_ref.exp index 1d050102f1e..9a33b066926 100644 --- a/crates/iota-verifier-transactional-tests/tests/entry_points/random_ref.exp +++ b/crates/iota-verifier-transactional-tests/tests/entry_points/random_ref.exp @@ -4,4 +4,4 @@ task 0, lines 7-15: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3967200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3967200, storage_rebate: 0, non_refundable_storage_fee: 0 diff --git a/crates/iota-verifier-transactional-tests/tests/entry_points/return_values.exp b/crates/iota-verifier-transactional-tests/tests/entry_points/return_values.exp index 4cb95cc9cc1..54afe3df31d 100644 --- a/crates/iota-verifier-transactional-tests/tests/entry_points/return_values.exp +++ b/crates/iota-verifier-transactional-tests/tests/entry_points/return_values.exp @@ -4,28 +4,28 @@ task 0, lines 7-14: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3952000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3952000, storage_rebate: 0, non_refundable_storage_fee: 0 task 1, lines 16-23: //# publish created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3959600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3959600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 2, lines 25-32: //# publish created: object(3,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3959600, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3959600, storage_rebate: 980400, non_refundable_storage_fee: 0 task 3, lines 34-42: //# publish created: object(4,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4499200, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4499200, storage_rebate: 980400, non_refundable_storage_fee: 0 task 4, lines 44-52: //# publish created: object(5,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4514400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4514400, storage_rebate: 980400, non_refundable_storage_fee: 0 diff --git a/crates/iota-verifier-transactional-tests/tests/entry_points/single_generic_vector_param.exp b/crates/iota-verifier-transactional-tests/tests/entry_points/single_generic_vector_param.exp index 00a76d829cd..c4932632630 100644 --- a/crates/iota-verifier-transactional-tests/tests/entry_points/single_generic_vector_param.exp +++ b/crates/iota-verifier-transactional-tests/tests/entry_points/single_generic_vector_param.exp @@ -4,4 +4,4 @@ task 0, lines 5-14: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3967200, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3967200, storage_rebate: 0, non_refundable_storage_fee: 0 diff --git a/crates/iota-verifier-transactional-tests/tests/entry_points/single_type_param.exp b/crates/iota-verifier-transactional-tests/tests/entry_points/single_type_param.exp index 402d5f8ae22..9d5ec25bdfc 100644 --- a/crates/iota-verifier-transactional-tests/tests/entry_points/single_type_param.exp +++ b/crates/iota-verifier-transactional-tests/tests/entry_points/single_type_param.exp @@ -4,4 +4,4 @@ task 0, lines 5-14: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3959600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3959600, storage_rebate: 0, non_refundable_storage_fee: 0 diff --git a/crates/iota-verifier-transactional-tests/tests/entry_points/single_type_param_generic_object.exp b/crates/iota-verifier-transactional-tests/tests/entry_points/single_type_param_generic_object.exp index b7fb5e55079..417dbd7b339 100644 --- a/crates/iota-verifier-transactional-tests/tests/entry_points/single_type_param_generic_object.exp +++ b/crates/iota-verifier-transactional-tests/tests/entry_points/single_type_param_generic_object.exp @@ -4,4 +4,4 @@ task 0, lines 5-17: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4567600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4567600, storage_rebate: 0, non_refundable_storage_fee: 0 diff --git a/crates/iota-verifier-transactional-tests/tests/entry_points/single_type_param_key.exp b/crates/iota-verifier-transactional-tests/tests/entry_points/single_type_param_key.exp index 402d5f8ae22..9d5ec25bdfc 100644 --- a/crates/iota-verifier-transactional-tests/tests/entry_points/single_type_param_key.exp +++ b/crates/iota-verifier-transactional-tests/tests/entry_points/single_type_param_key.exp @@ -4,4 +4,4 @@ task 0, lines 5-14: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3959600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3959600, storage_rebate: 0, non_refundable_storage_fee: 0 diff --git a/crates/iota-verifier-transactional-tests/tests/entry_points/string.exp b/crates/iota-verifier-transactional-tests/tests/entry_points/string.exp index eb1397acccf..1f12c6f4f6e 100644 --- a/crates/iota-verifier-transactional-tests/tests/entry_points/string.exp +++ b/crates/iota-verifier-transactional-tests/tests/entry_points/string.exp @@ -4,4 +4,4 @@ task 0, lines 7-32: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4886800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4886800, storage_rebate: 0, non_refundable_storage_fee: 0 diff --git a/crates/iota-verifier-transactional-tests/tests/id_immutable/mut_borrow_generic_key_struct_id_field.exp b/crates/iota-verifier-transactional-tests/tests/id_immutable/mut_borrow_generic_key_struct_id_field.exp index 815b409bce1..90cfdeb41c0 100644 --- a/crates/iota-verifier-transactional-tests/tests/id_immutable/mut_borrow_generic_key_struct_id_field.exp +++ b/crates/iota-verifier-transactional-tests/tests/id_immutable/mut_borrow_generic_key_struct_id_field.exp @@ -4,4 +4,4 @@ task 0, lines 5-19: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4453600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4453600, storage_rebate: 0, non_refundable_storage_fee: 0 diff --git a/crates/iota-verifier-transactional-tests/tests/id_immutable/mut_borrow_key_struct_id_field.exp b/crates/iota-verifier-transactional-tests/tests/id_immutable/mut_borrow_key_struct_id_field.exp index 4ca2cd62755..6e6f56db45e 100644 --- a/crates/iota-verifier-transactional-tests/tests/id_immutable/mut_borrow_key_struct_id_field.exp +++ b/crates/iota-verifier-transactional-tests/tests/id_immutable/mut_borrow_key_struct_id_field.exp @@ -4,4 +4,4 @@ task 0, lines 5-19: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4362400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4362400, storage_rebate: 0, non_refundable_storage_fee: 0 diff --git a/crates/iota-verifier-transactional-tests/tests/id_immutable/mut_borrow_key_struct_non_id_field.exp b/crates/iota-verifier-transactional-tests/tests/id_immutable/mut_borrow_key_struct_non_id_field.exp index 63842893732..caa6434cf6f 100644 --- a/crates/iota-verifier-transactional-tests/tests/id_immutable/mut_borrow_key_struct_non_id_field.exp +++ b/crates/iota-verifier-transactional-tests/tests/id_immutable/mut_borrow_key_struct_non_id_field.exp @@ -4,4 +4,4 @@ task 0, lines 5-20: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4430800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4430800, storage_rebate: 0, non_refundable_storage_fee: 0 diff --git a/crates/iota-verifier-transactional-tests/tests/id_immutable/mut_borrow_non_key_struct_id_field.exp b/crates/iota-verifier-transactional-tests/tests/id_immutable/mut_borrow_non_key_struct_id_field.exp index 4ca2cd62755..6e6f56db45e 100644 --- a/crates/iota-verifier-transactional-tests/tests/id_immutable/mut_borrow_non_key_struct_id_field.exp +++ b/crates/iota-verifier-transactional-tests/tests/id_immutable/mut_borrow_non_key_struct_id_field.exp @@ -4,4 +4,4 @@ task 0, lines 5-19: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4362400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4362400, storage_rebate: 0, non_refundable_storage_fee: 0 diff --git a/crates/iota-verifier-transactional-tests/tests/id_leak/direct_leak_through_call.exp b/crates/iota-verifier-transactional-tests/tests/id_leak/direct_leak_through_call.exp index de29e0aad0d..31828aeba4a 100644 --- a/crates/iota-verifier-transactional-tests/tests/id_leak/direct_leak_through_call.exp +++ b/crates/iota-verifier-transactional-tests/tests/id_leak/direct_leak_through_call.exp @@ -4,4 +4,4 @@ task 0, lines 5-27: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4582800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4582800, storage_rebate: 0, non_refundable_storage_fee: 0 diff --git a/crates/iota-verifier-transactional-tests/tests/id_leak/indirect_leak_through_call.exp b/crates/iota-verifier-transactional-tests/tests/id_leak/indirect_leak_through_call.exp index 402d781b4f3..addb3329cd5 100644 --- a/crates/iota-verifier-transactional-tests/tests/id_leak/indirect_leak_through_call.exp +++ b/crates/iota-verifier-transactional-tests/tests/id_leak/indirect_leak_through_call.exp @@ -9,4 +9,4 @@ task 1, lines 29-51: //# publish created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4582800, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4582800, storage_rebate: 980400, non_refundable_storage_fee: 0 diff --git a/crates/iota-verifier-transactional-tests/tests/id_leak/infinite_loop.exp b/crates/iota-verifier-transactional-tests/tests/id_leak/infinite_loop.exp index 9292f08dcd9..dd8f2d34588 100644 --- a/crates/iota-verifier-transactional-tests/tests/id_leak/infinite_loop.exp +++ b/crates/iota-verifier-transactional-tests/tests/id_leak/infinite_loop.exp @@ -4,10 +4,10 @@ task 0, lines 7-29: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4962800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4962800, storage_rebate: 0, non_refundable_storage_fee: 0 task 1, lines 31-60: //# publish created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5160400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5160400, storage_rebate: 980400, non_refundable_storage_fee: 0 diff --git a/crates/iota-verifier-transactional-tests/tests/id_leak/loop.exp b/crates/iota-verifier-transactional-tests/tests/id_leak/loop.exp index 51f84769133..e70c58291ae 100644 --- a/crates/iota-verifier-transactional-tests/tests/id_leak/loop.exp +++ b/crates/iota-verifier-transactional-tests/tests/id_leak/loop.exp @@ -4,4 +4,4 @@ task 0, lines 5-35: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5624000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5624000, storage_rebate: 0, non_refundable_storage_fee: 0 diff --git a/crates/iota-verifier-transactional-tests/tests/id_leak/through_direct_return.exp b/crates/iota-verifier-transactional-tests/tests/id_leak/through_direct_return.exp index 7ebda917501..ae322a7e96a 100644 --- a/crates/iota-verifier-transactional-tests/tests/id_leak/through_direct_return.exp +++ b/crates/iota-verifier-transactional-tests/tests/id_leak/through_direct_return.exp @@ -4,4 +4,4 @@ task 0, lines 5-21: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4286400, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4286400, storage_rebate: 0, non_refundable_storage_fee: 0 diff --git a/crates/iota-verifier-transactional-tests/tests/id_leak/through_pack.exp b/crates/iota-verifier-transactional-tests/tests/id_leak/through_pack.exp index f6f6e226081..448a15d26c1 100644 --- a/crates/iota-verifier-transactional-tests/tests/id_leak/through_pack.exp +++ b/crates/iota-verifier-transactional-tests/tests/id_leak/through_pack.exp @@ -9,4 +9,4 @@ task 1, lines 40-63: //# publish created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4894400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4894400, storage_rebate: 980400, non_refundable_storage_fee: 0 diff --git a/crates/iota-verifier-transactional-tests/tests/id_leak/through_vector.exp b/crates/iota-verifier-transactional-tests/tests/id_leak/through_vector.exp index 6ae68d4f57d..ee3c16bc984 100644 --- a/crates/iota-verifier-transactional-tests/tests/id_leak/through_vector.exp +++ b/crates/iota-verifier-transactional-tests/tests/id_leak/through_vector.exp @@ -4,4 +4,4 @@ task 0, lines 5-22: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4354800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4354800, storage_rebate: 0, non_refundable_storage_fee: 0 diff --git a/crates/iota-verifier-transactional-tests/tests/one_time_witness/bool_field.exp b/crates/iota-verifier-transactional-tests/tests/one_time_witness/bool_field.exp index 5184e87f83a..b83fbe432cf 100644 --- a/crates/iota-verifier-transactional-tests/tests/one_time_witness/bool_field.exp +++ b/crates/iota-verifier-transactional-tests/tests/one_time_witness/bool_field.exp @@ -4,4 +4,4 @@ task 0, lines 7-17: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4354800, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4354800, storage_rebate: 0, non_refundable_storage_fee: 0 diff --git a/crates/iota-verifier-transactional-tests/tests/one_time_witness/many_fields_valid.exp b/crates/iota-verifier-transactional-tests/tests/one_time_witness/many_fields_valid.exp index e29b1d61f41..b5ad247d346 100644 --- a/crates/iota-verifier-transactional-tests/tests/one_time_witness/many_fields_valid.exp +++ b/crates/iota-verifier-transactional-tests/tests/one_time_witness/many_fields_valid.exp @@ -4,4 +4,4 @@ task 0, lines 7-15: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3997600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3997600, storage_rebate: 0, non_refundable_storage_fee: 0 diff --git a/crates/iota-verifier-transactional-tests/tests/one_time_witness/wrong_field_type.exp b/crates/iota-verifier-transactional-tests/tests/one_time_witness/wrong_field_type.exp index f788dc2f60f..2320e02e386 100644 --- a/crates/iota-verifier-transactional-tests/tests/one_time_witness/wrong_field_type.exp +++ b/crates/iota-verifier-transactional-tests/tests/one_time_witness/wrong_field_type.exp @@ -4,10 +4,10 @@ task 0, lines 7-24: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4605600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4605600, storage_rebate: 0, non_refundable_storage_fee: 0 task 1, lines 26-44: //# publish created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4924800, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4924800, storage_rebate: 980400, non_refundable_storage_fee: 0 diff --git a/crates/iota-verifier-transactional-tests/tests/private_generics/no_public_transfer_explicit.exp b/crates/iota-verifier-transactional-tests/tests/private_generics/no_public_transfer_explicit.exp index c6ab279b649..f227e1b7b2d 100644 --- a/crates/iota-verifier-transactional-tests/tests/private_generics/no_public_transfer_explicit.exp +++ b/crates/iota-verifier-transactional-tests/tests/private_generics/no_public_transfer_explicit.exp @@ -4,7 +4,7 @@ task 1, lines 9-25: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 5168000, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 5168000, storage_rebate: 0, non_refundable_storage_fee: 0 task 3, lines 31-40: //# publish diff --git a/crates/iota-verifier-transactional-tests/tests/private_generics/private_event_emit.exp b/crates/iota-verifier-transactional-tests/tests/private_generics/private_event_emit.exp index 7c507dd54a1..a85e79543d0 100644 --- a/crates/iota-verifier-transactional-tests/tests/private_generics/private_event_emit.exp +++ b/crates/iota-verifier-transactional-tests/tests/private_generics/private_event_emit.exp @@ -24,7 +24,7 @@ task 5, lines 61-70: //# publish created: object(5,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3982400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3982400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 7, lines 74-84: //# publish --dependencies test diff --git a/crates/iota-verifier-transactional-tests/tests/private_generics/public_transfer_with_store.exp b/crates/iota-verifier-transactional-tests/tests/private_generics/public_transfer_with_store.exp index 691c026d5b9..87d61979b72 100644 --- a/crates/iota-verifier-transactional-tests/tests/private_generics/public_transfer_with_store.exp +++ b/crates/iota-verifier-transactional-tests/tests/private_generics/public_transfer_with_store.exp @@ -4,22 +4,22 @@ task 0, lines 8-18: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4453600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4453600, storage_rebate: 0, non_refundable_storage_fee: 0 task 1, lines 20-30: //# publish created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4180000, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4180000, storage_rebate: 980400, non_refundable_storage_fee: 0 task 2, lines 32-42: //# publish created: object(3,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4172400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4172400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 3, lines 44-56: //# publish created: object(4,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4575200, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4575200, storage_rebate: 980400, non_refundable_storage_fee: 0 diff --git a/crates/iota-verifier-transactional-tests/tests/private_generics/public_transfer_with_store_generic.exp b/crates/iota-verifier-transactional-tests/tests/private_generics/public_transfer_with_store_generic.exp index 72238c6c053..9858367cfd9 100644 --- a/crates/iota-verifier-transactional-tests/tests/private_generics/public_transfer_with_store_generic.exp +++ b/crates/iota-verifier-transactional-tests/tests/private_generics/public_transfer_with_store_generic.exp @@ -4,22 +4,22 @@ task 0, lines 8-23: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4681600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4681600, storage_rebate: 0, non_refundable_storage_fee: 0 task 1, lines 25-40: //# publish created: object(2,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4370000, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4370000, storage_rebate: 980400, non_refundable_storage_fee: 0 task 2, lines 42-57: //# publish created: object(3,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4362400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4362400, storage_rebate: 980400, non_refundable_storage_fee: 0 task 3, lines 59-77: //# publish created: object(4,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4818400, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4818400, storage_rebate: 980400, non_refundable_storage_fee: 0 diff --git a/crates/iota-verifier-transactional-tests/tests/private_generics/receive_with_and_without_store.exp b/crates/iota-verifier-transactional-tests/tests/private_generics/receive_with_and_without_store.exp index 2c23f6f174a..dba2c2207a4 100644 --- a/crates/iota-verifier-transactional-tests/tests/private_generics/receive_with_and_without_store.exp +++ b/crates/iota-verifier-transactional-tests/tests/private_generics/receive_with_and_without_store.exp @@ -14,10 +14,10 @@ task 2, lines 27-41: //# publish created: object(3,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4841200, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4841200, storage_rebate: 980400, non_refundable_storage_fee: 0 task 3, lines 43-54: //# publish created: object(4,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 4423200, storage_rebate: 980400, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 4423200, storage_rebate: 980400, non_refundable_storage_fee: 0 diff --git a/crates/iota-verifier-transactional-tests/tests/struct_with_key/key_struct_id_field_valid.exp b/crates/iota-verifier-transactional-tests/tests/struct_with_key/key_struct_id_field_valid.exp index 59a48a14fc8..c9613c626fb 100644 --- a/crates/iota-verifier-transactional-tests/tests/struct_with_key/key_struct_id_field_valid.exp +++ b/crates/iota-verifier-transactional-tests/tests/struct_with_key/key_struct_id_field_valid.exp @@ -4,4 +4,4 @@ task 0, lines 5-11: //# publish created: object(1,0) mutated: object(0,0) -gas summary: computation_cost: 1000000, storage_cost: 3959600, storage_rebate: 0, non_refundable_storage_fee: 0 +gas summary: computation_cost: 1000000, computation_cost_burned: 1000000, storage_cost: 3959600, storage_rebate: 0, non_refundable_storage_fee: 0 From 8e462366fd289fd6d8e6d644e55736675fb1f94f Mon Sep 17 00:00:00 2001 From: muXxer Date: Fri, 8 Nov 2024 19:39:49 +0100 Subject: [PATCH 19/25] fix(light-client): update test snapshot --- .../iota-light-client/example_config/528.chk | Bin 0 -> 14588 bytes .../iota-light-client/example_config/528.json | 79 + .../example_config/528_full.json | 9038 +++++++++++++++++ .../iota-light-client/example_config/788.chk | Bin 0 -> 14588 bytes .../iota-light-client/example_config/788.json | 79 + .../example_config/788_full.json | 9038 +++++++++++++++++ .../example_config/checkpoints.yaml | 9 +- .../iota-light-client/src/bin/light_client.rs | 4 +- 8 files changed, 18238 insertions(+), 9 deletions(-) create mode 100644 crates/iota-light-client/example_config/528.chk create mode 100644 crates/iota-light-client/example_config/528.json create mode 100644 crates/iota-light-client/example_config/528_full.json create mode 100644 crates/iota-light-client/example_config/788.chk create mode 100644 crates/iota-light-client/example_config/788.json create mode 100644 crates/iota-light-client/example_config/788_full.json diff --git a/crates/iota-light-client/example_config/528.chk b/crates/iota-light-client/example_config/528.chk new file mode 100644 index 0000000000000000000000000000000000000000..a01f1b7b831befd1e451225e1d7278bfdd2d28d3 GIT binary patch literal 14588 zcmeHN2|Scr|DPGg7P^dG7$W<=Wn@YAWM?RA3?_TVNJ(XvC9b{Al_WyRmh5YxBqC{1 z*_E>sGq+pK`{@0@_rCYNpPu=Ao@eHqGr#4W@9+1V?>Pqw`F#BX`~0M({`^GB zzDbGBfj%E|5|Sma;_MEJInSoH-ENPR6XKFZ_&I4hC{ld6XJmU{svw<>TItS9dlsA3 zcg>vjj0hrcp}xpQonHT05cu7zrk6GeN@xcqcZj>QaMyyI2IH;EUM$T}CWh9&=$C|td+WXCHTN7cX6+Vuj>=RrIXOF|i`lf!$i3zo7;{0- zb}To%Sd63g!%@*KEKWbVR=txho@TzEzG_9(z&g|XjkpuzU=x#|!-0lda=}%#E$lJR ztxVLmx+l@W8gVC&s&1A_v8&la-x0$dDW9!Yd`Z^V z#{E!&106fBSsOzw{oI~k#rjGUU3!+s&~+}4nfvqPTQVfB6qX=%!uO0b(TSJM+Fzjy zeK*V}I?dBpkd(EuD{#PSmZ+#?$?l^~BtO~tLc|Pv3c|s2v%G$osa{bQ+R|Y2$~NZK zwo%gxaU6YYLFKmUdN+6a`dhS{@EbmAlq#5Hwp@ho#G9eg@@ADHyV72#7SEcxU!_#b zq6uJ6X5B9rJd1k+C|Vt<)e8zip0{6#v?m{JqkF767;s9XOgpi1#p>8ttQp$SVyteL z3S{~?M@l6OLckXAue9mS6JFtL0ksIvSux)IyYe@l+TUlF6ZV3S;dbznZhvOv?#hk5 zT!&0PwlTa^%2HrKNdbR`L4H|NOppgd>auJ;Gl}2#Y?s1>9*Y!iIQ=L~WB-k-%2b28 zO6?^EmyvpL26m_Qx)M5PHqcMeLV3ihmiBhcGh8@G8<+ZAi#`k)$irOxv3Ex$zkk3! zjTCtugR?1&)~NnBGxE*3xfA=jkuS5-TvlqRAFU*cxQUz_bHH+E=FcXW2yfb`=;Z`m zxCDbbezNFKy}>?p-RC<&5ij|gHXv+}LLPBN0dka~?zbZ1mJ{GBJ*Gx@g(CecvS|6) z6irb}aO;4<0d0u{Z2{8Y8%=*j4-&x#VjQs=6k7yHB3r8mdhn-qJ-E*?ztKu2{D`Jn zkF@}uV*isnT+!E+u4&6qeU|r)%S1JwzfeG>*IFXC_B7D&KYHgX?~-p*+SO=AcV`<< zf@N2^e``jZfX~ETA_$;JmmO~|pJu)3ojN97vV;x~SAS_R@+`rX?lKgPofDY2L2SCJ z1k40NIKiDfyq(Y$-)IGq2AY5&P-L&@Tuyf6 zp}nu>b9dR~h*sn{^Hxi~<1XWDWP074Gt&n}O15PS4dN||FUBhd8lpJhJfS{q%h$FI zELo=^kEfValdV}n17Zyv3Jg55u5I{A<}7truwBgJ7-R-(7Ieh*;UOOLqqjxwjbff& zAYu!OR1)&QLgKe^Y1+!Xzz$}QOocQKlXpzqaX%sGJ6*y?No)#{sMbEHD=_6enR%&v zm~1dNY;d+~lv^u|QM)R2)EH6izI#w>e6%^WmpS@)E^5EJVr7D3 z5^fF}oAO{cqT*~98#_htU23(AhnwD8UEHQ=jJQ!^E&8w{9cmnuAATpevt>%wxu{8w z)((o43W)EUTiKVXAt`zQq<` zh=D_q57Nt8l9%5KO|T+O+@$8BqDzM=RAv&2@{li>mtn!jK}A4(H4MA_7&+J(=G<^( z*i)OMFOgw>d;6{_sI^PJV?aHP&?h!;?fFhqHtB9E3BE13#U{qRWFyq2YD&L9Lcjs) z#o-NQuLyW=I!ed=D|U`naFb;Pe(N*tM0*r}5EBo>WDUauXk2-Xd7%*>(rIW}H08`* z^S}^(X^-=icN#feCfhkvbO=gJ?wcPxuGepdKEd5kEOfb)>d5s{VWXQ5KgPBAO(sXl zLh3IM`>NST>tF4~x@B}W2F3Nf=!olbV_;X?^jH#SH3U7;RK&~``v4xb@tKIvt{~Ie zH@Jm}d;Y~!^yG*M9sDMOk~GT`k{Yh(Yb#Cf(VwhMBpW2UR)s zZ2i^W^zEz;EO__a@_A*BsM)PE^f+PLL1wkvRM0C4hMin}YUpg%$>v)_S^5jdnWP!0 zXUigb+gp+;t#1>Q&^>V(|4_l-$4=>OUD0=V5AN(7V*6vOm*xi|2CZg~sz5`3efc8h z#yR7Ay0PO+*XJ+@+1G3%exjD!ofJbe3vI)p4LxM^HMie*^IR}<84N4H?>NP2(*V!Q zpJPmfWjZA-5R@=1w8wUwRE7dd^PJ>vb_Pzp1o%PMI0b~%MYaL!jdQg33-rTbJV`ZLXE_-) z-q8c=?1=N;k1)eIx?{auO)@?kmkqV>a0j_~^4mZUQ~DBeaX z+`Kl%FaJ^$g$4^Su=>BV?;0K~knNhPnYIPh%#OHo?1T7;rtAibVdWvIJnU|_JTM@G z)&HG+Hx*)J;;oXp>@mei8%thTs;u&GNMAb<5kt<-byn8-3fLPBtp300I~_6J?foz~ zc1s}owS2st-1NL$yg$Xgr8EQ!OkcnvcpQk@t=?f&#S{>L*xv-AxcZznrik!ktv(AG zc#d~Bd_6SclZ5|h$p5(eU_ty3cONW{|KaX~h4TND`>bEg8|?jXjyQ}x*2@dCpT+Fc zRN|WyUm%llMT6vfam8u5h;4sSu^Q$JJp)6v_4RNM(%&?XFF*ZpbuN1Rmln z3YnIE8%x6mAqPwPfBMQgvRO5ZExX3lC2oFi`f10-mL^F{S_?#xFe*r*k*BYH2#HY6 zwe?3;*TDlOY8f4aaBk|-I<^nC#^?$qUDnoNSCfjq#_X?r zB3fySuV8W0$OGr1N3pl&MmkJ|X?~p^Iew6O1M$@;E=}l9E=jD9oTRjjqJ$LTBQ1$@ z@{yF2k(ZK}bi?6%*uJXucV4ZPkyrd~1wo4J+7LAqq}qxYjQemh!FBt~2Vf_)nss}M z70RmzTX-X=Gw%Ul0bZlU(;-nkj;8V=nTmMzn`}?*!ynwa$_e9t1?TPAT6Fw3ASS^k z>Hs7N@`G-vWWy*RkfLt8@q7p*(c>;2jfO+ORs#Sy0v3M#%sFA6d4ZiaD-KCU7LylV zt`#t)BdMWQ?^K#xyjY^Q+NYl`;>2Lh4!{GT+$vl}gYL=Ady~CZrAfXnnGi#U7E%l)WX)i9JE=}_8T{7G_o9qbnvC2VAT7o)PW@^VU~F)A;w_+5<3 z%E~DLL-aw+3Da%`S6O0{NK{Mq|?NN$0OY1izM!)oGXwwtU+;QO*W4Y_XQyNN%2y(P;eAs87P zNyqF}F6yi&BbdXjhqmL6?Pe9Foy=5ezvFiA!>NOc4GfMZG>+>p|TSM#Z|;NCp^ zYxiWXKH8l%Pmv$5xohw~sogB=a|6}aDti3|;tPz*kiw{f;=jnFvPv=vO5e?+g#4?x z*0p!{ZQIn3_7^jk9NiX4AzLIoqX84DcOBSp@Pmd?d=Id#MWiFAv;+d|Fdaws3z?yX zChu3HHb2tJtun|yNK=-iU4uRej4&AS1;;4ZLJ}B84WH7Dsud#8Ofy3kAHtQ2U!^y8 zAG$E#WXP7P+1(hq8^9KTMN$|Ig(C`eEci}VUxl6a?JZJZ6pdw=x@>>g?S@J|HD)3Y zkOMZyb@;Qlf{|_01rLi}%Ri@k)Lq#T{%a>iOrelXUz!|6G(KS#;c1C9;o4ajl~#N~ zzWfLqd&wZ*N6Nx|k~o$QCT@D+3)62Ir*(bjB4aD zht;YUDRZ*tasKj9Ant?o?H$P?nEcCU{Gxh-6=#4E0P^VQZ+Xv)%>uNSQ?x_3J}fM_ z8#rHXCoM(iK~Y%ni1noufKjjo3UG{qEkJ`|R1A-Lzi?DY%=e;eW}C1MONpn3!*=0U z_G+0&O(_tg{D5a*7#-@{XDt14w5(C*mSmHM0990$eGSv}wrctNl6h6}v=x9H*~@`B z%gv=PI&p7ihWTri9ZujD`UPlCrqvoYTSeX+2iidnP#-LqzrkT1<*$8qg{|jJ%eiB7 zO+txg*W(wT?H;CK0rG;}fP%JQMZrfwubetB#=h`)6zo{f1eR;4SwB2yk(&n)$W4#u z#mfj_2NF|aQL_F+%G%qV{TZ7sN}$Qe(v!xsfp(C?(J`{^doIv!+KPj90WR1FZ@=;oUmMSwDo*&92o>47)A`a zcb?)^#jY0RoL~%8o}TNtdtFW4jiS?RYF6xB>sg{005rq`l3zr-?|nKsv+w1S-^FXR z=L@>_J<;t4>&7cc{g{_upan{9z@ra>V8nh*j@P(pvu z|Lu?O5JIq18{Y~cQSuiMLcq=S6G9-4fuRDPpoH-08_ko-uA-1NrvH-=l6Xn{BM9Nz z$}Getr>2Xri3+UHf)PRhjwAvC^23C1%?==A0WXiAgzzUJ1a=R;#wZve1jFbL6G9Rg z{YeOa5<*fK1tWxD82w>FNCKlj3E@vdND8B1gb)m)KTHToVDu*;{2LKM;3(>Uju8IW z*%mEf-*feplf93(w+FK^;b!jbj`7ku;N<4$<%%&~-ChK+z7_0@CBUwLpaLe&pa(0# zkE#N5Y8YUQG1ys5utg!FvA{_yuyw!n8wnUo>iO?d;~yFOM<0wX2= mWBmYjx|U==fK7bY-w(e>7T76Vu>BjNu|Q;jZPBgU$o~TYNpwO0 literal 0 HcmV?d00001 diff --git a/crates/iota-light-client/example_config/528.json b/crates/iota-light-client/example_config/528.json new file mode 100644 index 00000000000..b9582183b37 --- /dev/null +++ b/crates/iota-light-client/example_config/528.json @@ -0,0 +1,79 @@ +{ + "data": { + "epoch": 1, + "sequence_number": 528, + "network_total_transactions": 2316, + "content_digest": "4Vp72xpiXb9UqY9U5JxKRuyphDVxxjbsz833nFekCsLp", + "previous_digest": "46Yic5WRk9aFANVfjdd59YvSNpgHbbqFupYg6LUZp6t7", + "epoch_rolling_gas_cost_summary": { + "computationCost": "0", + "computationCostBurned": "0", + "storageCost": "0", + "storageRebate": "0", + "nonRefundableStorageFee": "0" + }, + "timestamp_ms": 1731087154542, + "checkpoint_commitments": [], + "end_of_epoch_data": { + "nextEpochCommittee": [ + [ + "jc/20VUECmVvSBmxMRG1LFdGqGunLzlfuv4uw4R9HoFA5iSnUf32tfIFC8cgXPnTAATJCwx0Cv/TJs5nPMKyOi0k1T4q/rKG38Zo/UBgCJ1tKxe3md02+Q0zLlSnozjU", + "2500" + ], + [ + "mfJe9h+AMrkUY2RgmCxcxvE07x3a52ZX8sv+wev8jQlzdAgN9vzw3Li8Sw2OCvXYDrv/K0xZn1T0LWMS38MUJ2B4wcw0fru+xRmL4lhRPzhrkw0CwnSagD4jMJVevRoQ", + "2500" + ], + [ + "rd7vlNiYyI5A297/kcXxBfnPLHR/tvK8N+wD1ske2y4aV4z1RL6LCTHiXyQ9WbDDDZihbOO6HWzx1/UEJpkusK2zE0sFW+gUDS218l+wDYP45CIr8B/WrJOh/0152ljy", + "2500" + ], + [ + "s/1e+1yHJAOkrRPxGZUTYG0jNUqEUkmuoVdWTCP/PBXGyeZSty10DoysuTy8wGhrDsDMDBx2C/tCtDZRn8WoBUt2UzqXqfI5h9CX75ax8lJrsgc/oQp3GZQXcjR+8nT0", + "2500" + ] + ], + "nextEpochProtocolVersion": "1", + "epochCommitments": [ + { + "ECMHLiveObjectSetDigest": { + "digest": "C4emJ4QDne9bar95SWEF6MsbyRDY7jf3o18YSKUWTe2G" + } + } + ], + "epochSupplyChange": 767000000000000 + }, + "version_specific_data": [ + 0, + 0 + ] + }, + "auth_signature": { + "epoch": 1, + "signature": "l/Aj6W6FGHe+E23yLCFyTaoPm3LWXqWE6yIRzX79SNifh1q5D9Ude1H7yRHsOaE2", + "signers_map": [ + 58, + 48, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 2, + 0, + 16, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 2, + 0 + ] + } +} \ No newline at end of file diff --git a/crates/iota-light-client/example_config/528_full.json b/crates/iota-light-client/example_config/528_full.json new file mode 100644 index 00000000000..987942c5ee0 --- /dev/null +++ b/crates/iota-light-client/example_config/528_full.json @@ -0,0 +1,9038 @@ +{ + "checkpoint_summary": { + "data": { + "epoch": 1, + "sequence_number": 528, + "network_total_transactions": 2316, + "content_digest": "4Vp72xpiXb9UqY9U5JxKRuyphDVxxjbsz833nFekCsLp", + "previous_digest": "46Yic5WRk9aFANVfjdd59YvSNpgHbbqFupYg6LUZp6t7", + "epoch_rolling_gas_cost_summary": { + "computationCost": "0", + "computationCostBurned": "0", + "storageCost": "0", + "storageRebate": "0", + "nonRefundableStorageFee": "0" + }, + "timestamp_ms": 1731087154542, + "checkpoint_commitments": [], + "end_of_epoch_data": { + "nextEpochCommittee": [ + [ + "jc/20VUECmVvSBmxMRG1LFdGqGunLzlfuv4uw4R9HoFA5iSnUf32tfIFC8cgXPnTAATJCwx0Cv/TJs5nPMKyOi0k1T4q/rKG38Zo/UBgCJ1tKxe3md02+Q0zLlSnozjU", + "2500" + ], + [ + "mfJe9h+AMrkUY2RgmCxcxvE07x3a52ZX8sv+wev8jQlzdAgN9vzw3Li8Sw2OCvXYDrv/K0xZn1T0LWMS38MUJ2B4wcw0fru+xRmL4lhRPzhrkw0CwnSagD4jMJVevRoQ", + "2500" + ], + [ + "rd7vlNiYyI5A297/kcXxBfnPLHR/tvK8N+wD1ske2y4aV4z1RL6LCTHiXyQ9WbDDDZihbOO6HWzx1/UEJpkusK2zE0sFW+gUDS218l+wDYP45CIr8B/WrJOh/0152ljy", + "2500" + ], + [ + "s/1e+1yHJAOkrRPxGZUTYG0jNUqEUkmuoVdWTCP/PBXGyeZSty10DoysuTy8wGhrDsDMDBx2C/tCtDZRn8WoBUt2UzqXqfI5h9CX75ax8lJrsgc/oQp3GZQXcjR+8nT0", + "2500" + ] + ], + "nextEpochProtocolVersion": "1", + "epochCommitments": [ + { + "ECMHLiveObjectSetDigest": { + "digest": "C4emJ4QDne9bar95SWEF6MsbyRDY7jf3o18YSKUWTe2G" + } + } + ], + "epochSupplyChange": 767000000000000 + }, + "version_specific_data": [ + 0, + 0 + ] + }, + "auth_signature": { + "epoch": 1, + "signature": "l/Aj6W6FGHe+E23yLCFyTaoPm3LWXqWE6yIRzX79SNifh1q5D9Ude1H7yRHsOaE2", + "signers_map": [ + 58, + 48, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 2, + 0, + 16, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 2, + 0 + ] + } + }, + "checkpoint_contents": { + "V1": { + "transactions": [ + { + "transaction": "5rPwBdt6MqTmwNeCbBNTzdXStempK81mHpd3MuCfN4Mt", + "effects": "5x7jAFA56ZyMVKmAomcbP2uwLLqLgRzuRcQfZJHSW53h" + }, + { + "transaction": "99opjMtEQQnYWw48gQLkHazPoKU4yUkZ15rC92L12XGy", + "effects": "Gvi8UkU5VYbcpG1aQizESXe6pYsRQZQRirkb3goT5Yt2" + } + ], + "user_signatures": [ + [ + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==" + ], + [] + ] + } + }, + "transactions": [ + { + "transaction": { + "data": [ + { + "intent_message": { + "intent": { + "scope": 0, + "version": 0, + "app_id": 0 + }, + "value": { + "V1": { + "kind": { + "ConsensusCommitPrologueV1": { + "epoch": 1, + "round": 1057, + "sub_dag_index": null, + "commit_timestamp_ms": 1731087154542, + "consensus_commit_digest": "3ioKAMf1LYS9UGBxbfxUWR9SmHeEDmURKCiS3XgV5xZT", + "consensus_determined_version_assignments": { + "CancelledTransactions": [] + } + } + }, + "sender": "0x0000000000000000000000000000000000000000000000000000000000000000", + "gas_data": { + "payment": [ + [ + "0x0000000000000000000000000000000000000000000000000000000000000000", + 0, + "11111111111111111111111111111111" + ] + ], + "owner": "0x0000000000000000000000000000000000000000000000000000000000000000", + "price": 1, + "budget": 0 + }, + "expiration": "None" + } + } + }, + "tx_signatures": [ + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==" + ] + } + ], + "auth_signature": {} + }, + "effects": { + "V1": { + "status": "Success", + "executed_epoch": 1, + "gas_used": { + "computationCost": "0", + "computationCostBurned": "0", + "storageCost": "0", + "storageRebate": "0", + "nonRefundableStorageFee": "0" + }, + "transaction_digest": "5rPwBdt6MqTmwNeCbBNTzdXStempK81mHpd3MuCfN4Mt", + "gas_object_index": null, + "events_digest": null, + "dependencies": [ + "ENnkQFHpkBxGwTji348YxusCbSSdrJhF3UY1fFyZbabX" + ], + "lamport_version": 2098, + "changed_objects": [ + [ + "0x0000000000000000000000000000000000000000000000000000000000000006", + { + "input_state": { + "Exist": [ + [ + 2097, + "4pq7ERmcJ5po6R4zc7nEbE9LkJ8o1o7X6UQZTRFdZQ3a" + ], + { + "Shared": { + "initial_shared_version": 1 + } + } + ] + }, + "output_state": { + "ObjectWrite": [ + "7tCgmTb1XUtbTnCj8zyBGP5NwKyEC63i6YjLMDiwd81k", + { + "Shared": { + "initial_shared_version": 1 + } + } + ] + }, + "id_operation": "None" + } + ] + ], + "unchanged_shared_objects": [], + "aux_data_digest": null + } + }, + "events": null, + "input_objects": [ + { + "data": { + "Move": { + "type_": { + "Other": { + "address": "0000000000000000000000000000000000000000000000000000000000000002", + "module": "clock", + "name": "Clock", + "type_args": [] + } + }, + "version": 2097, + "contents": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 6, + 52, + 189, + 213, + 12, + 147, + 1, + 0, + 0 + ] + } + }, + "owner": { + "Shared": { + "initial_shared_version": 1 + } + }, + "previous_transaction": "ENnkQFHpkBxGwTji348YxusCbSSdrJhF3UY1fFyZbabX", + "storage_rebate": 0 + } + ], + "output_objects": [ + { + "data": { + "Move": { + "type_": { + "Other": { + "address": "0000000000000000000000000000000000000000000000000000000000000002", + "module": "clock", + "name": "Clock", + "type_args": [] + } + }, + "version": 2098, + "contents": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 6, + 110, + 189, + 213, + 12, + 147, + 1, + 0, + 0 + ] + } + }, + "owner": { + "Shared": { + "initial_shared_version": 1 + } + }, + "previous_transaction": "5rPwBdt6MqTmwNeCbBNTzdXStempK81mHpd3MuCfN4Mt", + "storage_rebate": 0 + } + ] + }, + { + "transaction": { + "data": [ + { + "intent_message": { + "intent": { + "scope": 0, + "version": 0, + "app_id": 0 + }, + "value": { + "V1": { + "kind": { + "EndOfEpochTransaction": [ + { + "ChangeEpoch": { + "epoch": 2, + "protocol_version": 1, + "storage_charge": 0, + "computation_charge": 0, + "storage_rebate": 0, + "non_refundable_storage_fee": 0, + "epoch_start_timestamp_ms": 1731087154542, + "system_packages": [] + } + } + ] + }, + "sender": "0x0000000000000000000000000000000000000000000000000000000000000000", + "gas_data": { + "payment": [ + [ + "0x0000000000000000000000000000000000000000000000000000000000000000", + 0, + "11111111111111111111111111111111" + ] + ], + "owner": "0x0000000000000000000000000000000000000000000000000000000000000000", + "price": 1, + "budget": 0 + }, + "expiration": "None" + } + } + }, + "tx_signatures": [ + "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==" + ] + } + ], + "auth_signature": {} + }, + "effects": { + "V1": { + "status": "Success", + "executed_epoch": 1, + "gas_used": { + "computationCost": "0", + "computationCostBurned": "0", + "storageCost": "0", + "storageRebate": "0", + "nonRefundableStorageFee": "0" + }, + "transaction_digest": "99opjMtEQQnYWw48gQLkHazPoKU4yUkZ15rC92L12XGy", + "gas_object_index": null, + "events_digest": "FM8iE2p9uBkVSuFHwMXCinwAkBcR3iw1efnhH6ECQjUh", + "dependencies": [ + "4DYVUL5tad1oC5xusubpY17vffqAyBkjmQfCQRdd3KRu" + ], + "lamport_version": 3, + "changed_objects": [ + [ + "0x0000000000000000000000000000000000000000000000000000000000000005", + { + "input_state": { + "Exist": [ + [ + 2, + "DufRhDaFeic4pohypZWdB1yTpTixroHerWkQu4Rpc6fo" + ], + { + "Shared": { + "initial_shared_version": 1 + } + } + ] + }, + "output_state": { + "ObjectWrite": [ + "4r7zPgS4bzG14TVFgfSE1xp547UYqtEmEct9QxYtMtDt", + { + "Shared": { + "initial_shared_version": 1 + } + } + ] + }, + "id_operation": "None" + } + ], + [ + "0x2ebc467a4825ed64ea9fabb6e403dfa784dff2d0e61e45841246bb96e581b4ef", + { + "input_state": "NotExist", + "output_state": { + "ObjectWrite": [ + "BsqgHwwnGL9GTdamcUMitvvKGvvYAGQ6sZAPRGGv2eAW", + { + "ObjectOwner": "0x8c95d95a13b79ed01819067ed1093f99db1cf958a83c445013c7b3592bdbcb98" + } + ] + }, + "id_operation": "Created" + } + ], + [ + "0x507caa85cf7ecec5ed3364aec3340c512e74adbb5d21a4976084c4af66786245", + { + "input_state": "NotExist", + "output_state": { + "ObjectWrite": [ + "6NKL9jrJ9AjL3QxRXqfE1ecy2Lgb7bvKAXLsSmFb684c", + { + "AddressOwner": "0x2919b85edd777017e40be03ad63ab6cee20a788d6eb2019559a558ada19ae71b" + } + ] + }, + "id_operation": "Created" + } + ], + [ + "0x6af2a2b7ca60bf76174adfd3e9c4957f8e937759603182f9b46c7f6c5f19c6d2", + { + "input_state": { + "Exist": [ + [ + 2, + "3pSX1fF1p39Rvx84UbJWhNHKAwnuo8FYBGR2i3CCpFVW" + ], + { + "ObjectOwner": "0x0000000000000000000000000000000000000000000000000000000000000005" + } + ] + }, + "output_state": { + "ObjectWrite": [ + "FeQXd2zM4oBcJpfdB7WMs8W9UwQoL6EH1yuWabJfxZZs", + { + "ObjectOwner": "0x0000000000000000000000000000000000000000000000000000000000000005" + } + ] + }, + "id_operation": "None" + } + ], + [ + "0x71424ed073121a1911f3687403699b2389ab0365a0f7f8c37cc6d035cbda4097", + { + "input_state": "NotExist", + "output_state": { + "ObjectWrite": [ + "7FuHXSSce6kgiuYGirm9Se5AWtGD23aY2pJXzj8mBN8v", + { + "ObjectOwner": "0x19b777f952e60d1e9269f30c271c56b77638e11e915f3a247c141f11eabd11d9" + } + ] + }, + "id_operation": "Created" + } + ], + [ + "0x8db6bd54ad4f222063e3fe2b959d6254798224316ca407cfc21b66eaca1b9547", + { + "input_state": "NotExist", + "output_state": { + "ObjectWrite": [ + "6WUTpi3KJUkA4wwamKTQhQYwPoMdMahF1ec5yF1P15pW", + { + "AddressOwner": "0xc0afe4713f5f894ab2d5696899cec27c8dd3ebcb8dd06811193f1cdd2f7458e3" + } + ] + }, + "id_operation": "Created" + } + ], + [ + "0x8fc3ae151d8cd905880fe12a704d7c52bef474f686d475b1ed0e0413e947761c", + { + "input_state": "NotExist", + "output_state": { + "ObjectWrite": [ + "BBm7ikSuKKhc9te9hQW1EbtFFtAi7BKhycqLK96MkZyt", + { + "AddressOwner": "0x43e8b5e5be1ac68e8ca24f3fa4e9a850fa2ef000f7fcc805243dde365ee94408" + } + ] + }, + "id_operation": "Created" + } + ], + [ + "0x9f1198b4e3c97e133e613a37cefadf96ea2ec4116d4f2cbf5289641789eadf86", + { + "input_state": "NotExist", + "output_state": { + "ObjectWrite": [ + "8mdv9nUigSM28UTLLF62rm8NTNP9AsibhJoCqpR2VRJQ", + { + "ObjectOwner": "0xdf3e1b495d7540f4d64bbc79acf8e256e2b9a52b53cc9d0e74295ddf153fcd08" + } + ] + }, + "id_operation": "Created" + } + ], + [ + "0xb0904ece1dd63f57a317eac4cce3a14af68a14311109f2b586d5cac5940759cd", + { + "input_state": "NotExist", + "output_state": { + "ObjectWrite": [ + "w8zdCmdcfNTqj334KxaGNkF1itoWgyj3xP89etnJYZA", + { + "ObjectOwner": "0x8392eceb8bc7a250d4488ce8fdbaf3651333ef18e5732b56416337839fad5d85" + } + ] + }, + "id_operation": "Created" + } + ], + [ + "0xc1d3030ebdcdf46f1fa65366df84ac76439b1b5cc105a9aaf31291029f6393f6", + { + "input_state": "NotExist", + "output_state": { + "ObjectWrite": [ + "2D8CGVWTXh3ypJRkgmF5svcWxkkHUGbancwYdECpSjHn", + { + "AddressOwner": "0xbee62a773a02ad22d9565589f6f2c344308f6d6f084e2539f51b04685e4c63d5" + } + ] + }, + "id_operation": "Created" + } + ] + ], + "unchanged_shared_objects": [], + "aux_data_digest": null + } + }, + "events": { + "data": [ + { + "package_id": "0x0000000000000000000000000000000000000000000000000000000000000003", + "transaction_module": "iota_system", + "sender": "0x0000000000000000000000000000000000000000000000000000000000000000", + "type_": { + "address": "0000000000000000000000000000000000000000000000000000000000000003", + "module": "validator", + "name": "StakingRequestEvent", + "type_args": [] + }, + "contents": [ + 205, + 23, + 237, + 101, + 196, + 223, + 165, + 144, + 73, + 40, + 152, + 156, + 38, + 172, + 6, + 187, + 80, + 131, + 252, + 156, + 198, + 105, + 210, + 20, + 227, + 192, + 121, + 85, + 126, + 84, + 209, + 174, + 67, + 232, + 181, + 229, + 190, + 26, + 198, + 142, + 140, + 162, + 79, + 63, + 164, + 233, + 168, + 80, + 250, + 46, + 240, + 0, + 247, + 252, + 200, + 5, + 36, + 61, + 222, + 54, + 94, + 233, + 68, + 8, + 67, + 232, + 181, + 229, + 190, + 26, + 198, + 142, + 140, + 162, + 79, + 63, + 164, + 233, + 168, + 80, + 250, + 46, + 240, + 0, + 247, + 252, + 200, + 5, + 36, + 61, + 222, + 54, + 94, + 233, + 68, + 8, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 14, + 208, + 231, + 124, + 3, + 0, + 0 + ] + }, + { + "package_id": "0x0000000000000000000000000000000000000000000000000000000000000003", + "transaction_module": "iota_system", + "sender": "0x0000000000000000000000000000000000000000000000000000000000000000", + "type_": { + "address": "0000000000000000000000000000000000000000000000000000000000000003", + "module": "validator", + "name": "StakingRequestEvent", + "type_args": [] + }, + "contents": [ + 207, + 45, + 23, + 237, + 112, + 22, + 155, + 235, + 198, + 250, + 75, + 26, + 133, + 192, + 213, + 197, + 147, + 157, + 67, + 6, + 247, + 136, + 54, + 200, + 184, + 231, + 36, + 53, + 236, + 43, + 58, + 87, + 192, + 175, + 228, + 113, + 63, + 95, + 137, + 74, + 178, + 213, + 105, + 104, + 153, + 206, + 194, + 124, + 141, + 211, + 235, + 203, + 141, + 208, + 104, + 17, + 25, + 63, + 28, + 221, + 47, + 116, + 88, + 227, + 192, + 175, + 228, + 113, + 63, + 95, + 137, + 74, + 178, + 213, + 105, + 104, + 153, + 206, + 194, + 124, + 141, + 211, + 235, + 203, + 141, + 208, + 104, + 17, + 25, + 63, + 28, + 221, + 47, + 116, + 88, + 227, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 14, + 208, + 231, + 124, + 3, + 0, + 0 + ] + }, + { + "package_id": "0x0000000000000000000000000000000000000000000000000000000000000003", + "transaction_module": "iota_system", + "sender": "0x0000000000000000000000000000000000000000000000000000000000000000", + "type_": { + "address": "0000000000000000000000000000000000000000000000000000000000000003", + "module": "validator", + "name": "StakingRequestEvent", + "type_args": [] + }, + "contents": [ + 66, + 108, + 22, + 0, + 65, + 68, + 62, + 159, + 93, + 172, + 188, + 21, + 97, + 116, + 162, + 25, + 223, + 118, + 233, + 195, + 163, + 193, + 85, + 228, + 59, + 227, + 48, + 169, + 105, + 90, + 104, + 169, + 190, + 230, + 42, + 119, + 58, + 2, + 173, + 34, + 217, + 86, + 85, + 137, + 246, + 242, + 195, + 68, + 48, + 143, + 109, + 111, + 8, + 78, + 37, + 57, + 245, + 27, + 4, + 104, + 94, + 76, + 99, + 213, + 190, + 230, + 42, + 119, + 58, + 2, + 173, + 34, + 217, + 86, + 85, + 137, + 246, + 242, + 195, + 68, + 48, + 143, + 109, + 111, + 8, + 78, + 37, + 57, + 245, + 27, + 4, + 104, + 94, + 76, + 99, + 213, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 14, + 208, + 231, + 124, + 3, + 0, + 0 + ] + }, + { + "package_id": "0x0000000000000000000000000000000000000000000000000000000000000003", + "transaction_module": "iota_system", + "sender": "0x0000000000000000000000000000000000000000000000000000000000000000", + "type_": { + "address": "0000000000000000000000000000000000000000000000000000000000000003", + "module": "validator", + "name": "StakingRequestEvent", + "type_args": [] + }, + "contents": [ + 82, + 40, + 18, + 20, + 33, + 187, + 48, + 175, + 108, + 237, + 18, + 12, + 140, + 4, + 173, + 180, + 59, + 61, + 219, + 227, + 74, + 70, + 145, + 19, + 139, + 4, + 25, + 29, + 158, + 51, + 100, + 176, + 41, + 25, + 184, + 94, + 221, + 119, + 112, + 23, + 228, + 11, + 224, + 58, + 214, + 58, + 182, + 206, + 226, + 10, + 120, + 141, + 110, + 178, + 1, + 149, + 89, + 165, + 88, + 173, + 161, + 154, + 231, + 27, + 41, + 25, + 184, + 94, + 221, + 119, + 112, + 23, + 228, + 11, + 224, + 58, + 214, + 58, + 182, + 206, + 226, + 10, + 120, + 141, + 110, + 178, + 1, + 149, + 89, + 165, + 88, + 173, + 161, + 154, + 231, + 27, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 14, + 208, + 231, + 124, + 3, + 0, + 0 + ] + }, + { + "package_id": "0x0000000000000000000000000000000000000000000000000000000000000003", + "transaction_module": "iota_system", + "sender": "0x0000000000000000000000000000000000000000000000000000000000000000", + "type_": { + "address": "0000000000000000000000000000000000000000000000000000000000000003", + "module": "validator_set", + "name": "ValidatorEpochInfoEventV1", + "type_args": [] + }, + "contents": [ + 2, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 67, + 232, + 181, + 229, + 190, + 26, + 198, + 142, + 140, + 162, + 79, + 63, + 164, + 233, + 168, + 80, + 250, + 46, + 240, + 0, + 247, + 252, + 200, + 5, + 36, + 61, + 222, + 54, + 94, + 233, + 68, + 8, + 232, + 3, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 56, + 111, + 132, + 8, + 177, + 6, + 0, + 196, + 9, + 0, + 0, + 0, + 0, + 0, + 0, + 200, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 188, + 162, + 70, + 101, + 174, + 0, + 0, + 0, + 56, + 111, + 132, + 8, + 177, + 6, + 0, + 161, + 32, + 121, + 162, + 33, + 90, + 5, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + }, + { + "package_id": "0x0000000000000000000000000000000000000000000000000000000000000003", + "transaction_module": "iota_system", + "sender": "0x0000000000000000000000000000000000000000000000000000000000000000", + "type_": { + "address": "0000000000000000000000000000000000000000000000000000000000000003", + "module": "validator_set", + "name": "ValidatorEpochInfoEventV1", + "type_args": [] + }, + "contents": [ + 2, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 192, + 175, + 228, + 113, + 63, + 95, + 137, + 74, + 178, + 213, + 105, + 104, + 153, + 206, + 194, + 124, + 141, + 211, + 235, + 203, + 141, + 208, + 104, + 17, + 25, + 63, + 28, + 221, + 47, + 116, + 88, + 227, + 232, + 3, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 56, + 111, + 132, + 8, + 177, + 6, + 0, + 196, + 9, + 0, + 0, + 0, + 0, + 0, + 0, + 200, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 188, + 162, + 70, + 101, + 174, + 0, + 0, + 0, + 56, + 111, + 132, + 8, + 177, + 6, + 0, + 161, + 32, + 121, + 162, + 33, + 90, + 5, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + }, + { + "package_id": "0x0000000000000000000000000000000000000000000000000000000000000003", + "transaction_module": "iota_system", + "sender": "0x0000000000000000000000000000000000000000000000000000000000000000", + "type_": { + "address": "0000000000000000000000000000000000000000000000000000000000000003", + "module": "validator_set", + "name": "ValidatorEpochInfoEventV1", + "type_args": [] + }, + "contents": [ + 2, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 190, + 230, + 42, + 119, + 58, + 2, + 173, + 34, + 217, + 86, + 85, + 137, + 246, + 242, + 195, + 68, + 48, + 143, + 109, + 111, + 8, + 78, + 37, + 57, + 245, + 27, + 4, + 104, + 94, + 76, + 99, + 213, + 232, + 3, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 56, + 111, + 132, + 8, + 177, + 6, + 0, + 196, + 9, + 0, + 0, + 0, + 0, + 0, + 0, + 200, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 188, + 162, + 70, + 101, + 174, + 0, + 0, + 0, + 56, + 111, + 132, + 8, + 177, + 6, + 0, + 161, + 32, + 121, + 162, + 33, + 90, + 5, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + }, + { + "package_id": "0x0000000000000000000000000000000000000000000000000000000000000003", + "transaction_module": "iota_system", + "sender": "0x0000000000000000000000000000000000000000000000000000000000000000", + "type_": { + "address": "0000000000000000000000000000000000000000000000000000000000000003", + "module": "validator_set", + "name": "ValidatorEpochInfoEventV1", + "type_args": [] + }, + "contents": [ + 2, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 41, + 25, + 184, + 94, + 221, + 119, + 112, + 23, + 228, + 11, + 224, + 58, + 214, + 58, + 182, + 206, + 226, + 10, + 120, + 141, + 110, + 178, + 1, + 149, + 89, + 165, + 88, + 173, + 161, + 154, + 231, + 27, + 232, + 3, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 56, + 111, + 132, + 8, + 177, + 6, + 0, + 196, + 9, + 0, + 0, + 0, + 0, + 0, + 0, + 200, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 188, + 162, + 70, + 101, + 174, + 0, + 0, + 0, + 56, + 111, + 132, + 8, + 177, + 6, + 0, + 161, + 32, + 121, + 162, + 33, + 90, + 5, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + }, + { + "package_id": "0x0000000000000000000000000000000000000000000000000000000000000003", + "transaction_module": "iota_system", + "sender": "0x0000000000000000000000000000000000000000000000000000000000000000", + "type_": { + "address": "0000000000000000000000000000000000000000000000000000000000000003", + "module": "iota_system_state_inner", + "name": "SystemEpochInfoEventV1", + "type_args": [] + }, + "contents": [ + 2, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 232, + 3, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 224, + 188, + 17, + 34, + 196, + 26, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 240, + 138, + 26, + 149, + 185, + 2, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 240, + 138, + 26, + 149, + 185, + 2, + 0 + ] + } + ] + }, + "input_objects": [ + { + "data": { + "Move": { + "type_": { + "Other": { + "address": "0000000000000000000000000000000000000000000000000000000000000003", + "module": "iota_system", + "name": "IotaSystemState", + "type_args": [] + } + }, + "version": 2, + "contents": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 5, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + } + }, + "owner": { + "Shared": { + "initial_shared_version": 1 + } + }, + "previous_transaction": "4DYVUL5tad1oC5xusubpY17vffqAyBkjmQfCQRdd3KRu", + "storage_rebate": 0 + }, + { + "data": { + "Move": { + "type_": { + "Other": { + "address": "0000000000000000000000000000000000000000000000000000000000000002", + "module": "dynamic_field", + "name": "Field", + "type_args": [ + "u64", + { + "struct": { + "address": "0000000000000000000000000000000000000000000000000000000000000003", + "module": "iota_system_state_inner", + "name": "IotaSystemStateV1", + "type_args": [] + } + } + ] + } + }, + "version": 2, + "contents": [ + 106, + 242, + 162, + 183, + 202, + 96, + 191, + 118, + 23, + 74, + 223, + 211, + 233, + 196, + 149, + 127, + 142, + 147, + 119, + 89, + 96, + 49, + 130, + 249, + 180, + 108, + 127, + 108, + 95, + 25, + 198, + 210, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 33, + 120, + 211, + 59, + 94, + 251, + 190, + 29, + 133, + 24, + 140, + 237, + 130, + 57, + 191, + 221, + 188, + 132, + 174, + 6, + 148, + 192, + 142, + 32, + 59, + 66, + 217, + 202, + 103, + 195, + 2, + 210, + 0, + 240, + 105, + 42, + 5, + 130, + 100, + 43, + 0, + 240, + 49, + 247, + 140, + 10, + 24, + 0, + 4, + 67, + 232, + 181, + 229, + 190, + 26, + 198, + 142, + 140, + 162, + 79, + 63, + 164, + 233, + 168, + 80, + 250, + 46, + 240, + 0, + 247, + 252, + 200, + 5, + 36, + 61, + 222, + 54, + 94, + 233, + 68, + 8, + 96, + 141, + 207, + 246, + 209, + 85, + 4, + 10, + 101, + 111, + 72, + 25, + 177, + 49, + 17, + 181, + 44, + 87, + 70, + 168, + 107, + 167, + 47, + 57, + 95, + 186, + 254, + 46, + 195, + 132, + 125, + 30, + 129, + 64, + 230, + 36, + 167, + 81, + 253, + 246, + 181, + 242, + 5, + 11, + 199, + 32, + 92, + 249, + 211, + 0, + 4, + 201, + 11, + 12, + 116, + 10, + 255, + 211, + 38, + 206, + 103, + 60, + 194, + 178, + 58, + 45, + 36, + 213, + 62, + 42, + 254, + 178, + 134, + 223, + 198, + 104, + 253, + 64, + 96, + 8, + 157, + 109, + 43, + 23, + 183, + 153, + 221, + 54, + 249, + 13, + 51, + 46, + 84, + 167, + 163, + 56, + 212, + 32, + 196, + 62, + 132, + 24, + 163, + 189, + 82, + 102, + 141, + 245, + 98, + 152, + 156, + 97, + 252, + 197, + 195, + 47, + 86, + 12, + 85, + 19, + 174, + 41, + 58, + 124, + 46, + 194, + 31, + 214, + 202, + 227, + 32, + 19, + 59, + 167, + 93, + 117, + 58, + 188, + 191, + 5, + 119, + 233, + 190, + 18, + 97, + 124, + 116, + 104, + 64, + 49, + 71, + 93, + 217, + 56, + 139, + 72, + 40, + 147, + 175, + 70, + 71, + 25, + 63, + 48, + 137, + 184, + 29, + 114, + 29, + 48, + 118, + 206, + 228, + 215, + 24, + 238, + 59, + 87, + 84, + 81, + 230, + 3, + 166, + 206, + 229, + 252, + 87, + 57, + 38, + 113, + 39, + 177, + 195, + 229, + 217, + 100, + 174, + 220, + 140, + 204, + 243, + 229, + 203, + 82, + 41, + 10, + 146, + 240, + 229, + 138, + 122, + 9, + 11, + 118, + 97, + 108, + 105, + 100, + 97, + 116, + 111, + 114, + 45, + 49, + 0, + 0, + 0, + 29, + 47, + 105, + 112, + 52, + 47, + 49, + 50, + 55, + 46, + 48, + 46, + 48, + 46, + 49, + 47, + 116, + 99, + 112, + 47, + 52, + 50, + 53, + 48, + 53, + 47, + 104, + 116, + 116, + 112, + 24, + 47, + 105, + 112, + 52, + 47, + 49, + 50, + 55, + 46, + 48, + 46, + 48, + 46, + 49, + 47, + 117, + 100, + 112, + 47, + 52, + 50, + 50, + 53, + 55, + 24, + 47, + 105, + 112, + 52, + 47, + 49, + 50, + 55, + 46, + 48, + 46, + 48, + 46, + 49, + 47, + 117, + 100, + 112, + 47, + 52, + 49, + 50, + 55, + 51, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 193, + 172, + 150, + 93, + 42, + 76, + 232, + 112, + 27, + 20, + 5, + 72, + 216, + 182, + 218, + 2, + 154, + 69, + 196, + 72, + 211, + 177, + 54, + 182, + 188, + 223, + 197, + 33, + 134, + 9, + 159, + 212, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 196, + 9, + 0, + 0, + 0, + 0, + 0, + 0, + 177, + 240, + 130, + 136, + 211, + 97, + 82, + 53, + 42, + 159, + 55, + 118, + 64, + 200, + 24, + 224, + 95, + 133, + 217, + 207, + 178, + 27, + 2, + 36, + 238, + 5, + 33, + 211, + 56, + 174, + 138, + 160, + 232, + 3, + 0, + 0, + 0, + 0, + 0, + 0, + 205, + 23, + 237, + 101, + 196, + 223, + 165, + 144, + 73, + 40, + 152, + 156, + 38, + 172, + 6, + 187, + 80, + 131, + 252, + 156, + 198, + 105, + 210, + 20, + 227, + 192, + 121, + 85, + 126, + 84, + 209, + 174, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 124, + 204, + 61, + 163, + 2, + 6, + 0, + 0, + 174, + 210, + 94, + 232, + 170, + 0, + 0, + 145, + 108, + 209, + 118, + 87, + 87, + 5, + 0, + 140, + 149, + 217, + 90, + 19, + 183, + 158, + 208, + 24, + 25, + 6, + 126, + 209, + 9, + 63, + 153, + 219, + 28, + 249, + 88, + 168, + 60, + 68, + 80, + 19, + 199, + 179, + 89, + 43, + 219, + 203, + 152, + 2, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 165, + 143, + 84, + 159, + 166, + 25, + 12, + 161, + 141, + 32, + 3, + 3, + 139, + 169, + 133, + 182, + 69, + 119, + 237, + 71, + 47, + 66, + 63, + 192, + 99, + 180, + 148, + 177, + 252, + 179, + 73, + 49, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 200, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 124, + 204, + 61, + 163, + 2, + 6, + 0, + 232, + 3, + 0, + 0, + 0, + 0, + 0, + 0, + 200, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 88, + 133, + 61, + 66, + 13, + 222, + 200, + 212, + 234, + 213, + 88, + 180, + 147, + 113, + 102, + 159, + 0, + 78, + 17, + 138, + 135, + 26, + 79, + 98, + 16, + 8, + 194, + 99, + 131, + 241, + 33, + 37, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 192, + 175, + 228, + 113, + 63, + 95, + 137, + 74, + 178, + 213, + 105, + 104, + 153, + 206, + 194, + 124, + 141, + 211, + 235, + 203, + 141, + 208, + 104, + 17, + 25, + 63, + 28, + 221, + 47, + 116, + 88, + 227, + 96, + 153, + 242, + 94, + 246, + 31, + 128, + 50, + 185, + 20, + 99, + 100, + 96, + 152, + 44, + 92, + 198, + 241, + 52, + 239, + 29, + 218, + 231, + 102, + 87, + 242, + 203, + 254, + 193, + 235, + 252, + 141, + 9, + 115, + 116, + 8, + 13, + 246, + 252, + 240, + 220, + 184, + 188, + 75, + 13, + 142, + 10, + 245, + 216, + 14, + 187, + 255, + 43, + 76, + 89, + 159, + 84, + 244, + 45, + 99, + 18, + 223, + 195, + 20, + 39, + 96, + 120, + 193, + 204, + 52, + 126, + 187, + 190, + 197, + 25, + 139, + 226, + 88, + 81, + 63, + 56, + 107, + 147, + 13, + 2, + 194, + 116, + 154, + 128, + 62, + 35, + 48, + 149, + 94, + 189, + 26, + 16, + 32, + 124, + 182, + 186, + 91, + 12, + 170, + 131, + 177, + 61, + 203, + 127, + 80, + 232, + 52, + 130, + 1, + 139, + 38, + 18, + 19, + 17, + 68, + 191, + 185, + 79, + 7, + 213, + 179, + 21, + 145, + 211, + 187, + 32, + 94, + 91, + 130, + 163, + 159, + 253, + 136, + 192, + 238, + 131, + 218, + 155, + 62, + 192, + 0, + 198, + 173, + 130, + 103, + 59, + 148, + 58, + 239, + 141, + 231, + 179, + 8, + 76, + 140, + 228, + 117, + 96, + 48, + 149, + 156, + 76, + 233, + 34, + 137, + 19, + 218, + 66, + 180, + 247, + 89, + 225, + 191, + 83, + 121, + 39, + 43, + 112, + 84, + 165, + 35, + 231, + 134, + 23, + 125, + 5, + 153, + 229, + 197, + 243, + 25, + 147, + 7, + 167, + 218, + 65, + 169, + 20, + 123, + 151, + 209, + 118, + 154, + 4, + 53, + 71, + 105, + 11, + 118, + 97, + 108, + 105, + 100, + 97, + 116, + 111, + 114, + 45, + 48, + 0, + 0, + 0, + 29, + 47, + 105, + 112, + 52, + 47, + 49, + 50, + 55, + 46, + 48, + 46, + 48, + 46, + 49, + 47, + 116, + 99, + 112, + 47, + 51, + 51, + 53, + 52, + 57, + 47, + 104, + 116, + 116, + 112, + 24, + 47, + 105, + 112, + 52, + 47, + 49, + 50, + 55, + 46, + 48, + 46, + 48, + 46, + 49, + 47, + 117, + 100, + 112, + 47, + 52, + 53, + 53, + 55, + 55, + 24, + 47, + 105, + 112, + 52, + 47, + 49, + 50, + 55, + 46, + 48, + 46, + 48, + 46, + 49, + 47, + 117, + 100, + 112, + 47, + 51, + 51, + 52, + 57, + 49, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 250, + 44, + 99, + 101, + 202, + 88, + 5, + 61, + 253, + 24, + 51, + 26, + 87, + 210, + 184, + 240, + 42, + 40, + 131, + 205, + 59, + 201, + 168, + 247, + 101, + 11, + 54, + 150, + 130, + 210, + 2, + 86, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 196, + 9, + 0, + 0, + 0, + 0, + 0, + 0, + 102, + 140, + 54, + 205, + 193, + 218, + 197, + 97, + 35, + 198, + 30, + 231, + 98, + 41, + 134, + 110, + 115, + 97, + 203, + 29, + 81, + 3, + 42, + 58, + 45, + 152, + 33, + 80, + 128, + 118, + 115, + 111, + 232, + 3, + 0, + 0, + 0, + 0, + 0, + 0, + 207, + 45, + 23, + 237, + 112, + 22, + 155, + 235, + 198, + 250, + 75, + 26, + 133, + 192, + 213, + 197, + 147, + 157, + 67, + 6, + 247, + 136, + 54, + 200, + 184, + 231, + 36, + 53, + 236, + 43, + 58, + 87, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 124, + 204, + 61, + 163, + 2, + 6, + 0, + 0, + 174, + 210, + 94, + 232, + 170, + 0, + 0, + 145, + 108, + 209, + 118, + 87, + 87, + 5, + 0, + 223, + 62, + 27, + 73, + 93, + 117, + 64, + 244, + 214, + 75, + 188, + 121, + 172, + 248, + 226, + 86, + 226, + 185, + 165, + 43, + 83, + 204, + 157, + 14, + 116, + 41, + 93, + 223, + 21, + 63, + 205, + 8, + 2, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 60, + 19, + 165, + 167, + 113, + 73, + 173, + 158, + 249, + 1, + 137, + 200, + 167, + 2, + 6, + 36, + 233, + 143, + 38, + 144, + 146, + 157, + 93, + 201, + 6, + 141, + 179, + 74, + 31, + 1, + 243, + 249, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 200, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 124, + 204, + 61, + 163, + 2, + 6, + 0, + 232, + 3, + 0, + 0, + 0, + 0, + 0, + 0, + 200, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 174, + 227, + 90, + 63, + 120, + 139, + 75, + 210, + 232, + 201, + 40, + 254, + 61, + 139, + 164, + 135, + 89, + 80, + 67, + 197, + 79, + 23, + 193, + 220, + 192, + 27, + 225, + 247, + 132, + 19, + 170, + 106, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 190, + 230, + 42, + 119, + 58, + 2, + 173, + 34, + 217, + 86, + 85, + 137, + 246, + 242, + 195, + 68, + 48, + 143, + 109, + 111, + 8, + 78, + 37, + 57, + 245, + 27, + 4, + 104, + 94, + 76, + 99, + 213, + 96, + 173, + 222, + 239, + 148, + 216, + 152, + 200, + 142, + 64, + 219, + 222, + 255, + 145, + 197, + 241, + 5, + 249, + 207, + 44, + 116, + 127, + 182, + 242, + 188, + 55, + 236, + 3, + 214, + 201, + 30, + 219, + 46, + 26, + 87, + 140, + 245, + 68, + 190, + 139, + 9, + 49, + 226, + 95, + 36, + 61, + 89, + 176, + 195, + 13, + 152, + 161, + 108, + 227, + 186, + 29, + 108, + 241, + 215, + 245, + 4, + 38, + 153, + 46, + 176, + 173, + 179, + 19, + 75, + 5, + 91, + 232, + 20, + 13, + 45, + 181, + 242, + 95, + 176, + 13, + 131, + 248, + 228, + 34, + 43, + 240, + 31, + 214, + 172, + 147, + 161, + 255, + 77, + 121, + 218, + 88, + 242, + 32, + 30, + 37, + 183, + 240, + 103, + 163, + 179, + 125, + 63, + 45, + 181, + 93, + 28, + 89, + 229, + 5, + 106, + 163, + 206, + 78, + 29, + 199, + 170, + 104, + 45, + 224, + 239, + 38, + 161, + 81, + 144, + 126, + 32, + 126, + 135, + 13, + 21, + 110, + 182, + 43, + 100, + 73, + 50, + 39, + 165, + 30, + 73, + 87, + 94, + 30, + 140, + 210, + 23, + 43, + 12, + 234, + 159, + 61, + 202, + 207, + 104, + 212, + 250, + 231, + 63, + 48, + 130, + 188, + 193, + 4, + 218, + 97, + 149, + 191, + 5, + 78, + 7, + 112, + 33, + 68, + 224, + 59, + 39, + 98, + 169, + 118, + 239, + 107, + 148, + 29, + 214, + 12, + 75, + 189, + 224, + 32, + 251, + 184, + 107, + 66, + 33, + 222, + 190, + 35, + 51, + 112, + 199, + 58, + 214, + 198, + 43, + 186, + 235, + 19, + 11, + 118, + 97, + 108, + 105, + 100, + 97, + 116, + 111, + 114, + 45, + 50, + 0, + 0, + 0, + 29, + 47, + 105, + 112, + 52, + 47, + 49, + 50, + 55, + 46, + 48, + 46, + 48, + 46, + 49, + 47, + 116, + 99, + 112, + 47, + 51, + 54, + 55, + 48, + 53, + 47, + 104, + 116, + 116, + 112, + 24, + 47, + 105, + 112, + 52, + 47, + 49, + 50, + 55, + 46, + 48, + 46, + 48, + 46, + 49, + 47, + 117, + 100, + 112, + 47, + 51, + 57, + 50, + 54, + 57, + 24, + 47, + 105, + 112, + 52, + 47, + 49, + 50, + 55, + 46, + 48, + 46, + 48, + 46, + 49, + 47, + 117, + 100, + 112, + 47, + 52, + 52, + 50, + 53, + 55, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 209, + 106, + 60, + 28, + 216, + 87, + 117, + 44, + 84, + 47, + 230, + 60, + 135, + 6, + 51, + 174, + 41, + 241, + 66, + 2, + 40, + 192, + 103, + 218, + 11, + 122, + 250, + 66, + 79, + 142, + 211, + 4, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 196, + 9, + 0, + 0, + 0, + 0, + 0, + 0, + 155, + 69, + 37, + 119, + 94, + 101, + 203, + 127, + 114, + 40, + 83, + 87, + 40, + 234, + 215, + 188, + 58, + 35, + 220, + 69, + 167, + 187, + 76, + 163, + 122, + 10, + 181, + 147, + 70, + 189, + 87, + 154, + 232, + 3, + 0, + 0, + 0, + 0, + 0, + 0, + 66, + 108, + 22, + 0, + 65, + 68, + 62, + 159, + 93, + 172, + 188, + 21, + 97, + 116, + 162, + 25, + 223, + 118, + 233, + 195, + 163, + 193, + 85, + 228, + 59, + 227, + 48, + 169, + 105, + 90, + 104, + 169, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 124, + 204, + 61, + 163, + 2, + 6, + 0, + 0, + 174, + 210, + 94, + 232, + 170, + 0, + 0, + 145, + 108, + 209, + 118, + 87, + 87, + 5, + 0, + 131, + 146, + 236, + 235, + 139, + 199, + 162, + 80, + 212, + 72, + 140, + 232, + 253, + 186, + 243, + 101, + 19, + 51, + 239, + 24, + 229, + 115, + 43, + 86, + 65, + 99, + 55, + 131, + 159, + 173, + 93, + 133, + 2, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 78, + 224, + 13, + 230, + 63, + 173, + 19, + 87, + 20, + 241, + 227, + 85, + 250, + 133, + 57, + 177, + 238, + 152, + 194, + 210, + 123, + 166, + 245, + 195, + 78, + 24, + 150, + 68, + 210, + 194, + 135, + 90, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 200, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 124, + 204, + 61, + 163, + 2, + 6, + 0, + 232, + 3, + 0, + 0, + 0, + 0, + 0, + 0, + 200, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 131, + 5, + 19, + 173, + 71, + 85, + 34, + 154, + 188, + 178, + 2, + 156, + 113, + 213, + 174, + 54, + 18, + 43, + 140, + 17, + 237, + 175, + 95, + 125, + 104, + 199, + 61, + 170, + 9, + 101, + 233, + 169, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 41, + 25, + 184, + 94, + 221, + 119, + 112, + 23, + 228, + 11, + 224, + 58, + 214, + 58, + 182, + 206, + 226, + 10, + 120, + 141, + 110, + 178, + 1, + 149, + 89, + 165, + 88, + 173, + 161, + 154, + 231, + 27, + 96, + 179, + 253, + 94, + 251, + 92, + 135, + 36, + 3, + 164, + 173, + 19, + 241, + 25, + 149, + 19, + 96, + 109, + 35, + 53, + 74, + 132, + 82, + 73, + 174, + 161, + 87, + 86, + 76, + 35, + 255, + 60, + 21, + 198, + 201, + 230, + 82, + 183, + 45, + 116, + 14, + 140, + 172, + 185, + 60, + 188, + 192, + 104, + 107, + 14, + 192, + 204, + 12, + 28, + 118, + 11, + 251, + 66, + 180, + 54, + 81, + 159, + 197, + 168, + 5, + 75, + 118, + 83, + 58, + 151, + 169, + 242, + 57, + 135, + 208, + 151, + 239, + 150, + 177, + 242, + 82, + 107, + 178, + 7, + 63, + 161, + 10, + 119, + 25, + 148, + 23, + 114, + 52, + 126, + 242, + 116, + 244, + 32, + 201, + 240, + 172, + 219, + 174, + 239, + 53, + 226, + 13, + 220, + 210, + 185, + 203, + 133, + 146, + 206, + 6, + 139, + 173, + 40, + 92, + 214, + 151, + 52, + 6, + 137, + 118, + 144, + 242, + 19, + 109, + 86, + 32, + 81, + 29, + 75, + 191, + 136, + 151, + 177, + 166, + 53, + 182, + 127, + 24, + 25, + 179, + 223, + 34, + 251, + 7, + 173, + 106, + 47, + 67, + 193, + 58, + 192, + 103, + 173, + 85, + 118, + 125, + 57, + 17, + 48, + 153, + 255, + 85, + 74, + 254, + 22, + 45, + 78, + 194, + 45, + 69, + 22, + 157, + 104, + 32, + 132, + 29, + 176, + 231, + 38, + 185, + 55, + 215, + 253, + 84, + 132, + 62, + 124, + 59, + 5, + 26, + 27, + 11, + 119, + 18, + 94, + 189, + 55, + 92, + 233, + 0, + 84, + 93, + 186, + 196, + 29, + 103, + 167, + 11, + 118, + 97, + 108, + 105, + 100, + 97, + 116, + 111, + 114, + 45, + 51, + 0, + 0, + 0, + 29, + 47, + 105, + 112, + 52, + 47, + 49, + 50, + 55, + 46, + 48, + 46, + 48, + 46, + 49, + 47, + 116, + 99, + 112, + 47, + 52, + 52, + 53, + 49, + 55, + 47, + 104, + 116, + 116, + 112, + 24, + 47, + 105, + 112, + 52, + 47, + 49, + 50, + 55, + 46, + 48, + 46, + 48, + 46, + 49, + 47, + 117, + 100, + 112, + 47, + 51, + 52, + 48, + 51, + 55, + 24, + 47, + 105, + 112, + 52, + 47, + 49, + 50, + 55, + 46, + 48, + 46, + 48, + 46, + 49, + 47, + 117, + 100, + 112, + 47, + 52, + 53, + 56, + 53, + 55, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 66, + 169, + 21, + 132, + 190, + 62, + 174, + 59, + 27, + 25, + 169, + 27, + 16, + 219, + 37, + 141, + 250, + 49, + 205, + 67, + 148, + 42, + 101, + 170, + 175, + 157, + 115, + 136, + 211, + 126, + 55, + 241, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 196, + 9, + 0, + 0, + 0, + 0, + 0, + 0, + 230, + 160, + 169, + 226, + 177, + 83, + 119, + 70, + 254, + 149, + 70, + 131, + 56, + 219, + 173, + 172, + 209, + 121, + 245, + 182, + 94, + 49, + 48, + 13, + 108, + 6, + 173, + 172, + 220, + 23, + 236, + 48, + 232, + 3, + 0, + 0, + 0, + 0, + 0, + 0, + 82, + 40, + 18, + 20, + 33, + 187, + 48, + 175, + 108, + 237, + 18, + 12, + 140, + 4, + 173, + 180, + 59, + 61, + 219, + 227, + 74, + 70, + 145, + 19, + 139, + 4, + 25, + 29, + 158, + 51, + 100, + 176, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 124, + 204, + 61, + 163, + 2, + 6, + 0, + 0, + 174, + 210, + 94, + 232, + 170, + 0, + 0, + 145, + 108, + 209, + 118, + 87, + 87, + 5, + 0, + 25, + 183, + 119, + 249, + 82, + 230, + 13, + 30, + 146, + 105, + 243, + 12, + 39, + 28, + 86, + 183, + 118, + 56, + 225, + 30, + 145, + 95, + 58, + 36, + 124, + 20, + 31, + 17, + 234, + 189, + 17, + 217, + 2, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 44, + 118, + 58, + 249, + 246, + 128, + 40, + 44, + 113, + 168, + 103, + 159, + 201, + 41, + 71, + 22, + 179, + 109, + 66, + 96, + 65, + 41, + 238, + 95, + 63, + 159, + 128, + 82, + 6, + 19, + 230, + 36, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 200, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 124, + 204, + 61, + 163, + 2, + 6, + 0, + 232, + 3, + 0, + 0, + 0, + 0, + 0, + 0, + 200, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 227, + 214, + 106, + 80, + 49, + 236, + 230, + 181, + 194, + 71, + 204, + 47, + 195, + 108, + 37, + 8, + 136, + 161, + 95, + 189, + 20, + 240, + 60, + 188, + 53, + 215, + 47, + 169, + 187, + 142, + 12, + 183, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 51, + 175, + 121, + 165, + 254, + 196, + 180, + 235, + 206, + 116, + 244, + 241, + 228, + 36, + 190, + 59, + 96, + 143, + 116, + 246, + 216, + 37, + 10, + 154, + 151, + 190, + 78, + 196, + 88, + 135, + 200, + 232, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 120, + 9, + 122, + 172, + 245, + 199, + 26, + 84, + 136, + 117, + 70, + 158, + 255, + 24, + 211, + 244, + 197, + 162, + 129, + 243, + 195, + 40, + 145, + 83, + 186, + 142, + 252, + 225, + 90, + 228, + 10, + 22, + 4, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 52, + 218, + 54, + 70, + 39, + 183, + 172, + 251, + 39, + 110, + 165, + 191, + 110, + 18, + 214, + 133, + 142, + 58, + 2, + 129, + 211, + 233, + 105, + 29, + 227, + 196, + 74, + 133, + 165, + 252, + 30, + 31, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 30, + 14, + 118, + 33, + 118, + 50, + 37, + 105, + 218, + 145, + 149, + 140, + 58, + 51, + 117, + 227, + 59, + 70, + 65, + 100, + 117, + 18, + 195, + 168, + 46, + 87, + 3, + 3, + 152, + 147, + 232, + 163, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 125, + 137, + 139, + 51, + 202, + 91, + 166, + 12, + 15, + 75, + 138, + 98, + 249, + 0, + 8, + 119, + 3, + 153, + 33, + 231, + 43, + 31, + 82, + 19, + 144, + 211, + 94, + 36, + 188, + 80, + 170, + 27, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 96, + 234, + 0, + 0, + 0, + 0, + 0, + 0, + 4, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 150, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 141, + 73, + 253, + 26, + 7, + 0, + 0, + 192, + 41, + 247, + 61, + 84, + 5, + 0, + 0, + 128, + 198, + 164, + 126, + 141, + 3, + 0, + 7, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 79, + 17, + 167, + 207, + 224, + 118, + 62, + 44, + 178, + 174, + 165, + 143, + 18, + 121, + 59, + 240, + 243, + 203, + 209, + 186, + 63, + 64, + 104, + 6, + 206, + 83, + 237, + 242, + 44, + 248, + 198, + 158, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 232, + 3, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 43, + 210, + 212, + 12, + 147, + 1, + 0, + 0, + 106, + 236, + 253, + 115, + 168, + 184, + 12, + 164, + 172, + 208, + 106, + 220, + 69, + 24, + 89, + 198, + 2, + 213, + 236, + 72, + 90, + 211, + 34, + 72, + 153, + 83, + 221, + 101, + 158, + 252, + 168, + 143, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + } + }, + "owner": { + "ObjectOwner": "0x0000000000000000000000000000000000000000000000000000000000000005" + }, + "previous_transaction": "4DYVUL5tad1oC5xusubpY17vffqAyBkjmQfCQRdd3KRu", + "storage_rebate": 0 + } + ], + "output_objects": [ + { + "data": { + "Move": { + "type_": { + "Other": { + "address": "0000000000000000000000000000000000000000000000000000000000000003", + "module": "iota_system", + "name": "IotaSystemState", + "type_args": [] + } + }, + "version": 3, + "contents": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 5, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + } + }, + "owner": { + "Shared": { + "initial_shared_version": 1 + } + }, + "previous_transaction": "99opjMtEQQnYWw48gQLkHazPoKU4yUkZ15rC92L12XGy", + "storage_rebate": 0 + }, + { + "data": { + "Move": { + "type_": { + "Other": { + "address": "0000000000000000000000000000000000000000000000000000000000000002", + "module": "dynamic_field", + "name": "Field", + "type_args": [ + "u64", + { + "struct": { + "address": "0000000000000000000000000000000000000000000000000000000000000003", + "module": "iota_system_state_inner", + "name": "IotaSystemStateV1", + "type_args": [] + } + } + ] + } + }, + "version": 3, + "contents": [ + 106, + 242, + 162, + 183, + 202, + 96, + 191, + 118, + 23, + 74, + 223, + 211, + 233, + 196, + 149, + 127, + 142, + 147, + 119, + 89, + 96, + 49, + 130, + 249, + 180, + 108, + 127, + 108, + 95, + 25, + 198, + 210, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 2, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 33, + 120, + 211, + 59, + 94, + 251, + 190, + 29, + 133, + 24, + 140, + 237, + 130, + 57, + 191, + 221, + 188, + 132, + 174, + 6, + 148, + 192, + 142, + 32, + 59, + 66, + 217, + 202, + 103, + 195, + 2, + 210, + 0, + 224, + 244, + 68, + 154, + 59, + 103, + 43, + 0, + 224, + 188, + 17, + 34, + 196, + 26, + 0, + 4, + 67, + 232, + 181, + 229, + 190, + 26, + 198, + 142, + 140, + 162, + 79, + 63, + 164, + 233, + 168, + 80, + 250, + 46, + 240, + 0, + 247, + 252, + 200, + 5, + 36, + 61, + 222, + 54, + 94, + 233, + 68, + 8, + 96, + 141, + 207, + 246, + 209, + 85, + 4, + 10, + 101, + 111, + 72, + 25, + 177, + 49, + 17, + 181, + 44, + 87, + 70, + 168, + 107, + 167, + 47, + 57, + 95, + 186, + 254, + 46, + 195, + 132, + 125, + 30, + 129, + 64, + 230, + 36, + 167, + 81, + 253, + 246, + 181, + 242, + 5, + 11, + 199, + 32, + 92, + 249, + 211, + 0, + 4, + 201, + 11, + 12, + 116, + 10, + 255, + 211, + 38, + 206, + 103, + 60, + 194, + 178, + 58, + 45, + 36, + 213, + 62, + 42, + 254, + 178, + 134, + 223, + 198, + 104, + 253, + 64, + 96, + 8, + 157, + 109, + 43, + 23, + 183, + 153, + 221, + 54, + 249, + 13, + 51, + 46, + 84, + 167, + 163, + 56, + 212, + 32, + 196, + 62, + 132, + 24, + 163, + 189, + 82, + 102, + 141, + 245, + 98, + 152, + 156, + 97, + 252, + 197, + 195, + 47, + 86, + 12, + 85, + 19, + 174, + 41, + 58, + 124, + 46, + 194, + 31, + 214, + 202, + 227, + 32, + 19, + 59, + 167, + 93, + 117, + 58, + 188, + 191, + 5, + 119, + 233, + 190, + 18, + 97, + 124, + 116, + 104, + 64, + 49, + 71, + 93, + 217, + 56, + 139, + 72, + 40, + 147, + 175, + 70, + 71, + 25, + 63, + 48, + 137, + 184, + 29, + 114, + 29, + 48, + 118, + 206, + 228, + 215, + 24, + 238, + 59, + 87, + 84, + 81, + 230, + 3, + 166, + 206, + 229, + 252, + 87, + 57, + 38, + 113, + 39, + 177, + 195, + 229, + 217, + 100, + 174, + 220, + 140, + 204, + 243, + 229, + 203, + 82, + 41, + 10, + 146, + 240, + 229, + 138, + 122, + 9, + 11, + 118, + 97, + 108, + 105, + 100, + 97, + 116, + 111, + 114, + 45, + 49, + 0, + 0, + 0, + 29, + 47, + 105, + 112, + 52, + 47, + 49, + 50, + 55, + 46, + 48, + 46, + 48, + 46, + 49, + 47, + 116, + 99, + 112, + 47, + 52, + 50, + 53, + 48, + 53, + 47, + 104, + 116, + 116, + 112, + 24, + 47, + 105, + 112, + 52, + 47, + 49, + 50, + 55, + 46, + 48, + 46, + 48, + 46, + 49, + 47, + 117, + 100, + 112, + 47, + 52, + 50, + 50, + 53, + 55, + 24, + 47, + 105, + 112, + 52, + 47, + 49, + 50, + 55, + 46, + 48, + 46, + 48, + 46, + 49, + 47, + 117, + 100, + 112, + 47, + 52, + 49, + 50, + 55, + 51, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 193, + 172, + 150, + 93, + 42, + 76, + 232, + 112, + 27, + 20, + 5, + 72, + 216, + 182, + 218, + 2, + 154, + 69, + 196, + 72, + 211, + 177, + 54, + 182, + 188, + 223, + 197, + 33, + 134, + 9, + 159, + 212, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 196, + 9, + 0, + 0, + 0, + 0, + 0, + 0, + 177, + 240, + 130, + 136, + 211, + 97, + 82, + 53, + 42, + 159, + 55, + 118, + 64, + 200, + 24, + 224, + 95, + 133, + 217, + 207, + 178, + 27, + 2, + 36, + 238, + 5, + 33, + 211, + 56, + 174, + 138, + 160, + 232, + 3, + 0, + 0, + 0, + 0, + 0, + 0, + 205, + 23, + 237, + 101, + 196, + 223, + 165, + 144, + 73, + 40, + 152, + 156, + 38, + 172, + 6, + 187, + 80, + 131, + 252, + 156, + 198, + 105, + 210, + 20, + 227, + 192, + 121, + 85, + 126, + 84, + 209, + 174, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 56, + 111, + 132, + 8, + 177, + 6, + 0, + 0, + 92, + 165, + 189, + 208, + 85, + 1, + 0, + 161, + 32, + 121, + 162, + 33, + 90, + 5, + 0, + 140, + 149, + 217, + 90, + 19, + 183, + 158, + 208, + 24, + 25, + 6, + 126, + 209, + 9, + 63, + 153, + 219, + 28, + 249, + 88, + 168, + 60, + 68, + 80, + 19, + 199, + 179, + 89, + 43, + 219, + 203, + 152, + 3, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 165, + 143, + 84, + 159, + 166, + 25, + 12, + 161, + 141, + 32, + 3, + 3, + 139, + 169, + 133, + 182, + 69, + 119, + 237, + 71, + 47, + 66, + 63, + 192, + 99, + 180, + 148, + 177, + 252, + 179, + 73, + 49, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 200, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 56, + 111, + 132, + 8, + 177, + 6, + 0, + 232, + 3, + 0, + 0, + 0, + 0, + 0, + 0, + 200, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 88, + 133, + 61, + 66, + 13, + 222, + 200, + 212, + 234, + 213, + 88, + 180, + 147, + 113, + 102, + 159, + 0, + 78, + 17, + 138, + 135, + 26, + 79, + 98, + 16, + 8, + 194, + 99, + 131, + 241, + 33, + 37, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 192, + 175, + 228, + 113, + 63, + 95, + 137, + 74, + 178, + 213, + 105, + 104, + 153, + 206, + 194, + 124, + 141, + 211, + 235, + 203, + 141, + 208, + 104, + 17, + 25, + 63, + 28, + 221, + 47, + 116, + 88, + 227, + 96, + 153, + 242, + 94, + 246, + 31, + 128, + 50, + 185, + 20, + 99, + 100, + 96, + 152, + 44, + 92, + 198, + 241, + 52, + 239, + 29, + 218, + 231, + 102, + 87, + 242, + 203, + 254, + 193, + 235, + 252, + 141, + 9, + 115, + 116, + 8, + 13, + 246, + 252, + 240, + 220, + 184, + 188, + 75, + 13, + 142, + 10, + 245, + 216, + 14, + 187, + 255, + 43, + 76, + 89, + 159, + 84, + 244, + 45, + 99, + 18, + 223, + 195, + 20, + 39, + 96, + 120, + 193, + 204, + 52, + 126, + 187, + 190, + 197, + 25, + 139, + 226, + 88, + 81, + 63, + 56, + 107, + 147, + 13, + 2, + 194, + 116, + 154, + 128, + 62, + 35, + 48, + 149, + 94, + 189, + 26, + 16, + 32, + 124, + 182, + 186, + 91, + 12, + 170, + 131, + 177, + 61, + 203, + 127, + 80, + 232, + 52, + 130, + 1, + 139, + 38, + 18, + 19, + 17, + 68, + 191, + 185, + 79, + 7, + 213, + 179, + 21, + 145, + 211, + 187, + 32, + 94, + 91, + 130, + 163, + 159, + 253, + 136, + 192, + 238, + 131, + 218, + 155, + 62, + 192, + 0, + 198, + 173, + 130, + 103, + 59, + 148, + 58, + 239, + 141, + 231, + 179, + 8, + 76, + 140, + 228, + 117, + 96, + 48, + 149, + 156, + 76, + 233, + 34, + 137, + 19, + 218, + 66, + 180, + 247, + 89, + 225, + 191, + 83, + 121, + 39, + 43, + 112, + 84, + 165, + 35, + 231, + 134, + 23, + 125, + 5, + 153, + 229, + 197, + 243, + 25, + 147, + 7, + 167, + 218, + 65, + 169, + 20, + 123, + 151, + 209, + 118, + 154, + 4, + 53, + 71, + 105, + 11, + 118, + 97, + 108, + 105, + 100, + 97, + 116, + 111, + 114, + 45, + 48, + 0, + 0, + 0, + 29, + 47, + 105, + 112, + 52, + 47, + 49, + 50, + 55, + 46, + 48, + 46, + 48, + 46, + 49, + 47, + 116, + 99, + 112, + 47, + 51, + 51, + 53, + 52, + 57, + 47, + 104, + 116, + 116, + 112, + 24, + 47, + 105, + 112, + 52, + 47, + 49, + 50, + 55, + 46, + 48, + 46, + 48, + 46, + 49, + 47, + 117, + 100, + 112, + 47, + 52, + 53, + 53, + 55, + 55, + 24, + 47, + 105, + 112, + 52, + 47, + 49, + 50, + 55, + 46, + 48, + 46, + 48, + 46, + 49, + 47, + 117, + 100, + 112, + 47, + 51, + 51, + 52, + 57, + 49, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 250, + 44, + 99, + 101, + 202, + 88, + 5, + 61, + 253, + 24, + 51, + 26, + 87, + 210, + 184, + 240, + 42, + 40, + 131, + 205, + 59, + 201, + 168, + 247, + 101, + 11, + 54, + 150, + 130, + 210, + 2, + 86, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 196, + 9, + 0, + 0, + 0, + 0, + 0, + 0, + 102, + 140, + 54, + 205, + 193, + 218, + 197, + 97, + 35, + 198, + 30, + 231, + 98, + 41, + 134, + 110, + 115, + 97, + 203, + 29, + 81, + 3, + 42, + 58, + 45, + 152, + 33, + 80, + 128, + 118, + 115, + 111, + 232, + 3, + 0, + 0, + 0, + 0, + 0, + 0, + 207, + 45, + 23, + 237, + 112, + 22, + 155, + 235, + 198, + 250, + 75, + 26, + 133, + 192, + 213, + 197, + 147, + 157, + 67, + 6, + 247, + 136, + 54, + 200, + 184, + 231, + 36, + 53, + 236, + 43, + 58, + 87, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 56, + 111, + 132, + 8, + 177, + 6, + 0, + 0, + 92, + 165, + 189, + 208, + 85, + 1, + 0, + 161, + 32, + 121, + 162, + 33, + 90, + 5, + 0, + 223, + 62, + 27, + 73, + 93, + 117, + 64, + 244, + 214, + 75, + 188, + 121, + 172, + 248, + 226, + 86, + 226, + 185, + 165, + 43, + 83, + 204, + 157, + 14, + 116, + 41, + 93, + 223, + 21, + 63, + 205, + 8, + 3, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 60, + 19, + 165, + 167, + 113, + 73, + 173, + 158, + 249, + 1, + 137, + 200, + 167, + 2, + 6, + 36, + 233, + 143, + 38, + 144, + 146, + 157, + 93, + 201, + 6, + 141, + 179, + 74, + 31, + 1, + 243, + 249, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 200, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 56, + 111, + 132, + 8, + 177, + 6, + 0, + 232, + 3, + 0, + 0, + 0, + 0, + 0, + 0, + 200, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 174, + 227, + 90, + 63, + 120, + 139, + 75, + 210, + 232, + 201, + 40, + 254, + 61, + 139, + 164, + 135, + 89, + 80, + 67, + 197, + 79, + 23, + 193, + 220, + 192, + 27, + 225, + 247, + 132, + 19, + 170, + 106, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 190, + 230, + 42, + 119, + 58, + 2, + 173, + 34, + 217, + 86, + 85, + 137, + 246, + 242, + 195, + 68, + 48, + 143, + 109, + 111, + 8, + 78, + 37, + 57, + 245, + 27, + 4, + 104, + 94, + 76, + 99, + 213, + 96, + 173, + 222, + 239, + 148, + 216, + 152, + 200, + 142, + 64, + 219, + 222, + 255, + 145, + 197, + 241, + 5, + 249, + 207, + 44, + 116, + 127, + 182, + 242, + 188, + 55, + 236, + 3, + 214, + 201, + 30, + 219, + 46, + 26, + 87, + 140, + 245, + 68, + 190, + 139, + 9, + 49, + 226, + 95, + 36, + 61, + 89, + 176, + 195, + 13, + 152, + 161, + 108, + 227, + 186, + 29, + 108, + 241, + 215, + 245, + 4, + 38, + 153, + 46, + 176, + 173, + 179, + 19, + 75, + 5, + 91, + 232, + 20, + 13, + 45, + 181, + 242, + 95, + 176, + 13, + 131, + 248, + 228, + 34, + 43, + 240, + 31, + 214, + 172, + 147, + 161, + 255, + 77, + 121, + 218, + 88, + 242, + 32, + 30, + 37, + 183, + 240, + 103, + 163, + 179, + 125, + 63, + 45, + 181, + 93, + 28, + 89, + 229, + 5, + 106, + 163, + 206, + 78, + 29, + 199, + 170, + 104, + 45, + 224, + 239, + 38, + 161, + 81, + 144, + 126, + 32, + 126, + 135, + 13, + 21, + 110, + 182, + 43, + 100, + 73, + 50, + 39, + 165, + 30, + 73, + 87, + 94, + 30, + 140, + 210, + 23, + 43, + 12, + 234, + 159, + 61, + 202, + 207, + 104, + 212, + 250, + 231, + 63, + 48, + 130, + 188, + 193, + 4, + 218, + 97, + 149, + 191, + 5, + 78, + 7, + 112, + 33, + 68, + 224, + 59, + 39, + 98, + 169, + 118, + 239, + 107, + 148, + 29, + 214, + 12, + 75, + 189, + 224, + 32, + 251, + 184, + 107, + 66, + 33, + 222, + 190, + 35, + 51, + 112, + 199, + 58, + 214, + 198, + 43, + 186, + 235, + 19, + 11, + 118, + 97, + 108, + 105, + 100, + 97, + 116, + 111, + 114, + 45, + 50, + 0, + 0, + 0, + 29, + 47, + 105, + 112, + 52, + 47, + 49, + 50, + 55, + 46, + 48, + 46, + 48, + 46, + 49, + 47, + 116, + 99, + 112, + 47, + 51, + 54, + 55, + 48, + 53, + 47, + 104, + 116, + 116, + 112, + 24, + 47, + 105, + 112, + 52, + 47, + 49, + 50, + 55, + 46, + 48, + 46, + 48, + 46, + 49, + 47, + 117, + 100, + 112, + 47, + 51, + 57, + 50, + 54, + 57, + 24, + 47, + 105, + 112, + 52, + 47, + 49, + 50, + 55, + 46, + 48, + 46, + 48, + 46, + 49, + 47, + 117, + 100, + 112, + 47, + 52, + 52, + 50, + 53, + 55, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 209, + 106, + 60, + 28, + 216, + 87, + 117, + 44, + 84, + 47, + 230, + 60, + 135, + 6, + 51, + 174, + 41, + 241, + 66, + 2, + 40, + 192, + 103, + 218, + 11, + 122, + 250, + 66, + 79, + 142, + 211, + 4, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 196, + 9, + 0, + 0, + 0, + 0, + 0, + 0, + 155, + 69, + 37, + 119, + 94, + 101, + 203, + 127, + 114, + 40, + 83, + 87, + 40, + 234, + 215, + 188, + 58, + 35, + 220, + 69, + 167, + 187, + 76, + 163, + 122, + 10, + 181, + 147, + 70, + 189, + 87, + 154, + 232, + 3, + 0, + 0, + 0, + 0, + 0, + 0, + 66, + 108, + 22, + 0, + 65, + 68, + 62, + 159, + 93, + 172, + 188, + 21, + 97, + 116, + 162, + 25, + 223, + 118, + 233, + 195, + 163, + 193, + 85, + 228, + 59, + 227, + 48, + 169, + 105, + 90, + 104, + 169, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 56, + 111, + 132, + 8, + 177, + 6, + 0, + 0, + 92, + 165, + 189, + 208, + 85, + 1, + 0, + 161, + 32, + 121, + 162, + 33, + 90, + 5, + 0, + 131, + 146, + 236, + 235, + 139, + 199, + 162, + 80, + 212, + 72, + 140, + 232, + 253, + 186, + 243, + 101, + 19, + 51, + 239, + 24, + 229, + 115, + 43, + 86, + 65, + 99, + 55, + 131, + 159, + 173, + 93, + 133, + 3, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 78, + 224, + 13, + 230, + 63, + 173, + 19, + 87, + 20, + 241, + 227, + 85, + 250, + 133, + 57, + 177, + 238, + 152, + 194, + 210, + 123, + 166, + 245, + 195, + 78, + 24, + 150, + 68, + 210, + 194, + 135, + 90, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 200, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 56, + 111, + 132, + 8, + 177, + 6, + 0, + 232, + 3, + 0, + 0, + 0, + 0, + 0, + 0, + 200, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 131, + 5, + 19, + 173, + 71, + 85, + 34, + 154, + 188, + 178, + 2, + 156, + 113, + 213, + 174, + 54, + 18, + 43, + 140, + 17, + 237, + 175, + 95, + 125, + 104, + 199, + 61, + 170, + 9, + 101, + 233, + 169, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 41, + 25, + 184, + 94, + 221, + 119, + 112, + 23, + 228, + 11, + 224, + 58, + 214, + 58, + 182, + 206, + 226, + 10, + 120, + 141, + 110, + 178, + 1, + 149, + 89, + 165, + 88, + 173, + 161, + 154, + 231, + 27, + 96, + 179, + 253, + 94, + 251, + 92, + 135, + 36, + 3, + 164, + 173, + 19, + 241, + 25, + 149, + 19, + 96, + 109, + 35, + 53, + 74, + 132, + 82, + 73, + 174, + 161, + 87, + 86, + 76, + 35, + 255, + 60, + 21, + 198, + 201, + 230, + 82, + 183, + 45, + 116, + 14, + 140, + 172, + 185, + 60, + 188, + 192, + 104, + 107, + 14, + 192, + 204, + 12, + 28, + 118, + 11, + 251, + 66, + 180, + 54, + 81, + 159, + 197, + 168, + 5, + 75, + 118, + 83, + 58, + 151, + 169, + 242, + 57, + 135, + 208, + 151, + 239, + 150, + 177, + 242, + 82, + 107, + 178, + 7, + 63, + 161, + 10, + 119, + 25, + 148, + 23, + 114, + 52, + 126, + 242, + 116, + 244, + 32, + 201, + 240, + 172, + 219, + 174, + 239, + 53, + 226, + 13, + 220, + 210, + 185, + 203, + 133, + 146, + 206, + 6, + 139, + 173, + 40, + 92, + 214, + 151, + 52, + 6, + 137, + 118, + 144, + 242, + 19, + 109, + 86, + 32, + 81, + 29, + 75, + 191, + 136, + 151, + 177, + 166, + 53, + 182, + 127, + 24, + 25, + 179, + 223, + 34, + 251, + 7, + 173, + 106, + 47, + 67, + 193, + 58, + 192, + 103, + 173, + 85, + 118, + 125, + 57, + 17, + 48, + 153, + 255, + 85, + 74, + 254, + 22, + 45, + 78, + 194, + 45, + 69, + 22, + 157, + 104, + 32, + 132, + 29, + 176, + 231, + 38, + 185, + 55, + 215, + 253, + 84, + 132, + 62, + 124, + 59, + 5, + 26, + 27, + 11, + 119, + 18, + 94, + 189, + 55, + 92, + 233, + 0, + 84, + 93, + 186, + 196, + 29, + 103, + 167, + 11, + 118, + 97, + 108, + 105, + 100, + 97, + 116, + 111, + 114, + 45, + 51, + 0, + 0, + 0, + 29, + 47, + 105, + 112, + 52, + 47, + 49, + 50, + 55, + 46, + 48, + 46, + 48, + 46, + 49, + 47, + 116, + 99, + 112, + 47, + 52, + 52, + 53, + 49, + 55, + 47, + 104, + 116, + 116, + 112, + 24, + 47, + 105, + 112, + 52, + 47, + 49, + 50, + 55, + 46, + 48, + 46, + 48, + 46, + 49, + 47, + 117, + 100, + 112, + 47, + 51, + 52, + 48, + 51, + 55, + 24, + 47, + 105, + 112, + 52, + 47, + 49, + 50, + 55, + 46, + 48, + 46, + 48, + 46, + 49, + 47, + 117, + 100, + 112, + 47, + 52, + 53, + 56, + 53, + 55, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 66, + 169, + 21, + 132, + 190, + 62, + 174, + 59, + 27, + 25, + 169, + 27, + 16, + 219, + 37, + 141, + 250, + 49, + 205, + 67, + 148, + 42, + 101, + 170, + 175, + 157, + 115, + 136, + 211, + 126, + 55, + 241, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 196, + 9, + 0, + 0, + 0, + 0, + 0, + 0, + 230, + 160, + 169, + 226, + 177, + 83, + 119, + 70, + 254, + 149, + 70, + 131, + 56, + 219, + 173, + 172, + 209, + 121, + 245, + 182, + 94, + 49, + 48, + 13, + 108, + 6, + 173, + 172, + 220, + 23, + 236, + 48, + 232, + 3, + 0, + 0, + 0, + 0, + 0, + 0, + 82, + 40, + 18, + 20, + 33, + 187, + 48, + 175, + 108, + 237, + 18, + 12, + 140, + 4, + 173, + 180, + 59, + 61, + 219, + 227, + 74, + 70, + 145, + 19, + 139, + 4, + 25, + 29, + 158, + 51, + 100, + 176, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 56, + 111, + 132, + 8, + 177, + 6, + 0, + 0, + 92, + 165, + 189, + 208, + 85, + 1, + 0, + 161, + 32, + 121, + 162, + 33, + 90, + 5, + 0, + 25, + 183, + 119, + 249, + 82, + 230, + 13, + 30, + 146, + 105, + 243, + 12, + 39, + 28, + 86, + 183, + 118, + 56, + 225, + 30, + 145, + 95, + 58, + 36, + 124, + 20, + 31, + 17, + 234, + 189, + 17, + 217, + 3, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 44, + 118, + 58, + 249, + 246, + 128, + 40, + 44, + 113, + 168, + 103, + 159, + 201, + 41, + 71, + 22, + 179, + 109, + 66, + 96, + 65, + 41, + 238, + 95, + 63, + 159, + 128, + 82, + 6, + 19, + 230, + 36, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 200, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 56, + 111, + 132, + 8, + 177, + 6, + 0, + 232, + 3, + 0, + 0, + 0, + 0, + 0, + 0, + 200, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 227, + 214, + 106, + 80, + 49, + 236, + 230, + 181, + 194, + 71, + 204, + 47, + 195, + 108, + 37, + 8, + 136, + 161, + 95, + 189, + 20, + 240, + 60, + 188, + 53, + 215, + 47, + 169, + 187, + 142, + 12, + 183, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 51, + 175, + 121, + 165, + 254, + 196, + 180, + 235, + 206, + 116, + 244, + 241, + 228, + 36, + 190, + 59, + 96, + 143, + 116, + 246, + 216, + 37, + 10, + 154, + 151, + 190, + 78, + 196, + 88, + 135, + 200, + 232, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 120, + 9, + 122, + 172, + 245, + 199, + 26, + 84, + 136, + 117, + 70, + 158, + 255, + 24, + 211, + 244, + 197, + 162, + 129, + 243, + 195, + 40, + 145, + 83, + 186, + 142, + 252, + 225, + 90, + 228, + 10, + 22, + 4, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 52, + 218, + 54, + 70, + 39, + 183, + 172, + 251, + 39, + 110, + 165, + 191, + 110, + 18, + 214, + 133, + 142, + 58, + 2, + 129, + 211, + 233, + 105, + 29, + 227, + 196, + 74, + 133, + 165, + 252, + 30, + 31, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 30, + 14, + 118, + 33, + 118, + 50, + 37, + 105, + 218, + 145, + 149, + 140, + 58, + 51, + 117, + 227, + 59, + 70, + 65, + 100, + 117, + 18, + 195, + 168, + 46, + 87, + 3, + 3, + 152, + 147, + 232, + 163, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 125, + 137, + 139, + 51, + 202, + 91, + 166, + 12, + 15, + 75, + 138, + 98, + 249, + 0, + 8, + 119, + 3, + 153, + 33, + 231, + 43, + 31, + 82, + 19, + 144, + 211, + 94, + 36, + 188, + 80, + 170, + 27, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 96, + 234, + 0, + 0, + 0, + 0, + 0, + 0, + 4, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 150, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 141, + 73, + 253, + 26, + 7, + 0, + 0, + 192, + 41, + 247, + 61, + 84, + 5, + 0, + 0, + 128, + 198, + 164, + 126, + 141, + 3, + 0, + 7, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 79, + 17, + 167, + 207, + 224, + 118, + 62, + 44, + 178, + 174, + 165, + 143, + 18, + 121, + 59, + 240, + 243, + 203, + 209, + 186, + 63, + 64, + 104, + 6, + 206, + 83, + 237, + 242, + 44, + 248, + 198, + 158, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 232, + 3, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 110, + 189, + 213, + 12, + 147, + 1, + 0, + 0, + 106, + 236, + 253, + 115, + 168, + 184, + 12, + 164, + 172, + 208, + 106, + 220, + 69, + 24, + 89, + 198, + 2, + 213, + 236, + 72, + 90, + 211, + 34, + 72, + 153, + 83, + 221, + 101, + 158, + 252, + 168, + 143, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + } + }, + "owner": { + "ObjectOwner": "0x0000000000000000000000000000000000000000000000000000000000000005" + }, + "previous_transaction": "99opjMtEQQnYWw48gQLkHazPoKU4yUkZ15rC92L12XGy", + "storage_rebate": 0 + }, + { + "data": { + "Move": { + "type_": { + "Other": { + "address": "0000000000000000000000000000000000000000000000000000000000000002", + "module": "dynamic_field", + "name": "Field", + "type_args": [ + "u64", + { + "struct": { + "address": "0000000000000000000000000000000000000000000000000000000000000003", + "module": "staking_pool", + "name": "PoolTokenExchangeRate", + "type_args": [] + } + } + ] + } + }, + "version": 3, + "contents": [ + 46, + 188, + 70, + 122, + 72, + 37, + 237, + 100, + 234, + 159, + 171, + 182, + 228, + 3, + 223, + 167, + 132, + 223, + 242, + 208, + 230, + 30, + 69, + 132, + 18, + 70, + 187, + 150, + 229, + 129, + 180, + 239, + 2, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 56, + 111, + 132, + 8, + 177, + 6, + 0, + 161, + 32, + 121, + 162, + 33, + 90, + 5, + 0 + ] + } + }, + "owner": { + "ObjectOwner": "0x8c95d95a13b79ed01819067ed1093f99db1cf958a83c445013c7b3592bdbcb98" + }, + "previous_transaction": "99opjMtEQQnYWw48gQLkHazPoKU4yUkZ15rC92L12XGy", + "storage_rebate": 0 + }, + { + "data": { + "Move": { + "type_": "StakedIota", + "version": 3, + "contents": [ + 80, + 124, + 170, + 133, + 207, + 126, + 206, + 197, + 237, + 51, + 100, + 174, + 195, + 52, + 12, + 81, + 46, + 116, + 173, + 187, + 93, + 33, + 164, + 151, + 96, + 132, + 196, + 175, + 102, + 120, + 98, + 69, + 82, + 40, + 18, + 20, + 33, + 187, + 48, + 175, + 108, + 237, + 18, + 12, + 140, + 4, + 173, + 180, + 59, + 61, + 219, + 227, + 74, + 70, + 145, + 19, + 139, + 4, + 25, + 29, + 158, + 51, + 100, + 176, + 2, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 14, + 208, + 231, + 124, + 3, + 0, + 0 + ] + } + }, + "owner": { + "AddressOwner": "0x2919b85edd777017e40be03ad63ab6cee20a788d6eb2019559a558ada19ae71b" + }, + "previous_transaction": "99opjMtEQQnYWw48gQLkHazPoKU4yUkZ15rC92L12XGy", + "storage_rebate": 0 + }, + { + "data": { + "Move": { + "type_": { + "Other": { + "address": "0000000000000000000000000000000000000000000000000000000000000002", + "module": "dynamic_field", + "name": "Field", + "type_args": [ + "u64", + { + "struct": { + "address": "0000000000000000000000000000000000000000000000000000000000000003", + "module": "staking_pool", + "name": "PoolTokenExchangeRate", + "type_args": [] + } + } + ] + } + }, + "version": 3, + "contents": [ + 113, + 66, + 78, + 208, + 115, + 18, + 26, + 25, + 17, + 243, + 104, + 116, + 3, + 105, + 155, + 35, + 137, + 171, + 3, + 101, + 160, + 247, + 248, + 195, + 124, + 198, + 208, + 53, + 203, + 218, + 64, + 151, + 2, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 56, + 111, + 132, + 8, + 177, + 6, + 0, + 161, + 32, + 121, + 162, + 33, + 90, + 5, + 0 + ] + } + }, + "owner": { + "ObjectOwner": "0x19b777f952e60d1e9269f30c271c56b77638e11e915f3a247c141f11eabd11d9" + }, + "previous_transaction": "99opjMtEQQnYWw48gQLkHazPoKU4yUkZ15rC92L12XGy", + "storage_rebate": 0 + }, + { + "data": { + "Move": { + "type_": "StakedIota", + "version": 3, + "contents": [ + 141, + 182, + 189, + 84, + 173, + 79, + 34, + 32, + 99, + 227, + 254, + 43, + 149, + 157, + 98, + 84, + 121, + 130, + 36, + 49, + 108, + 164, + 7, + 207, + 194, + 27, + 102, + 234, + 202, + 27, + 149, + 71, + 207, + 45, + 23, + 237, + 112, + 22, + 155, + 235, + 198, + 250, + 75, + 26, + 133, + 192, + 213, + 197, + 147, + 157, + 67, + 6, + 247, + 136, + 54, + 200, + 184, + 231, + 36, + 53, + 236, + 43, + 58, + 87, + 2, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 14, + 208, + 231, + 124, + 3, + 0, + 0 + ] + } + }, + "owner": { + "AddressOwner": "0xc0afe4713f5f894ab2d5696899cec27c8dd3ebcb8dd06811193f1cdd2f7458e3" + }, + "previous_transaction": "99opjMtEQQnYWw48gQLkHazPoKU4yUkZ15rC92L12XGy", + "storage_rebate": 0 + }, + { + "data": { + "Move": { + "type_": "StakedIota", + "version": 3, + "contents": [ + 143, + 195, + 174, + 21, + 29, + 140, + 217, + 5, + 136, + 15, + 225, + 42, + 112, + 77, + 124, + 82, + 190, + 244, + 116, + 246, + 134, + 212, + 117, + 177, + 237, + 14, + 4, + 19, + 233, + 71, + 118, + 28, + 205, + 23, + 237, + 101, + 196, + 223, + 165, + 144, + 73, + 40, + 152, + 156, + 38, + 172, + 6, + 187, + 80, + 131, + 252, + 156, + 198, + 105, + 210, + 20, + 227, + 192, + 121, + 85, + 126, + 84, + 209, + 174, + 2, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 14, + 208, + 231, + 124, + 3, + 0, + 0 + ] + } + }, + "owner": { + "AddressOwner": "0x43e8b5e5be1ac68e8ca24f3fa4e9a850fa2ef000f7fcc805243dde365ee94408" + }, + "previous_transaction": "99opjMtEQQnYWw48gQLkHazPoKU4yUkZ15rC92L12XGy", + "storage_rebate": 0 + }, + { + "data": { + "Move": { + "type_": { + "Other": { + "address": "0000000000000000000000000000000000000000000000000000000000000002", + "module": "dynamic_field", + "name": "Field", + "type_args": [ + "u64", + { + "struct": { + "address": "0000000000000000000000000000000000000000000000000000000000000003", + "module": "staking_pool", + "name": "PoolTokenExchangeRate", + "type_args": [] + } + } + ] + } + }, + "version": 3, + "contents": [ + 159, + 17, + 152, + 180, + 227, + 201, + 126, + 19, + 62, + 97, + 58, + 55, + 206, + 250, + 223, + 150, + 234, + 46, + 196, + 17, + 109, + 79, + 44, + 191, + 82, + 137, + 100, + 23, + 137, + 234, + 223, + 134, + 2, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 56, + 111, + 132, + 8, + 177, + 6, + 0, + 161, + 32, + 121, + 162, + 33, + 90, + 5, + 0 + ] + } + }, + "owner": { + "ObjectOwner": "0xdf3e1b495d7540f4d64bbc79acf8e256e2b9a52b53cc9d0e74295ddf153fcd08" + }, + "previous_transaction": "99opjMtEQQnYWw48gQLkHazPoKU4yUkZ15rC92L12XGy", + "storage_rebate": 0 + }, + { + "data": { + "Move": { + "type_": { + "Other": { + "address": "0000000000000000000000000000000000000000000000000000000000000002", + "module": "dynamic_field", + "name": "Field", + "type_args": [ + "u64", + { + "struct": { + "address": "0000000000000000000000000000000000000000000000000000000000000003", + "module": "staking_pool", + "name": "PoolTokenExchangeRate", + "type_args": [] + } + } + ] + } + }, + "version": 3, + "contents": [ + 176, + 144, + 78, + 206, + 29, + 214, + 63, + 87, + 163, + 23, + 234, + 196, + 204, + 227, + 161, + 74, + 246, + 138, + 20, + 49, + 17, + 9, + 242, + 181, + 134, + 213, + 202, + 197, + 148, + 7, + 89, + 205, + 2, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 56, + 111, + 132, + 8, + 177, + 6, + 0, + 161, + 32, + 121, + 162, + 33, + 90, + 5, + 0 + ] + } + }, + "owner": { + "ObjectOwner": "0x8392eceb8bc7a250d4488ce8fdbaf3651333ef18e5732b56416337839fad5d85" + }, + "previous_transaction": "99opjMtEQQnYWw48gQLkHazPoKU4yUkZ15rC92L12XGy", + "storage_rebate": 0 + }, + { + "data": { + "Move": { + "type_": "StakedIota", + "version": 3, + "contents": [ + 193, + 211, + 3, + 14, + 189, + 205, + 244, + 111, + 31, + 166, + 83, + 102, + 223, + 132, + 172, + 118, + 67, + 155, + 27, + 92, + 193, + 5, + 169, + 170, + 243, + 18, + 145, + 2, + 159, + 99, + 147, + 246, + 66, + 108, + 22, + 0, + 65, + 68, + 62, + 159, + 93, + 172, + 188, + 21, + 97, + 116, + 162, + 25, + 223, + 118, + 233, + 195, + 163, + 193, + 85, + 228, + 59, + 227, + 48, + 169, + 105, + 90, + 104, + 169, + 2, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 14, + 208, + 231, + 124, + 3, + 0, + 0 + ] + } + }, + "owner": { + "AddressOwner": "0xbee62a773a02ad22d9565589f6f2c344308f6d6f084e2539f51b04685e4c63d5" + }, + "previous_transaction": "99opjMtEQQnYWw48gQLkHazPoKU4yUkZ15rC92L12XGy", + "storage_rebate": 0 + } + ] + } + ] +} \ No newline at end of file diff --git a/crates/iota-light-client/example_config/788.chk b/crates/iota-light-client/example_config/788.chk new file mode 100644 index 0000000000000000000000000000000000000000..876019fa35a12aa3bd52b1b5c255f04e98ded5f4 GIT binary patch literal 14588 zcmeHN2|Scr|9@r}TT~3$8M0;>`@WRyWM2zIO!lP=Qi*H1$Pyt-#YM8bC`)83Su3Rw z6%}Pq%96T7-cg>pU2z}1|M%Yieeb7-&zzZa&U4Q1_dDO;@0{;B2M&CBXo{OV5Ak!c_cJ76gNb_yHLI3TQo%j+1gSW3qX z+`{bW0QRCqY7S{<#JvxzEkh=j`8|{gFnl!_v2D!#_Z_Ch6j)D9#u8ELtAgh0d9Jx= zSxogO;l|Jawx4#7aOD~Te1u80`!%s&!pz5#Dz_Avt=GOk$(}#Hg(44J$sN?6|KF4ZHk~(%e2H>*51)W z<}+=dZcZ%5kbC3EsNOG5J-t?|LlsLg_jqf~vVg8-hRHi2dz$`6T3*|uH}6WEthwII z81>S^P+7(`fePM$OAAukDUxJU$F!Z$QPK0aiH}om#qREVz8v2?jhMeLhzqQksg-_B z)N`AyPngL(dQSCv6uIb2440zil}4(ROt-;mR=4R#bHqHU!dHsQkUEG1W3*I4S7$I+ zs6u`n;uM%-?cBqk7ai+PM?#^We zx|Z7`MwLRitNhtTmgmP^i`kqv*4{Pt|gjFD?8 zsd6TTA7di@5s8yCxOZSjD2KpM} ztVPCvsZ&fzRd4_fto(m|BCaH~>Ra=4zp*Pe(I#edTa*>n3zdo8maqC0F*^52mRG?AuZ6!nc-p4?P%*q~@I36(Evy zOuxbm>01NmfR^ryeWB|Cs7=)Q!z$nO^jBDr0KPvI?W;maY~dk^8vK{x5_vKD;+UD; z`_>mq*Dy{K)dtHoidLRh4z~v-YUC)twD^t6Uv;$dl>{ccS`($96&5L^%~o;r=8FRV z^AFq)*)H=WH`oTAo0ZK=M9nULfdc*=7)tFmnPy=CUEd9{N--LbS&y_pUUOLxAO8IJS1$Zp_|Yfq*cJyzE>pBnvf!a zZtcHw;XyKsa*+eb64Tkb(rz`o`y|;?X$InG2 zNm4^MJ&DFr?(w^6$)?=g@gr%O*r>w4^IX+3=y}D z-*-LDdw8mhfs}wP7>ZF5)~{JzUE? z5yWS*FI?Y(d20=t4B%(HX7kL?i+*U!fLxDUMf*#NqcI+(uq4YIi=xc5QD&Hg1bHNH zW_dt;U&0ZcZPjmBA8y0Xkj%6d#X95CA9kI?cM=~~a2eML1X2cH%<;SRJiNtSBI)qQ zv{&7FS%OFHvHM|+m45R^BUEf>oM$O{SQtY6wk!7Ru4q@JZ9qtCBX>erh%(P9^g~S(jr)8rA)5dK zULBFAqPD+##H(3Gs3sToGs6xpU733<(SiyG+@J5finqyf@dS?lA_pO~3OzMpAS6*=whNv6jwJI74yWTR`}4GU)a zDOHfWZDHV2X98+(#-2qf?ZkI3c5 z6>wJH)jnl>ERAb2m!Q~J@wbG1b(Lsx@SPaC7xm9fY^CEX-0tlJW5Nc!q1-oQ@p|&qsmAoI zqeSztkTb6*qFS>I9%@F9EmhBAk>YO|hP?&M_Sj2@WE5G4;o%2cFDcCi98NeeK+w9qe$PN07!iJ6C59M8_cuLh(oqaGG*IP)Aiwp&=m{`lZY=y?s{4H*`bn=H=O$Vf zbeO{GyPFd(>?QdSA$9B8D3|1G0XcIh2ZJjAJL|6EwgcFss+3_}SW9Pz%VO;J9dFFO zX*wi7D3b5I-zgs|fM7W@JqlcenyI zZ98(b6V_Sm!fzXRgskx;8aE}Y82-^0$`*&cJq8SCbNP+$3k!%5ev z`gIo3MuR}TMoD}K2F-t#5t1UUb^*>Tpx$80akNX`=HqqNFox*KVA&hbYD0@j66<48 z@+wd6I5xsNfq{3bY4VN&z(6fEXA=`Z3>EbM^qqB7lTs){cAe3on7M-~=j|4o8_{Nz zrpRJ`xf8+->^*k|QAqh*YahAV8wkJg>oj&Ja8A2LHLRb=L}~IRTvpd$R2GT6#(IQR z#J7Fu5yKmKa}&c6qD$?=i}-D=!@MPp!%rNFpGM!E9d0w?r#Le;eCina7Q)mhB#O5u zE85vh0xc>gEi8in6Gh|fz0eY3k|L65Cmha;VNI!z!%C@`r1ZK4_*TSMhv;VES?gW8 zV_wX(2+hY8z3?=(Ce5xAsfybEW{#i9GaiCq0jJTDso;n%J0rI0MoAtj1!fd*p|!LTSE z8YH#qjVgW8?lQXgt{Rlhf#B?nrHJ}BA-(66>VcM`U`P2xxwkQ+Wn{Y1Lq4`5N#}LP zIU|w1D&-$6U)(VE=N0fW$=NyjGkpLeb+~z!F@ZF<4Yy<>q;Tw)MsGVi=LwTmz0p8V~+57;eIXM;Q8 zX5a{b7(Em%b?;_xv)#@Xw$X$9KYMuFwXqr!?UEBp;V=mD_4Wiu7>ZCqV-#w;0ScoE z$ei56T1Dyeu*h4va1yTZ(>!r!E?D0ti7C@&ht1A|nt@mZeFfA2%r73?uY5F0r*rH! z-zUYWi{X|AdzOV;1GRjz{j<;WP;A_lQ;ykX0m?#GtywIG5iZ&7 zdaSJlPC^53c`^;-PNGhRQ_*=;2smho@#e5;ncJ{MchU<`zRFO%bKmLV!l<%HaP3Xv zUc00l2t86S4%Gp9-h=tRZ(S2vdnk4422dZbxvFqHzrIu4t5vS2MWA{D`4vXRHo~Zs z^dH1gaal1b*>&S6KK@FtnzqA5f#tEekDv*9L?N6+yqJGl1ZDH&W7;)Ahtj(ZiLYg1hPoOlryci6n_42cd-Os&gYEx#W^$MIZxXSwH7T(jpi1-kWmujzy-v0kYI0smrF?pLPi8H3+Hg zxZs2eWxX=WQziXq$s|q^D)%#8WW+xxg<7DVsuP27boxO~AoqU)seG&lla93A;3 z|7D4>pZcdH^$?l9qQVaUxe6Om5h^#5qQa;2uSGzNLTyk$V-#vr9txv^zH;;LgZKmw z=Q(EF=GWL!=B{G9hyM*mIU~r31UbS5Y6gYT!5$X_(bpqa8#L~s8{N3cA~G>`v{MST zl8?~&HL;YHU_0WM{c}Dwl~1(e-c1j2U6;2#jeGx?n<6dwx?Yn-_^mOp9&nWWSm9hN zlSzb+dipX$*SqGdpJp5R;*G0g7hmijqSyh(1&LlMb>7OtkGvi^H#}&1!eZs%KXr{e zvko?Chvh7?v4ah=ZT02w72|g9jZcb}6ZaXESKs5{L(`ZiY)(X!k}#GH)&l|}qr~qV zxJ0>4=hVS@fXt65m19(Z-3S@iWy4i#P{2&6xaN!Pt1lU#U}p*CFQ*(2>#lVPG|-M4IyL0 zFCKN>pKs2%yk7FoyGD7j@PW%yH3rKTc=v0~{au`zsm9N+>5F-%!3Ms98JP9E6tQWx z1$CGP0DnvfLF4iLuK#a;tV0N)Zf$(q$Obuo0U-p{+&m!!{TLi7Foh(94+1ghIcEW2 zmFfQ=gd0o}{|G|3x-$z<9A&A(-);eSXrTxp2*(W^0{Cu1xGD!2vB1gW2O<1H2*J~X zwHSpWgisj$ZbG;LMt=~(AB1otj6xAYD2#qLA>06?KM3IuLbwq|p$H)qM!%a7Zh+Ar zgz#@f2*InU|2;yuX|@Fi0cQYp(GhAh1f)O!c*6*4zYF>v=|&6QwfX-kC8We3&aPa= z!gzUly3rZnKTJGbu^wti?VapA9I-|#XP}^cWT5V767*m7IB<0jc`>>>>>> 1a2e8e4dbea24aa59f8c9898c734bff5a3b1133a + - 528 + - 788 diff --git a/crates/iota-light-client/src/bin/light_client.rs b/crates/iota-light-client/src/bin/light_client.rs index 3945b95c76d..64f6f97df0b 100644 --- a/crates/iota-light-client/src/bin/light_client.rs +++ b/crates/iota-light-client/src/bin/light_client.rs @@ -157,7 +157,7 @@ mod tests { // to duplicate the code here. async fn read_data() -> (Committee, CheckpointData) { let mut d = PathBuf::from(env!("CARGO_MANIFEST_DIR")); - d.push("example_config/550.json"); + d.push("example_config/528.json"); let checkpoint: Envelope> = serde_json::from_reader(&fs::File::open(&d).unwrap()) @@ -180,7 +180,7 @@ mod tests { let committee = Committee::new(checkpoint.epoch().checked_add(1).unwrap(), prev_committee); let mut d = PathBuf::from(env!("CARGO_MANIFEST_DIR")); - d.push("example_config/826.chk"); + d.push("example_config/788.chk"); let full_checkpoint = read_full_checkpoint(&d).await.unwrap(); From cb1ffddd907f88c041f62a8c4112a3ee73bd4919 Mon Sep 17 00:00:00 2001 From: muXxer Date: Sat, 9 Nov 2024 18:46:38 +0100 Subject: [PATCH 20/25] fix(e2e-tests): update `snapshit_tests__body_fn.snap` --- .../iota-e2e-tests/tests/snapshots/snapshot_tests__body_fn.snap | 2 ++ 1 file changed, 2 insertions(+) diff --git a/crates/iota-e2e-tests/tests/snapshots/snapshot_tests__body_fn.snap b/crates/iota-e2e-tests/tests/snapshots/snapshot_tests__body_fn.snap index c81be41bf3b..90e0d1468c9 100644 --- a/crates/iota-e2e-tests/tests/snapshots/snapshot_tests__body_fn.snap +++ b/crates/iota-e2e-tests/tests/snapshots/snapshot_tests__body_fn.snap @@ -1,6 +1,7 @@ --- source: crates/iota-e2e-tests/tests/snapshot_tests.rs expression: "run_one(cmds, context).await?" +snapshot_kind: text --- [ "iota client objects {ME}", @@ -290,6 +291,7 @@ expression: "run_one(cmds, context).await?" "executedEpoch": "0", "gasUsed": { "computationCost": "0", + "computationCostBurned": "0", "storageCost": "0", "storageRebate": "0", "nonRefundableStorageFee": "0" From 1f15ecebf7d17771f21e76d67edcf4c48519ad2e Mon Sep 17 00:00:00 2001 From: muXxer Date: Sun, 10 Nov 2024 21:23:27 +0100 Subject: [PATCH 21/25] fix(sdk): add missing field `computationCostBurned` to bcs effects --- sdk/typescript/src/bcs/effects.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/sdk/typescript/src/bcs/effects.ts b/sdk/typescript/src/bcs/effects.ts index bb9f23c37c0..6bd42a4ac09 100644 --- a/sdk/typescript/src/bcs/effects.ts +++ b/sdk/typescript/src/bcs/effects.ts @@ -118,6 +118,7 @@ const ExecutionStatus = bcs.enum('ExecutionStatus', { const GasCostSummary = bcs.struct('GasCostSummary', { computationCost: bcs.u64(), + computationCostBurned: bcs.u64(), storageCost: bcs.u64(), storageRebate: bcs.u64(), nonRefundableStorageFee: bcs.u64(), From afe08dcf2535c597da3464baafddce1ff31b4c35 Mon Sep 17 00:00:00 2001 From: muXxer Date: Mon, 11 Nov 2024 09:28:22 +0100 Subject: [PATCH 22/25] feat(analytics-indexer): add field `computation_cost_burned` --- .../iota-analytics-indexer/src/handlers/checkpoint_handler.rs | 1 + .../src/handlers/transaction_handler.rs | 1 + .../src/store/bq/schemas/checkpoint.sql | 1 + .../src/store/bq/schemas/transaction.sql | 1 + .../src/store/snowflake/schemas/checkpoint.sql | 2 ++ .../src/store/snowflake/schemas/transaction.sql | 4 +++- crates/iota-analytics-indexer/src/tables.rs | 2 ++ 7 files changed, 11 insertions(+), 1 deletion(-) diff --git a/crates/iota-analytics-indexer/src/handlers/checkpoint_handler.rs b/crates/iota-analytics-indexer/src/handlers/checkpoint_handler.rs index 13f4ab16f47..cfb5cda849f 100644 --- a/crates/iota-analytics-indexer/src/handlers/checkpoint_handler.rs +++ b/crates/iota-analytics-indexer/src/handlers/checkpoint_handler.rs @@ -104,6 +104,7 @@ impl CheckpointHandler { end_of_epoch: end_of_epoch_data.is_some(), total_gas_cost, computation_cost: epoch_rolling_gas_cost_summary.computation_cost, + computation_cost_burned: epoch_rolling_gas_cost_summary.computation_cost_burned, storage_cost: epoch_rolling_gas_cost_summary.storage_cost, storage_rebate: epoch_rolling_gas_cost_summary.storage_rebate, non_refundable_storage_fee: epoch_rolling_gas_cost_summary.non_refundable_storage_fee, diff --git a/crates/iota-analytics-indexer/src/handlers/transaction_handler.rs b/crates/iota-analytics-indexer/src/handlers/transaction_handler.rs index d1718b6ee77..3ba581b5739 100644 --- a/crates/iota-analytics-indexer/src/handlers/transaction_handler.rs +++ b/crates/iota-analytics-indexer/src/handlers/transaction_handler.rs @@ -174,6 +174,7 @@ impl TransactionHandler { gas_budget: txn_data.gas_budget(), total_gas_cost: gas_summary.net_gas_usage(), computation_cost: gas_summary.computation_cost, + computation_cost_burned: gas_summary.computation_cost_burned, storage_cost: gas_summary.storage_cost, storage_rebate: gas_summary.storage_rebate, non_refundable_storage_fee: gas_summary.non_refundable_storage_fee, diff --git a/crates/iota-analytics-indexer/src/store/bq/schemas/checkpoint.sql b/crates/iota-analytics-indexer/src/store/bq/schemas/checkpoint.sql index de6aa5a7009..a463d845874 100644 --- a/crates/iota-analytics-indexer/src/store/bq/schemas/checkpoint.sql +++ b/crates/iota-analytics-indexer/src/store/bq/schemas/checkpoint.sql @@ -9,6 +9,7 @@ CREATE TABLE IF NOT EXISTS chaindata.CHECKPOINT end_of_epoch BOOL NOT NULL, total_gas_cost NUMERIC(20, 0) NOT NULL, computation_cost NUMERIC(20, 0) NOT NULL, + computation_cost_burned NUMERIC(20, 0) NOT NULL, storage_cost NUMERIC(20, 0) NOT NULL, storage_rebate NUMERIC(20, 0) NOT NULL, non_refundable_storage_fee NUMERIC(20, 0) NOT NULL, diff --git a/crates/iota-analytics-indexer/src/store/bq/schemas/transaction.sql b/crates/iota-analytics-indexer/src/store/bq/schemas/transaction.sql index a716ad26dc1..ff5059dbe56 100644 --- a/crates/iota-analytics-indexer/src/store/bq/schemas/transaction.sql +++ b/crates/iota-analytics-indexer/src/store/bq/schemas/transaction.sql @@ -31,6 +31,7 @@ CREATE TABLE IF NOT EXISTS chaindata.TRANSACTION gas_budget NUMERIC(20, 0) NOT NULL, total_gas_cost NUMERIC(20, 0) NOT NULL, computation_cost NUMERIC(20, 0) NOT NULL, + computation_cost_burned NUMERIC(20, 0) NOT NULL, storage_cost NUMERIC(20, 0) NOT NULL, storage_rebate NUMERIC(20, 0) NOT NULL, non_refundable_storage_fee NUMERIC(20, 0) NOT NULL, diff --git a/crates/iota-analytics-indexer/src/store/snowflake/schemas/checkpoint.sql b/crates/iota-analytics-indexer/src/store/snowflake/schemas/checkpoint.sql index f575ab1a3ea..4d338bf5bf9 100644 --- a/crates/iota-analytics-indexer/src/store/snowflake/schemas/checkpoint.sql +++ b/crates/iota-analytics-indexer/src/store/snowflake/schemas/checkpoint.sql @@ -12,6 +12,7 @@ CREATE end_of_epoch BOOLEAN NOT NULL, total_gas_cost NUMBER(20, 0) NOT NULL, computation_cost NUMBER(20, 0) NOT NULL, + computation_cost_burned NUMBER(20, 0) NOT NULL, storage_cost NUMBER(20, 0) NOT NULL, storage_rebate NUMBER(20, 0) NOT NULL, non_refundable_storage_fee NUMBER(20, 0) NOT NULL, @@ -57,6 +58,7 @@ CREATE t.$1:end_of_epoch as end_of_epoch, t.$1:total_gas_cost as total_gas_cost, t.$1:computation_cost as computation_cost, + t.$1:computation_cost_burned as computation_cost_burned, t.$1:storage_cost as storage_cost, t.$1:storage_rebate as storage_rebate, t.$1:non_refundable_storage_fee as non_refundable_storage_fee, diff --git a/crates/iota-analytics-indexer/src/store/snowflake/schemas/transaction.sql b/crates/iota-analytics-indexer/src/store/snowflake/schemas/transaction.sql index ce963c754ff..2de09772c91 100644 --- a/crates/iota-analytics-indexer/src/store/snowflake/schemas/transaction.sql +++ b/crates/iota-analytics-indexer/src/store/snowflake/schemas/transaction.sql @@ -31,6 +31,7 @@ CREATE OR REPLACE TABLE TRANSACTION gas_budget NUMBER(20, 0) NOT NULL, total_gas_cost NUMBER(20, 0) NOT NULL, computation_cost NUMBER(20, 0) NOT NULL, + computation_cost_burned NUMBER(20, 0) NOT NULL, storage_cost NUMBER(20, 0) NOT NULL, storage_rebate NUMBER(20, 0) NOT NULL, non_refundable_storage_fee NUMBER(20, 0) NOT NULL, @@ -66,7 +67,7 @@ CREATE input, shared_input, gas_coins, created, mutated, deleted, transfers, split_coins, merge_coins, publish, upgrade, others, move_calls, packages, gas_owner, gas_object_id, gas_object_sequence, gas_object_digest, - gas_budget, total_gas_cost, computation_cost, storage_cost, storage_rebate, + gas_budget, total_gas_cost, computation_cost, computation_cost_burned, storage_cost, storage_rebate, non_refundable_storage_fee, gas_price, raw_transaction, has_zklogin_sig, has_upgraded_multisig ) @@ -101,6 +102,7 @@ CREATE t.$1:gas_budget as gas_budget, t.$1:total_gas_cost as total_gas_cost, t.$1:computation_cost as computation_cost, + t.$1:computation_cost_burned as computation_cost_burned, t.$1:storage_cost as storage_cost, t.$1:storage_rebate as storage_rebate, t.$1:non_refundable_storage_fee as non_refundable_storage_fee, diff --git a/crates/iota-analytics-indexer/src/tables.rs b/crates/iota-analytics-indexer/src/tables.rs index f375bfbec59..9187820f94f 100644 --- a/crates/iota-analytics-indexer/src/tables.rs +++ b/crates/iota-analytics-indexer/src/tables.rs @@ -29,6 +29,7 @@ pub(crate) struct CheckpointEntry { // gas stats pub(crate) total_gas_cost: i64, pub(crate) computation_cost: u64, + pub(crate) computation_cost_burned: u64, pub(crate) storage_cost: u64, pub(crate) storage_rebate: u64, pub(crate) non_refundable_storage_fee: u64, @@ -87,6 +88,7 @@ pub(crate) struct TransactionEntry { pub(crate) gas_budget: u64, pub(crate) total_gas_cost: i64, pub(crate) computation_cost: u64, + pub(crate) computation_cost_burned: u64, pub(crate) storage_cost: u64, pub(crate) storage_rebate: u64, pub(crate) non_refundable_storage_fee: u64, From 42c4fdebb25be1e27a625d5e15f7e534bbf255d5 Mon Sep 17 00:00:00 2001 From: Levente Pap Date: Mon, 11 Nov 2024 11:54:11 +0100 Subject: [PATCH 23/25] fix(iota-graphql): update schema with gas_cost_burned field --- crates/iota-graphql-rpc/schema.graphql | 4 ++++ crates/iota-graphql-rpc/src/types/gas.rs | 5 +++++ .../tests/snapshots/snapshot_tests__schema_sdl_export.snap | 4 ++++ 3 files changed, 13 insertions(+) diff --git a/crates/iota-graphql-rpc/schema.graphql b/crates/iota-graphql-rpc/schema.graphql index de910c121ee..8821213b8ef 100644 --- a/crates/iota-graphql-rpc/schema.graphql +++ b/crates/iota-graphql-rpc/schema.graphql @@ -1385,6 +1385,10 @@ type GasCostSummary { """ computationCost: BigInt """ + Gas burned for executing this transactions (in NANOS). + """ + computationCostBurned: BigInt + """ Gas paid for the data stored on-chain by this transaction (in NANOS). """ storageCost: BigInt diff --git a/crates/iota-graphql-rpc/src/types/gas.rs b/crates/iota-graphql-rpc/src/types/gas.rs index f6f349781a1..7171cf843f6 100644 --- a/crates/iota-graphql-rpc/src/types/gas.rs +++ b/crates/iota-graphql-rpc/src/types/gas.rs @@ -111,6 +111,11 @@ impl GasCostSummary { Some(BigInt::from(self.computation_cost)) } + /// Gas burned for executing this transactions (in NANOS). + async fn computation_cost_burned(&self) -> Option { + Some(BigInt::from(self.computation_cost_burned)) + } + /// Gas paid for the data stored on-chain by this transaction (in NANOS). async fn storage_cost(&self) -> Option { Some(BigInt::from(self.storage_cost)) diff --git a/crates/iota-graphql-rpc/tests/snapshots/snapshot_tests__schema_sdl_export.snap b/crates/iota-graphql-rpc/tests/snapshots/snapshot_tests__schema_sdl_export.snap index 0aeeefd2ce1..b1c9a00a5ac 100644 --- a/crates/iota-graphql-rpc/tests/snapshots/snapshot_tests__schema_sdl_export.snap +++ b/crates/iota-graphql-rpc/tests/snapshots/snapshot_tests__schema_sdl_export.snap @@ -1389,6 +1389,10 @@ type GasCostSummary { """ computationCost: BigInt """ + Gas burned for executing this transactions (in NANOS). + """ + computationCostBurned: BigInt + """ Gas paid for the data stored on-chain by this transaction (in NANOS). """ storageCost: BigInt From f1044aa801abe3a2015577cecd635e9dc7b2af97 Mon Sep 17 00:00:00 2001 From: Mario Sarcevic Date: Mon, 11 Nov 2024 13:14:55 +0100 Subject: [PATCH 24/25] feat(ts-sdk): Sync TS SDK --- apps/explorer/.prettierignore | 2 ++ pnpm-workspace.yaml | 1 + .../hooks/useSignAndExecuteTransaction.test.tsx | 1 + sdk/graphql-transport/codegen.ts | 2 +- sdk/graphql-transport/src/generated/queries.ts | 14 ++++++++++---- sdk/graphql-transport/src/mappers/checkpint.ts | 1 + .../src/queries/checkpoint.graphql | 1 + .../src/queries/getLatestIotaSystemState.graphql | 1 + .../graphql/schemas/2024.10/package.json | 6 ------ .../graphql/schemas/2024.11/package.json | 6 ++++++ sdk/typescript/package.json | 6 +++--- sdk/typescript/scripts/update-graphql-schemas.ts | 2 +- sdk/typescript/src/client/types/generated.ts | 2 ++ .../generated/{2024.10 => 2024.11}/schema.graphql | 4 ++++ .../generated/{2024.10 => 2024.11}/tada-env.d.ts | 2 +- .../{2024.10 => 2024.11}/tsconfig.tada.json | 2 +- .../graphql/schemas/{2024.10 => 2024.11}/index.ts | 2 +- .../test/e2e/data/coin_metadata/Move.lock | 2 +- .../test/e2e/data/dynamic_fields/Move.lock | 2 +- .../test/e2e/data/id_entry_args/Move.lock | 2 +- sdk/typescript/test/e2e/data/serializer/Move.lock | 2 +- sdk/typescript/test/e2e/graphql.test.ts | 2 +- 22 files changed, 42 insertions(+), 23 deletions(-) create mode 100644 apps/explorer/.prettierignore delete mode 100644 sdk/typescript/graphql/schemas/2024.10/package.json create mode 100644 sdk/typescript/graphql/schemas/2024.11/package.json rename sdk/typescript/src/graphql/generated/{2024.10 => 2024.11}/schema.graphql (99%) rename sdk/typescript/src/graphql/generated/{2024.10 => 2024.11}/tada-env.d.ts (99%) rename sdk/typescript/src/graphql/generated/{2024.10 => 2024.11}/tsconfig.tada.json (92%) rename sdk/typescript/src/graphql/schemas/{2024.10 => 2024.11}/index.ts (89%) diff --git a/apps/explorer/.prettierignore b/apps/explorer/.prettierignore new file mode 100644 index 00000000000..11dd032b43b --- /dev/null +++ b/apps/explorer/.prettierignore @@ -0,0 +1,2 @@ +test-results/ + diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index 18f0d2ffae5..d172a3aa41f 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -21,3 +21,4 @@ packages: - "!sdk/typescript/utils" - "!sdk/typescript/verify" - "!sdk/move-bytecode-template/pkg" + - '!sdk/typescript/graphql/schemas/2024.11' diff --git a/sdk/dapp-kit/test/hooks/useSignAndExecuteTransaction.test.tsx b/sdk/dapp-kit/test/hooks/useSignAndExecuteTransaction.test.tsx index 5cf63eb64b7..eb53c0cd3b5 100644 --- a/sdk/dapp-kit/test/hooks/useSignAndExecuteTransaction.test.tsx +++ b/sdk/dapp-kit/test/hooks/useSignAndExecuteTransaction.test.tsx @@ -171,6 +171,7 @@ describe('useSignAndExecuteTransaction', () => { executedEpoch: 1, gasUsed: { computationCost: 1, + computationCostBurned: 1, storageCost: 1, storageRebate: 1, nonRefundableStorageFee: 1, diff --git a/sdk/graphql-transport/codegen.ts b/sdk/graphql-transport/codegen.ts index d2fea7132a3..2aa95545840 100644 --- a/sdk/graphql-transport/codegen.ts +++ b/sdk/graphql-transport/codegen.ts @@ -13,7 +13,7 @@ const header = ` const config: CodegenConfig = { overwrite: true, - schema: '../typescript/src/graphql/generated/2024.10/schema.graphql', + schema: '../typescript/src/graphql/generated/2024.11/schema.graphql', documents: ['src/queries/*.graphql'], ignoreNoDocuments: true, generates: { diff --git a/sdk/graphql-transport/src/generated/queries.ts b/sdk/graphql-transport/src/generated/queries.ts index 2e8d839e7ca..58466fbde89 100644 --- a/sdk/graphql-transport/src/generated/queries.ts +++ b/sdk/graphql-transport/src/generated/queries.ts @@ -1553,6 +1553,8 @@ export type GasCostSummary = { __typename?: 'GasCostSummary'; /** Gas paid for executing this transaction (in NANOS). */ computationCost?: Maybe; + /** Gas burned for executing this transactions (in NANOS). */ + computationCostBurned?: Maybe; /** * Part of storage cost that is not reclaimed when data created by this * transaction is cleaned up (in NANOS). @@ -5113,7 +5115,7 @@ export type GetCheckpointQueryVariables = Exact<{ }>; -export type GetCheckpointQuery = { __typename?: 'Query', checkpoint?: { __typename?: 'Checkpoint', digest: string, networkTotalTransactions?: any | null, previousCheckpointDigest?: string | null, sequenceNumber: any, timestamp: any, validatorSignatures: any, epoch?: { __typename?: 'Epoch', epochId: any } | null, rollingGasSummary?: { __typename?: 'GasCostSummary', computationCost?: any | null, storageCost?: any | null, storageRebate?: any | null, nonRefundableStorageFee?: any | null } | null, transactionBlocks: { __typename?: 'TransactionBlockConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'TransactionBlock', digest?: string | null }> }, endOfEpoch: { __typename?: 'TransactionBlockConnection', nodes: Array<{ __typename?: 'TransactionBlock', kind?: { __typename: 'AuthenticatorStateUpdateTransaction' } | { __typename: 'ConsensusCommitPrologueTransaction' } | { __typename: 'EndOfEpochTransaction', transactions: { __typename?: 'EndOfEpochTransactionKindConnection', nodes: Array<{ __typename: 'AuthenticatorStateCreateTransaction' } | { __typename: 'AuthenticatorStateExpireTransaction' } | { __typename: 'BridgeCommitteeInitTransaction' } | { __typename: 'BridgeStateCreateTransaction' } | { __typename: 'ChangeEpochTransaction', epoch?: { __typename?: 'Epoch', epochId: any, validatorSet?: { __typename?: 'ValidatorSet', activeValidators: { __typename?: 'ValidatorConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'Validator', votingPower?: number | null, credentials?: { __typename?: 'ValidatorCredentials', protocolPubKey?: any | null } | null }> } } | null, protocolConfigs: { __typename?: 'ProtocolConfigs', protocolVersion: any } } | null }> } } | { __typename: 'GenesisTransaction' } | { __typename: 'ProgrammableTransactionBlock' } | { __typename: 'RandomnessStateUpdateTransaction' } | null }> } } | null }; +export type GetCheckpointQuery = { __typename?: 'Query', checkpoint?: { __typename?: 'Checkpoint', digest: string, networkTotalTransactions?: any | null, previousCheckpointDigest?: string | null, sequenceNumber: any, timestamp: any, validatorSignatures: any, epoch?: { __typename?: 'Epoch', epochId: any } | null, rollingGasSummary?: { __typename?: 'GasCostSummary', computationCost?: any | null, computationCostBurned?: any | null, storageCost?: any | null, storageRebate?: any | null, nonRefundableStorageFee?: any | null } | null, transactionBlocks: { __typename?: 'TransactionBlockConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'TransactionBlock', digest?: string | null }> }, endOfEpoch: { __typename?: 'TransactionBlockConnection', nodes: Array<{ __typename?: 'TransactionBlock', kind?: { __typename: 'AuthenticatorStateUpdateTransaction' } | { __typename: 'ConsensusCommitPrologueTransaction' } | { __typename: 'EndOfEpochTransaction', transactions: { __typename?: 'EndOfEpochTransactionKindConnection', nodes: Array<{ __typename: 'AuthenticatorStateCreateTransaction' } | { __typename: 'AuthenticatorStateExpireTransaction' } | { __typename: 'BridgeCommitteeInitTransaction' } | { __typename: 'BridgeStateCreateTransaction' } | { __typename: 'ChangeEpochTransaction', epoch?: { __typename?: 'Epoch', epochId: any, validatorSet?: { __typename?: 'ValidatorSet', activeValidators: { __typename?: 'ValidatorConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'Validator', votingPower?: number | null, credentials?: { __typename?: 'ValidatorCredentials', protocolPubKey?: any | null } | null }> } } | null, protocolConfigs: { __typename?: 'ProtocolConfigs', protocolVersion: any } } | null }> } } | { __typename: 'GenesisTransaction' } | { __typename: 'ProgrammableTransactionBlock' } | { __typename: 'RandomnessStateUpdateTransaction' } | null }> } } | null }; export type GetCheckpointsQueryVariables = Exact<{ first?: InputMaybe; @@ -5123,7 +5125,7 @@ export type GetCheckpointsQueryVariables = Exact<{ }>; -export type GetCheckpointsQuery = { __typename?: 'Query', checkpoints: { __typename?: 'CheckpointConnection', pageInfo: { __typename?: 'PageInfo', startCursor?: string | null, endCursor?: string | null, hasNextPage: boolean, hasPreviousPage: boolean }, nodes: Array<{ __typename?: 'Checkpoint', digest: string, networkTotalTransactions?: any | null, previousCheckpointDigest?: string | null, sequenceNumber: any, timestamp: any, validatorSignatures: any, epoch?: { __typename?: 'Epoch', epochId: any } | null, rollingGasSummary?: { __typename?: 'GasCostSummary', computationCost?: any | null, storageCost?: any | null, storageRebate?: any | null, nonRefundableStorageFee?: any | null } | null, transactionBlocks: { __typename?: 'TransactionBlockConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'TransactionBlock', digest?: string | null }> }, endOfEpoch: { __typename?: 'TransactionBlockConnection', nodes: Array<{ __typename?: 'TransactionBlock', kind?: { __typename: 'AuthenticatorStateUpdateTransaction' } | { __typename: 'ConsensusCommitPrologueTransaction' } | { __typename: 'EndOfEpochTransaction', transactions: { __typename?: 'EndOfEpochTransactionKindConnection', nodes: Array<{ __typename: 'AuthenticatorStateCreateTransaction' } | { __typename: 'AuthenticatorStateExpireTransaction' } | { __typename: 'BridgeCommitteeInitTransaction' } | { __typename: 'BridgeStateCreateTransaction' } | { __typename: 'ChangeEpochTransaction', epoch?: { __typename?: 'Epoch', epochId: any, validatorSet?: { __typename?: 'ValidatorSet', activeValidators: { __typename?: 'ValidatorConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'Validator', votingPower?: number | null, credentials?: { __typename?: 'ValidatorCredentials', protocolPubKey?: any | null } | null }> } } | null, protocolConfigs: { __typename?: 'ProtocolConfigs', protocolVersion: any } } | null }> } } | { __typename: 'GenesisTransaction' } | { __typename: 'ProgrammableTransactionBlock' } | { __typename: 'RandomnessStateUpdateTransaction' } | null }> } }> } }; +export type GetCheckpointsQuery = { __typename?: 'Query', checkpoints: { __typename?: 'CheckpointConnection', pageInfo: { __typename?: 'PageInfo', startCursor?: string | null, endCursor?: string | null, hasNextPage: boolean, hasPreviousPage: boolean }, nodes: Array<{ __typename?: 'Checkpoint', digest: string, networkTotalTransactions?: any | null, previousCheckpointDigest?: string | null, sequenceNumber: any, timestamp: any, validatorSignatures: any, epoch?: { __typename?: 'Epoch', epochId: any } | null, rollingGasSummary?: { __typename?: 'GasCostSummary', computationCost?: any | null, computationCostBurned?: any | null, storageCost?: any | null, storageRebate?: any | null, nonRefundableStorageFee?: any | null } | null, transactionBlocks: { __typename?: 'TransactionBlockConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'TransactionBlock', digest?: string | null }> }, endOfEpoch: { __typename?: 'TransactionBlockConnection', nodes: Array<{ __typename?: 'TransactionBlock', kind?: { __typename: 'AuthenticatorStateUpdateTransaction' } | { __typename: 'ConsensusCommitPrologueTransaction' } | { __typename: 'EndOfEpochTransaction', transactions: { __typename?: 'EndOfEpochTransactionKindConnection', nodes: Array<{ __typename: 'AuthenticatorStateCreateTransaction' } | { __typename: 'AuthenticatorStateExpireTransaction' } | { __typename: 'BridgeCommitteeInitTransaction' } | { __typename: 'BridgeStateCreateTransaction' } | { __typename: 'ChangeEpochTransaction', epoch?: { __typename?: 'Epoch', epochId: any, validatorSet?: { __typename?: 'ValidatorSet', activeValidators: { __typename?: 'ValidatorConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'Validator', votingPower?: number | null, credentials?: { __typename?: 'ValidatorCredentials', protocolPubKey?: any | null } | null }> } } | null, protocolConfigs: { __typename?: 'ProtocolConfigs', protocolVersion: any } } | null }> } } | { __typename: 'GenesisTransaction' } | { __typename: 'ProgrammableTransactionBlock' } | { __typename: 'RandomnessStateUpdateTransaction' } | null }> } }> } }; export type PaginateCheckpointTransactionBlocksQueryVariables = Exact<{ id?: InputMaybe; @@ -5133,7 +5135,7 @@ export type PaginateCheckpointTransactionBlocksQueryVariables = Exact<{ export type PaginateCheckpointTransactionBlocksQuery = { __typename?: 'Query', checkpoint?: { __typename?: 'Checkpoint', transactionBlocks: { __typename?: 'TransactionBlockConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'TransactionBlock', digest?: string | null }> } } | null }; -export type Rpc_Checkpoint_FieldsFragment = { __typename?: 'Checkpoint', digest: string, networkTotalTransactions?: any | null, previousCheckpointDigest?: string | null, sequenceNumber: any, timestamp: any, validatorSignatures: any, epoch?: { __typename?: 'Epoch', epochId: any } | null, rollingGasSummary?: { __typename?: 'GasCostSummary', computationCost?: any | null, storageCost?: any | null, storageRebate?: any | null, nonRefundableStorageFee?: any | null } | null, transactionBlocks: { __typename?: 'TransactionBlockConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'TransactionBlock', digest?: string | null }> }, endOfEpoch: { __typename?: 'TransactionBlockConnection', nodes: Array<{ __typename?: 'TransactionBlock', kind?: { __typename: 'AuthenticatorStateUpdateTransaction' } | { __typename: 'ConsensusCommitPrologueTransaction' } | { __typename: 'EndOfEpochTransaction', transactions: { __typename?: 'EndOfEpochTransactionKindConnection', nodes: Array<{ __typename: 'AuthenticatorStateCreateTransaction' } | { __typename: 'AuthenticatorStateExpireTransaction' } | { __typename: 'BridgeCommitteeInitTransaction' } | { __typename: 'BridgeStateCreateTransaction' } | { __typename: 'ChangeEpochTransaction', epoch?: { __typename?: 'Epoch', epochId: any, validatorSet?: { __typename?: 'ValidatorSet', activeValidators: { __typename?: 'ValidatorConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'Validator', votingPower?: number | null, credentials?: { __typename?: 'ValidatorCredentials', protocolPubKey?: any | null } | null }> } } | null, protocolConfigs: { __typename?: 'ProtocolConfigs', protocolVersion: any } } | null }> } } | { __typename: 'GenesisTransaction' } | { __typename: 'ProgrammableTransactionBlock' } | { __typename: 'RandomnessStateUpdateTransaction' } | null }> } }; +export type Rpc_Checkpoint_FieldsFragment = { __typename?: 'Checkpoint', digest: string, networkTotalTransactions?: any | null, previousCheckpointDigest?: string | null, sequenceNumber: any, timestamp: any, validatorSignatures: any, epoch?: { __typename?: 'Epoch', epochId: any } | null, rollingGasSummary?: { __typename?: 'GasCostSummary', computationCost?: any | null, computationCostBurned?: any | null, storageCost?: any | null, storageRebate?: any | null, nonRefundableStorageFee?: any | null } | null, transactionBlocks: { __typename?: 'TransactionBlockConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'TransactionBlock', digest?: string | null }> }, endOfEpoch: { __typename?: 'TransactionBlockConnection', nodes: Array<{ __typename?: 'TransactionBlock', kind?: { __typename: 'AuthenticatorStateUpdateTransaction' } | { __typename: 'ConsensusCommitPrologueTransaction' } | { __typename: 'EndOfEpochTransaction', transactions: { __typename?: 'EndOfEpochTransactionKindConnection', nodes: Array<{ __typename: 'AuthenticatorStateCreateTransaction' } | { __typename: 'AuthenticatorStateExpireTransaction' } | { __typename: 'BridgeCommitteeInitTransaction' } | { __typename: 'BridgeStateCreateTransaction' } | { __typename: 'ChangeEpochTransaction', epoch?: { __typename?: 'Epoch', epochId: any, validatorSet?: { __typename?: 'ValidatorSet', activeValidators: { __typename?: 'ValidatorConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'Validator', votingPower?: number | null, credentials?: { __typename?: 'ValidatorCredentials', protocolPubKey?: any | null } | null }> } } | null, protocolConfigs: { __typename?: 'ProtocolConfigs', protocolVersion: any } } | null }> } } | { __typename: 'GenesisTransaction' } | { __typename: 'ProgrammableTransactionBlock' } | { __typename: 'RandomnessStateUpdateTransaction' } | null }> } }; export type DevInspectTransactionBlockQueryVariables = Exact<{ txBytes: Scalars['String']['input']; @@ -5275,7 +5277,7 @@ export type GetLatestCheckpointSequenceNumberQuery = { __typename?: 'Query', che export type GetLatestIotaSystemStateQueryVariables = Exact<{ [key: string]: never; }>; -export type GetLatestIotaSystemStateQuery = { __typename?: 'Query', epoch?: { __typename?: 'Epoch', epochId: any, startTimestamp: any, endTimestamp?: any | null, referenceGasPrice?: any | null, systemStateVersion?: any | null, iotaTotalSupply?: number | null, iotaTreasuryCapId?: any | null, safeMode?: { __typename?: 'SafeMode', enabled?: boolean | null, gasSummary?: { __typename?: 'GasCostSummary', computationCost?: any | null, nonRefundableStorageFee?: any | null, storageCost?: any | null, storageRebate?: any | null } | null } | null, storageFund?: { __typename?: 'StorageFund', nonRefundableBalance?: any | null, totalObjectStorageRebates?: any | null } | null, systemParameters?: { __typename?: 'SystemParameters', minValidatorCount?: number | null, maxValidatorCount?: number | null, minValidatorJoiningStake?: any | null, durationMs?: any | null, validatorLowStakeThreshold?: any | null, validatorLowStakeGracePeriod?: any | null, validatorVeryLowStakeThreshold?: any | null } | null, protocolConfigs: { __typename?: 'ProtocolConfigs', protocolVersion: any }, validatorSet?: { __typename?: 'ValidatorSet', inactivePoolsSize?: number | null, pendingActiveValidatorsSize?: number | null, stakingPoolMappingsSize?: number | null, validatorCandidatesSize?: number | null, pendingRemovals?: Array | null, totalStake?: any | null, stakingPoolMappingsId?: any | null, pendingActiveValidatorsId?: any | null, validatorCandidatesId?: any | null, inactivePoolsId?: any | null, activeValidators: { __typename?: 'ValidatorConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'Validator', atRisk?: any | null, commissionRate?: number | null, exchangeRatesSize?: any | null, description?: string | null, gasPrice?: any | null, imageUrl?: string | null, name?: string | null, nextEpochCommissionRate?: number | null, nextEpochGasPrice?: any | null, nextEpochStake?: any | null, pendingPoolTokenWithdraw?: any | null, pendingStake?: any | null, pendingTotalIotaWithdraw?: any | null, poolTokenBalance?: any | null, projectUrl?: string | null, rewardsPool?: any | null, stakingPoolActivationEpoch?: any | null, stakingPoolIotaBalance?: any | null, votingPower?: number | null, exchangeRates?: { __typename?: 'MoveObject', address: any, contents?: { __typename?: 'MoveValue', json: any } | null } | null, credentials?: { __typename?: 'ValidatorCredentials', netAddress?: string | null, networkPubKey?: any | null, p2PAddress?: string | null, primaryAddress?: string | null, authorityPubKey?: any | null, proofOfPossession?: any | null, protocolPubKey?: any | null } | null, nextEpochCredentials?: { __typename?: 'ValidatorCredentials', netAddress?: string | null, networkPubKey?: any | null, p2PAddress?: string | null, primaryAddress?: string | null, authorityPubKey?: any | null, proofOfPossession?: any | null, protocolPubKey?: any | null } | null, operationCap?: { __typename?: 'MoveObject', address: any } | null, stakingPool?: { __typename?: 'MoveObject', address: any } | null, address: { __typename?: 'Address', address: any } }> } } | null } | null }; +export type GetLatestIotaSystemStateQuery = { __typename?: 'Query', epoch?: { __typename?: 'Epoch', epochId: any, startTimestamp: any, endTimestamp?: any | null, referenceGasPrice?: any | null, systemStateVersion?: any | null, iotaTotalSupply?: number | null, iotaTreasuryCapId?: any | null, safeMode?: { __typename?: 'SafeMode', enabled?: boolean | null, gasSummary?: { __typename?: 'GasCostSummary', computationCost?: any | null, computationCostBurned?: any | null, nonRefundableStorageFee?: any | null, storageCost?: any | null, storageRebate?: any | null } | null } | null, storageFund?: { __typename?: 'StorageFund', nonRefundableBalance?: any | null, totalObjectStorageRebates?: any | null } | null, systemParameters?: { __typename?: 'SystemParameters', minValidatorCount?: number | null, maxValidatorCount?: number | null, minValidatorJoiningStake?: any | null, durationMs?: any | null, validatorLowStakeThreshold?: any | null, validatorLowStakeGracePeriod?: any | null, validatorVeryLowStakeThreshold?: any | null } | null, protocolConfigs: { __typename?: 'ProtocolConfigs', protocolVersion: any }, validatorSet?: { __typename?: 'ValidatorSet', inactivePoolsSize?: number | null, pendingActiveValidatorsSize?: number | null, stakingPoolMappingsSize?: number | null, validatorCandidatesSize?: number | null, pendingRemovals?: Array | null, totalStake?: any | null, stakingPoolMappingsId?: any | null, pendingActiveValidatorsId?: any | null, validatorCandidatesId?: any | null, inactivePoolsId?: any | null, activeValidators: { __typename?: 'ValidatorConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'Validator', atRisk?: any | null, commissionRate?: number | null, exchangeRatesSize?: any | null, description?: string | null, gasPrice?: any | null, imageUrl?: string | null, name?: string | null, nextEpochCommissionRate?: number | null, nextEpochGasPrice?: any | null, nextEpochStake?: any | null, pendingPoolTokenWithdraw?: any | null, pendingStake?: any | null, pendingTotalIotaWithdraw?: any | null, poolTokenBalance?: any | null, projectUrl?: string | null, rewardsPool?: any | null, stakingPoolActivationEpoch?: any | null, stakingPoolIotaBalance?: any | null, votingPower?: number | null, exchangeRates?: { __typename?: 'MoveObject', address: any, contents?: { __typename?: 'MoveValue', json: any } | null } | null, credentials?: { __typename?: 'ValidatorCredentials', netAddress?: string | null, networkPubKey?: any | null, p2PAddress?: string | null, primaryAddress?: string | null, authorityPubKey?: any | null, proofOfPossession?: any | null, protocolPubKey?: any | null } | null, nextEpochCredentials?: { __typename?: 'ValidatorCredentials', netAddress?: string | null, networkPubKey?: any | null, p2PAddress?: string | null, primaryAddress?: string | null, authorityPubKey?: any | null, proofOfPossession?: any | null, protocolPubKey?: any | null } | null, operationCap?: { __typename?: 'MoveObject', address: any } | null, stakingPool?: { __typename?: 'MoveObject', address: any } | null, address: { __typename?: 'Address', address: any } }> } } | null } | null }; export type GetMoveFunctionArgTypesQueryVariables = Exact<{ packageId: Scalars['IotaAddress']['input']; @@ -5565,6 +5567,7 @@ export const Rpc_Checkpoint_FieldsFragmentDoc = new TypedDocumentString(` } rollingGasSummary { computationCost + computationCostBurned storageCost storageRebate nonRefundableStorageFee @@ -6168,6 +6171,7 @@ export const GetCheckpointDocument = new TypedDocumentString(` } rollingGasSummary { computationCost + computationCostBurned storageCost storageRebate nonRefundableStorageFee @@ -6244,6 +6248,7 @@ export const GetCheckpointsDocument = new TypedDocumentString(` } rollingGasSummary { computationCost + computationCostBurned storageCost storageRebate nonRefundableStorageFee @@ -7018,6 +7023,7 @@ export const GetLatestIotaSystemStateDocument = new TypedDocumentString(` enabled gasSummary { computationCost + computationCostBurned nonRefundableStorageFee storageCost storageRebate diff --git a/sdk/graphql-transport/src/mappers/checkpint.ts b/sdk/graphql-transport/src/mappers/checkpint.ts index 12be9b8dd79..2c9324f6877 100644 --- a/sdk/graphql-transport/src/mappers/checkpint.ts +++ b/sdk/graphql-transport/src/mappers/checkpint.ts @@ -36,6 +36,7 @@ export function mapGraphQLCheckpointToRpcCheckpoint( epoch: String(checkpoint.epoch?.epochId), epochRollingGasCostSummary: { computationCost: checkpoint.rollingGasSummary?.computationCost, + computationCostBurned: checkpoint.rollingGasSummary?.computationCostBurned, nonRefundableStorageFee: checkpoint.rollingGasSummary?.nonRefundableStorageFee, storageCost: checkpoint.rollingGasSummary?.storageCost, storageRebate: checkpoint.rollingGasSummary?.storageRebate, diff --git a/sdk/graphql-transport/src/queries/checkpoint.graphql b/sdk/graphql-transport/src/queries/checkpoint.graphql index 2c8d0c0fbed..b2b510b8f27 100644 --- a/sdk/graphql-transport/src/queries/checkpoint.graphql +++ b/sdk/graphql-transport/src/queries/checkpoint.graphql @@ -45,6 +45,7 @@ fragment RPC_Checkpoint_Fields on Checkpoint { rollingGasSummary { computationCost + computationCostBurned storageCost storageRebate nonRefundableStorageFee diff --git a/sdk/graphql-transport/src/queries/getLatestIotaSystemState.graphql b/sdk/graphql-transport/src/queries/getLatestIotaSystemState.graphql index de314897b7b..ca9f6e84e00 100644 --- a/sdk/graphql-transport/src/queries/getLatestIotaSystemState.graphql +++ b/sdk/graphql-transport/src/queries/getLatestIotaSystemState.graphql @@ -12,6 +12,7 @@ query getLatestIotaSystemState { enabled gasSummary { computationCost + computationCostBurned nonRefundableStorageFee storageCost storageRebate diff --git a/sdk/typescript/graphql/schemas/2024.10/package.json b/sdk/typescript/graphql/schemas/2024.10/package.json deleted file mode 100644 index 0b7ecffb953..00000000000 --- a/sdk/typescript/graphql/schemas/2024.10/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "private": true, - "import": "../../../dist/esm/graphql/schemas/2024.10/index.js", - "main": "../../../dist/cjs/graphql/schemas/2024.10/index.js", - "sideEffects": false -} diff --git a/sdk/typescript/graphql/schemas/2024.11/package.json b/sdk/typescript/graphql/schemas/2024.11/package.json new file mode 100644 index 00000000000..ff34b7aa4ab --- /dev/null +++ b/sdk/typescript/graphql/schemas/2024.11/package.json @@ -0,0 +1,6 @@ +{ + "private": true, + "import": "../../../dist/esm/graphql/schemas/2024.11/index.js", + "main": "../../../dist/cjs/graphql/schemas/2024.11/index.js", + "sideEffects": false +} diff --git a/sdk/typescript/package.json b/sdk/typescript/package.json index 3d8528e80e8..a5a599c9de8 100644 --- a/sdk/typescript/package.json +++ b/sdk/typescript/package.json @@ -76,9 +76,9 @@ "import": "./dist/esm/verify/index.js", "require": "./dist/cjs/verify/index.js" }, - "./graphql/schemas/2024.10": { - "import": "./dist/esm/graphql/schemas/2024.10/index.js", - "require": "./dist/cjs/graphql/schemas/2024.10/index.js" + "./graphql/schemas/2024.11": { + "import": "./dist/esm/graphql/schemas/2024.11/index.js", + "require": "./dist/cjs/graphql/schemas/2024.11/index.js" } }, "scripts": { diff --git a/sdk/typescript/scripts/update-graphql-schemas.ts b/sdk/typescript/scripts/update-graphql-schemas.ts index 32f39183f80..17d1b1dc1d9 100644 --- a/sdk/typescript/scripts/update-graphql-schemas.ts +++ b/sdk/typescript/scripts/update-graphql-schemas.ts @@ -14,7 +14,7 @@ import { const BRANCH = 'develop'; const MAJOR = 2024; -const MINOR = 10; +const MINOR = 11; const PATCH = 0; const VERSION = `${MAJOR}.${MINOR}.${PATCH}`; diff --git a/sdk/typescript/src/client/types/generated.ts b/sdk/typescript/src/client/types/generated.ts index d4a177a6d2d..113119521fe 100644 --- a/sdk/typescript/src/client/types/generated.ts +++ b/sdk/typescript/src/client/types/generated.ts @@ -387,6 +387,8 @@ export type ExecutionStatus = { export interface GasCostSummary { /** Cost of computation/execution */ computationCost: string; + /** The burned component of the computation/execution costs */ + computationCostBurned: string; /** The fee for the rebate. The portion of the storage rebate kept by the system. */ nonRefundableStorageFee: string; /** Storage cost, it's the sum of all storage cost for all objects created or mutated. */ diff --git a/sdk/typescript/src/graphql/generated/2024.10/schema.graphql b/sdk/typescript/src/graphql/generated/2024.11/schema.graphql similarity index 99% rename from sdk/typescript/src/graphql/generated/2024.10/schema.graphql rename to sdk/typescript/src/graphql/generated/2024.11/schema.graphql index de910c121ee..8821213b8ef 100644 --- a/sdk/typescript/src/graphql/generated/2024.10/schema.graphql +++ b/sdk/typescript/src/graphql/generated/2024.11/schema.graphql @@ -1385,6 +1385,10 @@ type GasCostSummary { """ computationCost: BigInt """ + Gas burned for executing this transactions (in NANOS). + """ + computationCostBurned: BigInt + """ Gas paid for the data stored on-chain by this transaction (in NANOS). """ storageCost: BigInt diff --git a/sdk/typescript/src/graphql/generated/2024.10/tada-env.d.ts b/sdk/typescript/src/graphql/generated/2024.11/tada-env.d.ts similarity index 99% rename from sdk/typescript/src/graphql/generated/2024.10/tada-env.d.ts rename to sdk/typescript/src/graphql/generated/2024.11/tada-env.d.ts index a3f5a693c2b..a038600c4a9 100644 --- a/sdk/typescript/src/graphql/generated/2024.10/tada-env.d.ts +++ b/sdk/typescript/src/graphql/generated/2024.11/tada-env.d.ts @@ -61,7 +61,7 @@ export type introspection_types = { 'ExecutionStatus': { name: 'ExecutionStatus'; enumValues: 'SUCCESS' | 'FAILURE'; }; 'Feature': { name: 'Feature'; enumValues: 'ANALYTICS' | 'COINS' | 'DYNAMIC_FIELDS' | 'SUBSCRIPTIONS' | 'SYSTEM_STATE'; }; 'GasCoin': { kind: 'OBJECT'; name: 'GasCoin'; fields: { '_': { name: '_'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; }; }; - 'GasCostSummary': { kind: 'OBJECT'; name: 'GasCostSummary'; fields: { 'computationCost': { name: 'computationCost'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'nonRefundableStorageFee': { name: 'nonRefundableStorageFee'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'storageCost': { name: 'storageCost'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'storageRebate': { name: 'storageRebate'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; }; }; + 'GasCostSummary': { kind: 'OBJECT'; name: 'GasCostSummary'; fields: { 'computationCost': { name: 'computationCost'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'computationCostBurned': { name: 'computationCostBurned'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'nonRefundableStorageFee': { name: 'nonRefundableStorageFee'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'storageCost': { name: 'storageCost'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'storageRebate': { name: 'storageRebate'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; }; }; 'GasEffects': { kind: 'OBJECT'; name: 'GasEffects'; fields: { 'gasObject': { name: 'gasObject'; type: { kind: 'OBJECT'; name: 'Object'; ofType: null; } }; 'gasSummary': { name: 'gasSummary'; type: { kind: 'OBJECT'; name: 'GasCostSummary'; ofType: null; } }; }; }; 'GasInput': { kind: 'OBJECT'; name: 'GasInput'; fields: { 'gasBudget': { name: 'gasBudget'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'gasPayment': { name: 'gasPayment'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ObjectConnection'; ofType: null; }; } }; 'gasPrice': { name: 'gasPrice'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'gasSponsor': { name: 'gasSponsor'; type: { kind: 'OBJECT'; name: 'Address'; ofType: null; } }; }; }; 'GenesisTransaction': { kind: 'OBJECT'; name: 'GenesisTransaction'; fields: { 'events': { name: 'events'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'EventConnection'; ofType: null; }; } }; 'objects': { name: 'objects'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ObjectConnection'; ofType: null; }; } }; }; }; diff --git a/sdk/typescript/src/graphql/generated/2024.10/tsconfig.tada.json b/sdk/typescript/src/graphql/generated/2024.11/tsconfig.tada.json similarity index 92% rename from sdk/typescript/src/graphql/generated/2024.10/tsconfig.tada.json rename to sdk/typescript/src/graphql/generated/2024.11/tsconfig.tada.json index 1047b78a76c..579383dfe94 100644 --- a/sdk/typescript/src/graphql/generated/2024.10/tsconfig.tada.json +++ b/sdk/typescript/src/graphql/generated/2024.11/tsconfig.tada.json @@ -4,7 +4,7 @@ { "name": "gql.tada/ts-plugin", "schema": "./schema.graphql", - "tadaOutputLocation": "src/graphql/generated/2024.10/tada-env.d.ts" + "tadaOutputLocation": "src/graphql/generated/2024.11/tada-env.d.ts" } ] } diff --git a/sdk/typescript/src/graphql/schemas/2024.10/index.ts b/sdk/typescript/src/graphql/schemas/2024.11/index.ts similarity index 89% rename from sdk/typescript/src/graphql/schemas/2024.10/index.ts rename to sdk/typescript/src/graphql/schemas/2024.11/index.ts index 011468c8946..77b61fd7ef4 100644 --- a/sdk/typescript/src/graphql/schemas/2024.10/index.ts +++ b/sdk/typescript/src/graphql/schemas/2024.11/index.ts @@ -4,7 +4,7 @@ import { initGraphQLTada } from 'gql.tada'; -import type { introspection } from '../../generated/2024.10/tada-env.js'; +import type { introspection } from '../../generated/2024.11/tada-env.js'; import type { CustomScalars } from '../../types.js'; export * from '../../types.js'; diff --git a/sdk/typescript/test/e2e/data/coin_metadata/Move.lock b/sdk/typescript/test/e2e/data/coin_metadata/Move.lock index 9faf6ecafa8..3b38efe70c0 100644 --- a/sdk/typescript/test/e2e/data/coin_metadata/Move.lock +++ b/sdk/typescript/test/e2e/data/coin_metadata/Move.lock @@ -22,6 +22,6 @@ name = "MoveStdlib" source = { local = "../../../../../../crates/iota-framework/packages/move-stdlib" } [move.toolchain-version] -compiler-version = "0.4.0" +compiler-version = "0.6.0-alpha" edition = "2024.beta" flavor = "iota" diff --git a/sdk/typescript/test/e2e/data/dynamic_fields/Move.lock b/sdk/typescript/test/e2e/data/dynamic_fields/Move.lock index 46bfd89e306..c15e9c538e9 100644 --- a/sdk/typescript/test/e2e/data/dynamic_fields/Move.lock +++ b/sdk/typescript/test/e2e/data/dynamic_fields/Move.lock @@ -22,6 +22,6 @@ name = "MoveStdlib" source = { local = "../../../../../../crates/iota-framework/packages/move-stdlib" } [move.toolchain-version] -compiler-version = "0.4.0" +compiler-version = "0.6.0-alpha" edition = "2024.beta" flavor = "iota" diff --git a/sdk/typescript/test/e2e/data/id_entry_args/Move.lock b/sdk/typescript/test/e2e/data/id_entry_args/Move.lock index 16aa4bb802e..aa909902069 100644 --- a/sdk/typescript/test/e2e/data/id_entry_args/Move.lock +++ b/sdk/typescript/test/e2e/data/id_entry_args/Move.lock @@ -22,6 +22,6 @@ name = "MoveStdlib" source = { local = "../../../../../../crates/iota-framework/packages/move-stdlib" } [move.toolchain-version] -compiler-version = "0.4.0" +compiler-version = "0.6.0-alpha" edition = "2024.beta" flavor = "iota" diff --git a/sdk/typescript/test/e2e/data/serializer/Move.lock b/sdk/typescript/test/e2e/data/serializer/Move.lock index 9a2b509796f..e20626a9bb3 100644 --- a/sdk/typescript/test/e2e/data/serializer/Move.lock +++ b/sdk/typescript/test/e2e/data/serializer/Move.lock @@ -22,6 +22,6 @@ name = "MoveStdlib" source = { local = "../../../../../../crates/iota-framework/packages/move-stdlib" } [move.toolchain-version] -compiler-version = "0.4.0" +compiler-version = "0.6.0-alpha" edition = "2024.beta" flavor = "iota" diff --git a/sdk/typescript/test/e2e/graphql.test.ts b/sdk/typescript/test/e2e/graphql.test.ts index 61a5543d577..ba41e458e63 100644 --- a/sdk/typescript/test/e2e/graphql.test.ts +++ b/sdk/typescript/test/e2e/graphql.test.ts @@ -4,7 +4,7 @@ import { describe, expect, it } from 'vitest'; import { IotaGraphQLClient } from '../../src/graphql'; -import { graphql } from '../../src/graphql/schemas/2024.10'; +import { graphql } from '../../src/graphql/schemas/2024.11'; const queries = { getFirstTransactionBlock: graphql(` From 2bb867e435add21f1a27c9478cb8d5e181041b46 Mon Sep 17 00:00:00 2001 From: Mario Sarcevic Date: Mon, 11 Nov 2024 13:22:13 +0100 Subject: [PATCH 25/25] feat(ts-sdk): Fix pnpm-workspace.yaml + script --- pnpm-workspace.yaml | 3 +-- sdk/build-scripts/src/utils/buildPackage.ts | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index d172a3aa41f..58699ae570b 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -11,7 +11,6 @@ packages: - "!sdk/typescript/cryptography" - "!sdk/typescript/faucet" - "!sdk/typescript/graphql" - - "!sdk/typescript/graphql/schemas/2024.10" - "!sdk/typescript/keypairs/ed25519" - "!sdk/typescript/keypairs/secp256k1" - "!sdk/typescript/keypairs/secp256r1" @@ -21,4 +20,4 @@ packages: - "!sdk/typescript/utils" - "!sdk/typescript/verify" - "!sdk/move-bytecode-template/pkg" - - '!sdk/typescript/graphql/schemas/2024.11' + - "!sdk/typescript/graphql/schemas/2024.11" diff --git a/sdk/build-scripts/src/utils/buildPackage.ts b/sdk/build-scripts/src/utils/buildPackage.ts index b90113abb0a..006627c013e 100755 --- a/sdk/build-scripts/src/utils/buildPackage.ts +++ b/sdk/build-scripts/src/utils/buildPackage.ts @@ -230,7 +230,7 @@ async function addIgnoredWorkspaces(paths: string[]) { for (const path of paths) { if (!lines.find((line) => line.includes(`!${path}`))) { changed = true; - lines.push(` - '!${path}'`); + lines.push(` - "!${path}"`); } }