From bb45246ecf90d9119433ba6b4839cd9cd421cca0 Mon Sep 17 00:00:00 2001 From: Valentin Chaboche Date: Mon, 3 Oct 2022 17:16:28 +0200 Subject: [PATCH 01/36] Scoru,Proto: use [sc_rollups] as path when RPC is about rollups --- src/proto_alpha/lib_plugin/RPC.ml | 17 ++++++++++------- tezt/lib_tezos/RPC.ml | 4 ++-- tezt/lib_tezos/RPC.mli | 4 ++-- tezt/tests/RPC_test.ml | 4 ---- tezt/tests/sc_rollup.ml | 4 ++-- 5 files changed, 16 insertions(+), 17 deletions(-) diff --git a/src/proto_alpha/lib_plugin/RPC.ml b/src/proto_alpha/lib_plugin/RPC.ml index cfea4efa8702..78b69d35521c 100644 --- a/src/proto_alpha/lib_plugin/RPC.ml +++ b/src/proto_alpha/lib_plugin/RPC.ml @@ -1971,13 +1971,6 @@ module Sc_rollup = struct path /: Sc_rollup.Address.rpc_arg / "dal_slot_subscriptions" /: Raw_level.rpc_arg) - let root = - RPC_service.get_service - ~description:"List of all originated smart contract rollups" - ~query:RPC_query.empty - ~output:(Data_encoding.list Sc_rollup.Address.encoding) - path - let ongoing_refutation_game = let query = let open RPC_query in @@ -2070,6 +2063,16 @@ module Sc_rollup = struct ~query ~output RPC_path.(path /: Sc_rollup.Address.rpc_arg / "can_be_cemented") + + let path_sc_rollups : RPC_context.t RPC_path.context = + RPC_path.(open_root / "context" / "sc_rollups") + + let root = + RPC_service.get_service + ~description:"List of all originated smart contract rollups" + ~query:RPC_query.empty + ~output:(Data_encoding.list Sc_rollup.Address.encoding) + path_sc_rollups end let kind ctxt block sc_rollup_address = diff --git a/tezt/lib_tezos/RPC.ml b/tezt/lib_tezos/RPC.ml index c0bc5fed69ba..6f0448235c6b 100644 --- a/tezt/lib_tezos/RPC.ml +++ b/tezt/lib_tezos/RPC.ml @@ -720,8 +720,8 @@ let post_chain_block_context_contract_ticket_balance ?(chain = "main") ~data JSON.as_int -let get_chain_block_context_sc_rollup ?(chain = "main") ?(block = "head") () = - make GET ["chains"; chain; "blocks"; block; "context"; "sc_rollup"] Fun.id +let get_chain_block_context_sc_rollups ?(chain = "main") ?(block = "head") () = + make GET ["chains"; chain; "blocks"; block; "context"; "sc_rollups"] Fun.id let get_chain_block_context_sc_rollup_inbox ?(chain = "main") ?(block = "head") sc_rollup = diff --git a/tezt/lib_tezos/RPC.mli b/tezt/lib_tezos/RPC.mli index e0b687151302..30523002b40a 100644 --- a/tezt/lib_tezos/RPC.mli +++ b/tezt/lib_tezos/RPC.mli @@ -738,8 +738,8 @@ val post_chain_block_context_contract_ticket_balance : (** {2 Smart contract rollup RPC module} *) -(** RPC: [GET chains//blocks//context/sc_rollup] *) -val get_chain_block_context_sc_rollup : +(** RPC: [GET chains//blocks//context/sc_rollups] *) +val get_chain_block_context_sc_rollups : ?chain:string -> ?block:string -> unit -> JSON.t t (** RPC: [GET chains//blocks//context/sc_rollup//inbox] *) diff --git a/tezt/tests/RPC_test.ml b/tezt/tests/RPC_test.ml index 679480337c7a..e827892ba213 100644 --- a/tezt/tests/RPC_test.ml +++ b/tezt/tests/RPC_test.ml @@ -1009,10 +1009,6 @@ let test_chain _test_mode_tag _protocol ?endpoint client = RPC.Client.call ?endpoint client @@ RPC.get_chain_block_context_nonce block_level in - let* _ = - (* Calls [/chains/main/blocks/head/context/sc_rollup] *) - RPC.Client.call ?endpoint client @@ RPC.get_chain_block_context_sc_rollup () - in let* _ = (* Calls [/chains/main/blocks/head/context/raw/bytes] *) RPC.Client.call ?endpoint client diff --git a/tezt/tests/sc_rollup.ml b/tezt/tests/sc_rollup.ml index 7970960310db..47e084b67054 100644 --- a/tezt/tests/sc_rollup.ml +++ b/tezt/tests/sc_rollup.ml @@ -926,7 +926,7 @@ let test_rollup_list ~kind = let open Lwt.Syntax in let go node client bootstrap1 = let* rollups = - RPC.Client.call client @@ RPC.get_chain_block_context_sc_rollup () + RPC.Client.call client @@ RPC.get_chain_block_context_sc_rollups () in let rollups = JSON.as_list rollups in let () = @@ -942,7 +942,7 @@ let test_rollup_list ~kind = (fun scoru_addresses -> let* () = Client.bake_for_and_wait client in let+ rollups = - RPC.Client.call client @@ RPC.get_chain_block_context_sc_rollup () + RPC.Client.call client @@ RPC.get_chain_block_context_sc_rollups () in let rollups = JSON.as_list rollups |> List.map JSON.as_string |> String_set.of_list -- GitLab From 2801fdc73f3e13a2224f0c2a13ad0cd5004460de Mon Sep 17 00:00:00 2001 From: Valentin Chaboche Date: Mon, 3 Oct 2022 17:36:33 +0200 Subject: [PATCH 02/36] Scoru,Proto: remove field [rollup] from [Inbox.t] --- src/proto_alpha/bin_sc_rollup_node/inbox.ml | 5 +--- .../sc_rollup_benchmarks.ml | 1 - .../lib_protocol/alpha_context.mli | 2 +- .../lib_protocol/sc_rollup_inbox_repr.ml | 30 +++++-------------- .../lib_protocol/sc_rollup_inbox_repr.mli | 2 +- .../lib_protocol/sc_rollup_storage.ml | 5 +--- .../test/pbt/test_refutation_game.ml | 11 +++---- .../test/pbt/test_sc_rollup_encoding.ml | 16 ++++------ .../test/unit/test_sc_rollup_game.ml | 2 +- .../test/unit/test_sc_rollup_inbox.ml | 14 ++++----- 10 files changed, 28 insertions(+), 60 deletions(-) diff --git a/src/proto_alpha/bin_sc_rollup_node/inbox.ml b/src/proto_alpha/bin_sc_rollup_node/inbox.ml index 6337a46e43ad..dc3e196f169d 100644 --- a/src/proto_alpha/bin_sc_rollup_node/inbox.ml +++ b/src/proto_alpha/bin_sc_rollup_node/inbox.ml @@ -59,10 +59,7 @@ module State = struct let genesis_level = Raw_level.to_int32 node_ctxt.genesis_info.level in if block_level <= genesis_level then let*! inbox = - Context.Inbox.empty - node_ctxt.context - node_ctxt.rollup_address - node_ctxt.genesis_info.level + Context.Inbox.empty node_ctxt.context node_ctxt.genesis_info.level in return inbox else diff --git a/src/proto_alpha/lib_benchmarks_proto/sc_rollup_benchmarks.ml b/src/proto_alpha/lib_benchmarks_proto/sc_rollup_benchmarks.ml index 30cdec2015a6..681dea29cdd2 100644 --- a/src/proto_alpha/lib_benchmarks_proto/sc_rollup_benchmarks.ml +++ b/src/proto_alpha/lib_benchmarks_proto/sc_rollup_benchmarks.ml @@ -267,7 +267,6 @@ module Sc_rollup_add_external_messages_benchmark = struct let*! inbox = Sc_rollup_inbox_repr.empty (Raw_context.recover ctxt) - rollup (Raw_context.current_level ctxt).level in let* inbox, ctxt = add_messages_for_level ctxt inbox rollup in diff --git a/src/proto_alpha/lib_protocol/alpha_context.mli b/src/proto_alpha/lib_protocol/alpha_context.mli index f905bf8b2d85..4a9ba9e61666 100644 --- a/src/proto_alpha/lib_protocol/alpha_context.mli +++ b/src/proto_alpha/lib_protocol/alpha_context.mli @@ -3160,7 +3160,7 @@ module Sc_rollup : sig Raw_level.t * Z.t -> (proof * inbox_message option) tzresult Lwt.t - val empty : inbox_context -> Sc_rollup_repr.t -> Raw_level.t -> t Lwt.t + val empty : inbox_context -> Raw_level.t -> t Lwt.t module Internal_for_tests : sig val eq_tree : tree -> tree -> bool diff --git a/src/proto_alpha/lib_protocol/sc_rollup_inbox_repr.ml b/src/proto_alpha/lib_protocol/sc_rollup_inbox_repr.ml index 2a4dfe664391..4149bb6ab559 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_inbox_repr.ml +++ b/src/proto_alpha/lib_protocol/sc_rollup_inbox_repr.ml @@ -199,7 +199,6 @@ module V1 = struct (held by the [Raw_context.t] in the protocol). The metadata contains : - - [rollup] : the address of the rollup ; - [level] : the inbox level ; - [message_counter] : the number of messages in the [level]'s inbox ; the number of messages that have not been consumed by a commitment cementing ; @@ -221,7 +220,6 @@ module V1 = struct *) type t = { - rollup : Sc_rollup_repr.t; level : Raw_level_repr.t; nb_messages_in_commitment_period : int64; starting_level_of_current_commitment_period : Raw_level_repr.t; @@ -234,7 +232,6 @@ module V1 = struct let equal inbox1 inbox2 = (* To be robust to addition of fields in [t]. *) let { - rollup; level; nb_messages_in_commitment_period; starting_level_of_current_commitment_period; @@ -244,8 +241,7 @@ module V1 = struct } = inbox1 in - Sc_rollup_repr.Address.equal rollup inbox2.rollup - && Raw_level_repr.equal level inbox2.level + Raw_level_repr.equal level inbox2.level && Compare.Int64.( equal nb_messages_in_commitment_period @@ -260,7 +256,6 @@ module V1 = struct let pp fmt { - rollup; level; nb_messages_in_commitment_period; starting_level_of_current_commitment_period; @@ -270,16 +265,13 @@ module V1 = struct } = Format.fprintf fmt - "@[{ rollup = %a@;\ - level = %a@;\ + "@[{ level = %a@;\ current messages hash = %a@;\ nb_messages_in_commitment_period = %s@;\ starting_level_of_current_commitment_period = %a@;\ message_counter = %a@;\ old_levels_messages = %a@;\ }@]" - Sc_rollup_repr.Address.pp - rollup Raw_level_repr.pp level Hash.pp @@ -305,7 +297,6 @@ module V1 = struct Data_encoding.( conv (fun { - rollup; message_counter; nb_messages_in_commitment_period; starting_level_of_current_commitment_period; @@ -313,22 +304,19 @@ module V1 = struct current_level_hash; old_levels_messages; } -> - ( rollup, - message_counter, + ( message_counter, nb_messages_in_commitment_period, starting_level_of_current_commitment_period, level, current_level_hash (), old_levels_messages )) - (fun ( rollup, - message_counter, + (fun ( message_counter, nb_messages_in_commitment_period, starting_level_of_current_commitment_period, level, current_level_hash, old_levels_messages ) -> { - rollup; message_counter; nb_messages_in_commitment_period; starting_level_of_current_commitment_period; @@ -336,8 +324,7 @@ module V1 = struct current_level_hash = (fun () -> current_level_hash); old_levels_messages; }) - (obj7 - (req "rollup" Sc_rollup_repr.encoding) + (obj6 (req "message_counter" n) (req "nb_messages_in_commitment_period" int64) (req @@ -479,7 +466,7 @@ module type Merkelized_operations = sig Raw_level_repr.t * Z.t -> (proof * Sc_rollup_PVM_sig.inbox_message option) tzresult Lwt.t - val empty : inbox_context -> Sc_rollup_repr.t -> Raw_level_repr.t -> t Lwt.t + val empty : inbox_context -> Raw_level_repr.t -> t Lwt.t module Internal_for_tests : sig val eq_tree : tree -> tree -> bool @@ -577,7 +564,6 @@ struct starting_level_of_current_commitment_period = inbox.starting_level_of_current_commitment_period; current_level_hash = inbox.current_level_hash; - rollup = inbox.rollup; level = inbox.level; old_levels_messages = inbox.old_levels_messages; message_counter; @@ -675,7 +661,6 @@ struct starting_level_of_current_commitment_period = inbox.starting_level_of_current_commitment_period; current_level_hash = inbox.current_level_hash; - rollup = inbox.rollup; nb_messages_in_commitment_period = inbox.nb_messages_in_commitment_period; old_levels_messages; @@ -1176,7 +1161,7 @@ struct }, input_given )) - let empty context rollup level = + let empty context level = let open Lwt_syntax in assert (Raw_level_repr.(level <> Raw_level_repr.root)) ; let pre_genesis_level = Raw_level_repr.root in @@ -1185,7 +1170,6 @@ struct let initial_hash = hash_level_tree initial_level in return { - rollup; level; message_counter = Z.zero; nb_messages_in_commitment_period = 0L; diff --git a/src/proto_alpha/lib_protocol/sc_rollup_inbox_repr.mli b/src/proto_alpha/lib_protocol/sc_rollup_inbox_repr.mli index 3965a6d6a24f..008243ac7d02 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_inbox_repr.mli +++ b/src/proto_alpha/lib_protocol/sc_rollup_inbox_repr.mli @@ -394,7 +394,7 @@ module type Merkelized_operations = sig (** [empty ctxt level] is an inbox started at some given [level] with no message at all. *) - val empty : inbox_context -> Sc_rollup_repr.t -> Raw_level_repr.t -> t Lwt.t + val empty : inbox_context -> Raw_level_repr.t -> t Lwt.t module Internal_for_tests : sig val eq_tree : tree -> tree -> bool diff --git a/src/proto_alpha/lib_protocol/sc_rollup_storage.ml b/src/proto_alpha/lib_protocol/sc_rollup_storage.ml index d6f35b9efccd..5af06f598a79 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_storage.ml +++ b/src/proto_alpha/lib_protocol/sc_rollup_storage.ml @@ -71,10 +71,7 @@ let originate ctxt ~kind ~boot_sector ~parameters_ty ~genesis_commitment = Store.Parameters_type.add ctxt address parameters_ty in let*! inbox = - Sc_rollup_inbox_repr.empty - (Raw_context.recover ctxt) - address - origination_level + Sc_rollup_inbox_repr.empty (Raw_context.recover ctxt) origination_level in let* ctxt, inbox_size_diff = Store.Inbox.init ctxt address inbox in let* ctxt, lcc_size_diff = diff --git a/src/proto_alpha/lib_protocol/test/pbt/test_refutation_game.ml b/src/proto_alpha/lib_protocol/test/pbt/test_refutation_game.ml index e0439f6b085e..02bb39afbf71 100644 --- a/src/proto_alpha/lib_protocol/test/pbt/test_refutation_game.ml +++ b/src/proto_alpha/lib_protocol/test/pbt/test_refutation_game.ml @@ -1140,10 +1140,10 @@ module Player_client = struct test/unit/test_sc_rollup_inbox. The main difference is: we use [Alpha_context.Sc_rollup.Inbox] instead of [Sc_rollup_repr_inbox] in the former. *) - let construct_inbox ctxt levels_and_payloads ~rollup ~origination_level = + let construct_inbox ctxt levels_and_payloads ~origination_level = let open Lwt_syntax in let open Store_inbox in - let* inbox = empty ctxt rollup origination_level in + let* inbox = empty ctxt origination_level in let history = Inbox.History.empty ~capacity:10000L in let rec aux history inbox level_tree = function | [] -> return (ctxt, level_tree, history, inbox) @@ -1161,12 +1161,11 @@ module Player_client = struct aux history inbox None levels_and_payloads (** Construct an inbox based on [levels_and_inputs] in the player context. *) - let construct_inbox ~origination_level ctxt rollup levels_and_inputs = + let construct_inbox ~origination_level ctxt levels_and_inputs = Lwt_main.run @@ construct_inbox ~origination_level ctxt - ~rollup (levels_and_payloads levels_and_inputs) (** Generate [our_states] for [levels_and_inputs] based on the strategy. @@ -1261,9 +1260,7 @@ module Player_client = struct ~level_max levels_and_inputs in - let inbox = - construct_inbox ~origination_level ctxt rollup levels_and_inputs - in + let inbox = construct_inbox ~origination_level ctxt levels_and_inputs in return { player; diff --git a/src/proto_alpha/lib_protocol/test/pbt/test_sc_rollup_encoding.ml b/src/proto_alpha/lib_protocol/test/pbt/test_sc_rollup_encoding.ml index 43e9be5ca9b7..2ff577cbf52d 100644 --- a/src/proto_alpha/lib_protocol/test/pbt/test_sc_rollup_encoding.ml +++ b/src/proto_alpha/lib_protocol/test/pbt/test_sc_rollup_encoding.ml @@ -85,7 +85,7 @@ let gen_versioned_commitment = let gen_player = Gen.oneofl Sc_rollup_game_repr.[Alice; Bob] -let gen_inbox rollup level = +let gen_inbox level = let open Gen in let gen_msg = small_string ~gen:printable in let* hd = gen_msg in @@ -95,7 +95,7 @@ let gen_inbox rollup level = let open Lwt_result_syntax in let* ctxt = Context.default_raw_context () in let inbox_ctxt = Raw_context.recover ctxt in - let*! empty_inbox = Sc_rollup_inbox_repr.empty inbox_ctxt rollup level in + let*! empty_inbox = Sc_rollup_inbox_repr.empty inbox_ctxt level in lift @@ let*? input_messages = List.map_e @@ -115,9 +115,9 @@ let gen_inbox rollup level = | Error e -> Stdlib.failwith (Format.asprintf "%a" Error_monad.pp_print_trace e)) -let gen_inbox_history_proof rollup inbox_level = +let gen_inbox_history_proof inbox_level = let open Gen in - let* inbox = gen_inbox rollup inbox_level in + let* inbox = gen_inbox inbox_level in return (Sc_rollup_inbox_repr.take_snapshot ~current_level:inbox_level inbox) let gen_pvm_name = Gen.string_printable @@ -139,11 +139,6 @@ let gen_dissection = let open Gen in small_list gen_dissection_chunk -let gen_rollup = - let open Gen in - let* bytes = bytes_fixed_gen Sc_rollup_repr.Address.size in - return (Sc_rollup_repr.Address.hash_bytes [bytes]) - let gen_game_state = let open Sc_rollup_game_repr in let open Gen in @@ -164,8 +159,7 @@ let gen_game = let* turn = gen_player in let* inbox_level = gen_inbox_level in let* start_level = gen_start_level in - let* rollup = gen_rollup in - let* inbox_snapshot = gen_inbox_history_proof rollup inbox_level in + let* inbox_snapshot = gen_inbox_history_proof inbox_level in let* pvm_name = gen_pvm_name in let* game_state = gen_game_state in return diff --git a/src/proto_alpha/lib_protocol/test/unit/test_sc_rollup_game.ml b/src/proto_alpha/lib_protocol/test/unit/test_sc_rollup_game.ml index 4a3b055d627b..fa004c8aba72 100644 --- a/src/proto_alpha/lib_protocol/test/unit/test_sc_rollup_game.ml +++ b/src/proto_alpha/lib_protocol/test/unit/test_sc_rollup_game.ml @@ -272,7 +272,7 @@ let test_invalid_serialized_inbox_proof () = let* ctxt = Test_sc_rollup_inbox.create_context () in let rollup = Sc_rollup.Address.zero in let level = Raw_level.(succ root) in - let*! inbox = Sc_rollup.Inbox.empty ctxt rollup level in + let*! inbox = Sc_rollup.Inbox.empty ctxt level in let snapshot = Sc_rollup.Inbox.take_snapshot ~current_level:(Raw_level.of_int32_exn 42l) diff --git a/src/proto_alpha/lib_protocol/test/unit/test_sc_rollup_inbox.ml b/src/proto_alpha/lib_protocol/test/unit/test_sc_rollup_inbox.ml index fbcf756c6504..e99125703ef2 100644 --- a/src/proto_alpha/lib_protocol/test/unit/test_sc_rollup_inbox.ml +++ b/src/proto_alpha/lib_protocol/test/unit/test_sc_rollup_inbox.ml @@ -72,7 +72,7 @@ let populate_inboxes ctxt level history inbox inboxes level_tree let test_empty () = create_context () >>=? fun ctxt -> - empty ctxt rollup (Raw_level_repr.of_int32_exn 42l) >>= fun inbox -> + empty ctxt (Raw_level_repr.of_int32_exn 42l) >>= fun inbox -> fail_unless Compare.Int64.(equal (number_of_messages_during_commitment_period inbox) 0L) (err "An empty inbox should have no available message.") @@ -80,7 +80,7 @@ let test_empty () = let setup_inbox_with_messages list_of_payloads f = let open Lwt_syntax in create_context () >>=? fun ctxt -> - let* inbox = empty ctxt rollup first_level in + let* inbox = empty ctxt first_level in let history = History.empty ~capacity:10000L in populate_inboxes ctxt first_level history inbox [] None list_of_payloads >>=? fun (level_tree, history, inbox, inboxes) -> @@ -282,7 +282,7 @@ let setup_node_inbox_with_messages list_of_payloads f = let open Lwt_syntax in let* index = Tezos_context_memory.Context.init "foo" in let ctxt = Tezos_context_memory.Context.empty index in - let* inbox = empty ctxt rollup first_level in + let* inbox = empty ctxt first_level in let history = History.empty ~capacity:10000L in let rec aux level history inbox inboxes level_tree = function | [] -> return (ok (level_tree, history, inbox, inboxes)) @@ -436,7 +436,7 @@ let test_empty_inbox_proof (level, n) = let open Lwt_result_syntax in let*! index = Tezos_context_memory.Context.init "foo" in let ctxt = Tezos_context_memory.Context.empty index in - let*! inbox = Node.empty ctxt rollup level in + let*! inbox = Node.empty ctxt level in let history = History.empty ~capacity:10000L in let* history, history_proof = Node.form_history_proof ctxt history inbox None @@ -450,7 +450,7 @@ let test_empty_inbox_proof (level, n) = (* We now switch to a protocol inbox for verification. *) create_context () >>=? fun ctxt -> - let*! inbox = empty ctxt rollup level in + let*! inbox = empty ctxt level in let current_level = Raw_level_repr.succ (inbox_level inbox) in let snapshot = take_snapshot ~current_level inbox in let proof = node_proof_to_protocol_proof proof in @@ -496,7 +496,7 @@ let init_inboxes_histories_with_different_capacities let mk_history ?(next_index = 0L) ~capacity () = let open Lwt_syntax in create_context () >>=? fun ctxt -> - let* inbox = empty ctxt rollup first_level in + let* inbox = empty ctxt first_level in let history = Sc_rollup_inbox_repr.History.Internal_for_tests.empty ~capacity @@ -670,7 +670,7 @@ let test_empty_inbox_snapshot_taking (origination_level, snapshot_level) = Raw_level_repr.of_int32_exn @@ Int32.of_int snapshot_level in let* ctxt = create_context () in - let*! inbox = empty ctxt rollup origination_level in + let*! inbox = empty ctxt origination_level in (* We take a snapshot of the whole inbox. *) let current_level = Raw_level_repr.succ origination_level in let expected_snapshot = take_snapshot ~current_level inbox in -- GitLab From e5c074b0b65d1ffbfad3930c02cc232cf55052f8 Mon Sep 17 00:00:00 2001 From: Valentin Chaboche Date: Mon, 3 Oct 2022 18:05:11 +0200 Subject: [PATCH 03/36] Scoru,Proto: rename [inbox] to [get_inbox] --- src/proto_alpha/lib_plugin/RPC.ml | 2 +- src/proto_alpha/lib_protocol/alpha_context.mli | 2 +- src/proto_alpha/lib_protocol/sc_rollup_inbox_storage.ml | 4 ++-- src/proto_alpha/lib_protocol/sc_rollup_inbox_storage.mli | 5 +++-- .../lib_protocol/sc_rollup_refutation_storage.ml | 2 +- .../lib_protocol/test/unit/test_sc_rollup_storage.ml | 6 ++++-- 6 files changed, 12 insertions(+), 9 deletions(-) diff --git a/src/proto_alpha/lib_plugin/RPC.ml b/src/proto_alpha/lib_plugin/RPC.ml index 78b69d35521c..61be73180ac8 100644 --- a/src/proto_alpha/lib_plugin/RPC.ml +++ b/src/proto_alpha/lib_plugin/RPC.ml @@ -2080,7 +2080,7 @@ module Sc_rollup = struct let register_inbox () = Registration.register1 ~chunked:true S.inbox (fun ctxt rollup () () -> - Sc_rollup.Inbox.inbox ctxt rollup >>=? fun (inbox, _ctxt) -> + Sc_rollup.Inbox.get_inbox ctxt rollup >>=? fun (inbox, _ctxt) -> return inbox) let register_kind () = diff --git a/src/proto_alpha/lib_protocol/alpha_context.mli b/src/proto_alpha/lib_protocol/alpha_context.mli index 4a9ba9e61666..a99579442332 100644 --- a/src/proto_alpha/lib_protocol/alpha_context.mli +++ b/src/proto_alpha/lib_protocol/alpha_context.mli @@ -3222,7 +3222,7 @@ module Sc_rollup : sig source:public_key_hash -> (t * Z.t * context) tzresult Lwt.t - val inbox : context -> rollup -> (t * context) tzresult Lwt.t + val get_inbox : context -> rollup -> (t * context) tzresult Lwt.t end module Outbox : sig diff --git a/src/proto_alpha/lib_protocol/sc_rollup_inbox_storage.ml b/src/proto_alpha/lib_protocol/sc_rollup_inbox_storage.ml index bcee20228e61..f053d467daed 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_inbox_storage.ml +++ b/src/proto_alpha/lib_protocol/sc_rollup_inbox_storage.ml @@ -33,7 +33,7 @@ let update_num_and_size_of_messages ~num_messages ~total_messages_size message = + String.length (message : Sc_rollup_inbox_message_repr.serialized :> string) ) -let inbox ctxt rollup = +let get_inbox ctxt rollup = let open Lwt_tzresult_syntax in let* ctxt, res = Store.Inbox.find ctxt rollup in match res with @@ -62,7 +62,7 @@ let add_messages ctxt rollup messages = let commitment_period = Constants_storage.sc_rollup_commitment_period_in_blocks ctxt |> Int32.of_int in - let* inbox, ctxt = inbox ctxt rollup in + let* inbox, ctxt = get_inbox ctxt rollup in let* num_messages, total_messages_size, ctxt = List.fold_left_es (fun (num_messages, total_messages_size, ctxt) message -> diff --git a/src/proto_alpha/lib_protocol/sc_rollup_inbox_storage.mli b/src/proto_alpha/lib_protocol/sc_rollup_inbox_storage.mli index c2a35f6a6eb2..e9c13b116431 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_inbox_storage.mli +++ b/src/proto_alpha/lib_protocol/sc_rollup_inbox_storage.mli @@ -24,8 +24,9 @@ (* *) (*****************************************************************************) -(** [inbox context rollup] returns the current state of the inbox. *) -val inbox : +(** [get_inbox context rollup] returns the current state of the inbox, + if it exists. *) +val get_inbox : Raw_context.t -> Sc_rollup_repr.t -> (Sc_rollup_inbox_repr.t * Raw_context.t) tzresult Lwt.t diff --git a/src/proto_alpha/lib_protocol/sc_rollup_refutation_storage.ml b/src/proto_alpha/lib_protocol/sc_rollup_refutation_storage.ml index aaec18587c86..5464ca8f895e 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_refutation_storage.ml +++ b/src/proto_alpha/lib_protocol/sc_rollup_refutation_storage.ml @@ -251,7 +251,7 @@ let start_game ctxt rollup ~player:refuter ~opponent:defender = let* parent_info, ctxt = Commitment_storage.get_commitment_unsafe ctxt rollup child_info.predecessor in - let* ctxt, inbox = Store.Inbox.get ctxt rollup in + let* inbox, ctxt = Sc_rollup_inbox_storage.get_inbox ctxt rollup in let* ctxt, kind = Store.PVM_kind.get ctxt rollup in let default_number_of_sections = Constants_storage.sc_rollup_number_of_sections_in_dissection ctxt diff --git a/src/proto_alpha/lib_protocol/test/unit/test_sc_rollup_storage.ml b/src/proto_alpha/lib_protocol/test/unit/test_sc_rollup_storage.ml index 720132968a8d..316b7c73070a 100644 --- a/src/proto_alpha/lib_protocol/test/unit/test_sc_rollup_storage.ml +++ b/src/proto_alpha/lib_protocol/test/unit/test_sc_rollup_storage.ml @@ -2120,7 +2120,9 @@ let test_add_messages_from_missing_rollup () = ["Dummy message"]) let test_inbox_of_missing_rollup () = - assert_fails_with_missing_rollup ~loc:__LOC__ Sc_rollup_inbox_storage.inbox + assert_fails_with_missing_rollup + ~loc:__LOC__ + Sc_rollup_inbox_storage.get_inbox let test_refine_stake_of_missing_rollup () = assert_fails_with_missing_rollup ~loc:__LOC__ (fun ctxt rollup -> @@ -2411,7 +2413,7 @@ let test_carbonated_memory_inbox_set_messages () = set_gas_limit ctxt (Gas_limit_repr.Arith.integral_of_int_exn 20_000) in let* rollup, _genesis_hash, ctxt = lift @@ new_sc_rollup ctxt in - let* inbox, ctxt = lift @@ Sc_rollup_inbox_storage.inbox ctxt rollup in + let* inbox, ctxt = lift @@ Sc_rollup_inbox_storage.get_inbox ctxt rollup in let*? current_messages, ctxt = Environment.wrap_tzresult @@ Sc_rollup_in_memory_inbox.current_messages ctxt rollup -- GitLab From 9ba694cb466f5f5d26731aff9cc18d6cce4c8191 Mon Sep 17 00:00:00 2001 From: Valentin Chaboche Date: Mon, 3 Oct 2022 17:59:41 +0200 Subject: [PATCH 04/36] Scoru,Proto: one inbox to rule them all --- src/proto_alpha/bin_sc_rollup_node/daemon.ml | 2 +- src/proto_alpha/bin_sc_rollup_node/inbox.ml | 7 ++- src/proto_alpha/lib_plugin/RPC.ml | 22 ++++----- .../lib_protocol/alpha_context.mli | 2 +- .../lib_protocol/sc_rollup_errors.ml | 3 +- .../lib_protocol/sc_rollup_inbox_storage.ml | 16 +++--- .../lib_protocol/sc_rollup_inbox_storage.mli | 8 ++- .../sc_rollup_refutation_storage.ml | 2 +- .../lib_protocol/sc_rollup_storage.ml | 11 ++--- src/proto_alpha/lib_protocol/storage.ml | 49 ++++++++++++++----- src/proto_alpha/lib_protocol/storage.mli | 7 +-- .../lib_protocol/test/helpers/context.ml | 5 +- .../lib_protocol/test/helpers/context.mli | 2 +- .../operations/test_sc_rollup_transfer.ml | 4 +- .../test/unit/test_sc_rollup_storage.ml | 22 +-------- tezt/lib_tezos/RPC.ml | 15 ++---- tezt/lib_tezos/RPC.mli | 6 +-- tezt/tests/sc_rollup.ml | 17 +++---- 18 files changed, 90 insertions(+), 110 deletions(-) diff --git a/src/proto_alpha/bin_sc_rollup_node/daemon.ml b/src/proto_alpha/bin_sc_rollup_node/daemon.ml index 5ed53a3a3e5e..0651ba495ea5 100644 --- a/src/proto_alpha/bin_sc_rollup_node/daemon.ml +++ b/src/proto_alpha/bin_sc_rollup_node/daemon.ml @@ -109,7 +109,7 @@ module Make (PVM : Pvm.S) = struct (result : kind Apply_results.manager_operation_result) = let open Lwt_result_syntax in let is_for_my_rollup : type kind. kind manager_operation -> bool = function - | Sc_rollup_add_messages {rollup; _} + | Sc_rollup_add_messages {rollup = _; _} -> true | Sc_rollup_cement {rollup; _} | Sc_rollup_publish {rollup; _} | Sc_rollup_refute {rollup; _} diff --git a/src/proto_alpha/bin_sc_rollup_node/inbox.ml b/src/proto_alpha/bin_sc_rollup_node/inbox.ml index dc3e196f169d..d3138d19dc7f 100644 --- a/src/proto_alpha/bin_sc_rollup_node/inbox.ml +++ b/src/proto_alpha/bin_sc_rollup_node/inbox.ml @@ -100,8 +100,7 @@ let get_messages Node_context.{l1_ctxt; rollup_address; _} head = let open Result_syntax in let+ accu = accu in match operation with - | Sc_rollup_add_messages {rollup; messages} - when Sc_rollup.Address.(rollup = rollup_address) -> + | Sc_rollup_add_messages {rollup = _; messages} -> let messages = List.map (fun message -> Sc_rollup.Inbox_message.External message) @@ -143,9 +142,9 @@ let get_messages Node_context.{l1_ctxt; rollup_address; _} head = let same_inbox_as_layer_1 node_ctxt head_hash inbox = let open Lwt_result_syntax in let head_block = `Hash (head_hash, 0) in - let Node_context.{cctxt; rollup_address; _} = node_ctxt in + let Node_context.{cctxt; _} = node_ctxt in let* layer1_inbox = - Plugin.RPC.Sc_rollup.inbox cctxt (cctxt#chain, head_block) rollup_address + Plugin.RPC.Sc_rollup.inbox cctxt (cctxt#chain, head_block) in fail_unless (Sc_rollup.Inbox.equal layer1_inbox inbox) diff --git a/src/proto_alpha/lib_plugin/RPC.ml b/src/proto_alpha/lib_plugin/RPC.ml index 61be73180ac8..99e5d7886a60 100644 --- a/src/proto_alpha/lib_plugin/RPC.ml +++ b/src/proto_alpha/lib_plugin/RPC.ml @@ -1910,13 +1910,6 @@ module Sc_rollup = struct ~output:Data_encoding.string RPC_path.(path /: Sc_rollup.Address.rpc_arg / "boot_sector") - let inbox = - RPC_service.get_service - ~description:"Inbox for a smart-contract rollup" - ~query:RPC_query.empty - ~output:Sc_rollup.Inbox.encoding - RPC_path.(path /: Sc_rollup.Address.rpc_arg / "inbox") - let genesis_info = RPC_service.get_service ~description: @@ -2073,15 +2066,21 @@ module Sc_rollup = struct ~query:RPC_query.empty ~output:(Data_encoding.list Sc_rollup.Address.encoding) path_sc_rollups + + let inbox = + RPC_service.get_service + ~description:"Inbox for the smart contract rollups" + ~query:RPC_query.empty + ~output:Sc_rollup.Inbox.encoding + RPC_path.(path_sc_rollups / "inbox") end let kind ctxt block sc_rollup_address = RPC_context.make_call1 S.kind ctxt block sc_rollup_address () let register_inbox () = - Registration.register1 ~chunked:true S.inbox (fun ctxt rollup () () -> - Sc_rollup.Inbox.get_inbox ctxt rollup >>=? fun (inbox, _ctxt) -> - return inbox) + Registration.register0 ~chunked:true S.inbox (fun ctxt () () -> + Sc_rollup.Inbox.get_inbox ctxt >>=? fun (inbox, _ctxt) -> return inbox) let register_kind () = Registration.opt_register1 ~chunked:true S.kind @@ fun ctxt address () () -> @@ -2244,8 +2243,7 @@ module Sc_rollup = struct let list ctxt block = RPC_context.make_call0 S.root ctxt block () () - let inbox ctxt block sc_rollup_address = - RPC_context.make_call1 S.inbox ctxt block sc_rollup_address () () + let inbox ctxt block = RPC_context.make_call0 S.inbox ctxt block () () let genesis_info ctxt block sc_rollup_address = RPC_context.make_call1 S.genesis_info ctxt block sc_rollup_address () () diff --git a/src/proto_alpha/lib_protocol/alpha_context.mli b/src/proto_alpha/lib_protocol/alpha_context.mli index a99579442332..605d1f259d29 100644 --- a/src/proto_alpha/lib_protocol/alpha_context.mli +++ b/src/proto_alpha/lib_protocol/alpha_context.mli @@ -3222,7 +3222,7 @@ module Sc_rollup : sig source:public_key_hash -> (t * Z.t * context) tzresult Lwt.t - val get_inbox : context -> rollup -> (t * context) tzresult Lwt.t + val get_inbox : context -> (t * context) tzresult Lwt.t end module Outbox : sig diff --git a/src/proto_alpha/lib_protocol/sc_rollup_errors.ml b/src/proto_alpha/lib_protocol/sc_rollup_errors.ml index c7a49d3a6c2a..d3200e2c7d5f 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_errors.ml +++ b/src/proto_alpha/lib_protocol/sc_rollup_errors.ml @@ -468,5 +468,4 @@ let () = ~description Data_encoding.empty (function Sc_rollup_address_generation -> Some () | _ -> None) - (fun () -> Sc_rollup_address_generation) ; - () + (fun () -> Sc_rollup_address_generation) diff --git a/src/proto_alpha/lib_protocol/sc_rollup_inbox_storage.ml b/src/proto_alpha/lib_protocol/sc_rollup_inbox_storage.ml index f053d467daed..c5d8e677f994 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_inbox_storage.ml +++ b/src/proto_alpha/lib_protocol/sc_rollup_inbox_storage.ml @@ -33,12 +33,10 @@ let update_num_and_size_of_messages ~num_messages ~total_messages_size message = + String.length (message : Sc_rollup_inbox_message_repr.serialized :> string) ) -let get_inbox ctxt rollup = +let get_inbox ctxt = let open Lwt_tzresult_syntax in - let* ctxt, res = Store.Inbox.find ctxt rollup in - match res with - | None -> fail (Sc_rollup_does_not_exist rollup) - | Some inbox -> return (inbox, ctxt) + let* inbox = Store.Inbox.get ctxt in + return (inbox, ctxt) let assert_inbox_nb_messages_in_commitment_period ctxt inbox extra_messages = let nb_messages_in_commitment_period = @@ -62,7 +60,7 @@ let add_messages ctxt rollup messages = let commitment_period = Constants_storage.sc_rollup_commitment_period_in_blocks ctxt |> Int32.of_int in - let* inbox, ctxt = get_inbox ctxt rollup in + let* inbox, ctxt = get_inbox ctxt in let* num_messages, total_messages_size, ctxt = List.fold_left_es (fun (num_messages, total_messages_size, ctxt) message -> @@ -124,8 +122,10 @@ let add_messages ctxt rollup messages = let*? ctxt = Sc_rollup_in_memory_inbox.set_current_messages ctxt rollup current_messages in - let* ctxt, size = Store.Inbox.update ctxt rollup inbox in - return (inbox, Z.of_int size, ctxt) + (* TODO: https://gitlab.com/tezos/tezos/-/issues/3920 + Account the size's difference with the carbonated storage. *) + let* ctxt = Store.Inbox.update ctxt inbox in + return (inbox, Z.zero, ctxt) let serialize_external_messages ctxt external_messages = let open Sc_rollup_inbox_message_repr in diff --git a/src/proto_alpha/lib_protocol/sc_rollup_inbox_storage.mli b/src/proto_alpha/lib_protocol/sc_rollup_inbox_storage.mli index e9c13b116431..05031097f657 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_inbox_storage.mli +++ b/src/proto_alpha/lib_protocol/sc_rollup_inbox_storage.mli @@ -24,14 +24,12 @@ (* *) (*****************************************************************************) -(** [get_inbox context rollup] returns the current state of the inbox, +(** [get_inbox context] returns the current state of the inbox, if it exists. *) val get_inbox : - Raw_context.t -> - Sc_rollup_repr.t -> - (Sc_rollup_inbox_repr.t * Raw_context.t) tzresult Lwt.t + Raw_context.t -> (Sc_rollup_inbox_repr.t * Raw_context.t) tzresult Lwt.t -(** [add_external_messages context rollup msg] adds [msg] to [rollup]'s inbox. +(** [add_external_messages context msg] adds [msg] to the smart rollups' inbox. This function returns the updated context as well as the size diff. diff --git a/src/proto_alpha/lib_protocol/sc_rollup_refutation_storage.ml b/src/proto_alpha/lib_protocol/sc_rollup_refutation_storage.ml index 5464ca8f895e..860fd232e049 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_refutation_storage.ml +++ b/src/proto_alpha/lib_protocol/sc_rollup_refutation_storage.ml @@ -251,7 +251,7 @@ let start_game ctxt rollup ~player:refuter ~opponent:defender = let* parent_info, ctxt = Commitment_storage.get_commitment_unsafe ctxt rollup child_info.predecessor in - let* inbox, ctxt = Sc_rollup_inbox_storage.get_inbox ctxt rollup in + let* inbox, ctxt = Sc_rollup_inbox_storage.get_inbox ctxt in let* ctxt, kind = Store.PVM_kind.get ctxt rollup in let default_number_of_sections = Constants_storage.sc_rollup_number_of_sections_in_dissection ctxt diff --git a/src/proto_alpha/lib_protocol/sc_rollup_storage.ml b/src/proto_alpha/lib_protocol/sc_rollup_storage.ml index 5af06f598a79..79a8935c8ea6 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_storage.ml +++ b/src/proto_alpha/lib_protocol/sc_rollup_storage.ml @@ -70,10 +70,6 @@ let originate ctxt ~kind ~boot_sector ~parameters_ty ~genesis_commitment = let* ctxt, param_ty_size_diff, _added = Store.Parameters_type.add ctxt address parameters_ty in - let*! inbox = - Sc_rollup_inbox_repr.empty (Raw_context.recover ctxt) origination_level - in - let* ctxt, inbox_size_diff = Store.Inbox.init ctxt address inbox in let* ctxt, lcc_size_diff = Store.Last_cemented_commitment.init ctxt address genesis_commitment_hash in @@ -112,10 +108,9 @@ let originate ctxt ~kind ~boot_sector ~parameters_ty ~genesis_commitment = let size = Z.of_int (origination_size + stored_kind_size + boot_sector_size + addresses_size - + inbox_size_diff + lcc_size_diff + commitment_size_diff - + commitment_added_size_diff + commitment_staker_count_size_diff - + stakers_size_diff + param_ty_size_diff + pvm_kind_size - + genesis_info_size) + + lcc_size_diff + commitment_size_diff + commitment_added_size_diff + + commitment_staker_count_size_diff + stakers_size_diff + + param_ty_size_diff + pvm_kind_size + genesis_info_size) in return (address, size, genesis_commitment_hash, ctxt) diff --git a/src/proto_alpha/lib_protocol/storage.ml b/src/proto_alpha/lib_protocol/storage.ml index b1c5b774c43f..f75a7e0216f4 100644 --- a/src/proto_alpha/lib_protocol/storage.ml +++ b/src/proto_alpha/lib_protocol/storage.ml @@ -1689,21 +1689,44 @@ module Sc_rollup = struct let encoding = Sc_rollup_commitment_repr.genesis_info_encoding end) - module Inbox_versioned = - Indexed_context.Make_carbonated_map - (Registered) - (struct - let name = ["inbox"] - end) - (struct - type t = Sc_rollup_inbox_repr.versioned + module Inbox = struct + include + Make_single_data_storage (Registered) (Raw_context) + (struct + let name = ["sc_rollup_inbox"] + end) + (struct + type t = Sc_rollup_inbox_repr.versioned - let encoding = Sc_rollup_inbox_repr.versioned_encoding - end) + let encoding = Sc_rollup_inbox_repr.versioned_encoding + end) - module Inbox = struct - include Inbox_versioned - include Make_versioned (Sc_rollup_inbox_repr) (Inbox_versioned) + type value = Sc_rollup_inbox_repr.t + + let of_versioned = Sc_rollup_inbox_repr.of_versioned + + let to_versioned = Sc_rollup_inbox_repr.to_versioned + + let get ctxt = + let open Lwt_tzresult_syntax in + let* versioned = get ctxt in + return (of_versioned versioned) + + let find ctxt = + let open Lwt_tzresult_syntax in + let* versioned = find ctxt in + return (Option.map of_versioned versioned) + + let init ctxt value = init ctxt (to_versioned value) + + let update ctxt value = update ctxt (to_versioned value) + + let add ctxt value = + let versioned = to_versioned value in + add ctxt versioned + + let add_or_remove ctxt value = + add_or_remove ctxt (Option.map to_versioned value) end module Last_cemented_commitment = diff --git a/src/proto_alpha/lib_protocol/storage.mli b/src/proto_alpha/lib_protocol/storage.mli index a69a729c0a3f..3c545c6b4c66 100644 --- a/src/proto_alpha/lib_protocol/storage.mli +++ b/src/proto_alpha/lib_protocol/storage.mli @@ -756,10 +756,11 @@ module Sc_rollup : sig and type value = Sc_rollup_commitment_repr.genesis_info and type t := Raw_context.t + (* TODO: https://gitlab.com/tezos/tezos/-/issues/3920 + Use carbonated storage. *) module Inbox : - Non_iterable_indexed_carbonated_data_storage - with type key = Sc_rollup_repr.t - and type value = Sc_rollup_inbox_repr.t + Single_data_storage + with type value = Sc_rollup_inbox_repr.t and type t := Raw_context.t module Last_cemented_commitment : diff --git a/src/proto_alpha/lib_protocol/test/helpers/context.ml b/src/proto_alpha/lib_protocol/test/helpers/context.ml index e672f75228e9..498a816da939 100644 --- a/src/proto_alpha/lib_protocol/test/helpers/context.ml +++ b/src/proto_alpha/lib_protocol/test/helpers/context.ml @@ -388,12 +388,11 @@ module Tx_rollup = struct end module Sc_rollup = struct - let inbox ctxt sc_rollup = - Environment.RPC_context.make_call1 + let inbox ctxt = + Environment.RPC_context.make_call0 Plugin.RPC.Sc_rollup.S.inbox rpc_ctxt ctxt - sc_rollup () () diff --git a/src/proto_alpha/lib_protocol/test/helpers/context.mli b/src/proto_alpha/lib_protocol/test/helpers/context.mli index 84c53d2d7e63..6d6e1d44f703 100644 --- a/src/proto_alpha/lib_protocol/test/helpers/context.mli +++ b/src/proto_alpha/lib_protocol/test/helpers/context.mli @@ -245,7 +245,7 @@ module Tx_rollup : sig end module Sc_rollup : sig - val inbox : t -> Sc_rollup.t -> Sc_rollup.Inbox.t tzresult Lwt.t + val inbox : t -> Sc_rollup.Inbox.t tzresult Lwt.t val commitment : t -> diff --git a/src/proto_alpha/lib_protocol/test/integration/operations/test_sc_rollup_transfer.ml b/src/proto_alpha/lib_protocol/test/integration/operations/test_sc_rollup_transfer.ml index 7c7bcb3c799a..430b0dfaeb8f 100644 --- a/src/proto_alpha/lib_protocol/test/integration/operations/test_sc_rollup_transfer.ml +++ b/src/proto_alpha/lib_protocol/test/integration/operations/test_sc_rollup_transfer.ml @@ -292,7 +292,7 @@ let test_transfer_non_zero_amount_via_entrypoint () = (* Now, transfer with a zero-amount and check that the inbox has been updated correctly. *) let test_transfer_works () = let* b, c, contract, rollup = context_init "int" in - let* inbox_before = Context.Sc_rollup.inbox (B b) rollup in + let* inbox_before = Context.Sc_rollup.inbox (B b) in let* expected_inbox_after = let* inc = Incremental.begin_construction b in let ctxt = Incremental.alpha_ctxt inc in @@ -310,7 +310,7 @@ let test_transfer_works () = in let param = Format.sprintf "%S" (Sc_rollup.Address.to_b58check rollup) in let* b = transfer b ~from:c ~to_:contract ~param ~entrypoint:"transfer_int" in - let* inbox_after = Context.Sc_rollup.inbox (B b) rollup in + let* inbox_after = Context.Sc_rollup.inbox (B b) in let* () = Assert.not_equal_with_encoding ~loc:__LOC__ diff --git a/src/proto_alpha/lib_protocol/test/unit/test_sc_rollup_storage.ml b/src/proto_alpha/lib_protocol/test/unit/test_sc_rollup_storage.ml index 316b7c73070a..6577109093e6 100644 --- a/src/proto_alpha/lib_protocol/test/unit/test_sc_rollup_storage.ml +++ b/src/proto_alpha/lib_protocol/test/unit/test_sc_rollup_storage.ml @@ -2112,18 +2112,6 @@ let test_kind_of_missing_rollup () = assert_fails_with_missing_rollup ~loc:__LOC__ (fun ctxt _ -> Sc_rollup_storage.kind ctxt rollup) -let test_add_messages_from_missing_rollup () = - assert_fails_with_missing_rollup ~loc:__LOC__ (fun ctxt rollup -> - Sc_rollup_inbox_storage.add_external_messages - ctxt - rollup - ["Dummy message"]) - -let test_inbox_of_missing_rollup () = - assert_fails_with_missing_rollup - ~loc:__LOC__ - Sc_rollup_inbox_storage.get_inbox - let test_refine_stake_of_missing_rollup () = assert_fails_with_missing_rollup ~loc:__LOC__ (fun ctxt rollup -> Sc_rollup_stake_storage.Internal_for_tests.refine_stake @@ -2413,7 +2401,7 @@ let test_carbonated_memory_inbox_set_messages () = set_gas_limit ctxt (Gas_limit_repr.Arith.integral_of_int_exn 20_000) in let* rollup, _genesis_hash, ctxt = lift @@ new_sc_rollup ctxt in - let* inbox, ctxt = lift @@ Sc_rollup_inbox_storage.get_inbox ctxt rollup in + let* inbox, ctxt = lift @@ Sc_rollup_inbox_storage.get_inbox ctxt in let*? current_messages, ctxt = Environment.wrap_tzresult @@ Sc_rollup_in_memory_inbox.current_messages ctxt rollup @@ -3114,14 +3102,6 @@ let tests = "kind of missing rollup is None" `Quick test_kind_of_missing_rollup; - Tztest.tztest - "adding messages to missing rollup fails" - `Quick - test_add_messages_from_missing_rollup; - Tztest.tztest - "fetching inbox of missing rollup fails" - `Quick - test_inbox_of_missing_rollup; Tztest.tztest "refining stake of missing rollup fails" `Quick diff --git a/tezt/lib_tezos/RPC.ml b/tezt/lib_tezos/RPC.ml index 6f0448235c6b..fe236f548e25 100644 --- a/tezt/lib_tezos/RPC.ml +++ b/tezt/lib_tezos/RPC.ml @@ -723,20 +723,11 @@ let post_chain_block_context_contract_ticket_balance ?(chain = "main") let get_chain_block_context_sc_rollups ?(chain = "main") ?(block = "head") () = make GET ["chains"; chain; "blocks"; block; "context"; "sc_rollups"] Fun.id -let get_chain_block_context_sc_rollup_inbox ?(chain = "main") ?(block = "head") - sc_rollup = +let get_chain_block_context_sc_rollups_inbox ?(chain = "main") ?(block = "head") + () = make GET - [ - "chains"; - chain; - "blocks"; - block; - "context"; - "sc_rollup"; - sc_rollup; - "inbox"; - ] + ["chains"; chain; "blocks"; block; "context"; "sc_rollups"; "inbox"] Fun.id let get_chain_block_context_sc_rollup_genesis_info ?(chain = "main") diff --git a/tezt/lib_tezos/RPC.mli b/tezt/lib_tezos/RPC.mli index 30523002b40a..b9e53ba6a021 100644 --- a/tezt/lib_tezos/RPC.mli +++ b/tezt/lib_tezos/RPC.mli @@ -742,9 +742,9 @@ val post_chain_block_context_contract_ticket_balance : val get_chain_block_context_sc_rollups : ?chain:string -> ?block:string -> unit -> JSON.t t -(** RPC: [GET chains//blocks//context/sc_rollup//inbox] *) -val get_chain_block_context_sc_rollup_inbox : - ?chain:string -> ?block:string -> string -> JSON.t t +(** RPC: [GET chains//blocks//context/sc_rollups/inbox] *) +val get_chain_block_context_sc_rollups_inbox : + ?chain:string -> ?block:string -> unit -> JSON.t t (** RPC: [GET chains//blocks//context/sc_rollup//genesis_info] *) val get_chain_block_context_sc_rollup_genesis_info : diff --git a/tezt/tests/sc_rollup.ml b/tezt/tests/sc_rollup.ml index 47e084b67054..6d7ef22b2dfa 100644 --- a/tezt/tests/sc_rollup.ml +++ b/tezt/tests/sc_rollup.ml @@ -548,10 +548,9 @@ let parse_inbox json = (JSON.encode json) (Printexc.to_string exn)) -let get_inbox_from_tezos_node sc_rollup client = +let get_inbox_from_tezos_node client = let* inbox = - RPC.Client.call client - @@ RPC.get_chain_block_context_sc_rollup_inbox sc_rollup + RPC.Client.call client @@ RPC.get_chain_block_context_sc_rollups_inbox () in parse_inbox inbox @@ -574,7 +573,7 @@ let test_rollup_inbox_size ~kind = let n = 10 in let* () = send_messages n sc_rollup client in let* _, inbox_msg_during_commitment_period = - get_inbox_from_tezos_node sc_rollup client + get_inbox_from_tezos_node client in return @@ Check.( @@ -689,7 +688,7 @@ let test_rollup_inbox_current_messages_hash ~kind = let open Tezos_protocol_alpha.Protocol.Alpha_context.Sc_rollup in (* no messages have been sent *) let* pristine_hash, nb_available_messages = - get_inbox_from_tezos_node sc_rollup client + get_inbox_from_tezos_node client in let () = Check.((nb_available_messages = 0) int) @@ -709,7 +708,7 @@ let test_rollup_inbox_current_messages_hash ~kind = *) let fst_batch = gen_message_batch 0 4 in let* () = send_message client sc_rollup @@ prepare_batch fst_batch in - let* fst_batch_hash, _ = get_inbox_from_tezos_node sc_rollup client in + let* fst_batch_hash, _ = get_inbox_from_tezos_node client in let () = Check.( (pristine_hash <> fst_batch_hash) @@ -740,7 +739,7 @@ let test_rollup_inbox_current_messages_hash ~kind = (list string) ~error_msg:"expected messages:\n%R\nretrieved:\n%L") in - let* snd_batch_hash, _ = get_inbox_from_tezos_node sc_rollup client in + let* snd_batch_hash, _ = get_inbox_from_tezos_node client in let* expected = Sc_rollup_inbox.predict_current_messages_hash 4l snd_batch in @@ -782,9 +781,7 @@ let test_rollup_inbox_of_rollup_node variant scenario ~kind = let* inbox_from_sc_rollup_node = get_inbox_from_sc_rollup_node sc_rollup_node in - let* inbox_from_tezos_node = - get_inbox_from_tezos_node sc_rollup client - in + let* inbox_from_tezos_node = get_inbox_from_tezos_node client in return @@ Check.( (inbox_from_sc_rollup_node = inbox_from_tezos_node) -- GitLab From 2178634f84c2d65da13ac6184d2e551df7794ff5 Mon Sep 17 00:00:00 2001 From: Valentin Chaboche Date: Tue, 4 Oct 2022 13:40:10 +0200 Subject: [PATCH 05/36] Scoru,Proto: create unique inbox at migration from L and Genesis --- src/proto_alpha/lib_protocol/TEZOS_PROTOCOL | 7 +++--- src/proto_alpha/lib_protocol/dune | 24 +++++++++---------- src/proto_alpha/lib_protocol/init_storage.ml | 4 +++- .../lib_protocol/sc_rollup_inbox_repr.ml | 1 - .../lib_protocol/sc_rollup_inbox_storage.ml | 6 +++++ .../lib_protocol/sc_rollup_inbox_storage.mli | 3 +++ 6 files changed, 28 insertions(+), 17 deletions(-) diff --git a/src/proto_alpha/lib_protocol/TEZOS_PROTOCOL b/src/proto_alpha/lib_protocol/TEZOS_PROTOCOL index 29acacd89e7b..28da979c3874 100644 --- a/src/proto_alpha/lib_protocol/TEZOS_PROTOCOL +++ b/src/proto_alpha/lib_protocol/TEZOS_PROTOCOL @@ -153,6 +153,10 @@ "Liquidity_baking_lqt", "Liquidity_baking_migration", + "Sc_rollup_costs", + "Sc_rollup_errors", + "Sc_rollup_inbox_storage", + "Legacy_script_patches", "Init_storage", "Sapling_validator", @@ -164,10 +168,7 @@ "Tx_rollup_inbox_storage", "Tx_rollup_commitment_storage", "Tx_rollup_storage", - "Sc_rollup_costs", - "Sc_rollup_errors", "Sc_rollup_commitment_storage", - "Sc_rollup_inbox_storage", "Sc_rollup_outbox_storage", "Sc_rollup_stake_storage", "Sc_rollup_storage", diff --git a/src/proto_alpha/lib_protocol/dune b/src/proto_alpha/lib_protocol/dune index ccbbfeb2cc9e..90310f785551 100644 --- a/src/proto_alpha/lib_protocol/dune +++ b/src/proto_alpha/lib_protocol/dune @@ -172,6 +172,9 @@ Liquidity_baking_cpmm Liquidity_baking_lqt Liquidity_baking_migration + Sc_rollup_costs + Sc_rollup_errors + Sc_rollup_inbox_storage Legacy_script_patches Init_storage Sapling_validator @@ -182,10 +185,7 @@ Tx_rollup_inbox_storage Tx_rollup_commitment_storage Tx_rollup_storage - Sc_rollup_costs - Sc_rollup_errors Sc_rollup_commitment_storage - Sc_rollup_inbox_storage Sc_rollup_outbox_storage Sc_rollup_stake_storage Sc_rollup_storage @@ -441,6 +441,9 @@ liquidity_baking_cpmm.ml liquidity_baking_lqt.ml liquidity_baking_migration.ml liquidity_baking_migration.mli + sc_rollup_costs.ml sc_rollup_costs.mli + sc_rollup_errors.ml + sc_rollup_inbox_storage.ml sc_rollup_inbox_storage.mli legacy_script_patches.ml init_storage.ml init_storage.mli sapling_validator.ml @@ -451,10 +454,7 @@ tx_rollup_inbox_storage.ml tx_rollup_inbox_storage.mli tx_rollup_commitment_storage.ml tx_rollup_commitment_storage.mli tx_rollup_storage.ml tx_rollup_storage.mli - sc_rollup_costs.ml sc_rollup_costs.mli - sc_rollup_errors.ml sc_rollup_commitment_storage.ml sc_rollup_commitment_storage.mli - sc_rollup_inbox_storage.ml sc_rollup_inbox_storage.mli sc_rollup_outbox_storage.ml sc_rollup_outbox_storage.mli sc_rollup_stake_storage.ml sc_rollup_stake_storage.mli sc_rollup_storage.ml sc_rollup_storage.mli @@ -690,6 +690,9 @@ liquidity_baking_cpmm.ml liquidity_baking_lqt.ml liquidity_baking_migration.ml liquidity_baking_migration.mli + sc_rollup_costs.ml sc_rollup_costs.mli + sc_rollup_errors.ml + sc_rollup_inbox_storage.ml sc_rollup_inbox_storage.mli legacy_script_patches.ml init_storage.ml init_storage.mli sapling_validator.ml @@ -700,10 +703,7 @@ tx_rollup_inbox_storage.ml tx_rollup_inbox_storage.mli tx_rollup_commitment_storage.ml tx_rollup_commitment_storage.mli tx_rollup_storage.ml tx_rollup_storage.mli - sc_rollup_costs.ml sc_rollup_costs.mli - sc_rollup_errors.ml sc_rollup_commitment_storage.ml sc_rollup_commitment_storage.mli - sc_rollup_inbox_storage.ml sc_rollup_inbox_storage.mli sc_rollup_outbox_storage.ml sc_rollup_outbox_storage.mli sc_rollup_stake_storage.ml sc_rollup_stake_storage.mli sc_rollup_storage.ml sc_rollup_storage.mli @@ -944,6 +944,9 @@ liquidity_baking_cpmm.ml liquidity_baking_lqt.ml liquidity_baking_migration.ml liquidity_baking_migration.mli + sc_rollup_costs.ml sc_rollup_costs.mli + sc_rollup_errors.ml + sc_rollup_inbox_storage.ml sc_rollup_inbox_storage.mli legacy_script_patches.ml init_storage.ml init_storage.mli sapling_validator.ml @@ -954,10 +957,7 @@ tx_rollup_inbox_storage.ml tx_rollup_inbox_storage.mli tx_rollup_commitment_storage.ml tx_rollup_commitment_storage.mli tx_rollup_storage.ml tx_rollup_storage.mli - sc_rollup_costs.ml sc_rollup_costs.mli - sc_rollup_errors.ml sc_rollup_commitment_storage.ml sc_rollup_commitment_storage.mli - sc_rollup_inbox_storage.ml sc_rollup_inbox_storage.mli sc_rollup_outbox_storage.ml sc_rollup_outbox_storage.mli sc_rollup_stake_storage.ml sc_rollup_stake_storage.mli sc_rollup_storage.ml sc_rollup_storage.mli diff --git a/src/proto_alpha/lib_protocol/init_storage.ml b/src/proto_alpha/lib_protocol/init_storage.ml index 8f5468040286..7414ef6b5d63 100644 --- a/src/proto_alpha/lib_protocol/init_storage.ml +++ b/src/proto_alpha/lib_protocol/init_storage.ml @@ -154,6 +154,7 @@ let prepare_first_block _chain_id ctxt ~typecheck ~level ~timestamp = >>=? fun (ctxt, operation_results) -> Storage.Pending_migration.Operation_results.init ctxt operation_results >>=? fun ctxt -> + Sc_rollup_inbox_storage.init ctxt >>=? fun ctxt -> return ( ctxt, commitments_balance_updates @ bootstrap_balance_updates @@ -165,7 +166,8 @@ let prepare_first_block _chain_id ctxt ~typecheck ~level ~timestamp = if that is done, do not set Storage.Tenderbake.First_level_of_protocol. *) Raw_level_repr.of_int32 level >>?= fun level -> Storage.Tenderbake.First_level_of_protocol.update ctxt level - >>=? fun ctxt -> return (ctxt, [])) + >>=? fun ctxt -> + Sc_rollup_inbox_storage.init ctxt >>=? fun ctxt -> return (ctxt, [])) >>=? fun (ctxt, balance_updates) -> List.fold_right_es patch_script Legacy_script_patches.addresses_to_patch ctxt >>=? fun ctxt -> diff --git a/src/proto_alpha/lib_protocol/sc_rollup_inbox_repr.ml b/src/proto_alpha/lib_protocol/sc_rollup_inbox_repr.ml index 4149bb6ab559..2f41b81d3a1a 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_inbox_repr.ml +++ b/src/proto_alpha/lib_protocol/sc_rollup_inbox_repr.ml @@ -1163,7 +1163,6 @@ struct let empty context level = let open Lwt_syntax in - assert (Raw_level_repr.(level <> Raw_level_repr.root)) ; let pre_genesis_level = Raw_level_repr.root in let* initial_level = new_level_tree context pre_genesis_level in let* () = commit_tree context initial_level pre_genesis_level in diff --git a/src/proto_alpha/lib_protocol/sc_rollup_inbox_storage.ml b/src/proto_alpha/lib_protocol/sc_rollup_inbox_storage.ml index c5d8e677f994..9ff452419a99 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_inbox_storage.ml +++ b/src/proto_alpha/lib_protocol/sc_rollup_inbox_storage.ml @@ -175,3 +175,9 @@ let add_internal_message ctxt rollup ~payload ~sender ~source = module Internal_for_tests = struct let update_num_and_size_of_messages = update_num_and_size_of_messages end + +let init ctxt = + let open Lwt_result_syntax in + let ({level; _} : Level_repr.t) = Raw_context.current_level ctxt in + let*! inbox = Sc_rollup_inbox_repr.empty (Raw_context.recover ctxt) level in + Store.Inbox.init ctxt inbox diff --git a/src/proto_alpha/lib_protocol/sc_rollup_inbox_storage.mli b/src/proto_alpha/lib_protocol/sc_rollup_inbox_storage.mli index 05031097f657..a74340df7443 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_inbox_storage.mli +++ b/src/proto_alpha/lib_protocol/sc_rollup_inbox_storage.mli @@ -59,6 +59,9 @@ val add_internal_message : source:Signature.public_key_hash -> (Sc_rollup_inbox_repr.t * Z.t * Raw_context.t) tzresult Lwt.t +(** Initialize the inbox in the storage at protocol initialization. *) +val init : Raw_context.t -> Raw_context.t tzresult Lwt.t + (**/**) module Internal_for_tests : sig -- GitLab From 945b66e95e678314e064f621f03b83068abe22a1 Mon Sep 17 00:00:00 2001 From: Valentin Chaboche Date: Tue, 4 Oct 2022 14:23:57 +0200 Subject: [PATCH 06/36] Scoru,Proto: deactivate (temporarily) gas for back pointers creation --- .../lib_protocol/sc_rollup_inbox_storage.ml | 20 ++++++++----------- 1 file changed, 8 insertions(+), 12 deletions(-) diff --git a/src/proto_alpha/lib_protocol/sc_rollup_inbox_storage.ml b/src/proto_alpha/lib_protocol/sc_rollup_inbox_storage.ml index 9ff452419a99..79d012403540 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_inbox_storage.ml +++ b/src/proto_alpha/lib_protocol/sc_rollup_inbox_storage.ml @@ -88,24 +88,20 @@ let add_messages ctxt rollup messages = let* () = assert_inbox_nb_messages_in_commitment_period ctxt inbox num_messages in - let inbox_level = Sc_rollup_inbox_repr.inbox_level inbox in - let* ctxt, genesis_info = Storage.Sc_rollup.Genesis_info.get ctxt rollup in - let origination_level = genesis_info.level in - let levels = - Int32.sub - (Raw_level_repr.to_int32 inbox_level) - (Raw_level_repr.to_int32 origination_level) - in - let*? current_messages, ctxt = - Sc_rollup_in_memory_inbox.current_messages ctxt rollup - in + (* TODO: https://gitlab.com/tezos/tezos/-/issues/3292 + + The carbonation needs to be activated again with the new internal inbox's + design, i.e. the skip list. *) let cost_add_serialized_messages = Sc_rollup_costs.cost_add_serialized_messages ~num_messages ~total_messages_size - levels + 0l in let*? ctxt = Raw_context.consume_gas ctxt cost_add_serialized_messages in + let*? current_messages, ctxt = + Sc_rollup_in_memory_inbox.current_messages ctxt rollup + in (* Notice that the protocol is forgetful: it throws away the inbox history. On the contrary, the history is stored by the rollup -- GitLab From afc66c7759c5d7dea715ee471b07cddbf4c5de4e Mon Sep 17 00:00:00 2001 From: Valentin Chaboche Date: Tue, 4 Oct 2022 14:31:38 +0200 Subject: [PATCH 07/36] Scoru,Proto: one unique inbox in context memory --- .../sc_rollup_benchmarks.ml | 24 +++--- .../lib_protocol/alpha_context.mli | 2 +- src/proto_alpha/lib_protocol/apply.ml | 4 +- src/proto_alpha/lib_protocol/raw_context.ml | 58 ++------------ src/proto_alpha/lib_protocol/raw_context.mli | 5 +- .../lib_protocol/sc_rollup_inbox_storage.ml | 18 ++--- .../lib_protocol/sc_rollup_inbox_storage.mli | 5 +- .../test/unit/test_sc_rollup_storage.ml | 80 +------------------ 8 files changed, 33 insertions(+), 163 deletions(-) diff --git a/src/proto_alpha/lib_benchmarks_proto/sc_rollup_benchmarks.ml b/src/proto_alpha/lib_benchmarks_proto/sc_rollup_benchmarks.ml index 681dea29cdd2..ce8167b89838 100644 --- a/src/proto_alpha/lib_benchmarks_proto/sc_rollup_benchmarks.ml +++ b/src/proto_alpha/lib_benchmarks_proto/sc_rollup_benchmarks.ml @@ -241,14 +241,11 @@ module Sc_rollup_add_external_messages_benchmark = struct (rollup, ctxt) in - let add_message_and_increment_level ctxt rollup = + let add_message_and_increment_level ctxt = let open Lwt_result_syntax in let+ inbox, _, ctxt = Lwt.map Environment.wrap_tzresult - @@ Sc_rollup_inbox_storage.add_external_messages - ctxt - rollup - ["CAFEBABE"] + @@ Sc_rollup_inbox_storage.add_external_messages ctxt ["CAFEBABE"] in let ctxt = Raw_context.Internal_for_tests.add_level ctxt 1 in (inbox, ctxt) @@ -256,25 +253,24 @@ module Sc_rollup_add_external_messages_benchmark = struct let prepare_benchmark_scenario () = let open Lwt_result_syntax in - let rec add_messages_for_level ctxt inbox rollup = + let rec add_messages_for_level ctxt inbox = if Raw_level_repr.((Raw_context.current_level ctxt).level > last_level) then return (inbox, ctxt) else - let* inbox, ctxt = add_message_and_increment_level ctxt rollup in - add_messages_for_level ctxt inbox rollup + let* inbox, ctxt = add_message_and_increment_level ctxt in + add_messages_for_level ctxt inbox in - let* rollup, ctxt = ctxt_with_rollup in + let* _rollup, ctxt = ctxt_with_rollup in let*! inbox = Sc_rollup_inbox_repr.empty (Raw_context.recover ctxt) (Raw_context.current_level ctxt).level in - let* inbox, ctxt = add_messages_for_level ctxt inbox rollup in - let+ messages, _ctxt = - Lwt.return @@ Environment.wrap_tzresult - @@ Raw_context.Sc_rollup_in_memory_inbox.current_messages ctxt rollup + let* inbox, ctxt = add_messages_for_level ctxt inbox in + let messages = + Raw_context.Sc_rollup_in_memory_inbox.current_messages ctxt in - (inbox, ctxt, messages) + return (inbox, ctxt, messages) in let inbox, ctxt, current_messages = diff --git a/src/proto_alpha/lib_protocol/alpha_context.mli b/src/proto_alpha/lib_protocol/alpha_context.mli index 605d1f259d29..69a96077f114 100644 --- a/src/proto_alpha/lib_protocol/alpha_context.mli +++ b/src/proto_alpha/lib_protocol/alpha_context.mli @@ -3212,7 +3212,7 @@ module Sc_rollup : sig Merkelized_operations with type tree = P.tree and type inbox_context = P.t val add_external_messages : - context -> rollup -> string list -> (t * Z.t * context) tzresult Lwt.t + context -> string list -> (t * Z.t * context) tzresult Lwt.t val add_internal_message : context -> diff --git a/src/proto_alpha/lib_protocol/apply.ml b/src/proto_alpha/lib_protocol/apply.ml index 2051f19cbe62..e5cea53ad570 100644 --- a/src/proto_alpha/lib_protocol/apply.ml +++ b/src/proto_alpha/lib_protocol/apply.ml @@ -1314,8 +1314,8 @@ let apply_manager_operation : } in return (ctxt, result, []) - | Sc_rollup_add_messages {rollup; messages} -> - Sc_rollup.Inbox.add_external_messages ctxt rollup messages + | Sc_rollup_add_messages {rollup = _; messages} -> + Sc_rollup.Inbox.add_external_messages ctxt messages >>=? fun (inbox_after, _size, ctxt) -> let consumed_gas = Gas.consumed ~since:ctxt_before_op ~until:ctxt in let result = Sc_rollup_add_messages_result {consumed_gas; inbox_after} in diff --git a/src/proto_alpha/lib_protocol/raw_context.ml b/src/proto_alpha/lib_protocol/raw_context.ml index 334fac6fed96..c18130400cfb 100644 --- a/src/proto_alpha/lib_protocol/raw_context.ml +++ b/src/proto_alpha/lib_protocol/raw_context.ml @@ -26,23 +26,6 @@ module Int_set = Set.Make (Compare.Int) -module Sc_rollup_address_comparable = struct - include Sc_rollup_repr.Address - - (* TODO: https://gitlab.com/tezos/tezos/-/issues/2648 - Fill in real benchmarked values. - Need to create benchmark and fill in values. - *) - let compare_cost _rollup = Saturation_repr.safe_int 15 -end - -(* This will not create the map yet, as functions to consume gas have not - been defined yet. However, it will make the type of the carbonated map - available to be used in the definition of type back. -*) -module Sc_rollup_address_map_builder = - Carbonated_map.Make_builder (Sc_rollup_address_comparable) - (* Gas levels maintenance @@ -263,7 +246,7 @@ type back = { Tez_repr.t Signature.Public_key_hash.Map.t option; tx_rollup_current_messages : Tx_rollup_inbox_repr.Merkle.tree Tx_rollup_repr.Map.t; - sc_rollup_current_messages : Context.tree Sc_rollup_address_map_builder.t; + sc_rollup_current_messages : Context.tree option; dal_slot_fee_market : Dal_slot_repr.Slot_market.t; (* DAL/FIXME https://gitlab.com/tezos/tezos/-/issues/3105 @@ -565,19 +548,6 @@ let gas_consumed ~since ~until = Gas_limit_repr.Arith.sub before after | _, _ -> Gas_limit_repr.Arith.zero -(* Once gas consuming functions have been defined, - we can instantiate the carbonated map. - See [Sc_rollup_carbonated_map_maker] above. -*) - -module Gas = struct - type context = t - - let consume = consume_gas -end - -module Sc_rollup_carbonated_map = Sc_rollup_address_map_builder.Make (Gas) - type missing_key_kind = Get | Set | Del | Copy type storage_error = @@ -842,7 +812,7 @@ let prepare ~level ~predecessor_timestamp ~timestamp ctxt = sampler_state = Cycle_repr.Map.empty; stake_distribution_for_current_cycle = None; tx_rollup_current_messages = Tx_rollup_repr.Map.empty; - sc_rollup_current_messages = Sc_rollup_carbonated_map.empty; + sc_rollup_current_messages = None; dal_slot_fee_market = Dal_slot_repr.Slot_market.init ~length:constants.Constants_parametric_repr.dal.number_of_slots; @@ -1484,27 +1454,11 @@ end the block in a in-memory map. *) module Sc_rollup_in_memory_inbox = struct - let current_messages ctxt rollup = - let open Tzresult_syntax in - let+ messages, ctxt = - Sc_rollup_carbonated_map.find - ctxt - rollup - ctxt.back.sc_rollup_current_messages - in - (messages, ctxt) + let current_messages ctxt = ctxt.back.sc_rollup_current_messages - let set_current_messages ctxt rollup tree = - let open Tzresult_syntax in - let+ sc_rollup_current_messages, ctxt = - Sc_rollup_carbonated_map.update - ctxt - rollup - (fun ctxt _prev_tree -> return (Some tree, ctxt)) - ctxt.back.sc_rollup_current_messages - in - let back = {ctxt.back with sc_rollup_current_messages} in - {ctxt with back} + let set_current_messages ctxt tree = + let sc_rollup_current_messages = Some tree in + {ctxt with back = {ctxt.back with sc_rollup_current_messages}} end module Dal = struct diff --git a/src/proto_alpha/lib_protocol/raw_context.mli b/src/proto_alpha/lib_protocol/raw_context.mli index 719423626040..e8a284fd5ca5 100644 --- a/src/proto_alpha/lib_protocol/raw_context.mli +++ b/src/proto_alpha/lib_protocol/raw_context.mli @@ -387,10 +387,9 @@ module Tx_rollup : sig end module Sc_rollup_in_memory_inbox : sig - val current_messages : - t -> Sc_rollup_repr.t -> (Context.tree option * t) tzresult + val current_messages : t -> Context.tree option - val set_current_messages : t -> Sc_rollup_repr.t -> Context.tree -> t tzresult + val set_current_messages : t -> Context.tree -> t end module Dal : sig diff --git a/src/proto_alpha/lib_protocol/sc_rollup_inbox_storage.ml b/src/proto_alpha/lib_protocol/sc_rollup_inbox_storage.ml index 79d012403540..edc2da0cdad6 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_inbox_storage.ml +++ b/src/proto_alpha/lib_protocol/sc_rollup_inbox_storage.ml @@ -53,7 +53,7 @@ let assert_inbox_nb_messages_in_commitment_period ctxt inbox extra_messages = Compare.Int64.(nb_messages_in_commitment_period > limit) Sc_rollup_max_number_of_messages_reached_for_commitment_period -let add_messages ctxt rollup messages = +let add_messages ctxt messages = let {Level_repr.level; _} = Raw_context.current_level ctxt in let open Lwt_tzresult_syntax in let open Raw_context in @@ -99,9 +99,7 @@ let add_messages ctxt rollup messages = 0l in let*? ctxt = Raw_context.consume_gas ctxt cost_add_serialized_messages in - let*? current_messages, ctxt = - Sc_rollup_in_memory_inbox.current_messages ctxt rollup - in + let current_messages = Sc_rollup_in_memory_inbox.current_messages ctxt in (* Notice that the protocol is forgetful: it throws away the inbox history. On the contrary, the history is stored by the rollup @@ -115,8 +113,8 @@ let add_messages ctxt rollup messages = messages current_messages in - let*? ctxt = - Sc_rollup_in_memory_inbox.set_current_messages ctxt rollup current_messages + let ctxt = + Sc_rollup_in_memory_inbox.set_current_messages ctxt current_messages in (* TODO: https://gitlab.com/tezos/tezos/-/issues/3920 Account the size's difference with the carbonated storage. *) @@ -156,17 +154,17 @@ let serialize_internal_message ctxt ~payload ~sender ~source = in return (message, ctxt) -let add_external_messages ctxt rollup external_messages = +let add_external_messages ctxt external_messages = let open Lwt_result_syntax in let*? ctxt, messages = serialize_external_messages ctxt external_messages in - add_messages ctxt rollup messages + add_messages ctxt messages -let add_internal_message ctxt rollup ~payload ~sender ~source = +let add_internal_message ctxt _rollup ~payload ~sender ~source = let open Lwt_result_syntax in let*? message, ctxt = serialize_internal_message ctxt ~payload ~sender ~source in - add_messages ctxt rollup [message] + add_messages ctxt [message] module Internal_for_tests = struct let update_num_and_size_of_messages = update_num_and_size_of_messages diff --git a/src/proto_alpha/lib_protocol/sc_rollup_inbox_storage.mli b/src/proto_alpha/lib_protocol/sc_rollup_inbox_storage.mli index a74340df7443..5921bbd11d69 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_inbox_storage.mli +++ b/src/proto_alpha/lib_protocol/sc_rollup_inbox_storage.mli @@ -42,14 +42,13 @@ val get_inbox : *) val add_external_messages : Raw_context.t -> - Sc_rollup_repr.t -> string list -> (Sc_rollup_inbox_repr.t * Z.t * Raw_context.t) tzresult Lwt.t (** [add_internal_message context rollup ~payload ~sender ~source] adds the - internal message of [payload], [sender], and [source] to [rollup]'s inbox. + internal message of [payload], [sender], and [source] to [rollup]'s inbox. - See [add_external_messages] for returned values and failures. + See [add_external_messages] for returned values and failures. *) val add_internal_message : Raw_context.t -> diff --git a/src/proto_alpha/lib_protocol/test/unit/test_sc_rollup_storage.ml b/src/proto_alpha/lib_protocol/test/unit/test_sc_rollup_storage.ml index 6577109093e6..bd9d7b882581 100644 --- a/src/proto_alpha/lib_protocol/test/unit/test_sc_rollup_storage.ml +++ b/src/proto_alpha/lib_protocol/test/unit/test_sc_rollup_storage.ml @@ -2367,76 +2367,9 @@ let check_gas_consumed ~since ~until = let as_cost = Gas_limit_repr.cost_of_gas @@ gas_consumed ~since ~until in Saturation_repr.to_int as_cost -(* Cost of compare key is currently free, which means that the lookup operation - on a map of size 1 will consume 50 gas units (base cost), plus 2 for the - traversal overhead, plus 15 for comparing the key, for a total of 67 gas units. -*) -let test_carbonated_memory_inbox_retrieval () = - let open Raw_context in - let* ctxt = new_context () in - let ctxt = - set_gas_limit ctxt (Gas_limit_repr.Arith.integral_of_int_exn 20_000) - in - let* rollup, _genesis_hash, ctxt = lift @@ new_sc_rollup ctxt in - let*? _, ctxt' = - Environment.wrap_tzresult - @@ Sc_rollup_in_memory_inbox.current_messages ctxt rollup - in - let consumed_gas = check_gas_consumed ~since:ctxt ~until:ctxt' in - Assert.equal_int ~loc:__LOC__ consumed_gas 67 - -(* A bit ugly, as we repeat the logic for setting messages - defined in `Sc_rollup_storage`. However, this is necessary - since we want to capture the context before and after performing - the `set_current_messages` operation on the in-memory map of messages. - - Assuming that the cost of compare key is free, - we expect set_messages to consume 67 gas units for finding the key, - and 134 gas units for performing the update, for a total of 201 gas units. -*) -let test_carbonated_memory_inbox_set_messages () = - let open Raw_context in - let* ctxt = new_context () in - let ctxt = - set_gas_limit ctxt (Gas_limit_repr.Arith.integral_of_int_exn 20_000) - in - let* rollup, _genesis_hash, ctxt = lift @@ new_sc_rollup ctxt in - let* inbox, ctxt = lift @@ Sc_rollup_inbox_storage.get_inbox ctxt in - let*? current_messages, ctxt = - Environment.wrap_tzresult - @@ Sc_rollup_in_memory_inbox.current_messages ctxt rollup - in - let {Level_repr.level; _} = Raw_context.current_level ctxt in - let*? messages_to_add = - Environment.wrap_tzresult - @@ List.map_e - (fun external_message -> - Sc_rollup_inbox_message_repr.(serialize @@ External external_message)) - ["CAFEBABE"; "CAFEBABE"; "CAFEBABE"] - in - let* current_messages, _ = - lift - @@ Sc_rollup_inbox_repr.( - add_messages_no_history - (Raw_context.recover ctxt) - inbox - level - messages_to_add - current_messages) - in - let*? ctxt' = - Environment.wrap_tzresult - @@ Sc_rollup_in_memory_inbox.set_current_messages - ctxt - rollup - current_messages - in - let consumed_gas = check_gas_consumed ~since:ctxt ~until:ctxt' in - Assert.equal_int ~loc:__LOC__ consumed_gas 201 - let test_limit_on_number_of_messages_during_commitment_period with_gap () = let* ctxt = new_context () in - let* rollup, _genesis_hash, ctxt = lift @@ new_sc_rollup ctxt in + let* _rollup, _genesis_hash, ctxt = lift @@ new_sc_rollup ctxt in let commitment_period = Constants_storage.sc_rollup_commitment_period_in_blocks ctxt in @@ -2459,8 +2392,7 @@ let test_limit_on_number_of_messages_during_commitment_period with_gap () = else ctxt in let* _inbox, _size_diff, ctxt = - lift - @@ Sc_rollup_inbox_storage.add_external_messages ctxt rollup payload + lift @@ Sc_rollup_inbox_storage.add_external_messages ctxt payload in return ctxt) ctxt @@ -3150,14 +3082,6 @@ let tests = "A commitment with zero ticks shouldn't change the state" `Quick test_zero_tick_commitment_cannot_change_state; - Tztest.tztest - "Retrieval of in-memory message inbox consumes gas" - `Quick - test_carbonated_memory_inbox_retrieval; - Tztest.tztest - "Setting messages in in-memory message inbox consumes gas" - `Quick - test_carbonated_memory_inbox_set_messages; Tztest.tztest "The number of messages pushed during commitment period stays under \ limit (without gap)" -- GitLab From 580596f517a87e8613b8ca32eaf1178dfb1ff7f1 Mon Sep 17 00:00:00 2001 From: Valentin Chaboche Date: Tue, 4 Oct 2022 16:29:16 +0200 Subject: [PATCH 08/36] Scoru,Proto: remove [rollup] from [sc_rollup_add_messages] --- src/proto_alpha/bin_sc_rollup_node/daemon.ml | 2 +- src/proto_alpha/bin_sc_rollup_node/inbox.ml | 2 +- .../lib_client/client_proto_context.ml | 4 +- .../lib_client/client_proto_context.mli | 1 - .../lib_client/operation_result.ml | 8 +- .../client_proto_context_commands.ml | 7 -- src/proto_alpha/lib_injector/l1_operation.ml | 6 +- .../lib_protocol/alpha_context.mli | 1 - src/proto_alpha/lib_protocol/apply.ml | 2 +- .../lib_protocol/operation_repr.ml | 14 +-- .../lib_protocol/operation_repr.mli | 4 +- .../lib_protocol/test/helpers/op.ml | 4 +- .../lib_protocol/test/helpers/op.mli | 1 - .../test/helpers/operation_generator.ml | 4 +- .../integration/operations/test_sc_rollup.ml | 6 +- .../validate/manager_operation_helpers.ml | 3 - .../test/pbt/test_refutation_game.ml | 11 ++- tezt/lib_tezos/client.ml | 11 +-- tezt/lib_tezos/client.mli | 4 +- tezt/long_tests/sc_rollup.ml | 5 +- tezt/tests/sc_rollup.ml | 90 +++++++++---------- 21 files changed, 72 insertions(+), 118 deletions(-) diff --git a/src/proto_alpha/bin_sc_rollup_node/daemon.ml b/src/proto_alpha/bin_sc_rollup_node/daemon.ml index 0651ba495ea5..ce8e0f668d9a 100644 --- a/src/proto_alpha/bin_sc_rollup_node/daemon.ml +++ b/src/proto_alpha/bin_sc_rollup_node/daemon.ml @@ -109,7 +109,7 @@ module Make (PVM : Pvm.S) = struct (result : kind Apply_results.manager_operation_result) = let open Lwt_result_syntax in let is_for_my_rollup : type kind. kind manager_operation -> bool = function - | Sc_rollup_add_messages {rollup = _; _} -> true + | Sc_rollup_add_messages _ -> true | Sc_rollup_cement {rollup; _} | Sc_rollup_publish {rollup; _} | Sc_rollup_refute {rollup; _} diff --git a/src/proto_alpha/bin_sc_rollup_node/inbox.ml b/src/proto_alpha/bin_sc_rollup_node/inbox.ml index d3138d19dc7f..b88ad34a15d2 100644 --- a/src/proto_alpha/bin_sc_rollup_node/inbox.ml +++ b/src/proto_alpha/bin_sc_rollup_node/inbox.ml @@ -100,7 +100,7 @@ let get_messages Node_context.{l1_ctxt; rollup_address; _} head = let open Result_syntax in let+ accu = accu in match operation with - | Sc_rollup_add_messages {rollup = _; messages} -> + | Sc_rollup_add_messages {messages} -> let messages = List.map (fun message -> Sc_rollup.Inbox_message.External message) diff --git a/src/proto_alpha/lib_client/client_proto_context.ml b/src/proto_alpha/lib_client/client_proto_context.ml index a6abe374a7cd..fcdcb7aaba9f 100644 --- a/src/proto_alpha/lib_client/client_proto_context.ml +++ b/src/proto_alpha/lib_client/client_proto_context.ml @@ -1337,14 +1337,14 @@ let sc_rollup_originate (cctxt : #full) ~chain ~block ?confirmations ?dry_run let sc_rollup_add_messages (cctxt : #full) ~chain ~block ?confirmations ?dry_run ?verbose_signing ?simulation ?fee ?gas_limit ?storage_limit ?counter ~source - ~rollup ~messages ~src_pk ~src_sk ~fee_parameter () = + ~messages ~src_pk ~src_sk ~fee_parameter () = let op = Annotated_manager_operation.Single_manager (Injection.prepare_manager_operation ~fee:(Limit.of_option fee) ~gas_limit:(Limit.of_option gas_limit) ~storage_limit:(Limit.of_option storage_limit) - (Sc_rollup_add_messages {rollup; messages})) + (Sc_rollup_add_messages {messages})) in Injection.inject_manager_operation cctxt diff --git a/src/proto_alpha/lib_client/client_proto_context.mli b/src/proto_alpha/lib_client/client_proto_context.mli index a5bfcd3923f8..4b83e4bdc119 100644 --- a/src/proto_alpha/lib_client/client_proto_context.mli +++ b/src/proto_alpha/lib_client/client_proto_context.mli @@ -842,7 +842,6 @@ val sc_rollup_add_messages : ?storage_limit:counter -> ?counter:counter -> source:public_key_hash -> - rollup:Alpha_context.Sc_rollup.t -> messages:string list -> src_pk:public_key -> src_sk:Client_keys.sk_uri -> diff --git a/src/proto_alpha/lib_client/operation_result.ml b/src/proto_alpha/lib_client/operation_result.ml index 5d18d7f875c6..0c95c2b04f09 100644 --- a/src/proto_alpha/lib_client/operation_result.ml +++ b/src/proto_alpha/lib_client/operation_result.ml @@ -328,12 +328,8 @@ let pp_manager_operation_content (type kind) source ppf parameters_ty Blake2B.pp (Blake2B.hash_string [boot_sector]) - | Sc_rollup_add_messages {rollup; messages = _} -> - Format.fprintf - ppf - "Smart contract rollup messages submission:@,Address: %a" - Sc_rollup.Address.pp - rollup + | Sc_rollup_add_messages {messages = _} -> + Format.pp_print_string ppf "Smart contract rollup messages submission" | Sc_rollup_cement {rollup; commitment} -> Format.fprintf ppf diff --git a/src/proto_alpha/lib_client_commands/client_proto_context_commands.ml b/src/proto_alpha/lib_client_commands/client_proto_context_commands.ml index 8ad1a7e444a6..eeaa3ffa1c6f 100644 --- a/src/proto_alpha/lib_client_commands/client_proto_context_commands.ml +++ b/src/proto_alpha/lib_client_commands/client_proto_context_commands.ml @@ -3000,11 +3000,6 @@ let commands_rw () = @@ Client_keys.Public_key_hash.source_param ~name:"src" ~desc:"Name of the source contract." - @@ prefixes ["to"] - @@ param - ~name:"dst" - ~desc:"Address of the destination smart-contract rollup." - Sc_rollup_params.sc_rollup_address_parameter @@ stop) (fun ( fee, dry_run, @@ -3015,7 +3010,6 @@ let commands_rw () = counter ) messages source - rollup cctxt -> let open Lwt_result_syntax in let* messages = @@ -3042,7 +3036,6 @@ let commands_rw () = ?confirmations:cctxt#confirmations ~simulation ~source - ~rollup ~messages ~src_pk ~src_sk diff --git a/src/proto_alpha/lib_injector/l1_operation.ml b/src/proto_alpha/lib_injector/l1_operation.ml index e82d6668f88d..43fa5c6e4d44 100644 --- a/src/proto_alpha/lib_injector/l1_operation.ml +++ b/src/proto_alpha/lib_injector/l1_operation.ml @@ -160,13 +160,11 @@ module Manager_operation = struct level (Format.pp_print_list pp_rollup_reveal) tickets_info - | Sc_rollup_add_messages {rollup; messages} -> + | Sc_rollup_add_messages {messages} -> Format.fprintf ppf - "publishing %d messages to rollup %a inbox" + "publishing %d messages to smart rollups' inbox" (List.length messages) - Sc_rollup.Address.pp - rollup | Sc_rollup_cement {rollup; commitment} -> Format.fprintf ppf diff --git a/src/proto_alpha/lib_protocol/alpha_context.mli b/src/proto_alpha/lib_protocol/alpha_context.mli index 69a96077f114..a4cd243c4351 100644 --- a/src/proto_alpha/lib_protocol/alpha_context.mli +++ b/src/proto_alpha/lib_protocol/alpha_context.mli @@ -4396,7 +4396,6 @@ and _ manager_operation = } -> Kind.sc_rollup_originate manager_operation | Sc_rollup_add_messages : { - rollup : Sc_rollup.t; messages : string list; } -> Kind.sc_rollup_add_messages manager_operation diff --git a/src/proto_alpha/lib_protocol/apply.ml b/src/proto_alpha/lib_protocol/apply.ml index e5cea53ad570..f3279cb94345 100644 --- a/src/proto_alpha/lib_protocol/apply.ml +++ b/src/proto_alpha/lib_protocol/apply.ml @@ -1314,7 +1314,7 @@ let apply_manager_operation : } in return (ctxt, result, []) - | Sc_rollup_add_messages {rollup = _; messages} -> + | Sc_rollup_add_messages {messages} -> Sc_rollup.Inbox.add_external_messages ctxt messages >>=? fun (inbox_after, _size, ctxt) -> let consumed_gas = Gas.consumed ~since:ctxt_before_op ~until:ctxt in diff --git a/src/proto_alpha/lib_protocol/operation_repr.ml b/src/proto_alpha/lib_protocol/operation_repr.ml index a66d09dc635a..41ad4307c084 100644 --- a/src/proto_alpha/lib_protocol/operation_repr.ml +++ b/src/proto_alpha/lib_protocol/operation_repr.ml @@ -437,7 +437,6 @@ and _ manager_operation = } -> Kind.sc_rollup_originate manager_operation | Sc_rollup_add_messages : { - rollup : Sc_rollup_repr.t; messages : string list; } -> Kind.sc_rollup_add_messages manager_operation @@ -1160,19 +1159,12 @@ module Encoding = struct { tag = sc_rollup_operation_add_message_tag; name = "sc_rollup_add_messages"; - encoding = - obj2 - (req "rollup" Sc_rollup_repr.encoding) - (req "message" (list string)); + encoding = obj1 (req "message" (list string)); select = (function | Manager (Sc_rollup_add_messages _ as op) -> Some op | _ -> None); - proj = - (function - | Sc_rollup_add_messages {rollup; messages} -> (rollup, messages)); - inj = - (fun (rollup, messages) -> - Sc_rollup_add_messages {rollup; messages}); + proj = (function Sc_rollup_add_messages {messages} -> messages); + inj = (fun messages -> Sc_rollup_add_messages {messages}); } let sc_rollup_cement_case = diff --git a/src/proto_alpha/lib_protocol/operation_repr.mli b/src/proto_alpha/lib_protocol/operation_repr.mli index 73e42f975ed4..27cc6c17cfd7 100644 --- a/src/proto_alpha/lib_protocol/operation_repr.mli +++ b/src/proto_alpha/lib_protocol/operation_repr.mli @@ -511,10 +511,8 @@ and _ manager_operation = parameters_ty : Script_repr.lazy_expr; } -> Kind.sc_rollup_originate manager_operation - (* [Sc_rollup_add_messages] adds messages to a given rollup's - inbox. *) + (* [Sc_rollup_add_messages] adds messages to the smart rollups' inbox. *) | Sc_rollup_add_messages : { - rollup : Sc_rollup_repr.t; messages : string list; } -> Kind.sc_rollup_add_messages manager_operation diff --git a/src/proto_alpha/lib_protocol/test/helpers/op.ml b/src/proto_alpha/lib_protocol/test/helpers/op.ml index 5fbc14b0f8ad..134d1d8ba66a 100644 --- a/src/proto_alpha/lib_protocol/test/helpers/op.ml +++ b/src/proto_alpha/lib_protocol/test/helpers/op.ml @@ -926,7 +926,7 @@ let sc_rollup_recover_bond ?counter ?fee ?gas_limit ?storage_limit ?force_reveal sign account.sk ctxt to_sign_op let sc_rollup_add_messages ?force_reveal ?counter ?fee ?gas_limit ?storage_limit - ctxt (src : Contract.t) rollup messages = + ctxt (src : Contract.t) messages = manager_operation ?force_reveal ?counter @@ -935,7 +935,7 @@ let sc_rollup_add_messages ?force_reveal ?counter ?fee ?gas_limit ?storage_limit ?storage_limit ~source:src ctxt - (Sc_rollup_add_messages {rollup; messages}) + (Sc_rollup_add_messages {messages}) >>=? fun to_sign_op -> Context.Contract.manager ctxt src >|=? fun account -> sign account.sk ctxt to_sign_op diff --git a/src/proto_alpha/lib_protocol/test/helpers/op.mli b/src/proto_alpha/lib_protocol/test/helpers/op.mli index aa869b298bae..ed92eee6e7b4 100644 --- a/src/proto_alpha/lib_protocol/test/helpers/op.mli +++ b/src/proto_alpha/lib_protocol/test/helpers/op.mli @@ -691,7 +691,6 @@ val sc_rollup_add_messages : ?storage_limit:Z.t -> Context.t -> Contract.t -> - Sc_rollup.t -> string list -> Operation.packed tzresult Lwt.t diff --git a/src/proto_alpha/lib_protocol/test/helpers/operation_generator.ml b/src/proto_alpha/lib_protocol/test/helpers/operation_generator.ml index dfc2b0e17206..1cfcf7f17611 100644 --- a/src/proto_alpha/lib_protocol/test/helpers/operation_generator.ml +++ b/src/proto_alpha/lib_protocol/test/helpers/operation_generator.ml @@ -664,9 +664,7 @@ let generate_sc_rollup_originate = let generate_sc_rollup_add_messages = let open QCheck2.Gen in - let+ rollup = random_sc_rollup in - let messages = [] in - Sc_rollup_add_messages {rollup; messages} + return (Sc_rollup_add_messages {messages = []}) let sc_dummy_commitment = let number_of_ticks = diff --git a/src/proto_alpha/lib_protocol/test/integration/operations/test_sc_rollup.ml b/src/proto_alpha/lib_protocol/test/integration/operations/test_sc_rollup.ml index c979c297afa3..d8e8ca25d9ef 100644 --- a/src/proto_alpha/lib_protocol/test/integration/operations/test_sc_rollup.ml +++ b/src/proto_alpha/lib_protocol/test/integration/operations/test_sc_rollup.ml @@ -1516,7 +1516,7 @@ let test_inbox_max_number_of_messages_per_commitment_period () = ~sc_rollup_max_number_of_messages_per_commitment_period Context.T2 in - let* block, rollup = sc_originate block account1 "unit" in + let* block, _rollup = sc_originate block account1 "unit" in let* constants = Context.get_constants (B block) in let Constants.Parametric.{max_number_of_messages_per_commitment_period; _} = constants.parametric.sc_rollup @@ -1526,10 +1526,10 @@ let test_inbox_max_number_of_messages_per_commitment_period () = let messages = List.repeat max_number_of_messages_per_commitment_period "foo" in - let* op = Op.sc_rollup_add_messages (I incr) account1 rollup messages in + let* op = Op.sc_rollup_add_messages (I incr) account1 messages in let* incr = Incremental.add_operation ~check_size:false incr op in (* This break the limit *) - let* op = Op.sc_rollup_add_messages (I incr) account2 rollup ["foo"] in + let* op = Op.sc_rollup_add_messages (I incr) account2 ["foo"] in let expect_apply_failure = function | Environment.Ecoproto_error (Sc_rollup_errors diff --git a/src/proto_alpha/lib_protocol/test/integration/validate/manager_operation_helpers.ml b/src/proto_alpha/lib_protocol/test/integration/validate/manager_operation_helpers.ml index ab2bd849f25b..1698cbaf4072 100644 --- a/src/proto_alpha/lib_protocol/test/integration/validate/manager_operation_helpers.ml +++ b/src/proto_alpha/lib_protocol/test/integration/validate/manager_operation_helpers.ml @@ -1063,8 +1063,6 @@ let mk_sc_rollup_refute (oinfos : operation_req) (infos : infos) = (Some refutation) let mk_sc_rollup_add_messages (oinfos : operation_req) (infos : infos) = - let open Lwt_result_syntax in - let* sc_rollup = sc_rollup_of infos.ctxt.sc_rollup in Op.sc_rollup_add_messages ?fee:oinfos.fee ?gas_limit:oinfos.gas_limit @@ -1073,7 +1071,6 @@ let mk_sc_rollup_add_messages (oinfos : operation_req) (infos : infos) = ?force_reveal:oinfos.force_reveal (B infos.ctxt.block) (contract_of (get_source infos)) - sc_rollup [""] let mk_sc_rollup_timeout (oinfos : operation_req) (infos : infos) = diff --git a/src/proto_alpha/lib_protocol/test/pbt/test_refutation_game.ml b/src/proto_alpha/lib_protocol/test/pbt/test_refutation_game.ml index 02bb39afbf71..11561f0ea0aa 100644 --- a/src/proto_alpha/lib_protocol/test/pbt/test_refutation_game.ml +++ b/src/proto_alpha/lib_protocol/test/pbt/test_refutation_game.ml @@ -219,7 +219,7 @@ let originate_rollup originator messager ~first_inputs block = ~parameters_ty:(Script.lazy_expr @@ Expr.from_string "unit") in let* add_message_operation = - Op.sc_rollup_add_messages (B block) messager sc_rollup first_inputs + Op.sc_rollup_add_messages (B block) messager first_inputs in let* block = Block.bake ~operations:[origination_operation; add_message_operation] block @@ -1006,7 +1006,7 @@ module Arith_test_pvm = struct end (** Construct the inbox for the protocol side. *) -let construct_inbox_proto block rollup levels_and_inputs contract = +let construct_inbox_proto block levels_and_inputs contract = let open Lwt_result_syntax in List.fold_left_es (fun block (level, payloads) -> @@ -1017,7 +1017,7 @@ let construct_inbox_proto block rollup levels_and_inputs contract = in let* block = Block.bake_n (diff_with_level - 1) block in let* operation_add_message = - Op.sc_rollup_add_messages (B block) contract rollup payloads + Op.sc_rollup_add_messages (B block) contract payloads in Block.bake ~operation:operation_add_message block) block @@ -1529,7 +1529,7 @@ let gen_game ?nonempty_inputs ~p1_strategy ~p2_strategy () = let prepare_game block rollup lcc commitment_level p1_client p2_client contract levels_and_inputs = let open Lwt_result_syntax in - let* block = construct_inbox_proto block rollup levels_and_inputs contract in + let* block = construct_inbox_proto block levels_and_inputs contract in let* operation_publish_commitment_p1 = operation_publish_commitment (B block) rollup lcc commitment_level p1_client in @@ -1651,13 +1651,12 @@ let test_game ?nonempty_inputs ~p1_strategy ~p2_strategy () = Op.sc_rollup_add_messages (B block) defender.player.contract - rollup payloads in (* Start the game in between adding messages so the latest protocol inbox is no longer equal to the player's view on inbox. *) let* operation_add_messages2 = - Op.sc_rollup_add_messages (B block) contract3 rollup payloads + Op.sc_rollup_add_messages (B block) contract3 payloads in Block.bake ~operations: diff --git a/tezt/lib_tezos/client.ml b/tezt/lib_tezos/client.ml index b8fb834be8a5..234348004a83 100644 --- a/tezt/lib_tezos/client.ml +++ b/tezt/lib_tezos/client.ml @@ -1834,19 +1834,16 @@ module Sc_rollup = struct let* output = Process.check_and_read_stdout process in parse_rollup_address_in_receipt output - let spawn_send_message ?hooks ?(wait = "none") ?burn_cap ~msg ~src ~dst client - = + let spawn_send_message ?hooks ?(wait = "none") ?burn_cap ~msg ~src client = spawn_command ?hooks client (["--wait"; wait] - @ ["send"; "sc"; "rollup"; "message"; msg; "from"; src; "to"; dst] + @ ["send"; "sc"; "rollup"; "message"; msg; "from"; src] @ optional_arg "burn-cap" Tez.to_string burn_cap) - let send_message ?hooks ?wait ?burn_cap ~msg ~src ~dst client = - let process = - spawn_send_message ?hooks ?wait ?burn_cap ~msg ~src ~dst client - in + let send_message ?hooks ?wait ?burn_cap ~msg ~src client = + let process = spawn_send_message ?hooks ?wait ?burn_cap ~msg ~src client in Process.check process let publish_commitment ?hooks ?(wait = "none") ?burn_cap ~src ~sc_rollup diff --git a/tezt/lib_tezos/client.mli b/tezt/lib_tezos/client.mli index faaeca872df1..634681823290 100644 --- a/tezt/lib_tezos/client.mli +++ b/tezt/lib_tezos/client.mli @@ -1411,14 +1411,13 @@ module Sc_rollup : sig t -> Process.t - (** Run [octez-client send rollup message from to ]. *) + (** Run [octez-client send rollup message from ]. *) val send_message : ?hooks:Process.hooks -> ?wait:string -> ?burn_cap:Tez.t -> msg:string -> src:string -> - dst:string -> t -> unit Lwt.t @@ -1429,7 +1428,6 @@ module Sc_rollup : sig ?burn_cap:Tez.t -> msg:string -> src:string -> - dst:string -> t -> Process.t diff --git a/tezt/long_tests/sc_rollup.ml b/tezt/long_tests/sc_rollup.ml index a97ff92fc09f..c80609e62588 100644 --- a/tezt/long_tests/sc_rollup.ml +++ b/tezt/long_tests/sc_rollup.ml @@ -103,12 +103,11 @@ let setup ?commitment_period ?challenge_window ?timeout f ~protocol = let operator = Constant.bootstrap1.alias in f node client operator -let send_message client sc_rollup msg = +let send_message client msg = let* () = Client.Sc_rollup.send_message ~hooks ~src:Constant.bootstrap2.alias - ~dst:sc_rollup ~msg client in @@ -202,7 +201,7 @@ let test_rollup_node_advances_pvm_state protocols ~test_name ~boot_sector match forwarder with | None -> (* External message *) - send_message client sc_rollup (sf "[%S]" message) + send_message client (sf "[%S]" message) | Some forwarder -> (* Internal message through forwarder *) let* () = diff --git a/tezt/tests/sc_rollup.ml b/tezt/tests/sc_rollup.ml index 6d7ef22b2dfa..345a2c68cd57 100644 --- a/tezt/tests/sc_rollup.ml +++ b/tezt/tests/sc_rollup.ml @@ -508,13 +508,11 @@ let test_rollup_get_chain_block_context_sc_rollup_last_cemented_commitment_hash_ the Tezos node. Then we can observe that the messages are included in the inbox. *) -let send_message ?(src = Constant.bootstrap2.alias) client sc_rollup msg = - let* () = - Client.Sc_rollup.send_message ~hooks ~src ~dst:sc_rollup ~msg client - in +let send_message ?(src = Constant.bootstrap2.alias) client msg = + let* () = Client.Sc_rollup.send_message ~hooks ~src ~msg client in Client.bake_for_and_wait client -let send_messages ?src ?batch_size n sc_rollup client = +let send_messages ?src ?batch_size n client = let messages = List.map (fun i -> @@ -525,14 +523,14 @@ let send_messages ?src ?batch_size n sc_rollup client = "text:" ^ Ezjsonm.to_string json) (range 1 n) in - Lwt_list.iter_s (fun msg -> send_message ?src client sc_rollup msg) messages + Lwt_list.iter_s (fun msg -> send_message ?src client msg) messages let to_text_messages_arg msgs = let json = Ezjsonm.list Ezjsonm.string msgs in "text:" ^ Ezjsonm.to_string ~minify:true json -let send_text_messages ?src client sc_rollup msgs = - send_message ?src client sc_rollup (to_text_messages_arg msgs) +let send_text_messages ?src client msgs = + send_message ?src client (to_text_messages_arg msgs) let parse_inbox json = let go () = @@ -569,9 +567,9 @@ let test_rollup_inbox_size ~kind = kind) (fun protocol -> setup ~protocol @@ fun node client -> - ( with_fresh_rollup ~kind @@ fun sc_rollup _sc_rollup_node _filename -> + ( with_fresh_rollup ~kind @@ fun _sc_rollup _sc_rollup_node _filename -> let n = 10 in - let* () = send_messages n sc_rollup client in + let* () = send_messages n client in let* _, inbox_msg_during_commitment_period = get_inbox_from_tezos_node client in @@ -647,17 +645,15 @@ module Sc_rollup_inbox = struct return (Inbox.Hash.of_bytes_exn test) end -let fetch_messages_from_block sc_rollup client = +let fetch_messages_from_block client = let* ops = RPC.Client.call client @@ RPC.get_chain_block_operations () in let messages = ops |> JSON.as_list |> List.concat_map JSON.as_list |> List.concat_map (fun op -> JSON.(op |-> "contents" |> as_list)) |> List.filter_map (fun op -> - if - JSON.(op |-> "kind" |> as_string) = "sc_rollup_add_messages" - && JSON.(op |-> "rollup" |> as_string) = sc_rollup - then Some JSON.(op |-> "message" |> as_list) + if JSON.(op |-> "kind" |> as_string) = "sc_rollup_add_messages" then + Some JSON.(op |-> "message" |> as_list) else None) |> List.hd |> List.map (fun message -> JSON.(message |> as_string)) @@ -673,7 +669,7 @@ let test_rollup_inbox_current_messages_hash ~kind = kind) (fun protocol -> setup ~protocol @@ fun node client -> - ( with_fresh_rollup ~kind @@ fun sc_rollup _sc_rollup_node _filename -> + ( with_fresh_rollup ~kind @@ fun _sc_rollup _sc_rollup_node _filename -> let gen_message_batch from until = List.map (fun x -> @@ -707,7 +703,7 @@ let test_rollup_inbox_current_messages_hash ~kind = - the hash matches the 'predicted' hash from the messages we sent *) let fst_batch = gen_message_batch 0 4 in - let* () = send_message client sc_rollup @@ prepare_batch fst_batch in + let* () = send_message client @@ prepare_batch fst_batch in let* fst_batch_hash, _ = get_inbox_from_tezos_node client in let () = Check.( @@ -731,8 +727,8 @@ let test_rollup_inbox_current_messages_hash ~kind = - the hash matches the 'predicted' hash from the messages we sent *) let snd_batch = gen_message_batch 5 10 in - let* () = send_message client sc_rollup @@ prepare_batch snd_batch in - let* messages = fetch_messages_from_block sc_rollup client in + let* () = send_message client @@ prepare_batch snd_batch in + let* messages = fetch_messages_from_block client in let () = Check.( (messages = snd_batch) @@ -790,7 +786,7 @@ let test_rollup_inbox_of_rollup_node variant scenario ~kind = node client) -let basic_scenario _protocol sc_rollup_node sc_rollup _node client = +let basic_scenario _protocol sc_rollup_node _sc_rollup _node client = let num_messages = 2 in let expected_level = (* We start at level 2 and each message also bakes a block. With 2 messages being sent, we @@ -799,7 +795,7 @@ let basic_scenario _protocol sc_rollup_node sc_rollup _node client = in let* () = Sc_rollup_node.run sc_rollup_node in Log.info "before sending messages\n" ; - let* () = send_messages num_messages sc_rollup client in + let* () = send_messages num_messages client in let* level = Client.level client in Log.info "level: %d\n" level ; let* _ = @@ -815,8 +811,7 @@ let basic_scenario _protocol sc_rollup_node sc_rollup _node client = abnormal interruption at every point of its process. Currently, the state is not persistent enough and the processing is not idempotent enough to achieve that property. *) -let _sc_rollup_node_stops_scenario _protocol sc_rollup_node sc_rollup _node - client = +let _sc_rollup_node_stops_scenario _protocol sc_rollup_node _node client = let num_messages = 2 in let expected_level = (* We start at level 2 and each message also bakes a block. With 2 messages being sent twice, we @@ -824,22 +819,22 @@ let _sc_rollup_node_stops_scenario _protocol sc_rollup_node sc_rollup _node 6 in let* () = Sc_rollup_node.run sc_rollup_node in - let* () = send_messages num_messages sc_rollup client in + let* () = send_messages num_messages client in let* () = Sc_rollup_node.terminate sc_rollup_node in - let* () = send_messages num_messages sc_rollup client in + let* () = send_messages num_messages client in let* () = Sc_rollup_node.run sc_rollup_node in let* _ = Sc_rollup_node.wait_for_level ~timeout:3. sc_rollup_node expected_level in return () -let sc_rollup_node_disconnects_scenario _protocol sc_rollup_node sc_rollup node +let sc_rollup_node_disconnects_scenario _protocol sc_rollup_node _sc_rollup node client = let num_messages = 2 in let level = Node.get_level node in Log.info "we are at level %d" level ; let* () = Sc_rollup_node.run sc_rollup_node in - let* () = send_messages num_messages sc_rollup client in + let* () = send_messages num_messages client in let* level = Sc_rollup_node.wait_for_level sc_rollup_node (level + num_messages) in @@ -850,13 +845,13 @@ let sc_rollup_node_disconnects_scenario _protocol sc_rollup_node sc_rollup node Log.info "Restarting Tezos node" ; let* () = Node.run node Node.[Connections 0; Synchronisation_threshold 0] in let* () = Node.wait_for_ready node in - let* () = send_messages num_messages sc_rollup client in + let* () = send_messages num_messages client in let* _ = Sc_rollup_node.wait_for_level sc_rollup_node (level + num_messages) in return () -let sc_rollup_node_handles_chain_reorg protocol sc_rollup_node sc_rollup node +let sc_rollup_node_handles_chain_reorg protocol sc_rollup_node _sc_rollup node client = let num_messages = 1 in @@ -866,7 +861,7 @@ let sc_rollup_node_handles_chain_reorg protocol sc_rollup_node sc_rollup node let* () = Client.Admin.connect_address client ~peer:node' in let* () = Sc_rollup_node.run sc_rollup_node in - let* () = send_messages num_messages sc_rollup client in + let* () = send_messages num_messages client in (* Since we start at level 2, sending 1 message (which also bakes a block) must cause the nodes to observe level 3. *) let* _ = Node.wait_for_level node 3 in @@ -877,12 +872,12 @@ let sc_rollup_node_handles_chain_reorg protocol sc_rollup_node sc_rollup node let divergence () = let* identity' = Node.wait_for_identity node' in let* () = Client.Admin.kick_peer client ~peer:identity' in - let* () = send_messages num_messages sc_rollup client in + let* () = send_messages num_messages client in (* +1 block for [node] *) let* _ = Node.wait_for_level node 4 in - let* () = send_messages num_messages sc_rollup client' in - let* () = send_messages num_messages sc_rollup client' in + let* () = send_messages num_messages client' in + let* () = send_messages num_messages client' in (* +2 blocks for [node'] *) let* _ = Node.wait_for_level node' 5 in Log.info "Nodes are following distinct branches." ; @@ -1064,7 +1059,7 @@ let test_rollup_node_advances_pvm_state protocols ~test_name ~boot_sector match forwarder with | None -> (* External message *) - send_message client sc_rollup (sf "[%S]" message) + send_message client (sf "[%S]" message) | Some forwarder -> (* Internal message through forwarder *) let* () = @@ -1332,7 +1327,7 @@ let commitment_stored _protocol sc_rollup_node sc_rollup _node client = init_level + i a total of 1+..+i = (i*(i+1))/2 messages will have been sent. *) - send_messages levels_to_commitment sc_rollup client + send_messages levels_to_commitment client in let* _ = Sc_rollup_node.wait_for_level @@ -1379,7 +1374,7 @@ let mode_publish mode publishes protocol sc_rollup_node sc_rollup node client = let* levels_to_commitment = get_sc_rollup_commitment_period_in_blocks client in - let* () = send_messages levels_to_commitment sc_rollup client in + let* () = send_messages levels_to_commitment client in let* level = Sc_rollup_node.wait_for_level sc_rollup_node (level + levels_to_commitment) in @@ -1407,7 +1402,7 @@ let mode_publish mode publishes protocol sc_rollup_node sc_rollup node client = let* () = Sc_rollup_node.run sc_rollup_other_node in let* _level = Sc_rollup_node.wait_for_level sc_rollup_other_node level in Log.info "Other rollup node synchronized." ; - let* () = send_messages levels_to_commitment sc_rollup client in + let* () = send_messages levels_to_commitment client in let* level = Sc_rollup_node.wait_for_level sc_rollup_node (level + levels_to_commitment) in @@ -1465,7 +1460,7 @@ let commitment_not_stored_if_non_final _protocol sc_rollup_node sc_rollup _node Check.(level = init_level) Check.int ~error_msg:"Current level has moved past origination level (%L = %R)" ; - let* () = send_messages levels_to_commitment sc_rollup client in + let* () = send_messages levels_to_commitment client in let* _ = Sc_rollup_node.wait_for_level ~timeout:3. @@ -1532,7 +1527,7 @@ let commitments_messages_reset _protocol sc_rollup_node sc_rollup _node client = init_level + 20 a total of 1+..+20 = (20*21)/2 = 210 messages will have been sent. *) - send_messages levels_to_commitment sc_rollup client + send_messages levels_to_commitment client in (* Bake other `sc_rollup_commitment_period_in_blocks + block_finality_time` levels with no messages. The first @@ -1610,7 +1605,7 @@ let commitment_stored_robust_to_failures _protocol sc_rollup_node sc_rollup node init_level + i a total of 1+..+i = (i*(i+1))/2 messages will have been sent. *) - send_messages levels_to_commitment sc_rollup client + send_messages levels_to_commitment client in (* The line below works as long as we have a block finality time which is strictly positive, which is a safe assumption. *) @@ -1703,7 +1698,7 @@ let commitments_reorgs protocol sc_rollup_node sc_rollup node client = let divergence () = let* identity' = Node.wait_for_identity node' in let* () = Client.Admin.kick_peer client ~peer:identity' in - let* () = send_messages num_messages sc_rollup client in + let* () = send_messages num_messages client in (* `block_finality_time - 1` blocks with message for [node] *) let* _ = Node.wait_for_level @@ -2174,7 +2169,7 @@ let test_rollup_node_uses_arith_boot_sector = Sc_rollup_node.wait_for_level ~timeout:3. sc_rollup_node init_level in - let* () = send_text_messages client sc_rollup ["10 +"] in + let* () = send_text_messages client ["10 +"] in let* _ = Sc_rollup_node.wait_for_level ~timeout:3. sc_rollup_node (level + 1) in @@ -2237,7 +2232,7 @@ let test_rollup_arith_uses_reveals = Sc_rollup_node.wait_for_level ~timeout:120. sc_rollup_node init_level in - let* () = send_text_messages client sc_rollup ["hash:" ^ hash] in + let* () = send_text_messages client ["hash:" ^ hash] in let* () = bake_levels 2 client in let* _ = Sc_rollup_node.wait_for_level ~timeout:120. sc_rollup_node (level + 1) @@ -2486,10 +2481,7 @@ let test_refutation_scenario ?commitment_period ?challenge_window variant ~kind else let* () = Lwt_list.iter_s - (send_text_messages - ~src:Constant.bootstrap3.alias - client - sc_rollup_address) + (send_text_messages ~src:Constant.bootstrap3.alias client) inputs in let* () = Client.bake_for_and_wait client in @@ -3132,7 +3124,7 @@ let test_outbox_message_generic ?expected_error skip earliness entrypoint ~error_msg:"Invalid contract storage: expecting '%R', got '%L'.") in let perform_rollup_execution_and_cement address = - let* () = send_text_messages client sc_rollup [input_message address] in + let* () = send_text_messages client [input_message address] in let blocks_to_wait = 2 + (2 * commitment_period) + challenge_window - earliness in @@ -3231,7 +3223,7 @@ let test_rpcs ~kind = let level = Node.get_level node in let n = 15 in let batch_size = 5 in - let* () = send_messages ~batch_size n sc_rollup client in + let* () = send_messages ~batch_size n client in let* _ = Sc_rollup_node.wait_for_level ~timeout:3.0 sc_rollup_node (level + n) in -- GitLab From 348d278348d1aa62d87e63aa50cbcdbc6d3f7c03 Mon Sep 17 00:00:00 2001 From: Valentin Chaboche Date: Wed, 5 Oct 2022 09:20:20 +0200 Subject: [PATCH 09/36] Scoru,Proto: allow inputs after origination level --- .../lib_protocol/sc_rollup_proof_repr.ml | 24 +++++++++++++++---- 1 file changed, 19 insertions(+), 5 deletions(-) diff --git a/src/proto_alpha/lib_protocol/sc_rollup_proof_repr.ml b/src/proto_alpha/lib_protocol/sc_rollup_proof_repr.ml index cea27435f58c..4a8aa54e30f1 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_proof_repr.ml +++ b/src/proto_alpha/lib_protocol/sc_rollup_proof_repr.ml @@ -135,17 +135,23 @@ let stop proof = let (module P) = Sc_rollups.wrapped_proof_module proof.pvm_step in P.proof_stop_state P.proof -(* This takes an [input] and checks if it is at or above the given level. +(* This takes an [input] and checks if it is at or above the given level, + and if it is at or below the origination level for this rollup. It returns [None] if this is the case. We use this to check that the PVM proof is obeying [commit_level] correctly---if the message obtained from the inbox proof is at or above [commit_level] the [input_given] in the PVM proof should be [None]. *) -let cut_at_level level (input : Sc_rollup_PVM_sig.input) = +let cut_at_level ~origination_level ~commit_level + (input : Sc_rollup_PVM_sig.input) = match input with | Inbox_message {inbox_level = input_level; _} -> - if Raw_level_repr.(level <= input_level) then None else Some input + if + Raw_level_repr.( + input_level <= origination_level || commit_level <= input_level) + then None + else Some input | Reveal _data -> Some input let proof_error reason = @@ -179,7 +185,11 @@ let valid ~metadata snapshot commit_level ~pvm_name proof = | Some (Reveal_proof Metadata_proof) -> return_some (Sc_rollup_PVM_sig.Reveal (Metadata metadata)) in - let input = Option.bind input (cut_at_level commit_level) in + let input = + Option.bind + input + (cut_at_level ~origination_level:metadata.origination_level ~commit_level) + in let* input_requested = P.verify_proof input P.proof in let* () = match (proof.input_proof, input_requested) with @@ -286,7 +296,11 @@ let produce ~metadata pvm_and_state commit_level = ( Some (Reveal_proof Metadata_proof), Some Sc_rollup_PVM_sig.(Reveal (Metadata metadata)) ) in - let input_given = Option.bind input_given (cut_at_level commit_level) in + let input_given = + Option.bind + input_given + (cut_at_level ~origination_level:metadata.origination_level ~commit_level) + in let* pvm_step_proof = P.produce_proof P.context input_given P.state in let module P_with_proof = struct include P -- GitLab From 982009ed8906c22fd3188e8887bf6ace86a26b6d Mon Sep 17 00:00:00 2001 From: Valentin Chaboche Date: Thu, 6 Oct 2022 11:14:00 +0200 Subject: [PATCH 10/36] Scoru,Proto: put [destination] inside [internal_inbox_message] --- src/proto_alpha/bin_sc_rollup_node/inbox.ml | 10 ++++++---- src/proto_alpha/lib_protocol/alpha_context.mli | 1 + src/proto_alpha/lib_protocol/sc_rollup_costs.ml | 3 ++- .../lib_protocol/sc_rollup_inbox_message_repr.ml | 13 ++++++++----- .../lib_protocol/sc_rollup_inbox_message_repr.mli | 2 ++ .../lib_protocol/sc_rollup_inbox_storage.ml | 8 ++++---- .../lib_protocol/sc_rollup_management_protocol.ml | 4 ++-- .../lib_protocol/sc_rollup_management_protocol.mli | 7 ++++--- .../test/unit/test_sc_rollup_management_protocol.ml | 3 +++ 9 files changed, 32 insertions(+), 19 deletions(-) diff --git a/src/proto_alpha/bin_sc_rollup_node/inbox.ml b/src/proto_alpha/bin_sc_rollup_node/inbox.ml index b88ad34a15d2..30ecd4fb739f 100644 --- a/src/proto_alpha/bin_sc_rollup_node/inbox.ml +++ b/src/proto_alpha/bin_sc_rollup_node/inbox.ml @@ -92,7 +92,7 @@ module State = struct block_hash end -let get_messages Node_context.{l1_ctxt; rollup_address; _} head = +let get_messages Node_context.{l1_ctxt; _} head = let open Lwt_result_syntax in let* block = Layer1.fetch_tezos_block l1_ctxt head in let apply (type kind) accu ~source:_ (operation : kind manager_operation) @@ -121,12 +121,14 @@ let get_messages Node_context.{l1_ctxt; rollup_address; _} head = source = Originated sender; _; }, - ITransaction_result (Transaction_to_sc_rollup_result _) ) - when Sc_rollup.Address.(rollup = rollup_address) -> + ITransaction_result (Transaction_to_sc_rollup_result _) ) -> let+ payload = Environment.wrap_tzresult @@ Script_repr.force_decode parameters in - let message = Sc_rollup.Inbox_message.{payload; sender; source} in + let message = + Sc_rollup.Inbox_message.Deposit + {destination = rollup; payload; sender; source} + in Sc_rollup.Inbox_message.Internal message :: accu | _ -> return accu in diff --git a/src/proto_alpha/lib_protocol/alpha_context.mli b/src/proto_alpha/lib_protocol/alpha_context.mli index a4cd243c4351..cea758b3fd15 100644 --- a/src/proto_alpha/lib_protocol/alpha_context.mli +++ b/src/proto_alpha/lib_protocol/alpha_context.mli @@ -3008,6 +3008,7 @@ module Sc_rollup : sig payload : Script.expr; sender : Contract_hash.t; source : public_key_hash; + destination : t; } type t = Internal of internal_inbox_message | External of string diff --git a/src/proto_alpha/lib_protocol/sc_rollup_costs.ml b/src/proto_alpha/lib_protocol/sc_rollup_costs.ml index 5ff7a524d3b8..0b4c5883dd23 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_costs.ml +++ b/src/proto_alpha/lib_protocol/sc_rollup_costs.ml @@ -109,7 +109,8 @@ let is_valid_parameters_ty_cost ~ty_size = S.add fixed_cost (S.mul coeff ty_size) let cost_serialize_internal_inbox_message - Sc_rollup_inbox_message_repr.{payload; sender = _; source = _} = + Sc_rollup_inbox_message_repr. + {payload; sender = _; source = _; destination = _} = let lexpr = Script_repr.lazy_expr payload in let expr_cost = Script_repr.force_bytes_cost lexpr in S_syntax.( diff --git a/src/proto_alpha/lib_protocol/sc_rollup_inbox_message_repr.ml b/src/proto_alpha/lib_protocol/sc_rollup_inbox_message_repr.ml index 1554cd4ff26e..bd3549d0a45c 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_inbox_message_repr.ml +++ b/src/proto_alpha/lib_protocol/sc_rollup_inbox_message_repr.ml @@ -58,6 +58,7 @@ type internal_inbox_message = { payload : Script_repr.expr; sender : Contract_hash.t; source : Signature.public_key_hash; + destination : Sc_rollup_repr.Address.t; } type t = Internal of internal_inbox_message | External of string @@ -71,15 +72,17 @@ let encoding = case (Tag 0) ~title:"Internal" - (obj3 + (obj4 (req "payload" Script_repr.expr_encoding) (req "sender" Contract_hash.encoding) - (req "source" Signature.Public_key_hash.encoding)) + (req "source" Signature.Public_key_hash.encoding) + (req "destination" Sc_rollup_repr.Address.encoding)) (function - | Internal {payload; sender; source} -> - Some (payload, sender, source) + | Internal {payload; sender; source; destination} -> + Some (payload, sender, source, destination) | External _ -> None) - (fun (payload, sender, source) -> Internal {payload; sender; source}); + (fun (payload, sender, source, destination) -> + Internal {payload; sender; source; destination}); case (Tag 1) ~title:"External" diff --git a/src/proto_alpha/lib_protocol/sc_rollup_inbox_message_repr.mli b/src/proto_alpha/lib_protocol/sc_rollup_inbox_message_repr.mli index 10c4208a1c56..96a63feff47f 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_inbox_message_repr.mli +++ b/src/proto_alpha/lib_protocol/sc_rollup_inbox_message_repr.mli @@ -54,6 +54,8 @@ type internal_inbox_message = { to the rollup. *) source : Signature.public_key_hash; (** The implicit account that originated the transaction. *) + destination : Sc_rollup_repr.Address.t; + (** The destination, as a rollup address, for the message. *) } (** A type representing messages from Layer 1 to Layer 2. Internal ones are diff --git a/src/proto_alpha/lib_protocol/sc_rollup_inbox_storage.ml b/src/proto_alpha/lib_protocol/sc_rollup_inbox_storage.ml index edc2da0cdad6..c2802e240ca3 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_inbox_storage.ml +++ b/src/proto_alpha/lib_protocol/sc_rollup_inbox_storage.ml @@ -138,10 +138,10 @@ let serialize_external_messages ctxt external_messages = ctxt external_messages -let serialize_internal_message ctxt ~payload ~sender ~source = +let serialize_internal_message ctxt rollup ~payload ~sender ~source = let open Result_syntax in let internal_message = - {Sc_rollup_inbox_message_repr.payload; sender; source} + {Sc_rollup_inbox_message_repr.payload; sender; source; destination = rollup} in (* Pay gas for serializing an internal message. *) let* ctxt = @@ -159,10 +159,10 @@ let add_external_messages ctxt external_messages = let*? ctxt, messages = serialize_external_messages ctxt external_messages in add_messages ctxt messages -let add_internal_message ctxt _rollup ~payload ~sender ~source = +let add_internal_message ctxt rollup ~payload ~sender ~source = let open Lwt_result_syntax in let*? message, ctxt = - serialize_internal_message ctxt ~payload ~sender ~source + serialize_internal_message ctxt ~payload ~sender ~source rollup in add_messages ctxt [message] diff --git a/src/proto_alpha/lib_protocol/sc_rollup_management_protocol.ml b/src/proto_alpha/lib_protocol/sc_rollup_management_protocol.ml index a2e4a3f884a1..2b6cdc5f6272 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_management_protocol.ml +++ b/src/proto_alpha/lib_protocol/sc_rollup_management_protocol.ml @@ -54,7 +54,7 @@ type atomic_transaction_batch = {transactions : transaction list} type outbox_message = Atomic_transaction_batch of atomic_transaction_batch -let make_internal_inbox_message ctxt ty ~payload ~sender ~source = +let make_internal_inbox_message ctxt ty ~payload ~sender ~source ~destination = let open Lwt_tzresult_syntax in let+ payload, ctxt = Script_ir_translator.unparse_data @@ -63,7 +63,7 @@ let make_internal_inbox_message ctxt ty ~payload ~sender ~source = ty payload in - (Sc_rollup.Inbox_message.Internal {payload; sender; source}, ctxt) + (Sc_rollup.Inbox_message.Internal {payload; sender; source; destination}, ctxt) let transactions_batch_of_internal ctxt transactions = let open Lwt_tzresult_syntax in diff --git a/src/proto_alpha/lib_protocol/sc_rollup_management_protocol.mli b/src/proto_alpha/lib_protocol/sc_rollup_management_protocol.mli index 817068a8a220..74f2f304a992 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_management_protocol.mli +++ b/src/proto_alpha/lib_protocol/sc_rollup_management_protocol.mli @@ -60,15 +60,16 @@ type atomic_transaction_batch = private {transactions : transaction list} type outbox_message = private | Atomic_transaction_batch of atomic_transaction_batch -(** [make_internal_inbox_message ctxt ty ~payload ~sender ~source] constructs a - smart-contract rollup's [inbox message] (an L1 to L2 message) with the given - [payload], [sender], and [source]. *) +(** [make_internal_inbox_message ctxt ty ~payload ~sender ~source ~destination] + constructs a smart-contract rollup's [inbox message] (an L1 to L2 message) + with the given [payload], [sender], and [source]. *) val make_internal_inbox_message : context -> ('a, _) Script_typed_ir.ty -> payload:'a -> sender:Contract_hash.t -> source:public_key_hash -> + destination:Sc_rollup.Address.t -> (Sc_rollup.Inbox_message.t * context) tzresult Lwt.t (** [outbox_message_of_outbox_message_repr ctxt msg] returns a typed version of diff --git a/src/proto_alpha/lib_protocol/test/unit/test_sc_rollup_management_protocol.ml b/src/proto_alpha/lib_protocol/test/unit/test_sc_rollup_management_protocol.ml index e5f1cf1e62e0..1de6c8496f4a 100644 --- a/src/proto_alpha/lib_protocol/test/unit/test_sc_rollup_management_protocol.ml +++ b/src/proto_alpha/lib_protocol/test/unit/test_sc_rollup_management_protocol.ml @@ -104,6 +104,7 @@ let test_encode_decode_internal_inbox_message () = let open WithExceptions in let open Lwt_result_syntax in let* ctxt = init_ctxt () in + let destination = Sc_rollup.Address.zero in let sender = Contract_hash.of_b58check_exn "KT1BuEZtb68c1Q4yjtckcNjGELqWt56Xyesc" in @@ -132,6 +133,7 @@ let test_encode_decode_internal_inbox_message () = ~payload ~sender ~source + ~destination in let* () = check_encode_decode_inbox_message deposit in (* Check that the size of messages that can be encoded is bounded. *) @@ -146,6 +148,7 @@ let test_encode_decode_internal_inbox_message () = ~payload ~sender ~source + ~destination in let*! res = check_encode_decode_inbox_message deposit in assert_encoding_failure ~loc:__LOC__ res -- GitLab From bb6e3ea6aba82fe0d864162b53165eab2e160c86 Mon Sep 17 00:00:00 2001 From: Valentin Chaboche Date: Thu, 6 Oct 2022 11:17:34 +0200 Subject: [PATCH 11/36] Scoru,Proto: extract internal inbox message encoding --- .../sc_rollup_inbox_message_repr.ml | 25 ++++++++++++------- 1 file changed, 16 insertions(+), 9 deletions(-) diff --git a/src/proto_alpha/lib_protocol/sc_rollup_inbox_message_repr.ml b/src/proto_alpha/lib_protocol/sc_rollup_inbox_message_repr.ml index bd3549d0a45c..00a5e4723341 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_inbox_message_repr.ml +++ b/src/proto_alpha/lib_protocol/sc_rollup_inbox_message_repr.ml @@ -61,6 +61,19 @@ type internal_inbox_message = { destination : Sc_rollup_repr.Address.t; } +let internal_inbox_message_encoding = + let open Data_encoding in + conv + (fun {payload; sender; source; destination} -> + (payload, sender, source, destination)) + (fun (payload, sender, source, destination) -> + {payload; sender; source; destination}) + (obj4 + (req "payload" Script_repr.expr_encoding) + (req "sender" Contract_hash.encoding) + (req "source" Signature.Public_key_hash.encoding) + (req "destination" Sc_rollup_repr.Address.encoding)) + type t = Internal of internal_inbox_message | External of string let encoding = @@ -72,17 +85,11 @@ let encoding = case (Tag 0) ~title:"Internal" - (obj4 - (req "payload" Script_repr.expr_encoding) - (req "sender" Contract_hash.encoding) - (req "source" Signature.Public_key_hash.encoding) - (req "destination" Sc_rollup_repr.Address.encoding)) + internal_inbox_message_encoding (function - | Internal {payload; sender; source; destination} -> - Some (payload, sender, source, destination) + | Internal internal_message -> Some internal_message | External _ -> None) - (fun (payload, sender, source, destination) -> - Internal {payload; sender; source; destination}); + (fun internal_message -> Internal internal_message); case (Tag 1) ~title:"External" -- GitLab From 25633453a7e01e354954ddf76fdd45eacdfa93b7 Mon Sep 17 00:00:00 2001 From: Valentin Chaboche Date: Thu, 6 Oct 2022 11:28:13 +0200 Subject: [PATCH 12/36] Scoru,Proto: [internal_inbox_message] is now a variant --- src/proto_alpha/bin_sc_rollup_node/inbox.ml | 2 +- .../lib_protocol/alpha_context.mli | 17 ++++---- src/proto_alpha/lib_protocol/apply.ml | 4 +- .../lib_protocol/sc_rollup_arith.ml | 10 +++-- .../lib_protocol/sc_rollup_costs.ml | 16 ++++---- .../sc_rollup_inbox_message_repr.ml | 39 +++++++++++-------- .../sc_rollup_inbox_message_repr.mli | 21 +++++----- .../lib_protocol/sc_rollup_inbox_storage.ml | 17 ++++---- .../lib_protocol/sc_rollup_inbox_storage.mli | 9 +++-- .../sc_rollup_management_protocol.ml | 6 ++- .../sc_rollup_management_protocol.mli | 8 ++-- .../operations/test_sc_rollup_transfer.ml | 4 +- .../test_sc_rollup_management_protocol.ml | 4 +- 13 files changed, 87 insertions(+), 70 deletions(-) diff --git a/src/proto_alpha/bin_sc_rollup_node/inbox.ml b/src/proto_alpha/bin_sc_rollup_node/inbox.ml index 30ecd4fb739f..2ddbab2146f2 100644 --- a/src/proto_alpha/bin_sc_rollup_node/inbox.ml +++ b/src/proto_alpha/bin_sc_rollup_node/inbox.ml @@ -126,7 +126,7 @@ let get_messages Node_context.{l1_ctxt; _} head = Environment.wrap_tzresult @@ Script_repr.force_decode parameters in let message = - Sc_rollup.Inbox_message.Deposit + Sc_rollup.Inbox_message.Transfer {destination = rollup; payload; sender; source} in Sc_rollup.Inbox_message.Internal message :: accu diff --git a/src/proto_alpha/lib_protocol/alpha_context.mli b/src/proto_alpha/lib_protocol/alpha_context.mli index cea758b3fd15..a036d6662a05 100644 --- a/src/proto_alpha/lib_protocol/alpha_context.mli +++ b/src/proto_alpha/lib_protocol/alpha_context.mli @@ -3004,12 +3004,13 @@ module Sc_rollup : sig (** See {!Sc_rollup_inbox_message_repr}. *) module Inbox_message : sig - type internal_inbox_message = { - payload : Script.expr; - sender : Contract_hash.t; - source : public_key_hash; - destination : t; - } + type internal_inbox_message = + | Transfer of { + payload : Script.expr; + sender : Contract_hash.t; + source : public_key_hash; + destination : t; + } type t = Internal of internal_inbox_message | External of string @@ -3215,12 +3216,12 @@ module Sc_rollup : sig val add_external_messages : context -> string list -> (t * Z.t * context) tzresult Lwt.t - val add_internal_message : + val add_deposit : context -> - rollup -> payload:Script.expr -> sender:Contract_hash.t -> source:public_key_hash -> + destination:rollup -> (t * Z.t * context) tzresult Lwt.t val get_inbox : context -> (t * context) tzresult Lwt.t diff --git a/src/proto_alpha/lib_protocol/apply.ml b/src/proto_alpha/lib_protocol/apply.ml index f3279cb94345..c1694bc5eac4 100644 --- a/src/proto_alpha/lib_protocol/apply.ml +++ b/src/proto_alpha/lib_protocol/apply.ml @@ -642,9 +642,9 @@ let apply_internal_operation_contents : (* Adding the message to the inbox. Note that it is safe to ignore the size diff since only its hash and meta data are stored in the context. See #3232. *) - Sc_rollup.Inbox.add_internal_message + Sc_rollup.Inbox.add_deposit ctxt - destination + ~destination ~payload ~sender ~source:payer diff --git a/src/proto_alpha/lib_protocol/sc_rollup_arith.ml b/src/proto_alpha/lib_protocol/sc_rollup_arith.ml index e7a540cc8304..e0fe0a63b234 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_arith.ml +++ b/src/proto_alpha/lib_protocol/sc_rollup_arith.ml @@ -927,10 +927,12 @@ module Make (Context : P) : match Sc_rollup_inbox_message_repr.deserialize payload with | Error _ -> None | Ok (External payload) -> Some payload - | Ok (Internal {payload; _}) -> ( - match Micheline.root payload with - | String (_, payload) -> Some payload - | _ -> None) + | Ok (Internal internal_inbox_message) -> ( + match internal_inbox_message with + | Transfer {payload; _} -> ( + match Micheline.root payload with + | String (_, payload) -> Some payload + | _ -> None)) in match payload with | Some payload -> diff --git a/src/proto_alpha/lib_protocol/sc_rollup_costs.ml b/src/proto_alpha/lib_protocol/sc_rollup_costs.ml index 0b4c5883dd23..fe7e5876b8fe 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_costs.ml +++ b/src/proto_alpha/lib_protocol/sc_rollup_costs.ml @@ -109,13 +109,15 @@ let is_valid_parameters_ty_cost ~ty_size = S.add fixed_cost (S.mul coeff ty_size) let cost_serialize_internal_inbox_message - Sc_rollup_inbox_message_repr. - {payload; sender = _; source = _; destination = _} = - let lexpr = Script_repr.lazy_expr payload in - let expr_cost = Script_repr.force_bytes_cost lexpr in - S_syntax.( - expr_cost + Constants.cost_decoding_contract_optimized - + Constants.cost_decoding_key_hash_optimized) + (internal_inbox_message : + Sc_rollup_inbox_message_repr.internal_inbox_message) = + match internal_inbox_message with + | Transfer {payload; sender = _; source = _; destination = _} -> + let lexpr = Script_repr.lazy_expr payload in + let expr_cost = Script_repr.force_bytes_cost lexpr in + S_syntax.( + expr_cost + Constants.cost_decoding_contract_optimized + + Constants.cost_decoding_key_hash_optimized) (** TODO: #3212 Confirm gas cost model. diff --git a/src/proto_alpha/lib_protocol/sc_rollup_inbox_message_repr.ml b/src/proto_alpha/lib_protocol/sc_rollup_inbox_message_repr.ml index 00a5e4723341..8e659d62d73c 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_inbox_message_repr.ml +++ b/src/proto_alpha/lib_protocol/sc_rollup_inbox_message_repr.ml @@ -54,25 +54,32 @@ let () = (function Error_decode_inbox_message -> Some () | _ -> None) (fun () -> Error_decode_inbox_message) -type internal_inbox_message = { - payload : Script_repr.expr; - sender : Contract_hash.t; - source : Signature.public_key_hash; - destination : Sc_rollup_repr.Address.t; -} +type internal_inbox_message = + | Transfer of { + payload : Script_repr.expr; + sender : Contract_hash.t; + source : Signature.public_key_hash; + destination : Sc_rollup_repr.Address.t; + } let internal_inbox_message_encoding = let open Data_encoding in - conv - (fun {payload; sender; source; destination} -> - (payload, sender, source, destination)) - (fun (payload, sender, source, destination) -> - {payload; sender; source; destination}) - (obj4 - (req "payload" Script_repr.expr_encoding) - (req "sender" Contract_hash.encoding) - (req "source" Signature.Public_key_hash.encoding) - (req "destination" Sc_rollup_repr.Address.encoding)) + union + [ + case + (Tag 0) + ~title:"Transfer" + (obj4 + (req "payload" Script_repr.expr_encoding) + (req "sender" Contract_hash.encoding) + (req "source" Signature.Public_key_hash.encoding) + (req "destination" Sc_rollup_repr.Address.encoding)) + (function + | Transfer {payload; sender; source; destination} -> + Some (payload, sender, source, destination)) + (fun (payload, sender, source, destination) -> + Transfer {payload; sender; source; destination}); + ] type t = Internal of internal_inbox_message | External of string diff --git a/src/proto_alpha/lib_protocol/sc_rollup_inbox_message_repr.mli b/src/proto_alpha/lib_protocol/sc_rollup_inbox_message_repr.mli index 96a63feff47f..836884617888 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_inbox_message_repr.mli +++ b/src/proto_alpha/lib_protocol/sc_rollup_inbox_message_repr.mli @@ -46,17 +46,18 @@ (** [internal_inbox_message] represent an internal message in a inbox (L1 -> L2). This is not inline so it can easily be used by {!Sc_rollup_costs.cost_serialize_internal_inbox_message}. *) -type internal_inbox_message = { - payload : Script_repr.expr; - (** A Micheline value containing the parameters passed to the rollup. *) - sender : Contract_hash.t; - (** The contract hash of an Layer 1 originated contract sending a message +type internal_inbox_message = + | Transfer of { + payload : Script_repr.expr; + (** A Micheline value containing the parameters passed to the rollup. *) + sender : Contract_hash.t; + (** The contract hash of an Layer 1 originated contract sending a message to the rollup. *) - source : Signature.public_key_hash; - (** The implicit account that originated the transaction. *) - destination : Sc_rollup_repr.Address.t; - (** The destination, as a rollup address, for the message. *) -} + source : Signature.public_key_hash; + (** The implicit account that originated the transaction. *) + destination : Sc_rollup_repr.Address.t; + (** The destination, as a rollup address, for the message. *) + } (** A type representing messages from Layer 1 to Layer 2. Internal ones are originated from Layer 1 smart-contracts and external ones are messages from diff --git a/src/proto_alpha/lib_protocol/sc_rollup_inbox_storage.ml b/src/proto_alpha/lib_protocol/sc_rollup_inbox_storage.ml index c2802e240ca3..55254cf0a3bc 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_inbox_storage.ml +++ b/src/proto_alpha/lib_protocol/sc_rollup_inbox_storage.ml @@ -138,11 +138,8 @@ let serialize_external_messages ctxt external_messages = ctxt external_messages -let serialize_internal_message ctxt rollup ~payload ~sender ~source = +let serialize_internal_message ctxt internal_message = let open Result_syntax in - let internal_message = - {Sc_rollup_inbox_message_repr.payload; sender; source; destination = rollup} - in (* Pay gas for serializing an internal message. *) let* ctxt = Raw_context.consume_gas @@ -159,13 +156,17 @@ let add_external_messages ctxt external_messages = let*? ctxt, messages = serialize_external_messages ctxt external_messages in add_messages ctxt messages -let add_internal_message ctxt rollup ~payload ~sender ~source = +let add_internal_message ctxt internal_message = let open Lwt_result_syntax in - let*? message, ctxt = - serialize_internal_message ctxt ~payload ~sender ~source rollup - in + let*? message, ctxt = serialize_internal_message ctxt internal_message in add_messages ctxt [message] +let add_deposit ctxt ~payload ~sender ~source ~destination = + let internal_message : Sc_rollup_inbox_message_repr.internal_inbox_message = + Transfer {destination; payload; sender; source} + in + add_internal_message ctxt internal_message + module Internal_for_tests = struct let update_num_and_size_of_messages = update_num_and_size_of_messages end diff --git a/src/proto_alpha/lib_protocol/sc_rollup_inbox_storage.mli b/src/proto_alpha/lib_protocol/sc_rollup_inbox_storage.mli index 5921bbd11d69..8f56307a1499 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_inbox_storage.mli +++ b/src/proto_alpha/lib_protocol/sc_rollup_inbox_storage.mli @@ -45,17 +45,18 @@ val add_external_messages : string list -> (Sc_rollup_inbox_repr.t * Z.t * Raw_context.t) tzresult Lwt.t -(** [add_internal_message context rollup ~payload ~sender ~source] adds the - internal message of [payload], [sender], and [source] to [rollup]'s inbox. +(** [add_deposit ~payload ~sender ~source ~destination ctxt] adds the + internal deposit message of [payload], [sender], and [source] to + the smart-contract rollups' inbox. See [add_external_messages] for returned values and failures. *) -val add_internal_message : +val add_deposit : Raw_context.t -> - Sc_rollup_repr.t -> payload:Script_repr.expr -> sender:Contract_hash.t -> source:Signature.public_key_hash -> + destination:Sc_rollup_repr.Address.t -> (Sc_rollup_inbox_repr.t * Z.t * Raw_context.t) tzresult Lwt.t (** Initialize the inbox in the storage at protocol initialization. *) diff --git a/src/proto_alpha/lib_protocol/sc_rollup_management_protocol.ml b/src/proto_alpha/lib_protocol/sc_rollup_management_protocol.ml index 2b6cdc5f6272..64912410b59b 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_management_protocol.ml +++ b/src/proto_alpha/lib_protocol/sc_rollup_management_protocol.ml @@ -54,7 +54,7 @@ type atomic_transaction_batch = {transactions : transaction list} type outbox_message = Atomic_transaction_batch of atomic_transaction_batch -let make_internal_inbox_message ctxt ty ~payload ~sender ~source ~destination = +let make_internal_deposit ctxt ty ~payload ~sender ~source ~destination = let open Lwt_tzresult_syntax in let+ payload, ctxt = Script_ir_translator.unparse_data @@ -63,7 +63,9 @@ let make_internal_inbox_message ctxt ty ~payload ~sender ~source ~destination = ty payload in - (Sc_rollup.Inbox_message.Internal {payload; sender; source; destination}, ctxt) + ( Sc_rollup.Inbox_message.Internal + (Transfer {payload; sender; source; destination}), + ctxt ) let transactions_batch_of_internal ctxt transactions = let open Lwt_tzresult_syntax in diff --git a/src/proto_alpha/lib_protocol/sc_rollup_management_protocol.mli b/src/proto_alpha/lib_protocol/sc_rollup_management_protocol.mli index 74f2f304a992..a313dd35f219 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_management_protocol.mli +++ b/src/proto_alpha/lib_protocol/sc_rollup_management_protocol.mli @@ -60,10 +60,10 @@ type atomic_transaction_batch = private {transactions : transaction list} type outbox_message = private | Atomic_transaction_batch of atomic_transaction_batch -(** [make_internal_inbox_message ctxt ty ~payload ~sender ~source ~destination] - constructs a smart-contract rollup's [inbox message] (an L1 to L2 message) - with the given [payload], [sender], and [source]. *) -val make_internal_inbox_message : +(** [make_internal_deposit ctxt ty ~payload ~sender ~source ~destination] + constructs a smart rollup's [inbox message] (an L1 to L2 message) + with the given [payload], [sender], and [source] targeting [destination]. *) +val make_internal_deposit : context -> ('a, _) Script_typed_ir.ty -> payload:'a -> diff --git a/src/proto_alpha/lib_protocol/test/integration/operations/test_sc_rollup_transfer.ml b/src/proto_alpha/lib_protocol/test/integration/operations/test_sc_rollup_transfer.ml index 430b0dfaeb8f..c650448175d8 100644 --- a/src/proto_alpha/lib_protocol/test/integration/operations/test_sc_rollup_transfer.ml +++ b/src/proto_alpha/lib_protocol/test/integration/operations/test_sc_rollup_transfer.ml @@ -298,9 +298,9 @@ let test_transfer_works () = let ctxt = Incremental.alpha_ctxt inc in let payload = Expr.from_string "42" in let* expected_inbox_after, _size, _ctxt = - Sc_rollup.Inbox.add_internal_message + Sc_rollup.Inbox.add_deposit ctxt - rollup + ~destination:rollup ~payload ~sender:contract ~source:(Context.Contract.pkh c) diff --git a/src/proto_alpha/lib_protocol/test/unit/test_sc_rollup_management_protocol.ml b/src/proto_alpha/lib_protocol/test/unit/test_sc_rollup_management_protocol.ml index 1de6c8496f4a..951115d911cf 100644 --- a/src/proto_alpha/lib_protocol/test/unit/test_sc_rollup_management_protocol.ml +++ b/src/proto_alpha/lib_protocol/test/unit/test_sc_rollup_management_protocol.ml @@ -127,7 +127,7 @@ let test_encode_decode_internal_inbox_message () = in let* deposit, ctxt = wrap - @@ Sc_rollup_management_protocol.make_internal_inbox_message + @@ Sc_rollup_management_protocol.make_internal_deposit ctxt pair_nat_ticket_string_ty ~payload @@ -142,7 +142,7 @@ let test_encode_decode_internal_inbox_message () = let* deposit, _ctxt = let open Script_typed_ir in wrap - @@ Sc_rollup_management_protocol.make_internal_inbox_message + @@ Sc_rollup_management_protocol.make_internal_deposit ctxt String_t ~payload -- GitLab From 7fc01fea1105f6c286a664b9ebc5dccc4bf02a71 Mon Sep 17 00:00:00 2001 From: Valentin Chaboche Date: Thu, 6 Oct 2022 11:31:54 +0200 Subject: [PATCH 13/36] Scoru,Proto: internal inbox message can be a [Start_of_level] --- src/proto_alpha/lib_protocol/alpha_context.mli | 1 + src/proto_alpha/lib_protocol/sc_rollup_arith.ml | 3 ++- src/proto_alpha/lib_protocol/sc_rollup_costs.ml | 1 + .../lib_protocol/sc_rollup_inbox_message_repr.ml | 10 +++++++++- .../lib_protocol/sc_rollup_inbox_message_repr.mli | 2 ++ 5 files changed, 15 insertions(+), 2 deletions(-) diff --git a/src/proto_alpha/lib_protocol/alpha_context.mli b/src/proto_alpha/lib_protocol/alpha_context.mli index a036d6662a05..369dfc188923 100644 --- a/src/proto_alpha/lib_protocol/alpha_context.mli +++ b/src/proto_alpha/lib_protocol/alpha_context.mli @@ -3011,6 +3011,7 @@ module Sc_rollup : sig source : public_key_hash; destination : t; } + | Start_of_level type t = Internal of internal_inbox_message | External of string diff --git a/src/proto_alpha/lib_protocol/sc_rollup_arith.ml b/src/proto_alpha/lib_protocol/sc_rollup_arith.ml index e0fe0a63b234..f7bb3f8f616d 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_arith.ml +++ b/src/proto_alpha/lib_protocol/sc_rollup_arith.ml @@ -932,7 +932,8 @@ module Make (Context : P) : | Transfer {payload; _} -> ( match Micheline.root payload with | String (_, payload) -> Some payload - | _ -> None)) + | _ -> None) + | Start_of_level -> None) in match payload with | Some payload -> diff --git a/src/proto_alpha/lib_protocol/sc_rollup_costs.ml b/src/proto_alpha/lib_protocol/sc_rollup_costs.ml index fe7e5876b8fe..237993f0bebd 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_costs.ml +++ b/src/proto_alpha/lib_protocol/sc_rollup_costs.ml @@ -118,6 +118,7 @@ let cost_serialize_internal_inbox_message S_syntax.( expr_cost + Constants.cost_decoding_contract_optimized + Constants.cost_decoding_key_hash_optimized) + | Start_of_level -> Saturation_repr.zero (** TODO: #3212 Confirm gas cost model. diff --git a/src/proto_alpha/lib_protocol/sc_rollup_inbox_message_repr.ml b/src/proto_alpha/lib_protocol/sc_rollup_inbox_message_repr.ml index 8e659d62d73c..77d198e8a0da 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_inbox_message_repr.ml +++ b/src/proto_alpha/lib_protocol/sc_rollup_inbox_message_repr.ml @@ -61,6 +61,7 @@ type internal_inbox_message = source : Signature.public_key_hash; destination : Sc_rollup_repr.Address.t; } + | Start_of_level let internal_inbox_message_encoding = let open Data_encoding in @@ -76,9 +77,16 @@ let internal_inbox_message_encoding = (req "destination" Sc_rollup_repr.Address.encoding)) (function | Transfer {payload; sender; source; destination} -> - Some (payload, sender, source, destination)) + Some (payload, sender, source, destination) + | _ -> None) (fun (payload, sender, source, destination) -> Transfer {payload; sender; source; destination}); + case + (Tag 1) + ~title:"Start_of_level" + empty + (function Start_of_level -> Some () | _ -> None) + (fun () -> Start_of_level); ] type t = Internal of internal_inbox_message | External of string diff --git a/src/proto_alpha/lib_protocol/sc_rollup_inbox_message_repr.mli b/src/proto_alpha/lib_protocol/sc_rollup_inbox_message_repr.mli index 836884617888..78e772320f1c 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_inbox_message_repr.mli +++ b/src/proto_alpha/lib_protocol/sc_rollup_inbox_message_repr.mli @@ -58,6 +58,8 @@ type internal_inbox_message = destination : Sc_rollup_repr.Address.t; (** The destination, as a rollup address, for the message. *) } + | Start_of_level + (** Internal message put at the beginning of each inbox's level. *) (** A type representing messages from Layer 1 to Layer 2. Internal ones are originated from Layer 1 smart-contracts and external ones are messages from -- GitLab From 1a664b4920184be400ce8aabc7b14dc355c05205 Mon Sep 17 00:00:00 2001 From: Valentin Chaboche Date: Thu, 6 Oct 2022 11:38:55 +0200 Subject: [PATCH 14/36] Scoru,Proto: add [Start_of_level] at the beginning of each block --- src/proto_alpha/bin_sc_rollup_node/inbox.ml | 6 ++++-- src/proto_alpha/lib_protocol/alpha_context.mli | 2 ++ src/proto_alpha/lib_protocol/apply.ml | 3 +++ src/proto_alpha/lib_protocol/sc_rollup_inbox_storage.ml | 3 +++ src/proto_alpha/lib_protocol/sc_rollup_inbox_storage.mli | 6 ++++++ 5 files changed, 18 insertions(+), 2 deletions(-) diff --git a/src/proto_alpha/bin_sc_rollup_node/inbox.ml b/src/proto_alpha/bin_sc_rollup_node/inbox.ml index 2ddbab2146f2..ae89f06ac79b 100644 --- a/src/proto_alpha/bin_sc_rollup_node/inbox.ml +++ b/src/proto_alpha/bin_sc_rollup_node/inbox.ml @@ -132,14 +132,16 @@ let get_messages Node_context.{l1_ctxt; _} head = Sc_rollup.Inbox_message.Internal message :: accu | _ -> return accu in - let*? messages = + let*? rev_messages = Layer1_services.( process_applied_manager_operations (Ok []) block.operations {apply; apply_internal}) in - return (List.rev messages) + let messages = List.rev rev_messages in + let sol = Sc_rollup.Inbox_message.Internal Start_of_level in + return (sol :: messages) let same_inbox_as_layer_1 node_ctxt head_hash inbox = let open Lwt_result_syntax in diff --git a/src/proto_alpha/lib_protocol/alpha_context.mli b/src/proto_alpha/lib_protocol/alpha_context.mli index 369dfc188923..a63b52d34fd5 100644 --- a/src/proto_alpha/lib_protocol/alpha_context.mli +++ b/src/proto_alpha/lib_protocol/alpha_context.mli @@ -3225,6 +3225,8 @@ module Sc_rollup : sig destination:rollup -> (t * Z.t * context) tzresult Lwt.t + val add_start_of_level : context -> (t * Z.t * context) tzresult Lwt.t + val get_inbox : context -> (t * context) tzresult Lwt.t end diff --git a/src/proto_alpha/lib_protocol/apply.ml b/src/proto_alpha/lib_protocol/apply.ml index c1694bc5eac4..14f111ada0fd 100644 --- a/src/proto_alpha/lib_protocol/apply.ml +++ b/src/proto_alpha/lib_protocol/apply.ml @@ -2515,6 +2515,7 @@ let begin_application ctxt chain_id ~migration_balance_updates let* ctxt, liquidity_baking_operations_results, liquidity_baking_toggle_ema = apply_liquidity_baking_subsidy ctxt ~toggle_vote in + let* _inbox, _diff, ctxt = Sc_rollup.Inbox.add_start_of_level ctxt in let mode = Application { @@ -2569,6 +2570,7 @@ let begin_full_construction ctxt chain_id ~migration_balance_updates let* ctxt, liquidity_baking_operations_results, liquidity_baking_toggle_ema = apply_liquidity_baking_subsidy ctxt ~toggle_vote in + let* _inbox, _diff, ctxt = Sc_rollup.Inbox.add_start_of_level ctxt in let mode = Full_construction { @@ -2603,6 +2605,7 @@ let begin_partial_construction ctxt chain_id ~migration_balance_updates let* ctxt, liquidity_baking_operations_results, liquidity_baking_toggle_ema = apply_liquidity_baking_subsidy ctxt ~toggle_vote in + let* _inbox, _diff, ctxt = Sc_rollup.Inbox.add_start_of_level ctxt in let mode = Partial_construction {predecessor_level; predecessor_fitness} in return { diff --git a/src/proto_alpha/lib_protocol/sc_rollup_inbox_storage.ml b/src/proto_alpha/lib_protocol/sc_rollup_inbox_storage.ml index 55254cf0a3bc..57440f4c12db 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_inbox_storage.ml +++ b/src/proto_alpha/lib_protocol/sc_rollup_inbox_storage.ml @@ -176,3 +176,6 @@ let init ctxt = let ({level; _} : Level_repr.t) = Raw_context.current_level ctxt in let*! inbox = Sc_rollup_inbox_repr.empty (Raw_context.recover ctxt) level in Store.Inbox.init ctxt inbox + +let add_start_of_level ctxt = + add_internal_message ctxt Sc_rollup_inbox_message_repr.Start_of_level diff --git a/src/proto_alpha/lib_protocol/sc_rollup_inbox_storage.mli b/src/proto_alpha/lib_protocol/sc_rollup_inbox_storage.mli index 8f56307a1499..56b268893ca1 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_inbox_storage.mli +++ b/src/proto_alpha/lib_protocol/sc_rollup_inbox_storage.mli @@ -62,6 +62,12 @@ val add_deposit : (** Initialize the inbox in the storage at protocol initialization. *) val init : Raw_context.t -> Raw_context.t tzresult Lwt.t +(** Push a [Start_of_level] internal inbox message in the inbox using + {!add_internal_message}. +*) +val add_start_of_level : + Raw_context.t -> (Sc_rollup_inbox_repr.t * Z.t * Raw_context.t) tzresult Lwt.t + (**/**) module Internal_for_tests : sig -- GitLab From 91af797de72d252cc9445c4d394e03d420a4aaf6 Mon Sep 17 00:00:00 2001 From: Valentin Chaboche Date: Thu, 6 Oct 2022 11:45:03 +0200 Subject: [PATCH 15/36] Scoru,Proto: internal inbox message can be a [End_of_level] --- src/proto_alpha/lib_protocol/alpha_context.mli | 1 + src/proto_alpha/lib_protocol/sc_rollup_arith.ml | 3 ++- src/proto_alpha/lib_protocol/sc_rollup_costs.ml | 1 + .../lib_protocol/sc_rollup_inbox_message_repr.ml | 7 +++++++ .../lib_protocol/sc_rollup_inbox_message_repr.mli | 1 + 5 files changed, 12 insertions(+), 1 deletion(-) diff --git a/src/proto_alpha/lib_protocol/alpha_context.mli b/src/proto_alpha/lib_protocol/alpha_context.mli index a63b52d34fd5..00c4723c8b36 100644 --- a/src/proto_alpha/lib_protocol/alpha_context.mli +++ b/src/proto_alpha/lib_protocol/alpha_context.mli @@ -3012,6 +3012,7 @@ module Sc_rollup : sig destination : t; } | Start_of_level + | End_of_level type t = Internal of internal_inbox_message | External of string diff --git a/src/proto_alpha/lib_protocol/sc_rollup_arith.ml b/src/proto_alpha/lib_protocol/sc_rollup_arith.ml index f7bb3f8f616d..b05aa743d473 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_arith.ml +++ b/src/proto_alpha/lib_protocol/sc_rollup_arith.ml @@ -933,7 +933,8 @@ module Make (Context : P) : match Micheline.root payload with | String (_, payload) -> Some payload | _ -> None) - | Start_of_level -> None) + | Start_of_level -> None + | End_of_level -> None) in match payload with | Some payload -> diff --git a/src/proto_alpha/lib_protocol/sc_rollup_costs.ml b/src/proto_alpha/lib_protocol/sc_rollup_costs.ml index 237993f0bebd..a3e59a2d0652 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_costs.ml +++ b/src/proto_alpha/lib_protocol/sc_rollup_costs.ml @@ -119,6 +119,7 @@ let cost_serialize_internal_inbox_message expr_cost + Constants.cost_decoding_contract_optimized + Constants.cost_decoding_key_hash_optimized) | Start_of_level -> Saturation_repr.zero + | End_of_level -> Saturation_repr.zero (** TODO: #3212 Confirm gas cost model. diff --git a/src/proto_alpha/lib_protocol/sc_rollup_inbox_message_repr.ml b/src/proto_alpha/lib_protocol/sc_rollup_inbox_message_repr.ml index 77d198e8a0da..50cdfbf6bd13 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_inbox_message_repr.ml +++ b/src/proto_alpha/lib_protocol/sc_rollup_inbox_message_repr.ml @@ -62,6 +62,7 @@ type internal_inbox_message = destination : Sc_rollup_repr.Address.t; } | Start_of_level + | End_of_level let internal_inbox_message_encoding = let open Data_encoding in @@ -87,6 +88,12 @@ let internal_inbox_message_encoding = empty (function Start_of_level -> Some () | _ -> None) (fun () -> Start_of_level); + case + (Tag 2) + ~title:"End_of_level" + empty + (function End_of_level -> Some () | _ -> None) + (fun () -> End_of_level); ] type t = Internal of internal_inbox_message | External of string diff --git a/src/proto_alpha/lib_protocol/sc_rollup_inbox_message_repr.mli b/src/proto_alpha/lib_protocol/sc_rollup_inbox_message_repr.mli index 78e772320f1c..4667640b6526 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_inbox_message_repr.mli +++ b/src/proto_alpha/lib_protocol/sc_rollup_inbox_message_repr.mli @@ -60,6 +60,7 @@ type internal_inbox_message = } | Start_of_level (** Internal message put at the beginning of each inbox's level. *) + | End_of_level (** Internal message put at the end of each inbox's level. *) (** A type representing messages from Layer 1 to Layer 2. Internal ones are originated from Layer 1 smart-contracts and external ones are messages from -- GitLab From 1ab5d80df3418f9548d30d4bdf6a8675322efaa3 Mon Sep 17 00:00:00 2001 From: Valentin Chaboche Date: Thu, 6 Oct 2022 11:48:46 +0200 Subject: [PATCH 16/36] Scoru,Proto: add [End_of_level] at the finalization of each block --- src/proto_alpha/bin_sc_rollup_node/inbox.ml | 3 ++- src/proto_alpha/lib_protocol/alpha_context.mli | 2 ++ src/proto_alpha/lib_protocol/apply.ml | 1 + src/proto_alpha/lib_protocol/sc_rollup_inbox_storage.ml | 3 +++ src/proto_alpha/lib_protocol/sc_rollup_inbox_storage.mli | 6 ++++++ 5 files changed, 14 insertions(+), 1 deletion(-) diff --git a/src/proto_alpha/bin_sc_rollup_node/inbox.ml b/src/proto_alpha/bin_sc_rollup_node/inbox.ml index ae89f06ac79b..d23aa24ceafb 100644 --- a/src/proto_alpha/bin_sc_rollup_node/inbox.ml +++ b/src/proto_alpha/bin_sc_rollup_node/inbox.ml @@ -139,7 +139,8 @@ let get_messages Node_context.{l1_ctxt; _} head = block.operations {apply; apply_internal}) in - let messages = List.rev rev_messages in + let eol = Sc_rollup.Inbox_message.Internal End_of_level in + let messages = List.rev (eol :: rev_messages) in let sol = Sc_rollup.Inbox_message.Internal Start_of_level in return (sol :: messages) diff --git a/src/proto_alpha/lib_protocol/alpha_context.mli b/src/proto_alpha/lib_protocol/alpha_context.mli index 00c4723c8b36..15a10fd46a90 100644 --- a/src/proto_alpha/lib_protocol/alpha_context.mli +++ b/src/proto_alpha/lib_protocol/alpha_context.mli @@ -3228,6 +3228,8 @@ module Sc_rollup : sig val add_start_of_level : context -> (t * Z.t * context) tzresult Lwt.t + val add_end_of_level : context -> (t * Z.t * context) tzresult Lwt.t + val get_inbox : context -> (t * context) tzresult Lwt.t end diff --git a/src/proto_alpha/lib_protocol/apply.ml b/src/proto_alpha/lib_protocol/apply.ml index 14f111ada0fd..b1a115d60a6e 100644 --- a/src/proto_alpha/lib_protocol/apply.ml +++ b/src/proto_alpha/lib_protocol/apply.ml @@ -2694,6 +2694,7 @@ let finalize_application ctxt block_data_contents ~round ~predecessor_hash in let* ctxt = Amendment.may_start_new_voting_period ctxt in let* ctxt, dal_slot_availability = Dal_apply.dal_finalisation ctxt in + let* _inbox, _diff, ctxt = Sc_rollup.Inbox.add_end_of_level ctxt in let balance_updates = migration_balance_updates @ baking_receipts @ cycle_end_balance_updates in diff --git a/src/proto_alpha/lib_protocol/sc_rollup_inbox_storage.ml b/src/proto_alpha/lib_protocol/sc_rollup_inbox_storage.ml index 57440f4c12db..6e90e345a9a0 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_inbox_storage.ml +++ b/src/proto_alpha/lib_protocol/sc_rollup_inbox_storage.ml @@ -179,3 +179,6 @@ let init ctxt = let add_start_of_level ctxt = add_internal_message ctxt Sc_rollup_inbox_message_repr.Start_of_level + +let add_end_of_level ctxt = + add_internal_message ctxt Sc_rollup_inbox_message_repr.End_of_level diff --git a/src/proto_alpha/lib_protocol/sc_rollup_inbox_storage.mli b/src/proto_alpha/lib_protocol/sc_rollup_inbox_storage.mli index 56b268893ca1..c807404d3d00 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_inbox_storage.mli +++ b/src/proto_alpha/lib_protocol/sc_rollup_inbox_storage.mli @@ -68,6 +68,12 @@ val init : Raw_context.t -> Raw_context.t tzresult Lwt.t val add_start_of_level : Raw_context.t -> (Sc_rollup_inbox_repr.t * Z.t * Raw_context.t) tzresult Lwt.t +(** Push a [End_of_level] internal inbox message in the inbox using + {!add_internal_message}. +*) +val add_end_of_level : + Raw_context.t -> (Sc_rollup_inbox_repr.t * Z.t * Raw_context.t) tzresult Lwt.t + (**/**) module Internal_for_tests : sig -- GitLab From a980d2659e9aa250a29e40b511ceb34695118c0d Mon Sep 17 00:00:00 2001 From: Valentin Chaboche Date: Thu, 6 Oct 2022 14:02:48 +0200 Subject: [PATCH 17/36] Scoru,Proto: adapt refutation games to unique inbox --- .../lib_protocol/alpha_context.mli | 1 + .../lib_protocol/sc_rollup_inbox_repr.ml | 270 +++++------------- .../lib_protocol/sc_rollup_proof_repr.ml | 67 +++-- .../lib_protocol/sc_rollup_proof_repr.mli | 6 + 4 files changed, 110 insertions(+), 234 deletions(-) diff --git a/src/proto_alpha/lib_protocol/alpha_context.mli b/src/proto_alpha/lib_protocol/alpha_context.mli index 15a10fd46a90..7c645eca4dec 100644 --- a/src/proto_alpha/lib_protocol/alpha_context.mli +++ b/src/proto_alpha/lib_protocol/alpha_context.mli @@ -3559,6 +3559,7 @@ module Sc_rollup : sig proof : Inbox.serialized_proof; } | Reveal_proof of reveal_proof + | First_inbox_message type t = {pvm_step : wrapped_proof; input_proof : input_proof option} diff --git a/src/proto_alpha/lib_protocol/sc_rollup_inbox_repr.ml b/src/proto_alpha/lib_protocol/sc_rollup_inbox_repr.ml index 2f41b81d3a1a..9b0a07119eda 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_inbox_repr.ml +++ b/src/proto_alpha/lib_protocol/sc_rollup_inbox_repr.ml @@ -26,8 +26,8 @@ (** A Merkelized inbox represents a list of messages. This list - is decomposed into sublists of messages, one for each non-empty Tezos - level greater than the level of the Last Cemented Commitment (LCC). + is decomposed into sublists of messages, one for each Tezos level greater + than the level where SCORU is activated. This module is designed to: @@ -38,9 +38,8 @@ 2. offer an efficient function to add a new batch of messages in the inbox at the current level. - To solve (1), we use a proof tree H which is implemented by a sparse - merkelized skip list allowing for compact inclusion proofs (See - {!skip_list_repr.ml}). + To solve (1), we use a proof tree H which is implemented by a merkelized skip + list allowing for compact inclusion proofs (See {!skip_list_repr.ml}). To solve (2), we maintain a separate proof tree C witnessing the contents of messages of the current level. @@ -98,10 +97,9 @@ let () = register_error_kind `Permanent ~id:"sc_rollup_inbox.empty_upper_level" - ~title:"Internal error: No payload found in a [Level_crossing] proof" + ~title:"Internal error: No payload found in a [Next_level] proof" ~description: - "Failed to find any message in the [upper_level] of a [Level_crossing] \ - proof" + "Failed to find any message in the [upper_level] of a [Next_level] proof" (obj1 (req "upper_level" Raw_level_repr.encoding)) (function Empty_upper_level upper_level -> Some upper_level | _ -> None) (fun upper_level -> Empty_upper_level upper_level) @@ -763,7 +761,7 @@ struct Note: in the case that [message] is [None] this shows that there's no value at the index [n]; in this case we also must check that [level] equals [snapshot] (otherwise, we'd need a - [Level_crossing] proof instead. *) + [Next_level] proof instead. *) | Single_level of { level : history_proof; inc : inclusion_proof; @@ -775,39 +773,18 @@ struct [starting_point] as [(l, n)] where [l] is a level and [n] is a message index. - In a [Level_crossing] proof, [lower] is the skip list cell for - the level [l] and [upper] must be the skip list cell that comes - immediately after it in [snapshot]. If the inbox has been - constructed correctly using the functions in this module that - will be the next non-empty level in the inbox. + In a [Next_level] proof, we prove that: - [inc] is an inclusion proof of [upper] into [snapshot]. - [upper_level] is the level of [upper]. + - There is no message at [(l, n)] with [lower_message_proof]. + - [lower] belongs to the snapshot with [inc] - The tree proof [lower_message_proof] shows the following: - - [exists level_tree . - (hash_level_tree level_tree = lower.content) - AND (payload_and_level n level_tree = (_, (None, l)))] - - in other words, there is no message at index [n] in - level [l]. This means that level has been fully read. - - The tree proof [upper_message_proof] shows the following: - - [exists level_tree . - (hash_level_tree level_tree = upper.content) - AND (payload_and_level 0 level_tree = (_, (message, upper_level)))] - - in other words, if we look in the next non-empty level the - message at index zero is [message]. *) - | Level_crossing of { + The first message to read at the next level of [l] is the + first input [Start_of_level]. + *) + | Next_level of { + lower_message_proof : P.proof; lower : history_proof; - upper : history_proof; inc : inclusion_proof; - lower_message_proof : P.proof; - upper_message_proof : P.proof; - upper_level : Raw_level_repr.t; } let pp_proof fmt proof = @@ -815,18 +792,9 @@ struct | Single_level {level; _} -> let hash = Skip_list.content level in Format.fprintf fmt "Single_level inbox proof at %a" Hash.pp hash - | Level_crossing {lower; upper; upper_level; _} -> + | Next_level {lower; _} -> let lower_hash = Skip_list.content lower in - let upper_hash = Skip_list.content upper in - Format.fprintf - fmt - "Level_crossing inbox proof between %a and %a (upper_level %a)" - Hash.pp - lower_hash - Hash.pp - upper_hash - Raw_level_repr.pp - upper_level + Format.fprintf fmt "Next_level of lower: %a" Hash.pp lower_hash let proof_encoding = let open Data_encoding in @@ -847,48 +815,18 @@ struct (fun (level, inc, message_proof) -> Single_level {level; inc; message_proof}); case - ~title:"Level_crossing" + ~title:"Next_level" (Tag 1) - (obj6 - (req "lower" history_proof_encoding) - (req "upper" history_proof_encoding) - (req "inclusion_proof" inclusion_proof_encoding) + (obj3 (req "lower_message_proof" P.proof_encoding) - (req "upper_message_proof" P.proof_encoding) - (req "upper_level" Raw_level_repr.encoding)) + (req "lower" history_proof_encoding) + (req "inclusion_proof" inclusion_proof_encoding)) (function - | Level_crossing - { - lower; - upper; - inc; - lower_message_proof; - upper_message_proof; - upper_level; - } -> - Some - ( lower, - upper, - inc, - lower_message_proof, - upper_message_proof, - upper_level ) + | Next_level {lower_message_proof; lower; inc} -> + Some (lower_message_proof, lower, inc) | _ -> None) - (fun ( lower, - upper, - inc, - lower_message_proof, - upper_message_proof, - upper_level ) -> - Level_crossing - { - lower; - upper; - inc; - lower_message_proof; - upper_message_proof; - upper_level; - }); + (fun (lower_message_proof, lower, inc) -> + Next_level {lower_message_proof; lower; inc}); ] let of_serialized_proof = Data_encoding.Binary.of_bytes_opt proof_encoding @@ -907,25 +845,16 @@ struct In the case of a [Single_level] proof this is just an inclusion proof between [level] and the inbox snapshot targeted the proof. - In the case of a [Level_crossing] proof [inc] must be an inclusion - proof between [upper] and the inbox snapshot. In this case we must - additionally check that [lower] is the immediate predecessor of - [upper] in the inbox skip list. NB: there may be many 'inbox - levels' apart, but if the intervening levels are empty they will - be immediate neighbours in the skip list because it misses empty - levels out. *) + In the case of a [Next_level] proof [inc] must be an inclusion + proof between [upper] and the inbox snapshot. + *) let check_inclusions proof snapshot = check (match proof with - | Single_level {inc; level; _} -> + | Single_level {inc; level; message_proof = _} -> verify_inclusion_proof inc level snapshot - | Level_crossing {inc; lower; upper; _} -> ( - let prev_cell = Skip_list.back_pointer upper 0 in - match prev_cell with - | None -> false - | Some p -> - verify_inclusion_proof inc upper snapshot - && Hash.equal p (hash_skip_list_cell lower))) + | Next_level {inc; lower; lower_message_proof = _} -> + verify_inclusion_proof inc lower snapshot) "invalid inclusions" (** To construct or verify a tree proof we need a function of type @@ -983,67 +912,40 @@ struct let open Lwt_tzresult_syntax in let* () = check_inclusions proof snapshot in match proof with - | Single_level p -> ( - let level_hash = Skip_list.content p.level in + | Single_level {level; inc = _; message_proof} -> ( + let level_hash = Skip_list.content level in let* payload_opt = - check_message_proof p.message_proof level_hash (l, n) "single level" + check_message_proof message_proof level_hash (l, n) "single level" in match payload_opt with | None -> - if equal_history_proof snapshot p.level then return None + if equal_history_proof snapshot level then return_none else proof_error "payload is None but proof.level not top level" | Some payload -> - return - @@ Some - Sc_rollup_PVM_sig. - {inbox_level = l; message_counter = n; payload}) - | Level_crossing p -> ( - let lower_level_hash = Skip_list.content p.lower in + return_some + Sc_rollup_PVM_sig.{inbox_level = l; message_counter = n; payload}) + | Next_level {lower_message_proof; lower; inc = _} -> ( + (* TODO: https://gitlab.com/tezos/tezos/-/issues/3975 + We could prove that the last message to read is SOL, and is + before [n]. *) + let lower_level_hash = Skip_list.content lower in let* should_be_none = check_message_proof - p.lower_message_proof + lower_message_proof lower_level_hash (l, n) "lower" in - let* () = - match should_be_none with - | None -> return () - | Some _ -> proof_error "more messages to read in lower level" - in - let upper_level_hash = Skip_list.content p.upper in - let* payload_opt = - check_message_proof - p.upper_message_proof - upper_level_hash - (p.upper_level, Z.zero) - "upper" - in - match payload_opt with + match should_be_none with | None -> - (* [check_inclusions] checks at least two important properties: - 1. [p.lower_level] is different from [p.upper_level] - 2. [p.upper_level] is included in the snapshot - - If [p.upper_level] is included in the snapshot, the level was - created by the protocol. If the protocol created a level tree - at [p.upper_level] it *must* contain at least one message. - So, if [p.upper_level] exists, at the index [Z.zero] (fetched - here), a payload *must* exist. - - This code is then dead as long as we store only the nonempty - inboxes. - *) - fail (Empty_upper_level p.upper_level) - | Some payload -> - return - @@ Some - Sc_rollup_PVM_sig. - { - inbox_level = p.upper_level; - message_counter = Z.zero; - payload; - }) + let*? payload = + Sc_rollup_inbox_message_repr.(serialize (Internal Start_of_level)) + in + let inbox_level = Raw_level_repr.succ l in + let message_counter = Z.zero in + return_some + Sc_rollup_PVM_sig.{inbox_level; message_counter; payload} + | Some _ -> proof_error "more messages to read in current level") (** Utility function; we convert all our calls to be consistent with [Lwt_tzresult_syntax]. *) @@ -1100,66 +1002,22 @@ struct Some Sc_rollup_PVM_sig.{inbox_level = l; message_counter = n; payload} ) - | None -> ( + | None -> if equal_history_proof inbox level then return (Single_level {level; inc; message_proof}, None) else - let target_index = Skip_list.index level + 1 in - let cell_ptr = hash_skip_list_cell inbox in - let*? history = History.remember cell_ptr inbox history in - let deref ptr = History.find ptr history in - let* inc = - option_to_result - "failed to find path to upper level" - (Lwt.return - (Skip_list.back_path ~deref ~cell_ptr ~target_index - |> Option.map (lift_ptr_path deref) - |> Option.join)) - in - let* upper = - option_to_result - "back_path returned empty list" - (Lwt.return (List.last_opt inc)) - in - let* upper_level_tree = - option_to_result - "could not find upper_level_tree in the inbox_context" - (P.lookup_tree ctxt (Skip_list.content upper)) - in - let* upper_message_proof, (payload_opt, upper_level_opt) = - option_to_result - "failed to produce message proof for upper_level_tree" - (P.produce_proof ctxt upper_level_tree (payload_and_level Z.zero)) - in - let* upper_level = - option_to_result - "upper_level_tree was misformed---could not find level" - (Lwt.return upper_level_opt) + let lower_message_proof = message_proof in + let lower = level in + let* input_given = + let inbox_level = Raw_level_repr.succ l in + let message_counter = Z.zero in + let*? payload = + Sc_rollup_inbox_message_repr.(serialize (Internal Start_of_level)) + in + return_some + Sc_rollup_PVM_sig.{inbox_level; message_counter; payload} in - match payload_opt with - | None -> - proof_error "if upper_level_tree exists, the payload must exist" - | Some payload -> - let input_given = - Some - Sc_rollup_PVM_sig. - { - inbox_level = upper_level; - message_counter = Z.zero; - payload; - } - in - return - ( Level_crossing - { - lower = level; - upper; - inc; - lower_message_proof = message_proof; - upper_message_proof; - upper_level; - }, - input_given )) + return (Next_level {lower_message_proof; lower; inc}, input_given) let empty context level = let open Lwt_syntax in diff --git a/src/proto_alpha/lib_protocol/sc_rollup_proof_repr.ml b/src/proto_alpha/lib_protocol/sc_rollup_proof_repr.ml index 4a8aa54e30f1..74cbef280233 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_proof_repr.ml +++ b/src/proto_alpha/lib_protocol/sc_rollup_proof_repr.ml @@ -81,6 +81,7 @@ type input_proof = proof : Sc_rollup_inbox_repr.serialized_proof; } | Reveal_proof of reveal_proof + | First_inbox_message let input_proof_encoding = let open Data_encoding in @@ -111,8 +112,15 @@ let input_proof_encoding = (function Reveal_proof s -> Some ((), s) | _ -> None) (fun ((), s) -> Reveal_proof s) in - - union [case_inbox_proof; case_reveal_proof] + let first_input = + case + ~title:"first input" + (Tag 2) + (obj1 (proof_kind "first_input")) + (function First_inbox_message -> Some () | _ -> None) + (fun () -> First_inbox_message) + in + union [case_inbox_proof; case_reveal_proof; first_input] type t = {pvm_step : Sc_rollups.wrapped_proof; input_proof : input_proof option} @@ -172,6 +180,7 @@ let valid ~metadata snapshot commit_level ~pvm_name proof = let open Lwt_tzresult_syntax in let (module P) = Sc_rollups.wrapped_proof_module proof.pvm_step in let* () = check (String.equal P.name pvm_name) "Incorrect PVM kind" in + let origination_level = metadata.Sc_rollup_metadata_repr.origination_level in let* input = match proof.input_proof with | None -> return_none @@ -180,24 +189,31 @@ let valid ~metadata snapshot commit_level ~pvm_name proof = check_inbox_proof snapshot proof (level, Z.succ message_counter) in Option.map (fun i -> Sc_rollup_PVM_sig.Inbox_message i) inbox_message + | Some First_inbox_message -> + let*? payload = + Sc_rollup_inbox_message_repr.(serialize (Internal Start_of_level)) + in + let inbox_level = Raw_level_repr.succ origination_level in + let message_counter = Z.zero in + return_some + Sc_rollup_PVM_sig.( + Inbox_message {inbox_level; message_counter; payload}) | Some (Reveal_proof (Raw_data_proof data)) -> return_some (Sc_rollup_PVM_sig.Reveal (Raw_data data)) | Some (Reveal_proof Metadata_proof) -> return_some (Sc_rollup_PVM_sig.Reveal (Metadata metadata)) in let input = - Option.bind - input - (cut_at_level ~origination_level:metadata.origination_level ~commit_level) + Option.bind input (cut_at_level ~origination_level ~commit_level) in let* input_requested = P.verify_proof input P.proof in let* () = match (proof.input_proof, input_requested) with | None, No_input_required -> return_unit - | Some (Inbox_proof {level; message_counter; proof = _}), Initial -> - check - (Raw_level_repr.(level = root) && Z.(equal message_counter zero)) - "Inbox proof is not about the initial input request." + | Some First_inbox_message, Initial -> + (* If the state is [Initial], we don't need a proof of the input, + we know it's the [Start_of_level] after the origination. *) + return_unit | Some (Inbox_proof {level; message_counter; proof = _}), First_after (l, n) -> check @@ -245,27 +261,24 @@ let produce ~metadata pvm_and_state commit_level = let*! (request : Sc_rollup_PVM_sig.input_request) = P.is_input_state P.state in + let origination_level = metadata.Sc_rollup_metadata_repr.origination_level in let* input_proof, input_given = match request with | No_input_required -> return (None, None) | Initial -> - let level = Raw_level_repr.root in - let message_counter = Z.zero in - let* inbox_proof, input = - Inbox_with_history.( - produce_proof context history inbox (level, message_counter)) - in - let input = - Option.map (fun msg -> Sc_rollup_PVM_sig.Inbox_message msg) input - in - let inbox_proof = - Inbox_proof - { - level; - message_counter; - proof = Inbox_with_history.to_serialized_proof inbox_proof; - } + (* The first input of a rollup is the [Start_of_level] after its + origination. *) + let* input = + let*? payload = + Sc_rollup_inbox_message_repr.(serialize (Internal Start_of_level)) + in + let inbox_level = Raw_level_repr.succ origination_level in + let message_counter = Z.zero in + return_some + Sc_rollup_PVM_sig.( + Inbox_message {inbox_level; message_counter; payload}) in + let inbox_proof = First_inbox_message in return (Some inbox_proof, input) | First_after (level, message_counter) -> let* inbox_proof, input = @@ -297,9 +310,7 @@ let produce ~metadata pvm_and_state commit_level = Some Sc_rollup_PVM_sig.(Reveal (Metadata metadata)) ) in let input_given = - Option.bind - input_given - (cut_at_level ~origination_level:metadata.origination_level ~commit_level) + Option.bind input_given (cut_at_level ~origination_level ~commit_level) in let* pvm_step_proof = P.produce_proof P.context input_given P.state in let module P_with_proof = struct diff --git a/src/proto_alpha/lib_protocol/sc_rollup_proof_repr.mli b/src/proto_alpha/lib_protocol/sc_rollup_proof_repr.mli index e5704f6d51fc..7f7d97f5b55f 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_proof_repr.mli +++ b/src/proto_alpha/lib_protocol/sc_rollup_proof_repr.mli @@ -68,6 +68,11 @@ type reveal_proof = to give a valid refutation proof ; or - a proof of a reveal satisfiability. + + - a claim that the input involved is the first input of the inbox, which + does not need to be proved as we know by construction what is + the input (i.e. the [Start_of_level] of the level after the rollup's + origination level). *) type input_proof = @@ -77,6 +82,7 @@ type input_proof = proof : Sc_rollup_inbox_repr.serialized_proof; } | Reveal_proof of reveal_proof + | First_inbox_message type t = {pvm_step : Sc_rollups.wrapped_proof; input_proof : input_proof option} -- GitLab From 286c3766e8835281840c0525f8d9d9faa02e4ccf Mon Sep 17 00:00:00 2001 From: Valentin Chaboche Date: Mon, 10 Oct 2022 14:54:03 +0200 Subject: [PATCH 18/36] Scoru,Proto: remove starting level of commitment period from inbox --- src/proto_alpha/bin_sc_rollup_node/inbox.ml | 24 ++++---- .../lib_protocol/alpha_context.mli | 3 - .../lib_protocol/sc_rollup_inbox_repr.ml | 58 ++----------------- .../lib_protocol/sc_rollup_inbox_repr.mli | 7 --- .../lib_protocol/sc_rollup_inbox_storage.ml | 9 --- .../integration/operations/test_sc_rollup.ml | 12 ++-- .../test/unit/test_sc_rollup_storage.ml | 26 +++++---- 7 files changed, 43 insertions(+), 96 deletions(-) diff --git a/src/proto_alpha/bin_sc_rollup_node/inbox.ml b/src/proto_alpha/bin_sc_rollup_node/inbox.ml index d23aa24ceafb..a072700ecae5 100644 --- a/src/proto_alpha/bin_sc_rollup_node/inbox.ml +++ b/src/proto_alpha/bin_sc_rollup_node/inbox.ml @@ -185,16 +185,20 @@ let process_head node_ctxt Layer1.({level; hash = head_hash} as head) = let*? messages = List.map_e Sc_rollup.Inbox_message.serialize messages in if messages = [] then return (history, inbox, ctxt) else - let commitment_period = - node_ctxt.protocol_constants.parametric.sc_rollup - .commitment_period_in_blocks |> Int32.of_int - in - let inbox = - Sc_rollup.Inbox.refresh_commitment_period - ~commitment_period - ~level - inbox - in + (* TODO: https://gitlab.com/tezos/tezos/-/issues/3978 + + The number of messages during commitment period is broken with the + unique inbox. *) + (* let commitment_period = + * node_ctxt.protocol_constants.parametric.sc_rollup + * .commitment_period_in_blocks |> Int32.of_int + * in + * let inbox = + * Sc_rollup.Inbox.refresh_commitment_period + * ~commitment_period + * ~level + * inbox + * in *) let* messages_tree, history, inbox = Context.Inbox.add_messages node_ctxt.context diff --git a/src/proto_alpha/lib_protocol/alpha_context.mli b/src/proto_alpha/lib_protocol/alpha_context.mli index 7c645eca4dec..3769ccf2e80c 100644 --- a/src/proto_alpha/lib_protocol/alpha_context.mli +++ b/src/proto_alpha/lib_protocol/alpha_context.mli @@ -3072,9 +3072,6 @@ module Sc_rollup : sig val inbox_level : t -> Raw_level.t - val refresh_commitment_period : - commitment_period:int32 -> level:Raw_level.t -> t -> t - type history_proof module Hash : sig diff --git a/src/proto_alpha/lib_protocol/sc_rollup_inbox_repr.ml b/src/proto_alpha/lib_protocol/sc_rollup_inbox_repr.ml index 9b0a07119eda..64ae3d4365c4 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_inbox_repr.ml +++ b/src/proto_alpha/lib_protocol/sc_rollup_inbox_repr.ml @@ -202,8 +202,6 @@ module V1 = struct the number of messages that have not been consumed by a commitment cementing ; - [nb_messages_in_commitment_period] : the number of messages during the commitment period ; - - [starting_level_of_current_commitment_period] : - the level marking the beginning of the current commitment period ; - [current_level_hash] : the root hash of [current_level] ; - [old_levels_messages] : a witness of the inbox history. @@ -220,19 +218,22 @@ module V1 = struct type t = { level : Raw_level_repr.t; nb_messages_in_commitment_period : int64; - starting_level_of_current_commitment_period : Raw_level_repr.t; message_counter : Z.t; (* Lazy to avoid hashing O(n^2) time in [add_messages] *) current_level_hash : unit -> Hash.t; old_levels_messages : history_proof; } + (* TODO: https://gitlab.com/tezos/tezos/-/issues/3978 + + The number of messages during commitment period is broken with the + unique inbox. *) + let equal inbox1 inbox2 = (* To be robust to addition of fields in [t]. *) let { level; nb_messages_in_commitment_period; - starting_level_of_current_commitment_period; message_counter; current_level_hash; old_levels_messages; @@ -244,10 +245,6 @@ module V1 = struct equal nb_messages_in_commitment_period inbox2.nb_messages_in_commitment_period) - && Raw_level_repr.( - equal - starting_level_of_current_commitment_period - inbox2.starting_level_of_current_commitment_period) && Z.equal message_counter inbox2.message_counter && Hash.equal (current_level_hash ()) (inbox2.current_level_hash ()) && equal_history_proof old_levels_messages inbox2.old_levels_messages @@ -256,7 +253,6 @@ module V1 = struct { level; nb_messages_in_commitment_period; - starting_level_of_current_commitment_period; message_counter; current_level_hash; old_levels_messages; @@ -266,7 +262,6 @@ module V1 = struct "@[{ level = %a@;\ current messages hash = %a@;\ nb_messages_in_commitment_period = %s@;\ - starting_level_of_current_commitment_period = %a@;\ message_counter = %a@;\ old_levels_messages = %a@;\ }@]" @@ -275,8 +270,6 @@ module V1 = struct Hash.pp (current_level_hash ()) (Int64.to_string nb_messages_in_commitment_period) - Raw_level_repr.pp - starting_level_of_current_commitment_period Z.pp_print message_counter pp_history_proof @@ -297,70 +290,36 @@ module V1 = struct (fun { message_counter; nb_messages_in_commitment_period; - starting_level_of_current_commitment_period; level; current_level_hash; old_levels_messages; } -> ( message_counter, nb_messages_in_commitment_period, - starting_level_of_current_commitment_period, level, current_level_hash (), old_levels_messages )) (fun ( message_counter, nb_messages_in_commitment_period, - starting_level_of_current_commitment_period, level, current_level_hash, old_levels_messages ) -> { message_counter; nb_messages_in_commitment_period; - starting_level_of_current_commitment_period; level; current_level_hash = (fun () -> current_level_hash); old_levels_messages; }) - (obj6 + (obj5 (req "message_counter" n) (req "nb_messages_in_commitment_period" int64) - (req - "starting_level_of_current_commitment_period" - Raw_level_repr.encoding) (req "level" Raw_level_repr.encoding) (req "current_level_hash" Hash.encoding) (req "old_levels_messages" old_levels_messages_encoding))) let number_of_messages_during_commitment_period inbox = inbox.nb_messages_in_commitment_period - - let start_new_commitment_period inbox level = - { - inbox with - starting_level_of_current_commitment_period = level; - nb_messages_in_commitment_period = 0L; - } - - let starting_level_of_current_commitment_period inbox = - inbox.starting_level_of_current_commitment_period - - let refresh_commitment_period ~commitment_period ~level inbox = - let start = starting_level_of_current_commitment_period inbox in - let freshness = Raw_level_repr.diff level start in - let open Int32 in - let open Compare.Int32 in - if freshness >= commitment_period then ( - let nb_periods = - to_int ((mul (div freshness commitment_period)) commitment_period) - in - let new_starting_level = Raw_level_repr.(add start nb_periods) in - assert (Raw_level_repr.(new_starting_level <= level)) ; - assert ( - rem (Raw_level_repr.diff new_starting_level start) commitment_period - = 0l) ; - start_new_commitment_period inbox new_starting_level) - else inbox end type versioned = V1 of V1.t @@ -559,8 +518,6 @@ struct in let inbox = { - starting_level_of_current_commitment_period = - inbox.starting_level_of_current_commitment_period; current_level_hash = inbox.current_level_hash; level = inbox.level; old_levels_messages = inbox.old_levels_messages; @@ -656,8 +613,6 @@ struct let*! tree = new_level_tree ctxt new_level in let inbox = { - starting_level_of_current_commitment_period = - inbox.starting_level_of_current_commitment_period; current_level_hash = inbox.current_level_hash; nb_messages_in_commitment_period = inbox.nb_messages_in_commitment_period; @@ -1030,7 +985,6 @@ struct level; message_counter = Z.zero; nb_messages_in_commitment_period = 0L; - starting_level_of_current_commitment_period = level; current_level_hash = (fun () -> initial_hash); old_levels_messages = Skip_list.genesis initial_hash; } diff --git a/src/proto_alpha/lib_protocol/sc_rollup_inbox_repr.mli b/src/proto_alpha/lib_protocol/sc_rollup_inbox_repr.mli index 008243ac7d02..6778cf02fc16 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_inbox_repr.mli +++ b/src/proto_alpha/lib_protocol/sc_rollup_inbox_repr.mli @@ -204,13 +204,6 @@ module V1 : sig number of messages added in the inbox since the beginning of the current commitment period. *) val number_of_messages_during_commitment_period : t -> int64 - - (** [refresh_commitment_period ~commitment_period ~level inbox] updates - [inbox] to take into account the commitment_period: this resets a - counter for the number of messages in a given commitment period - (which is limited). *) - val refresh_commitment_period : - commitment_period:int32 -> level:Raw_level_repr.t -> t -> t end (** Versioning, see {!Sc_rollup_data_version_sig.S} for more information. *) diff --git a/src/proto_alpha/lib_protocol/sc_rollup_inbox_storage.ml b/src/proto_alpha/lib_protocol/sc_rollup_inbox_storage.ml index 6e90e345a9a0..6d44e0f0f455 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_inbox_storage.ml +++ b/src/proto_alpha/lib_protocol/sc_rollup_inbox_storage.ml @@ -57,9 +57,6 @@ let add_messages ctxt messages = let {Level_repr.level; _} = Raw_context.current_level ctxt in let open Lwt_tzresult_syntax in let open Raw_context in - let commitment_period = - Constants_storage.sc_rollup_commitment_period_in_blocks ctxt |> Int32.of_int - in let* inbox, ctxt = get_inbox ctxt in let* num_messages, total_messages_size, ctxt = List.fold_left_es @@ -79,12 +76,6 @@ let add_messages ctxt messages = (0, 0, ctxt) messages in - let inbox = - Sc_rollup_inbox_repr.refresh_commitment_period - ~commitment_period - ~level - inbox - in let* () = assert_inbox_nb_messages_in_commitment_period ctxt inbox num_messages in diff --git a/src/proto_alpha/lib_protocol/test/integration/operations/test_sc_rollup.ml b/src/proto_alpha/lib_protocol/test/integration/operations/test_sc_rollup.ml index d8e8ca25d9ef..664b2a91e4d9 100644 --- a/src/proto_alpha/lib_protocol/test/integration/operations/test_sc_rollup.ml +++ b/src/proto_alpha/lib_protocol/test/integration/operations/test_sc_rollup.ml @@ -2096,10 +2096,14 @@ let tests = "insufficient ticket balances" `Quick test_insufficient_ticket_balances; - Tztest.tztest - "inbox max number of messages during commitment period" - `Quick - test_inbox_max_number_of_messages_per_commitment_period; + (* TODO: https://gitlab.com/tezos/tezos/-/issues/3978 + + The number of messages during commitment period is broken with the + unique inbox. *) + (* Tztest.tztest + * "inbox max number of messages during commitment period" + * `Quick + * test_inbox_max_number_of_messages_per_commitment_period; *) Tztest.tztest "Test that a player can't timeout another player before timeout period \ and related timeout value." diff --git a/src/proto_alpha/lib_protocol/test/unit/test_sc_rollup_storage.ml b/src/proto_alpha/lib_protocol/test/unit/test_sc_rollup_storage.ml index bd9d7b882581..d941ef023940 100644 --- a/src/proto_alpha/lib_protocol/test/unit/test_sc_rollup_storage.ml +++ b/src/proto_alpha/lib_protocol/test/unit/test_sc_rollup_storage.ml @@ -3082,17 +3082,21 @@ let tests = "A commitment with zero ticks shouldn't change the state" `Quick test_zero_tick_commitment_cannot_change_state; - Tztest.tztest - "The number of messages pushed during commitment period stays under \ - limit (without gap)" - `Quick - (test_limit_on_number_of_messages_during_commitment_period false); - Tztest.tztest - "The number of messages pushed during commitment period stays under \ - limit (with gap)" - `Quick - (test_limit_on_number_of_messages_during_commitment_period true); - Tztest.tztest "Record messages in storage outbox" `Quick test_storage_outbox; + (* TODO: https://gitlab.com/tezos/tezos/-/issues/3978 + + The number of messages during commitment period is broken with the + unique inbox. *) + (* Tztest.tztest + * "The number of messages pushed during commitment period stays under \ + * limit (without gap)" + * `Quick + * (test_limit_on_number_of_messages_during_commitment_period false); + * Tztest.tztest + * "The number of messages pushed during commitment period stays under \ + * limit (with gap)" + * `Quick + * (test_limit_on_number_of_messages_during_commitment_period true); + * Tztest.tztest "Record messages in storage outbox" `Quick test_storage_outbox; *) Tztest.tztest "Record messages in storage outbox limits" `Quick -- GitLab From f3976e5145fa65abbe2677daf089c51db5251cda Mon Sep 17 00:00:00 2001 From: Valentin Chaboche Date: Mon, 10 Oct 2022 16:13:27 +0200 Subject: [PATCH 19/36] Scoru,Proto: the snapshot is always the predecessor The current level is never empty since we have a SOL message. --- .../lib_protocol/alpha_context.mli | 2 +- .../lib_protocol/sc_rollup_inbox_repr.ml | 17 +---- .../lib_protocol/sc_rollup_inbox_repr.mli | 4 +- .../sc_rollup_refutation_storage.ml | 3 +- .../test/pbt/test_sc_rollup_encoding.ml | 2 +- .../test/unit/test_sc_rollup_game.ml | 6 +- .../test/unit/test_sc_rollup_inbox.ml | 65 ++----------------- 7 files changed, 14 insertions(+), 85 deletions(-) diff --git a/src/proto_alpha/lib_protocol/alpha_context.mli b/src/proto_alpha/lib_protocol/alpha_context.mli index 3769ccf2e80c..54c965867eb0 100644 --- a/src/proto_alpha/lib_protocol/alpha_context.mli +++ b/src/proto_alpha/lib_protocol/alpha_context.mli @@ -3127,7 +3127,7 @@ module Sc_rollup : sig tree option -> (History.t * history_proof) tzresult Lwt.t - val take_snapshot : current_level:Raw_level.t -> t -> history_proof + val take_snapshot : t -> history_proof type inclusion_proof diff --git a/src/proto_alpha/lib_protocol/sc_rollup_inbox_repr.ml b/src/proto_alpha/lib_protocol/sc_rollup_inbox_repr.ml index 64ae3d4365c4..f5228e276359 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_inbox_repr.ml +++ b/src/proto_alpha/lib_protocol/sc_rollup_inbox_repr.ml @@ -389,7 +389,7 @@ module type Merkelized_operations = sig tree option -> (History.t * history_proof) tzresult Lwt.t - val take_snapshot : current_level:Raw_level_repr.t -> t -> history_proof + val take_snapshot : t -> history_proof type inclusion_proof @@ -543,20 +543,7 @@ struct previous levels of the inbox. *) let no_history = History.empty ~capacity:0L - let take_snapshot ~current_level inbox = - let prev_cell = inbox.old_levels_messages in - if Raw_level_repr.(inbox.level < current_level) then - (* If the level of the inbox is lower than the current level, there - is no new messages in the inbox for the current level. It is then safe - to take a snapshot of the actual inbox. *) - let prev_cell_ptr = hash_skip_list_cell prev_cell in - Skip_list.next ~prev_cell ~prev_cell_ptr (current_level_hash inbox) - else - (* If there is a level tree for the [current_level] in the inbox, we need - to ignore this new level as it is not finished yet (regarding the - block's completion). We take the inbox's current predecessor instead. - *) - prev_cell + let take_snapshot inbox = inbox.old_levels_messages let key_of_level level = let level_bytes = diff --git a/src/proto_alpha/lib_protocol/sc_rollup_inbox_repr.mli b/src/proto_alpha/lib_protocol/sc_rollup_inbox_repr.mli index 6778cf02fc16..c754b6db0e3f 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_inbox_repr.mli +++ b/src/proto_alpha/lib_protocol/sc_rollup_inbox_repr.mli @@ -305,12 +305,12 @@ module type Merkelized_operations = sig which proofs in that game must be valid. One important note: - It takes the snapshot of the inbox for the [current_level]. The snapshot + It takes the snapshot of the inbox for the current level. The snapshot points to the inbox at the *beginning* of the current block level. This prevents to create a mid-level snapshot for a refutation game if new messages are added before and/or after in the same block. *) - val take_snapshot : current_level:Raw_level_repr.t -> t -> history_proof + val take_snapshot : t -> history_proof (** Given a inbox [A] at some level [L] and another inbox [B] at some level [L' >= L], an [inclusion_proof] guarantees that [A] is diff --git a/src/proto_alpha/lib_protocol/sc_rollup_refutation_storage.ml b/src/proto_alpha/lib_protocol/sc_rollup_refutation_storage.ml index 860fd232e049..210acb376213 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_refutation_storage.ml +++ b/src/proto_alpha/lib_protocol/sc_rollup_refutation_storage.ml @@ -256,12 +256,11 @@ let start_game ctxt rollup ~player:refuter ~opponent:defender = let default_number_of_sections = Constants_storage.sc_rollup_number_of_sections_in_dissection ctxt in - let current_level = (Raw_context.current_level ctxt).level in let game = Sc_rollup_game_repr.initial ~start_level:current_level - (Sc_rollup_inbox_repr.take_snapshot ~current_level inbox) + (Sc_rollup_inbox_repr.take_snapshot inbox) ~pvm_name:(Sc_rollups.Kind.name_of kind) ~parent:parent_info ~child:child_info diff --git a/src/proto_alpha/lib_protocol/test/pbt/test_sc_rollup_encoding.ml b/src/proto_alpha/lib_protocol/test/pbt/test_sc_rollup_encoding.ml index 2ff577cbf52d..e718fea50486 100644 --- a/src/proto_alpha/lib_protocol/test/pbt/test_sc_rollup_encoding.ml +++ b/src/proto_alpha/lib_protocol/test/pbt/test_sc_rollup_encoding.ml @@ -118,7 +118,7 @@ let gen_inbox level = let gen_inbox_history_proof inbox_level = let open Gen in let* inbox = gen_inbox inbox_level in - return (Sc_rollup_inbox_repr.take_snapshot ~current_level:inbox_level inbox) + return (Sc_rollup_inbox_repr.take_snapshot inbox) let gen_pvm_name = Gen.string_printable diff --git a/src/proto_alpha/lib_protocol/test/unit/test_sc_rollup_game.ml b/src/proto_alpha/lib_protocol/test/unit/test_sc_rollup_game.ml index fa004c8aba72..65dedc896cee 100644 --- a/src/proto_alpha/lib_protocol/test/unit/test_sc_rollup_game.ml +++ b/src/proto_alpha/lib_protocol/test/unit/test_sc_rollup_game.ml @@ -273,11 +273,7 @@ let test_invalid_serialized_inbox_proof () = let rollup = Sc_rollup.Address.zero in let level = Raw_level.(succ root) in let*! inbox = Sc_rollup.Inbox.empty ctxt level in - let snapshot = - Sc_rollup.Inbox.take_snapshot - ~current_level:(Raw_level.of_int32_exn 42l) - inbox - in + let snapshot = Sc_rollup.Inbox.take_snapshot inbox in let ctxt = Tezos_context_memory.make_empty_context () in let*! state = Arith_pvm.initial_state ctxt in diff --git a/src/proto_alpha/lib_protocol/test/unit/test_sc_rollup_inbox.ml b/src/proto_alpha/lib_protocol/test/unit/test_sc_rollup_inbox.ml index e99125703ef2..6c2c6fbc472b 100644 --- a/src/proto_alpha/lib_protocol/test/unit/test_sc_rollup_inbox.ml +++ b/src/proto_alpha/lib_protocol/test/unit/test_sc_rollup_inbox.ml @@ -377,13 +377,7 @@ let test_inbox_proof_production (list_of_payloads, additional_payloads, l, n) = (* If there are [additional_payloads], we will take the snapshot of the additional level, which should ignore the additional payloads. Otherwise, we take a snapshot of the whole inbox. *) - let current_level = - let curr = inbox_level inbox in - match additional_payloads with - | [] -> Raw_level_repr.succ curr - | _ -> curr - in - let snapshot = take_snapshot ~current_level inbox in + let snapshot = take_snapshot inbox in let proof = node_proof_to_protocol_proof proof in let*! verification = verify_proof (l, n) snapshot proof in match verification with @@ -417,13 +411,7 @@ let test_inbox_proof_verification (list_of_payloads, additional_payloads, l, n) (* If there are [additional_payloads], we will take the snapshot of the additional level, which should ignore the additional payloads. Otherwise, we take a snapshot of the whole inbox. *) - let current_level = - let curr = inbox_level inbox in - match additional_payloads with - | [] -> Raw_level_repr.succ curr - | _ -> curr - in - let snapshot = take_snapshot ~current_level inbox in + let snapshot = take_snapshot inbox in let proof = node_proof_to_protocol_proof proof in let*! verification = verify_proof (l, n) snapshot proof in match verification with @@ -451,8 +439,7 @@ let test_empty_inbox_proof (level, n) = create_context () >>=? fun ctxt -> let*! inbox = empty ctxt level in - let current_level = Raw_level_repr.succ (inbox_level inbox) in - let snapshot = take_snapshot ~current_level inbox in + let snapshot = take_snapshot inbox in let proof = node_proof_to_protocol_proof proof in let*! verification = verify_proof (Raw_level_repr.root, n) snapshot proof @@ -659,30 +646,6 @@ let test_inclusion_proofs_depending_on_history_capacity (I.verify_inclusion_proof ip1 hp hp && I.verify_inclusion_proof ip2 hp hp) (err "Inclusion proofs are expected to be valid.") -(** In this test, we make sure that the snapshot of an empty inbox is not - impacted by the [current_level] parameter. *) -let test_empty_inbox_snapshot_taking (origination_level, snapshot_level) = - let open Lwt_result_syntax in - let origination_level = - Raw_level_repr.of_int32_exn @@ Int32.of_int origination_level - in - let snapshot_level = - Raw_level_repr.of_int32_exn @@ Int32.of_int snapshot_level - in - let* ctxt = create_context () in - let*! inbox = empty ctxt origination_level in - (* We take a snapshot of the whole inbox. *) - let current_level = Raw_level_repr.succ origination_level in - let expected_snapshot = take_snapshot ~current_level inbox in - (* We take a snapshot at a random level. *) - let actual_snapshot = take_snapshot ~current_level:snapshot_level inbox in - (* They're expected to be the same. *) - fail_unless - (equal_history_proof expected_snapshot actual_snapshot) - (err - "Snapshot at origination level of an empty inbox should be equal to \ - snapshots at any level.") - (** In this test, we make sure that the snapshot of an inbox is taken at the beginning of a block level. *) let test_inbox_snapshot_taking (list_of_payloads, payloads) = @@ -690,10 +653,8 @@ let test_inbox_snapshot_taking (list_of_payloads, payloads) = setup_inbox_with_messages list_of_payloads @@ fun ctxt current_level_tree history inbox inboxes -> let inbox_level = inbox_level inbox in - (* If we take a snapshot of [inbox_level + 1], we take a snapshot of the - whole inbox. *) let current_level = Raw_level_repr.succ inbox_level in - let expected_snapshot = take_snapshot ~current_level inbox in + let expected_snapshot = take_snapshot inbox in (* Now, if we add messages to the inbox at [current_level], the inbox's snapshot for this level should not changed. *) let* _level_tree, _history, inbox, _inboxes = @@ -706,7 +667,7 @@ let test_inbox_snapshot_taking (list_of_payloads, payloads) = (Some current_level_tree) [payloads] in - let new_snapshot = take_snapshot ~current_level inbox in + let new_snapshot = take_snapshot inbox in fail_unless (equal_history_proof expected_snapshot new_snapshot) (err @@ -780,9 +741,7 @@ let test_inclusion_proof_of_unarchived_message () = let* snapshot = setup_inbox_with_messages payloads @@ fun _ctxt _level_tree _history inbox _inboxes -> - (* We set the inbox level in the future. *) - let level = Raw_level_repr.of_int32_exn 42l in - return (take_snapshot ~current_level:level inbox) + return (take_snapshot inbox) in let proof = node_proof_to_protocol_proof proof in @@ -898,18 +857,6 @@ let tests = capacities" gen_history_params test_for_successive_add_messages_with_different_histories_capacities; - Tztest.tztest_qcheck2 - ~count:10 - ~name: - "Take snapshot of an empty inbox for any current level gives the same \ - result" - (let open QCheck2.Gen in - let* origination_level = small_nat in - let origination_level = succ origination_level in - let* offset = small_nat in - let snapshot_level = origination_level + offset + 1 in - return (origination_level, snapshot_level)) - test_empty_inbox_snapshot_taking; Tztest.tztest_qcheck2 ~count:10 ~name: -- GitLab From a1d04a6f9ca5b6b453196bfbd1173c132d2f7887 Mon Sep 17 00:00:00 2001 From: Valentin Chaboche Date: Mon, 10 Oct 2022 18:17:08 +0200 Subject: [PATCH 20/36] Scoru,Proto: add todo for 0 tick commitments --- src/proto_alpha/lib_protocol/sc_rollup_game_repr.ml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/proto_alpha/lib_protocol/sc_rollup_game_repr.ml b/src/proto_alpha/lib_protocol/sc_rollup_game_repr.ml index af9654f51f42..3505668811bb 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_game_repr.ml +++ b/src/proto_alpha/lib_protocol/sc_rollup_game_repr.ml @@ -678,6 +678,8 @@ let initial inbox ~start_level ~pvm_name ~(parent : Sc_rollup_commitment_repr.t) let alice_to_play = Staker.equal alice refuter in let open Sc_rollup_tick_repr in let tick = of_number_of_ticks child.number_of_ticks in + (* TODO: https://gitlab.com/tezos/tezos/-/issues/3974 + 0 tick commitments are impossible with SOL/EOL. *) let game_state = Dissecting { -- GitLab From 685f40341e0bde363b07e1d52fa65e4922696b11 Mon Sep 17 00:00:00 2001 From: Valentin Chaboche Date: Tue, 11 Oct 2022 14:04:29 +0200 Subject: [PATCH 21/36] Scoru,Proto: expose pretty-printers --- .../lib_protocol/alpha_context.mli | 6 ++++++ .../lib_protocol/sc_rollup_PVM_sig.ml | 19 +++++++++++++++++++ 2 files changed, 25 insertions(+) diff --git a/src/proto_alpha/lib_protocol/alpha_context.mli b/src/proto_alpha/lib_protocol/alpha_context.mli index 54c965867eb0..f919c7c879fc 100644 --- a/src/proto_alpha/lib_protocol/alpha_context.mli +++ b/src/proto_alpha/lib_protocol/alpha_context.mli @@ -3039,6 +3039,12 @@ module Sc_rollup : sig type input = Inbox_message of inbox_message | Reveal of reveal_data + val pp_inbox_message : Format.formatter -> inbox_message -> unit + + val pp_reveal_data : Format.formatter -> reveal_data -> unit + + val pp_input : Format.formatter -> input -> unit + val input_equal : input -> input -> bool val input_encoding : input Data_encoding.t diff --git a/src/proto_alpha/lib_protocol/sc_rollup_PVM_sig.ml b/src/proto_alpha/lib_protocol/sc_rollup_PVM_sig.ml index 4901c41c290a..95ba78817cdb 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_PVM_sig.ml +++ b/src/proto_alpha/lib_protocol/sc_rollup_PVM_sig.ml @@ -67,6 +67,25 @@ type reveal_data = Raw_data of string | Metadata of Sc_rollup_metadata_repr.t type input = Inbox_message of inbox_message | Reveal of reveal_data +let pp_inbox_message fmt {inbox_level; message_counter; _} = + Format.fprintf + fmt + "@[level: %a@,message index: %a@]" + Raw_level_repr.pp + inbox_level + Z.pp_print + message_counter + +let pp_reveal_data fmt = function + | Raw_data _ -> Format.pp_print_string fmt "raw data" + | Metadata metadata -> Sc_rollup_metadata_repr.pp fmt metadata + +let pp_input fmt = function + | Inbox_message msg -> + Format.fprintf fmt "@[inbox message:@,%a@]" pp_inbox_message msg + | Reveal reveal -> + Format.fprintf fmt "@[reveal: %a@]" pp_reveal_data reveal + (** [inbox_message_encoding] encoding value for {!inbox_message}. *) let inbox_message_encoding = let open Data_encoding in -- GitLab From 18927f66088c563bf06f5cc7eb5974daeba9670f Mon Sep 17 00:00:00 2001 From: Valentin Chaboche Date: Wed, 12 Oct 2022 14:15:32 +0200 Subject: [PATCH 22/36] Scoru,Node: ignore messages before or at origination --- src/proto_alpha/bin_sc_rollup_node/inbox.ml | 154 ++++++++++-------- .../bin_sc_rollup_node/interpreter.ml | 41 +++-- 2 files changed, 114 insertions(+), 81 deletions(-) diff --git a/src/proto_alpha/bin_sc_rollup_node/inbox.ml b/src/proto_alpha/bin_sc_rollup_node/inbox.ml index a072700ecae5..8a330ae86123 100644 --- a/src/proto_alpha/bin_sc_rollup_node/inbox.ml +++ b/src/proto_alpha/bin_sc_rollup_node/inbox.ml @@ -40,34 +40,38 @@ module State = struct let level_of_hash = State.level_of_hash - (** [inbox_of_head node_ctxt store block] returns the latest - inbox at the given [block]. This function always returns - [Some inbox] for all levels after the rollup genesis even when - no messages has been issued at this specific [block]. In - this case, the inbox is the same as the one found in the level - when the latest message has been inserted. *) + (** [inbox_of_head node_ctxt store block] returns the latest inbox at the + given [block]. This function always returns [Some inbox] for all levels + at and after the rollup genesis. *) let inbox_of_head node_ctxt Layer1.{hash = block_hash; level = block_level} = let open Lwt_result_syntax in let open Node_context in let*! possible_inbox = Store.Inboxes.find node_ctxt.store block_hash in + (* Pre-condition: forall l. (l > genesis_level) => inbox[l] <> None. *) match possible_inbox with | None -> - (* We won't find inboxes for blocks before the rollup origination level. - Fortunately this case will only ever be called once when dealing with - the rollup origination block. After that we would always find an - inbox. *) + (* The inbox exists for each tezos block the rollup should care about. + That is, every block after the origination level. We then join + the bandwagon and build the inbox on top of the protocol's inbox + at the end of the origination level. *) let genesis_level = Raw_level.to_int32 node_ctxt.genesis_info.level in - if block_level <= genesis_level then - let*! inbox = - Context.Inbox.empty node_ctxt.context node_ctxt.genesis_info.level - in - return inbox - else + if block_level = genesis_level then + let Node_context.{cctxt; _} = node_ctxt in + Plugin.RPC.Sc_rollup.inbox cctxt (cctxt#chain, `Level genesis_level) + else if block_level > genesis_level then + (* Invariant broken, the inbox for this level should exist. *) failwith "The inbox for block hash %a (level = %ld) is missing." Block_hash.pp block_hash block_level + else + (* The rollup node should not care about levels before the genesis + level. *) + failwith + "Asking for the inbox before the genesis level (i.e. %ld), out of \ + the scope of the rollup's node" + block_level | Some inbox -> return inbox let history_of_head node_ctxt Layer1.{hash = block_hash; level = block_level} @@ -155,67 +159,77 @@ let same_inbox_as_layer_1 node_ctxt head_hash inbox = (Sc_rollup.Inbox.equal layer1_inbox inbox) (Sc_rollup_node_errors.Inconsistent_inbox {layer1_inbox; inbox}) -let process_head node_ctxt Layer1.({level; hash = head_hash} as head) = +let process_head (node_ctxt : Node_context.t) + Layer1.({level; hash = head_hash} as head) = let open Lwt_result_syntax in - let* messages = get_messages node_ctxt head_hash in - let*! () = Inbox_event.get_messages head_hash level (List.length messages) in - let*! () = State.add_messages node_ctxt.store head_hash messages in - (* + let first_inbox_level = + Raw_level.to_int32 node_ctxt.genesis_info.level |> Int32.succ + in + if level >= first_inbox_level then + let* messages = get_messages node_ctxt head_hash in + let*! () = + Inbox_event.get_messages head_hash level (List.length messages) + in + let*! () = State.add_messages node_ctxt.store head_hash messages in + (* We compute the inbox of this block using the inbox of its predecessor. That way, the computation of inboxes is robust to chain reorganization. - *) - let* predecessor = Layer1.get_predecessor node_ctxt.l1_ctxt head in - let* inbox = State.inbox_of_head node_ctxt predecessor in - let* history = State.history_of_head node_ctxt predecessor in - let* ctxt = - if level <= Raw_level.to_int32 node_ctxt.Node_context.genesis_info.level - then - (* This is before we have interpreted the boot sector, so we start - with an empty context in genesis *) - return (Context.empty node_ctxt.context) - else Node_context.checkout_context node_ctxt predecessor.hash - in - let*! messages_tree = Context.MessageTrees.find ctxt in - let* history, inbox, ctxt = - lift - @@ let*? level = Raw_level.of_int32 level in - let*? messages = List.map_e Sc_rollup.Inbox_message.serialize messages in - if messages = [] then return (history, inbox, ctxt) - else - (* TODO: https://gitlab.com/tezos/tezos/-/issues/3978 - - The number of messages during commitment period is broken with the - unique inbox. *) - (* let commitment_period = - * node_ctxt.protocol_constants.parametric.sc_rollup - * .commitment_period_in_blocks |> Int32.of_int - * in - * let inbox = - * Sc_rollup.Inbox.refresh_commitment_period - * ~commitment_period - * ~level - * inbox - * in *) - let* messages_tree, history, inbox = - Context.Inbox.add_messages - node_ctxt.context - history - inbox - level - messages - messages_tree + *) + let* predecessor = Layer1.get_predecessor node_ctxt.l1_ctxt head in + let* inbox = State.inbox_of_head node_ctxt predecessor in + let* history = State.history_of_head node_ctxt predecessor in + let* ctxt = + if level <= Raw_level.to_int32 node_ctxt.Node_context.genesis_info.level + then + (* This is before we have interpreted the boot sector, so we start + with an empty context in genesis *) + return (Context.empty node_ctxt.context) + else Node_context.checkout_context node_ctxt predecessor.hash + in + let*! messages_tree = Context.MessageTrees.find ctxt in + let* history, inbox, ctxt = + lift + @@ let*? level = Raw_level.of_int32 level in + let*? messages = + List.map_e Sc_rollup.Inbox_message.serialize messages in - - let*! ctxt = Context.MessageTrees.set ctxt messages_tree in - return (history, inbox, ctxt) - in - let* () = same_inbox_as_layer_1 node_ctxt head_hash inbox in - let*! () = State.add_inbox node_ctxt.store head_hash inbox in - let*! () = State.add_history node_ctxt.store head_hash history in - return ctxt + if messages = [] then return (history, inbox, ctxt) + else + (* TODO: https://gitlab.com/tezos/tezos/-/issues/3978 + + The number of messages during commitment period is broken with the + unique inbox. *) + (* let commitment_period = + * node_ctxt.protocol_constants.parametric.sc_rollup + * .commitment_period_in_blocks |> Int32.of_int + * in + * let inbox = + * Sc_rollup.Inbox.refresh_commitment_period + * ~commitment_period + * ~level + * inbox + * in *) + let* messages_tree, history, inbox = + Context.Inbox.add_messages + node_ctxt.context + history + inbox + level + messages + messages_tree + in + + let*! ctxt = Context.MessageTrees.set ctxt messages_tree in + return (history, inbox, ctxt) + in + let* () = same_inbox_as_layer_1 node_ctxt head_hash inbox in + let*! () = State.add_inbox node_ctxt.store head_hash inbox in + let*! () = State.add_history node_ctxt.store head_hash history in + return ctxt + else return (Context.empty node_ctxt.context) let inbox_of_hash node_ctxt hash = let open Lwt_result_syntax in diff --git a/src/proto_alpha/bin_sc_rollup_node/interpreter.ml b/src/proto_alpha/bin_sc_rollup_node/interpreter.ml index 49dc45354a8b..6f55237e26ed 100644 --- a/src/proto_alpha/bin_sc_rollup_node/interpreter.ml +++ b/src/proto_alpha/bin_sc_rollup_node/interpreter.ml @@ -285,15 +285,10 @@ module Make (PVM : Pvm.S) : S with module PVM = PVM = struct (** [transition_pvm node_ctxt predecessor head] runs a PVM at the previous state from block [predecessor] by consuming as many messages as possible from block [head]. *) - let transition_pvm node_ctxt ctxt predecessor Layer1.{hash; level} = + let transition_pvm node_ctxt ctxt predecessor Layer1.{hash; _} = let open Lwt_result_syntax in (* Retrieve the previous PVM state from store. *) - let pred_level = Int32.pred level |> Raw_level.of_int32_exn in - let* ctxt, predecessor_state = - if Raw_level.(pred_level <= node_ctxt.Node_context.genesis_info.level) - then genesis_state hash node_ctxt ctxt - else state_of_head node_ctxt ctxt predecessor - in + let* ctxt, predecessor_state = state_of_head node_ctxt ctxt predecessor in let metadata = metadata node_ctxt in let* state, num_messages, inbox_level, _fuel = eval_block_inbox ~metadata node_ctxt hash predecessor_state @@ -342,12 +337,36 @@ module Make (PVM : Pvm.S) : S with module PVM = PVM = struct return_unit (** [process_head node_ctxt head] runs the PVM for the given head. *) - let process_head node_ctxt ctxt head = + let process_head (node_ctxt : Node_context.t) ctxt head = let open Lwt_result_syntax in - let* predecessor = - Layer1.get_predecessor node_ctxt.Node_context.l1_ctxt head + let first_inbox_level = + Raw_level.to_int32 node_ctxt.genesis_info.level |> Int32.succ in - transition_pvm node_ctxt ctxt predecessor head + if head.Layer1.level >= first_inbox_level then + let* predecessor = + Layer1.get_predecessor node_ctxt.Node_context.l1_ctxt head + in + transition_pvm node_ctxt ctxt predecessor head + else if head.Layer1.level = Raw_level.to_int32 node_ctxt.genesis_info.level + then + let* ctxt, state = genesis_state head.hash node_ctxt ctxt in + (* Write final state to store. *) + let*! ctxt = PVM.State.set ctxt state in + let*! context_hash = Context.commit ctxt in + let*! () = Store.Contexts.add node_ctxt.store head.hash context_hash in + + let*! () = + Store.StateInfo.add + node_ctxt.store + head.hash + { + num_messages = Z.zero; + num_ticks = Z.zero; + initial_tick = Sc_rollup.Tick.initial; + } + in + return_unit + else return_unit (** [run_for_ticks node_ctxt predecessor_hash hash tick_distance] starts the evaluation of the inbox at block [hash] for at most [tick_distance]. *) -- GitLab From 84270bc98ec87e25545a2bf87373d50015c376b7 Mon Sep 17 00:00:00 2001 From: Valentin Chaboche Date: Mon, 10 Oct 2022 09:37:47 +0200 Subject: [PATCH 23/36] Scoru,Test: helpers for SOL and EOL --- .../test/helpers/sc_rollup_helpers.ml | 72 +++++++++++++------ .../integration/operations/test_sc_rollup.ml | 2 +- .../test/unit/test_sc_rollup_arith.ml | 8 +-- 3 files changed, 56 insertions(+), 26 deletions(-) diff --git a/src/proto_alpha/lib_protocol/test/helpers/sc_rollup_helpers.ml b/src/proto_alpha/lib_protocol/test/helpers/sc_rollup_helpers.ml index d61dbaf3e935..d6bdefbdebb9 100644 --- a/src/proto_alpha/lib_protocol/test/helpers/sc_rollup_helpers.ml +++ b/src/proto_alpha/lib_protocol/test/helpers/sc_rollup_helpers.ml @@ -177,30 +177,60 @@ let genesis_commitment_raw ~boot_sector ~origination_level kind = in return res -let make_external_inbox_message_repr str = +(** {2. Inbox message helpers.} *) + +(** {1. Above [Alpha_context].} *) + +let message_serialize msg = WithExceptions.Result.get_ok ~loc:__LOC__ - Sc_rollup_inbox_message_repr.(External str |> serialize) + Sc_rollup.Inbox_message.(serialize msg) -let make_input_repr ?(inbox_level = Raw_level_repr.root) - ?(message_counter = Z.zero) message = - Sc_rollup_PVM_sig.Inbox_message - { - inbox_level; - message_counter; - payload = make_external_inbox_message_repr message; - } - -let make_external_inbox_message str = +let make_external_inbox_message str = message_serialize (External str) + +let make_internal_inbox_message internal_msg = + message_serialize (Internal internal_msg) + +let make_input ?(inbox_level = Raw_level.root) ?(message_counter = Z.zero) + payload = + Sc_rollup.Inbox_message {inbox_level; message_counter; payload} + +let make_external_input ?inbox_level ?message_counter str = + let payload = make_external_inbox_message str in + make_input ?inbox_level ?message_counter payload + +let make_sol ~inbox_level = + let payload = make_internal_inbox_message Start_of_level in + make_input ~inbox_level ~message_counter:Z.zero payload + +let make_eol ~inbox_level ~message_counter = + let payload = make_internal_inbox_message End_of_level in + make_input ~inbox_level ~message_counter payload + +(** {1. Below [Alpha_context].} *) + +let message_serialize_repr msg = WithExceptions.Result.get_ok ~loc:__LOC__ - Sc_rollup.Inbox_message.(External str |> serialize) + Sc_rollup_inbox_message_repr.(serialize msg) -let make_input ?(inbox_level = Raw_level.root) ?(message_counter = Z.zero) - message = - Sc_rollup.Inbox_message - { - inbox_level; - message_counter; - payload = make_external_inbox_message message; - } +let make_external_inbox_message_repr str = message_serialize_repr (External str) + +let make_internal_inbox_message_repr internal_msg = + message_serialize_repr (Internal internal_msg) + +let make_input_repr ?(inbox_level = Raw_level_repr.root) + ?(message_counter = Z.zero) payload = + Sc_rollup_PVM_sig.Inbox_message {inbox_level; message_counter; payload} + +let make_external_input_repr ?inbox_level ?message_counter str = + let payload = make_external_inbox_message_repr str in + make_input_repr ?inbox_level ?message_counter payload + +let make_sol_repr ~inbox_level = + let payload = make_internal_inbox_message_repr Start_of_level in + make_input_repr ~inbox_level ~message_counter:Z.zero payload + +let make_eol_repr ~inbox_level ~message_counter = + let payload = make_internal_inbox_message_repr End_of_level in + make_input_repr ~inbox_level ~message_counter payload diff --git a/src/proto_alpha/lib_protocol/test/integration/operations/test_sc_rollup.ml b/src/proto_alpha/lib_protocol/test/integration/operations/test_sc_rollup.ml index 664b2a91e4d9..a654a75bb67f 100644 --- a/src/proto_alpha/lib_protocol/test/integration/operations/test_sc_rollup.ml +++ b/src/proto_alpha/lib_protocol/test/integration/operations/test_sc_rollup.ml @@ -1712,7 +1712,7 @@ let dumb_proof ~choice = let context_arith_pvm = Tezos_context_memory.make_empty_context () in let*! arith_state = Arith_pvm.initial_state context_arith_pvm in let*! arith_state = Arith_pvm.install_boot_sector arith_state "" in - let input = Sc_rollup_helpers.make_input "c4c4" in + let input = Sc_rollup_helpers.make_external_input "c4c4" in let* proof = Arith_pvm.produce_proof context_arith_pvm (Some input) arith_state >|= Environment.wrap_tzresult diff --git a/src/proto_alpha/lib_protocol/test/unit/test_sc_rollup_arith.ml b/src/proto_alpha/lib_protocol/test/unit/test_sc_rollup_arith.ml index 4f49832e6e8e..8ee0e35eb926 100644 --- a/src/proto_alpha/lib_protocol/test/unit/test_sc_rollup_arith.ml +++ b/src/proto_alpha/lib_protocol/test/unit/test_sc_rollup_arith.ml @@ -160,7 +160,7 @@ let test_metadata () = let test_input_message () = let open Sc_rollup_PVM_sig in boot "" @@ fun _ctxt state -> - let input = Sc_rollup_helpers.make_input_repr "MESSAGE" in + let input = Sc_rollup_helpers.make_external_input_repr "MESSAGE" in set_input input state >>= fun state -> eval state >>= fun state -> is_input_state state >>= function @@ -184,7 +184,7 @@ let go ~max_steps target_status state = let test_parsing_message ~valid (source, expected_code) = boot "" @@ fun _ctxt state -> - let input = Sc_rollup_helpers.make_input_repr source in + let input = Sc_rollup_helpers.make_external_input_repr source in set_input input state >>= fun state -> eval state >>= fun state -> go ~max_steps:10000 Evaluating state >>=? fun state -> @@ -245,7 +245,7 @@ let test_parsing_messages () = let test_evaluation_message ~valid (boot_sector, source, expected_stack, expected_vars) = boot boot_sector @@ fun _ctxt state -> - let input = Sc_rollup_helpers.make_input_repr source in + let input = Sc_rollup_helpers.make_external_input_repr source in set_input input state >>= fun state -> eval state >>= fun state -> go ~max_steps:10000 Waiting_for_input_message state >>=? fun state -> @@ -314,7 +314,7 @@ let test_output_messages_proofs ~valid ~inbox_level (source, expected_outputs) = let open Lwt_result_syntax in boot "" @@ fun ctxt state -> let input = - Sc_rollup_helpers.make_input_repr + Sc_rollup_helpers.make_external_input_repr ~inbox_level:(Raw_level_repr.of_int32_exn (Int32.of_int inbox_level)) source in -- GitLab From 2cddeae23e5b8dacb24640d781c5c4e14e1e6eb2 Mon Sep 17 00:00:00 2001 From: Valentin Chaboche Date: Mon, 10 Oct 2022 11:44:16 +0200 Subject: [PATCH 24/36] Scoru,Test: rename [inputs] by [messages] The term "input" is over-used and is a sc-rollup type name. Messages is clearer w.r.t. to the inbox. --- .../test/pbt/test_refutation_game.ml | 237 +++++++++--------- 1 file changed, 122 insertions(+), 115 deletions(-) diff --git a/src/proto_alpha/lib_protocol/test/pbt/test_refutation_game.ml b/src/proto_alpha/lib_protocol/test/pbt/test_refutation_game.ml index 11561f0ea0aa..d30ba517f37e 100644 --- a/src/proto_alpha/lib_protocol/test/pbt/test_refutation_game.ml +++ b/src/proto_alpha/lib_protocol/test/pbt/test_refutation_game.ml @@ -284,13 +284,13 @@ let gen_tick ?(lower_bound = 0) ?(upper_bound = 10_000) () = let+ tick = lower_bound -- upper_bound in tick_of_int_exn ~__LOC__ tick -(** [gen_arith_pvm_inputs ~gen_size] is a `correct list` generator. +(** [gen_arith_pvm_messages ~gen_size] is a `correct list` generator. It generates a list of strings that are either integers or `+` to be consumed by the arithmetic PVM. If a `+` is found then the previous two element of the stack are poped then added and the result is pushed to the stack. In particular, lists like `[1 +]` are incorrect. *) -let gen_arith_pvm_inputs ~gen_size = +let gen_arith_pvm_messages ~gen_size = let open QCheck2.Gen in (* To preserve the correctness invariant, genlist is a recursive generator that produce a pair `(stack_size, state_list)` where state_list is a @@ -331,27 +331,32 @@ let gen_arith_pvm_inputs ~gen_size = snd inputs |> List.rev |> String.concat " " (** Generate a list of arith pvm inputs for a level *) -let gen_arith_pvm_inputs_for_level ?(level_min = 0) ?(level_max = 1_000) () = +let gen_arith_pvm_messages_for_level ?(level_min = 0) ?(level_max = 1_000) () = let open QCheck2.Gen in let* level = level_min -- level_max in - let* input = gen_arith_pvm_inputs ~gen_size:(pure 0) in - let* inputs = small_list (gen_arith_pvm_inputs ~gen_size:(pure 0)) in - return (level, input :: inputs) + let* message = gen_arith_pvm_messages ~gen_size:(pure 0) in + let* messages = small_list (gen_arith_pvm_messages ~gen_size:(pure 0)) in + return (level, message :: messages) -(** Generate a list of level and associated arith pvm inputs. *) -let gen_arith_pvm_inputs_for_levels ?(nonempty_inputs = false) ?level_min +(** Generate a list of level and associated arith pvm messages. *) +let gen_arith_pvm_messages_for_levels ?(nonempty_messages = false) ?level_min ?level_max () = let open QCheck2.Gen in let rec aux () = let* res = - let+ inputs_per_level = - small_list (gen_arith_pvm_inputs_for_level ?level_min ?level_max ()) + let+ messages_per_level = + small_list + (let* level, strs = + gen_arith_pvm_messages_for_level ?level_min ?level_max () + in + let inbox_level = Raw_level.of_int32_exn (Int32.of_int level) in + return (inbox_level, strs)) in List.sort_uniq - (fun (l, _) (l', _) -> Compare.Int.compare l l') - inputs_per_level + (fun (l, _) (l', _) -> Raw_level.compare l l') + messages_per_level in - if nonempty_inputs && Compare.List_length_with.(res = 0) then aux () + if nonempty_messages && Compare.List_length_with.(res = 0) then aux () else return res in aux () @@ -893,11 +898,9 @@ module Arith_test_pvm = struct let* state = initial_state (init_context ()) in state_hash state - let mk_input level message_counter msg = + let mk_input inbox_level message_counter msg = let payload = make_external_inbox_message msg in - let level = Int32.of_int level in - Sc_rollup.Inbox_message - {payload; message_counter; inbox_level = Raw_level.of_int32_exn level} + Sc_rollup.Inbox_message {payload; message_counter; inbox_level} let consume_fuel = Option.map pred @@ -955,19 +958,19 @@ module Arith_test_pvm = struct in return (state, fuel, tick, our_states) - let eval_inbox ?fuel ~level ~inputs ~tick state = + let eval_inbox ?fuel ~level ~messages ~tick state = let open Lwt_result_syntax in List.fold_left_i_es - (fun message_counter (state, fuel, tick, our_states) input -> - let input = mk_input level (Z.of_int message_counter) input in + (fun message_counter (state, fuel, tick, our_states) message -> + let input = mk_input level (Z.of_int message_counter) message in let*! state, fuel, tick, our_states = feed_input ~fuel ~our_states ~tick state input in return (state, fuel, tick, our_states)) (state, fuel, tick, []) - inputs + messages - let eval_levels_and_inputs ~metadata ?fuel ctxt levels_and_inputs = + let eval_levels_and_messages ~metadata ?fuel ctxt levels_and_messages = let open Lwt_result_syntax in let*! state = initial_state ctxt in let*! state_hash = state_hash state in @@ -985,13 +988,13 @@ module Arith_test_pvm = struct (* 3. We evaluate the inbox. *) let* state, _fuel, tick, our_states = List.fold_left_es - (fun (state, fuel, tick, our_states) (level, inputs) -> + (fun (state, fuel, tick, our_states) (level, messages) -> let* state, fuel, tick, our_states' = - eval_inbox ?fuel ~level ~inputs ~tick state + eval_inbox ?fuel ~level ~messages ~tick state in return (state, fuel, tick, our_states @ our_states')) (state, fuel, tick, our_states) - levels_and_inputs + levels_and_messages in let our_states = List.sort (fun (x, _) (y, _) -> Compare.Int.compare x y) our_states @@ -1006,22 +1009,21 @@ module Arith_test_pvm = struct end (** Construct the inbox for the protocol side. *) -let construct_inbox_proto block levels_and_inputs contract = +let construct_inbox_proto block levels_and_messages contract = let open Lwt_result_syntax in List.fold_left_es - (fun block (level, payloads) -> + (fun block (inbox_level, messages) -> let*? current_level = Context.get_level (B block) in let diff_with_level = - Raw_level.(diff (of_int32_exn (Int32.of_int level)) current_level) - |> Int32.to_int + Raw_level.(diff inbox_level current_level) |> Int32.to_int in let* block = Block.bake_n (diff_with_level - 1) block in let* operation_add_message = - Op.sc_rollup_add_messages (B block) contract payloads + Op.sc_rollup_add_messages (B block) contract messages in Block.bake ~operation:operation_add_message block) block - levels_and_inputs + levels_and_messages (** Kind of strategy a player can play @@ -1071,25 +1073,25 @@ type player_client = { * Store_inbox.tree option * Inbox.History.t * Inbox.t; - levels_and_inputs : (int * string list) list; + levels_and_messages : (Raw_level.t * string list) list; metadata : Metadata.t; } -let pp_levels_and_inputs ppf levels_and_inputs = +let pp_levels_and_messages ppf levels_and_messages = Format.( (pp_print_list - (fun ppf (level, inputs) -> + (fun ppf (level, messages) -> fprintf ppf - "level %d, inputs %a" + "level %a, |messages| %d" + Raw_level.pp level - (pp_print_list pp_print_string) - inputs) + (List.length messages)) ppf) - levels_and_inputs) + levels_and_messages) let pp_player_client ppf - {player; states; final_tick; inbox = _; levels_and_inputs; metadata} = + {player; states; final_tick; inbox = _; levels_and_messages; metadata} = Format.fprintf ppf "@[player:@,\ @@ -1114,8 +1116,8 @@ let pp_player_client ppf Tick.pp final_tick (* inbox *) - pp_levels_and_inputs - levels_and_inputs + pp_levels_and_messages + levels_and_messages Sc_rollup.Metadata.pp metadata @@ -1140,15 +1142,14 @@ module Player_client = struct test/unit/test_sc_rollup_inbox. The main difference is: we use [Alpha_context.Sc_rollup.Inbox] instead of [Sc_rollup_repr_inbox] in the former. *) - let construct_inbox ctxt levels_and_payloads ~origination_level = + let construct_inbox ctxt levels_and_messages ~origination_level = let open Lwt_syntax in let open Store_inbox in let* inbox = empty ctxt origination_level in let history = Inbox.History.empty ~capacity:10000L in let rec aux history inbox level_tree = function | [] -> return (ctxt, level_tree, history, inbox) - | (level, payloads) :: rst -> - let level = Int32.of_int level |> Raw_level.of_int32_exn in + | (level, messages) :: rst -> let () = assert (Raw_level.(origination_level <= level)) in let* res = lift @@ add_messages ctxt history inbox level payloads level_tree @@ -1158,116 +1159,118 @@ module Player_client = struct in aux history inbox (Some level_tree) rst in - aux history inbox None levels_and_payloads + aux history inbox None levels_and_messages - (** Construct an inbox based on [levels_and_inputs] in the player context. *) - let construct_inbox ~origination_level ctxt levels_and_inputs = - Lwt_main.run - @@ construct_inbox - ~origination_level - ctxt - (levels_and_payloads levels_and_inputs) + (** Construct an inbox based on [levels_and_messages] in the player context. *) + let construct_inbox ~origination_level ctxt levels_and_messages = + Lwt_main.run @@ construct_inbox ~origination_level ctxt levels_and_messages - (** Generate [our_states] for [levels_and_inputs] based on the strategy. + (** Generate [our_states] for [levels_and_messages] based on the strategy. It needs [level_min] and [level_max] in case it will need to generate new inputs. *) let gen_our_states ~metadata ctxt strategy ?level_min ?level_max - levels_and_inputs = + levels_and_messages = let open QCheck2.Gen in - let eval_inputs levels_and_inputs = + let eval_messages (levels_and_messages : (Raw_level.t * string trace) trace) + = Lwt_main.run @@ let open Lwt_result_syntax in let*! r = - Arith_test_pvm.eval_levels_and_inputs ~metadata ctxt levels_and_inputs + Arith_test_pvm.eval_levels_and_messages + ~metadata + ctxt + levels_and_messages in Lwt.return @@ WithExceptions.Result.get_ok ~loc:__LOC__ r in match strategy with | Perfect -> - (* The perfect player does not lie, evaluates correctly the inputs. *) - let _state, tick, our_states = eval_inputs levels_and_inputs in - return (tick, our_states, levels_and_inputs) + (* The perfect player does not lie, evaluates correctly the messages. *) + let _state, tick, our_states = eval_messages levels_and_messages in + return (tick, our_states, levels_and_messages) | Random -> - (* Random player generates its own list of inputs. *) - let* new_levels_and_inputs = - gen_arith_pvm_inputs_for_levels ?level_min ?level_max () + (* Random player generates its own list of messages. *) + let* new_levels_and_messages = + gen_arith_pvm_messages_for_levels ?level_min ?level_max () in - let _state, tick, our_states = eval_inputs new_levels_and_inputs in - return (tick, our_states, new_levels_and_inputs) + let _state, tick, our_states = eval_messages new_levels_and_messages in + return (tick, our_states, new_levels_and_messages) | Lazy -> - (* Lazy player removes inputs from [levels_and_inputs]. *) - let n = List.length levels_and_inputs in + (* Lazy player removes messages from [levels_and_messages]. *) + let n = List.length levels_and_messages in let* remove_k = 1 -- n in - let new_levels_and_inputs = - List.take_n (n - remove_k) levels_and_inputs + let new_levels_and_messages = + List.take_n (n - remove_k) levels_and_messages in - let _state, tick, our_states = eval_inputs new_levels_and_inputs in - return (tick, our_states, new_levels_and_inputs) + let _state, tick, our_states = eval_messages new_levels_and_messages in + return (tick, our_states, new_levels_and_messages) | Eager -> (* Eager player executes correctly the inbox until a certain point. *) let nb_of_input = List.fold_left - (fun acc (_level, inputs) -> acc + List.length inputs) + (fun acc (_level, messages) -> acc + List.length messages) 0 - levels_and_inputs + levels_and_messages in let* corrupt_at_k = 0 -- (nb_of_input - 1) in let new_input = "42 7 +" in (* Once an input is corrupted, everything after will be corrupted as well. *) - let new_levels_and_inputs = + let new_levels_and_messages = let idx = ref (-1) in List.map - (fun (level, inputs) -> - ( level, + (fun (inbox_level, messages) -> + ( inbox_level, List.map (fun input -> incr idx ; if !idx = corrupt_at_k then new_input else input) - inputs )) - levels_and_inputs + messages )) + levels_and_messages in - let _state, tick, our_states = eval_inputs new_levels_and_inputs in - return (tick, our_states, new_levels_and_inputs) + let _state, tick, our_states = eval_messages new_levels_and_messages in + return (tick, our_states, new_levels_and_messages) | Keen -> (* Keen player will add more messages. *) - let* new_levels_and_inputs = - gen_arith_pvm_inputs_for_levels ?level_min ?level_max () + let* new_levels_and_messages = + gen_arith_pvm_messages_for_levels ?level_min ?level_max () + in + let new_levels_and_messages = + new_levels_and_messages @ levels_and_messages in - let new_levels_and_inputs = new_levels_and_inputs @ levels_and_inputs in - let new_levels_and_inputs = + let new_levels_and_messages = List.sort_uniq - (fun (l, _) (l', _) -> Compare.Int.compare l l') - new_levels_and_inputs + (fun (l, _) (l', _) -> Raw_level.compare l l') + new_levels_and_messages in - let _state, tick, our_states = eval_inputs new_levels_and_inputs in - return (tick, our_states, new_levels_and_inputs) + let _state, tick, our_states = eval_messages new_levels_and_messages in + return (tick, our_states, new_levels_and_messages) - (** [gen ~rollup ~level_min ~level_max player levels_and_inputs] generates + (** [gen ~rollup ~level_min ~level_max player levels_and_messages] generates a {!player_client} based on {!player.strategy}. *) let gen ~rollup ~origination_level ~level_min ~level_max player - levels_and_inputs = + levels_and_messages = let open QCheck2.Gen in let ctxt = empty_memory_ctxt "foo" in let metadata = Sc_rollup.Metadata.{address = rollup; origination_level} in - let* tick, our_states, levels_and_inputs = + let* tick, our_states, levels_and_messages = gen_our_states ~metadata ctxt player.strategy ~level_min ~level_max - levels_and_inputs + levels_and_messages in - let inbox = construct_inbox ~origination_level ctxt levels_and_inputs in + let inbox = construct_inbox ~origination_level ctxt levels_and_messages in return { player; final_tick = tick; states = our_states; inbox; - levels_and_inputs; + levels_and_messages; metadata; } end @@ -1322,11 +1325,11 @@ let build_proof ~player_client start_tick (game : Game.t) = let fuel = tick_to_int_exn start_tick in let metadata = player_client.metadata in let*! r = - Arith_test_pvm.eval_levels_and_inputs + Arith_test_pvm.eval_levels_and_messages ~metadata ~fuel (Arith_test_pvm.init_context ()) - player_client.levels_and_inputs + player_client.levels_and_messages in let state, _, _ = WithExceptions.Result.get_ok ~loc:__LOC__ r in let module P = struct @@ -1461,7 +1464,7 @@ let make_players ~p1_strategy ~contract1 ~p2_strategy ~contract2 = It generates inputs for the rollup, and creates the players' interpretation of these inputs in a {!player_client} for [p1_strategy] and [p2_strategy]. *) -let gen_game ?nonempty_inputs ~p1_strategy ~p2_strategy () = +let gen_game ?nonempty_messages ~p1_strategy ~p2_strategy () = let open QCheck2.Gen in (* If there is no good player, we do not care about the result. *) assert (p1_strategy = Perfect || p2_strategy = Perfect) ; @@ -1486,8 +1489,12 @@ let gen_game ?nonempty_inputs ~p1_strategy ~p2_strategy () = in let level_min = origination_level + 1 in let level_max = origination_level + commitment_period - 1 in - let* levels_and_inputs = - gen_arith_pvm_inputs_for_levels ?nonempty_inputs ~level_min ~level_max () + let* levels_and_messages = + gen_arith_pvm_messages_for_levels + ?nonempty_messages + ~level_min + ~level_max + () in let* p1_client = Player_client.gen @@ -1496,7 +1503,7 @@ let gen_game ?nonempty_inputs ~p1_strategy ~p2_strategy () = ~level_max ~rollup p1 - ((origination_level, first_inputs) :: levels_and_inputs) + ((origination_level, first_inputs) :: levels_and_messages) in let* p2_client = Player_client.gen @@ -1505,7 +1512,7 @@ let gen_game ?nonempty_inputs ~p1_strategy ~p2_strategy () = ~level_max ~rollup p2 - ((origination_level, first_inputs) :: levels_and_inputs) + ((origination_level, first_inputs) :: levels_and_messages) in let* p1_start = bool in let commitment_level = origination_level + commitment_period in @@ -1519,17 +1526,17 @@ let gen_game ?nonempty_inputs ~p1_strategy ~p2_strategy () = p2_client, contract3, p1_start, - levels_and_inputs, + levels_and_messages, additional_payloads ) -(** [prepare_game block lcc originated_level p1_client p2_client - inputs_and_levels] prepares a context where [p1_client] and [p2_client] +(** [prepare_game block rollup lcc commitment_level p1_client p2_client contract + levels_and_messages] prepares a context where [p1_client] and [p2_client] are in conflict for one commitment. - It creates the protocol inbox using [inputs_and_levels]. *) + It creates the protocol inbox using [levels_and_messages]. *) let prepare_game block rollup lcc commitment_level p1_client p2_client contract - levels_and_inputs = + levels_and_messages = let open Lwt_result_syntax in - let* block = construct_inbox_proto block levels_and_inputs contract in + let* block = construct_inbox_proto block levels_and_messages contract in let* operation_publish_commitment_p1 = operation_publish_commitment (B block) rollup lcc commitment_level p1_client in @@ -1544,7 +1551,7 @@ let prepare_game block rollup lcc commitment_level p1_client p2_client contract (** Create a test of [p1_strategy] against [p2_strategy]. One of them must be a {!Perfect} player, otherwise, we do not care about which cheater wins. *) -let test_game ?nonempty_inputs ~p1_strategy ~p2_strategy () = +let test_game ?nonempty_messages ~p1_strategy ~p2_strategy () = let name = Format.asprintf "%a against %a" @@ -1563,7 +1570,7 @@ let test_game ?nonempty_inputs ~p1_strategy ~p2_strategy () = p2_client, _contract3, p1_start, - levels_and_inputs, + levels_and_messages, _additional_payloads ) -> let level = WithExceptions.Result.get_ok ~loc:__LOC__ @@ Context.get_level (B block) @@ -1594,11 +1601,11 @@ let test_game ?nonempty_inputs ~p1_strategy ~p2_strategy () = pp_player_client p2_client (if p1_start then "p1" else "p2") - pp_levels_and_inputs - levels_and_inputs) + pp_levels_and_messages + levels_and_messages) ~count:200 ~name - ~gen:(gen_game ?nonempty_inputs ~p1_strategy ~p2_strategy ()) + ~gen:(gen_game ~p1_strategy ~p2_strategy ()) (fun ( block, rollup, commitment_level, @@ -1685,16 +1692,16 @@ let test_random_against_perfect = test_game ~p1_strategy:Random ~p2_strategy:Perfect () let test_perfect_against_lazy = - test_game ~nonempty_inputs:true ~p1_strategy:Perfect ~p2_strategy:Lazy () + test_game ~nonempty_messages:true ~p1_strategy:Perfect ~p2_strategy:Lazy () let test_lazy_against_perfect = - test_game ~nonempty_inputs:true ~p1_strategy:Lazy ~p2_strategy:Perfect () + test_game ~nonempty_messages:true ~p1_strategy:Lazy ~p2_strategy:Perfect () let test_perfect_against_eager = - test_game ~nonempty_inputs:true ~p1_strategy:Perfect ~p2_strategy:Eager () + test_game ~nonempty_messages:true ~p1_strategy:Perfect ~p2_strategy:Eager () let test_eager_against_perfect = - test_game ~nonempty_inputs:true ~p1_strategy:Eager ~p2_strategy:Perfect () + test_game ~nonempty_messages:true ~p1_strategy:Eager ~p2_strategy:Perfect () let test_perfect_against_keen = test_game ~p1_strategy:Perfect ~p2_strategy:Keen () -- GitLab From 81e53fd44ce6e6b27e33e603c2ee9769f865eaa9 Mon Sep 17 00:00:00 2001 From: Valentin Chaboche Date: Tue, 11 Oct 2022 08:57:12 +0200 Subject: [PATCH 25/36] Scoru,Test: helpers to generate PVM inputs --- .../test/helpers/sc_rollup_helpers.ml | 189 ++++++++++++++++++ 1 file changed, 189 insertions(+) diff --git a/src/proto_alpha/lib_protocol/test/helpers/sc_rollup_helpers.ml b/src/proto_alpha/lib_protocol/test/helpers/sc_rollup_helpers.ml index d6bdefbdebb9..6317349bacd3 100644 --- a/src/proto_alpha/lib_protocol/test/helpers/sc_rollup_helpers.ml +++ b/src/proto_alpha/lib_protocol/test/helpers/sc_rollup_helpers.ml @@ -207,6 +207,92 @@ let make_eol ~inbox_level ~message_counter = let payload = make_internal_inbox_message End_of_level in make_input ~inbox_level ~message_counter payload +(** Message is the combination of a [message] and its associated [input]. + + [message] is used to: + - Construct the protocol inbox, when [message] is [`Message]. The protocol + adds [`SOL] and [`EOL] itself. + - Construct the players' inboxes. + + [input] is used to evaluate the players' inboxes. + +*) +type message = { + input : Sc_rollup.input; + message : [`SOL | `Message of string | `EOL]; +} + +let pp_input fmt (input : Sc_rollup.input) = + match input with + | Reveal _ -> assert false + | Inbox_message {inbox_level; message_counter; _} -> + Format.fprintf + fmt + "(%a, %s)" + Raw_level.pp + inbox_level + (Z.to_string message_counter) + +let pp_message fmt {input; message} = + Format.fprintf + fmt + "{ input = %a; message = %S }" + pp_input + input + (match message with `SOL -> "SOL" | `Message msg -> msg | `EOL -> "EOL") + +(** An empty inbox level is a SOL and EOL. *) +let make_empty_level inbox_level = + let sol = {input = make_sol ~inbox_level; message = `SOL} in + let eol = + {input = make_eol ~inbox_level ~message_counter:Z.one; message = `EOL} + in + (inbox_level, [sol; eol]) + +(** Creates inputs based on string messages. *) +let strs_to_inputs inbox_level messages = + List.fold_left + (fun (acc, message_counter) message -> + let input = make_external_input ~inbox_level ~message_counter message in + ({input; message = `Message message} :: acc, Z.succ message_counter)) + ([], Z.one) + messages + +(** Transform messages into inputs and wrap them between SOL and EOL. *) +let wrap_messages inbox_level strs = + let sol = {input = make_sol ~inbox_level; message = `SOL} in + let rev_inputs, message_counter = strs_to_inputs inbox_level strs in + let inputs = List.rev rev_inputs in + let eol = {input = make_eol ~inbox_level ~message_counter; message = `EOL} in + (sol :: inputs) @ [eol] + +let gen_messages_for_levels ~start_level ~max_level gen_message = + let open QCheck2.Gen in + let rec aux acc n = + match n with + | n when n < 0 -> + (* Prevent [Stack_overflow]. *) + assert false + | 0 -> return acc + | n -> + let inbox_level = + Raw_level.of_int32_exn (Int32.of_int (start_level + n - 1)) + in + let* empty_level = bool in + let* level_messages = + if empty_level then return (make_empty_level inbox_level) + else + let* messages = + let* input = gen_message in + let* inputs = small_list gen_message in + return (input :: inputs) + in + return (inbox_level, wrap_messages inbox_level messages) + in + aux (level_messages :: acc) (n - 1) + in + aux [] (max_level - start_level) + (** {1. Below [Alpha_context].} *) let message_serialize_repr msg = @@ -234,3 +320,106 @@ let make_sol_repr ~inbox_level = let make_eol_repr ~inbox_level ~message_counter = let payload = make_internal_inbox_message_repr End_of_level in make_input_repr ~inbox_level ~message_counter payload + +(** Message is the combination of a [message] and its associated [input]. + + [message] is used to: + - Construct the protocol inbox, when [message] is [`Message]. The protocol + adds [`SOL] and [`EOL] itself. + - Construct the players' inboxes. + + [input] is used to evaluate the players' inboxes. + +*) +type message_repr = { + input_repr : Sc_rollup_PVM_sig.input; + message_repr : [`SOL | `Message of string | `EOL]; +} + +let pp_input_repr fmt (input_repr : Sc_rollup_PVM_sig.input) = + match input_repr with + | Reveal _ -> assert false + | Inbox_message {inbox_level; message_counter; _} -> + Format.fprintf + fmt + "(%a, %s)" + Raw_level_repr.pp + inbox_level + (Z.to_string message_counter) + +let pp_message_repr fmt {input_repr; message_repr} = + Format.fprintf + fmt + "{ input_repr = %a; message_repr = %S }" + pp_input_repr + input_repr + (match message_repr with + | `SOL -> "SOL" + | `Message msg -> msg + | `EOL -> "EOL") + +(** An empty inbox level is a SOL and EOL. *) +let make_empty_level_repr inbox_level = + let sol = {input_repr = make_sol_repr ~inbox_level; message_repr = `SOL} in + let eol = + { + input_repr = make_eol_repr ~inbox_level ~message_counter:Z.one; + message_repr = `EOL; + } + in + (inbox_level, [sol; eol]) + +(** Creates input_reprs based on string message_reprs. *) +let strs_to_input_reprs_repr inbox_level message_reprs = + List.fold_left + (fun (acc, message_counter) message_repr -> + let input_repr = + make_external_input_repr ~inbox_level ~message_counter message_repr + in + ( {input_repr; message_repr = `Message message_repr} :: acc, + Z.succ message_counter )) + ([], Z.one) + message_reprs + +(** Transform message_reprs into input_reprs and wrap them between SOL and EOL. *) +let wrap_message_reprs_repr inbox_level strs = + let sol = {input_repr = make_sol_repr ~inbox_level; message_repr = `SOL} in + let rev_input_reprs, message_counter = + strs_to_input_reprs_repr inbox_level strs + in + let input_reprs = List.rev rev_input_reprs in + let eol = + { + input_repr = make_eol_repr ~inbox_level ~message_counter; + message_repr = `EOL; + } + in + (sol :: input_reprs) @ [eol] + +let gen_message_reprs_for_levels_repr ~start_level ~max_level gen_message_repr = + let open QCheck2.Gen in + let rec aux acc n = + match n with + | 0 -> return acc + | n when n > 0 -> + let inbox_level = + Raw_level_repr.of_int32_exn (Int32.of_int (start_level + n - 1)) + in + let* empty_level = bool in + let* level_message_reprs = + if empty_level then return (make_empty_level_repr inbox_level) + else + let* message_reprs = + let* input_repr = gen_message_repr in + let* input_reprs = small_list gen_message_repr in + return (input_repr :: input_reprs) + in + return + (inbox_level, wrap_message_reprs_repr inbox_level message_reprs) + in + aux (level_message_reprs :: acc) (n - 1) + | _ -> + (* Prevent [Stack_overflow]. *) + assert false + in + aux [] (max_level - start_level) -- GitLab From c67d97672851951205a3eaec56a245ec6f54d9aa Mon Sep 17 00:00:00 2001 From: Valentin Chaboche Date: Mon, 10 Oct 2022 11:56:30 +0200 Subject: [PATCH 26/36] Scoru,Test: adapt pbt refutation tests to: SOL/EOL/Unique inbox --- .../test/pbt/test_refutation_game.ml | 346 ++++++++---------- 1 file changed, 154 insertions(+), 192 deletions(-) diff --git a/src/proto_alpha/lib_protocol/test/pbt/test_refutation_game.ml b/src/proto_alpha/lib_protocol/test/pbt/test_refutation_game.ml index d30ba517f37e..e46debfe9220 100644 --- a/src/proto_alpha/lib_protocol/test/pbt/test_refutation_game.ml +++ b/src/proto_alpha/lib_protocol/test/pbt/test_refutation_game.ml @@ -36,6 +36,7 @@ open Protocol open Alpha_context open Sc_rollup open Lib_test.Qcheck2_helpers +open Sc_rollup_helpers (** {2 Utils} *) @@ -62,11 +63,6 @@ let tick_of_int_exn ?(__LOC__ = __LOC__) n = let number_of_ticks_of_int64_exn ?(__LOC__ = __LOC__) n = WithExceptions.Option.get ~loc:__LOC__ (Number_of_ticks.of_value n) -let make_external_inbox_message str = - WithExceptions.Result.get_ok - ~loc:__LOC__ - Inbox_message.(External str |> serialize) - let game_status_of_refute_op_result = function | [ Apply_results.Operation_metadata @@ -208,7 +204,7 @@ let build_dissection ~number_of_sections ~start_chunk ~stop_chunk ~our_states = in Lwt.return @@ WithExceptions.Result.get_ok ~loc:__LOC__ r -let originate_rollup originator messager ~first_inputs block = +let originate_rollup originator block = let open Lwt_result_syntax in let* origination_operation, sc_rollup = Op.sc_rollup_origination @@ -218,19 +214,15 @@ let originate_rollup originator messager ~first_inputs block = ~boot_sector:"" ~parameters_ty:(Script.lazy_expr @@ Expr.from_string "unit") in - let* add_message_operation = - Op.sc_rollup_add_messages (B block) messager first_inputs - in - let* block = - Block.bake ~operations:[origination_operation; add_message_operation] block - in + let* block = Block.bake ~operations:[origination_operation] block in + let* inbox = Context.Sc_rollup.inbox (B block) in let+ genesis_info = Context.Sc_rollup.genesis_info (B block) sc_rollup in - (block, sc_rollup, genesis_info) + (block, sc_rollup, inbox, genesis_info) -(** [create_ctxt account1 account2] creates a context where - an arith rollup was originated, and both [account1] and [account2] owns - enough tez to stake on a commitment. *) -let create_ctxt ~first_inputs = +(** [create_ctxt ()] creates a context where an arith rollup was originated, + and both [account1] and [account2] owns enough tez to stake on a + commitment. *) +let create_ctxt () = WithExceptions.Result.get_ok ~loc:__LOC__ @@ Lwt_main.run @@ @@ -242,10 +234,10 @@ let create_ctxt ~first_inputs = ~bootstrap_balances:[100_000_000_000L; 100_000_000_000L; 100_000_000_000L] () in - let* block, sc_rollup, genesis_info = - originate_rollup account3 account1 ~first_inputs block + let* block, sc_rollup, inbox, genesis_info = + originate_rollup account3 block in - return (block, sc_rollup, genesis_info, (account1, account2, account3)) + return (block, sc_rollup, inbox, genesis_info, (account1, account2, account3)) (** {2 Context free generators} *) @@ -330,36 +322,12 @@ let gen_arith_pvm_messages ~gen_size = let+ inputs = sized_size gen_size @@ fix produce_inputs in snd inputs |> List.rev |> String.concat " " -(** Generate a list of arith pvm inputs for a level *) -let gen_arith_pvm_messages_for_level ?(level_min = 0) ?(level_max = 1_000) () = - let open QCheck2.Gen in - let* level = level_min -- level_max in - let* message = gen_arith_pvm_messages ~gen_size:(pure 0) in - let* messages = small_list (gen_arith_pvm_messages ~gen_size:(pure 0)) in - return (level, message :: messages) - (** Generate a list of level and associated arith pvm messages. *) -let gen_arith_pvm_messages_for_levels ?(nonempty_messages = false) ?level_min - ?level_max () = - let open QCheck2.Gen in - let rec aux () = - let* res = - let+ messages_per_level = - small_list - (let* level, strs = - gen_arith_pvm_messages_for_level ?level_min ?level_max () - in - let inbox_level = Raw_level.of_int32_exn (Int32.of_int level) in - return (inbox_level, strs)) - in - List.sort_uniq - (fun (l, _) (l', _) -> Raw_level.compare l l') - messages_per_level - in - if nonempty_messages && Compare.List_length_with.(res = 0) then aux () - else return res - in - aux () +let gen_arith_pvm_messages_for_levels ~start_level ~max_level = + gen_messages_for_levels + ~start_level + ~max_level + (gen_arith_pvm_messages ~gen_size:(QCheck2.Gen.pure 0)) (** Dissection helpers and tests *) module Dissection = struct @@ -818,7 +786,7 @@ end (** {2. ArithPVM utils} *) -module ArithPVM = Sc_rollup_helpers.Arith_pvm +module ArithPVM = Arith_pvm module Tree_inbox = struct open Inbox @@ -898,10 +866,6 @@ module Arith_test_pvm = struct let* state = initial_state (init_context ()) in state_hash state - let mk_input inbox_level message_counter msg = - let payload = make_external_inbox_message msg in - Sc_rollup.Inbox_message {payload; message_counter; inbox_level} - let consume_fuel = Option.map pred let continue_with_fuel ~our_states ~(tick : int) fuel state f = @@ -958,11 +922,10 @@ module Arith_test_pvm = struct in return (state, fuel, tick, our_states) - let eval_inbox ?fuel ~level ~messages ~tick state = + let eval_inbox ?fuel ~messages ~tick state = let open Lwt_result_syntax in - List.fold_left_i_es - (fun message_counter (state, fuel, tick, our_states) message -> - let input = mk_input level (Z.of_int message_counter) message in + List.fold_left_es + (fun (state, fuel, tick, our_states) {input; message = _} -> let*! state, fuel, tick, our_states = feed_input ~fuel ~our_states ~tick state input in @@ -988,9 +951,9 @@ module Arith_test_pvm = struct (* 3. We evaluate the inbox. *) let* state, _fuel, tick, our_states = List.fold_left_es - (fun (state, fuel, tick, our_states) (level, messages) -> + (fun (state, fuel, tick, our_states) (_level, messages) -> let* state, fuel, tick, our_states' = - eval_inbox ?fuel ~level ~messages ~tick state + eval_inbox ?fuel ~messages ~tick state in return (state, fuel, tick, our_states @ our_states')) (state, fuel, tick, our_states) @@ -1012,16 +975,22 @@ end let construct_inbox_proto block levels_and_messages contract = let open Lwt_result_syntax in List.fold_left_es - (fun block (inbox_level, messages) -> - let*? current_level = Context.get_level (B block) in - let diff_with_level = - Raw_level.(diff inbox_level current_level) |> Int32.to_int + (fun block (_inbox_level, (messages : message list)) -> + let messages = + List.filter_map + (fun {message; _} -> + match message with + | `Message message -> Some message + | `SOL | `EOL -> (* Those are added by the protocol. *) None) + messages in - let* block = Block.bake_n (diff_with_level - 1) block in - let* operation_add_message = - Op.sc_rollup_add_messages (B block) contract messages - in - Block.bake ~operation:operation_add_message block) + match messages with + | [] -> Block.bake block + | messages -> + let* operation_add_message = + Op.sc_rollup_add_messages (B block) contract messages + in + Block.bake ~operation:operation_add_message block) block levels_and_messages @@ -1073,7 +1042,7 @@ type player_client = { * Store_inbox.tree option * Inbox.History.t * Inbox.t; - levels_and_messages : (Raw_level.t * string list) list; + levels_and_messages : (Raw_level.t * message list) list; metadata : Metadata.t; } @@ -1083,10 +1052,11 @@ let pp_levels_and_messages ppf levels_and_messages = (fun ppf (level, messages) -> fprintf ppf - "level %a, |messages| %d" + "level %a, messages: %a" Raw_level.pp level - (List.length messages)) + (pp_print_list pp_message) + messages) ppf) levels_and_messages) @@ -1122,13 +1092,6 @@ let pp_player_client ppf metadata module Player_client = struct - (** Transform inputs to payloads. *) - let levels_and_payloads levels_and_inputs = - List.map - (fun (level, inputs) -> - (level, List.map make_external_inbox_message inputs)) - levels_and_inputs - let empty_memory_ctxt id = let open Lwt_syntax in Lwt_main.run @@ -1142,15 +1105,22 @@ module Player_client = struct test/unit/test_sc_rollup_inbox. The main difference is: we use [Alpha_context.Sc_rollup.Inbox] instead of [Sc_rollup_repr_inbox] in the former. *) - let construct_inbox ctxt levels_and_messages ~origination_level = + let construct_inbox ~inbox ctxt levels_and_messages ~origination_level = let open Lwt_syntax in let open Store_inbox in - let* inbox = empty ctxt origination_level in let history = Inbox.History.empty ~capacity:10000L in let rec aux history inbox level_tree = function | [] -> return (ctxt, level_tree, history, inbox) - | (level, messages) :: rst -> - let () = assert (Raw_level.(origination_level <= level)) in + | ((level, messages) : Raw_level.t * message list) :: rst -> + assert (Raw_level.(origination_level < level)) ; + let payloads = + List.map + (fun {input; _} -> + match input with + | Inbox_message {payload; _} -> payload + | Reveal _ -> (* We don't produce any reveals. *) assert false) + messages + in let* res = lift @@ add_messages ctxt history inbox level payloads level_tree in @@ -1162,17 +1132,18 @@ module Player_client = struct aux history inbox None levels_and_messages (** Construct an inbox based on [levels_and_messages] in the player context. *) - let construct_inbox ~origination_level ctxt levels_and_messages = - Lwt_main.run @@ construct_inbox ~origination_level ctxt levels_and_messages + let construct_inbox ~inbox ~origination_level ctxt levels_and_messages = + Lwt_main.run + @@ construct_inbox ~inbox ~origination_level ctxt levels_and_messages (** Generate [our_states] for [levels_and_messages] based on the strategy. - It needs [level_min] and [level_max] in case it will need to generate + It needs [start_level] and [max_level] in case it will need to generate new inputs. *) - let gen_our_states ~metadata ctxt strategy ?level_min ?level_max + let gen_our_states ~metadata ctxt strategy ~start_level ~max_level levels_and_messages = let open QCheck2.Gen in - let eval_messages (levels_and_messages : (Raw_level.t * string trace) trace) - = + let eval_messages + (levels_and_messages : (Raw_level.t * message trace) trace) = Lwt_main.run @@ let open Lwt_result_syntax in @@ -1192,7 +1163,7 @@ module Player_client = struct | Random -> (* Random player generates its own list of messages. *) let* new_levels_and_messages = - gen_arith_pvm_messages_for_levels ?level_min ?level_max () + gen_arith_pvm_messages_for_levels ~start_level ~max_level in let _state, tick, our_states = eval_messages new_levels_and_messages in return (tick, our_states, new_levels_and_messages) @@ -1214,7 +1185,7 @@ module Player_client = struct levels_and_messages in let* corrupt_at_k = 0 -- (nb_of_input - 1) in - let new_input = "42 7 +" in + let message = "42 7 +" in (* Once an input is corrupted, everything after will be corrupted as well. *) let new_levels_and_messages = @@ -1223,9 +1194,20 @@ module Player_client = struct (fun (inbox_level, messages) -> ( inbox_level, List.map - (fun input -> + (fun x -> incr idx ; - if !idx = corrupt_at_k then new_input else input) + if !idx = corrupt_at_k then + let input = + match x.input with + | Inbox_message {inbox_level; message_counter; _} -> + make_external_input + ~inbox_level + ~message_counter + message + | _ -> (* We don't produce any reveals. *) assert false + in + {x with input} + else x) messages )) levels_and_messages in @@ -1233,23 +1215,22 @@ module Player_client = struct return (tick, our_states, new_levels_and_messages) | Keen -> (* Keen player will add more messages. *) + let* offset = 1 -- 5 in let* new_levels_and_messages = - gen_arith_pvm_messages_for_levels ?level_min ?level_max () + gen_arith_pvm_messages_for_levels + ~start_level:max_level + ~max_level:(max_level + offset) in let new_levels_and_messages = - new_levels_and_messages @ levels_and_messages - in - let new_levels_and_messages = - List.sort_uniq - (fun (l, _) (l', _) -> Raw_level.compare l l') - new_levels_and_messages + levels_and_messages @ new_levels_and_messages in let _state, tick, our_states = eval_messages new_levels_and_messages in return (tick, our_states, new_levels_and_messages) - (** [gen ~rollup ~level_min ~level_max player levels_and_messages] generates - a {!player_client} based on {!player.strategy}. *) - let gen ~rollup ~origination_level ~level_min ~level_max player + (** [gen ~inbox ~rollup ~origination_level ~start_level ~max_level player + levels_and_messages] generates a {!player_client} based on + its {!player.strategy}. *) + let gen ~inbox ~rollup ~origination_level ~start_level ~max_level player levels_and_messages = let open QCheck2.Gen in let ctxt = empty_memory_ctxt "foo" in @@ -1259,11 +1240,13 @@ module Player_client = struct ~metadata ctxt player.strategy - ~level_min - ~level_max + ~start_level + ~max_level levels_and_messages in - let inbox = construct_inbox ~origination_level ctxt levels_and_messages in + let inbox = + construct_inbox ~inbox ~origination_level ctxt levels_and_messages + in return { player; @@ -1425,10 +1408,7 @@ let play_until_game_result ~refuter_client ~defender_client ~rollup block = | Ongoing -> let* block = Incremental.finalize_block incr in play ~player_turn:opponent ~opponent:player_turn block - | Ended (Loser {reason = _; loser}) as game_result -> - let () = - Format.printf "@,ending result: %a@," Game.pp_status game_result - in + | Ended (Loser {reason = _; loser}) -> if loser = Account.pkh_of_contract_exn refuter_client.player.contract then return Defender_wins else return Refuter_wins @@ -1464,17 +1444,12 @@ let make_players ~p1_strategy ~contract1 ~p2_strategy ~contract2 = It generates inputs for the rollup, and creates the players' interpretation of these inputs in a {!player_client} for [p1_strategy] and [p2_strategy]. *) -let gen_game ?nonempty_messages ~p1_strategy ~p2_strategy () = +let gen_game ~p1_strategy ~p2_strategy = let open QCheck2.Gen in (* If there is no good player, we do not care about the result. *) assert (p1_strategy = Perfect || p2_strategy = Perfect) ; - let* first_inputs = - let* input = gen_arith_pvm_inputs ~gen_size:(pure 0) in - let* inputs = small_list (gen_arith_pvm_inputs ~gen_size:(pure 0)) in - return (input :: inputs) - in - let block, rollup, genesis_info, (contract1, contract2, contract3) = - create_ctxt ~first_inputs + let block, rollup, inbox, genesis_info, (contract1, contract2, contract3) = + create_ctxt () in let p1, p2 = make_players ~p1_strategy ~contract1 ~p2_strategy ~contract2 in @@ -1487,36 +1462,33 @@ let gen_game ?nonempty_messages ~p1_strategy ~p2_strategy () = let origination_level = Raw_level.to_int32 genesis_info.level |> Int32.to_int in - let level_min = origination_level + 1 in - let level_max = origination_level + commitment_period - 1 in + let start_level = origination_level + 1 in + let max_level = start_level + commitment_period - 1 in let* levels_and_messages = - gen_arith_pvm_messages_for_levels - ?nonempty_messages - ~level_min - ~level_max - () + gen_arith_pvm_messages_for_levels ~start_level ~max_level in let* p1_client = Player_client.gen + ~inbox ~origination_level:genesis_info.level - ~level_min - ~level_max + ~start_level + ~max_level ~rollup p1 - ((origination_level, first_inputs) :: levels_and_messages) + levels_and_messages in let* p2_client = Player_client.gen + ~inbox ~origination_level:genesis_info.level - ~level_min - ~level_max + ~start_level + ~max_level ~rollup p2 - ((origination_level, first_inputs) :: levels_and_messages) + levels_and_messages in let* p1_start = bool in let commitment_level = origination_level + commitment_period in - let* additional_payloads = small_list (string_size (1 -- 15)) in return ( block, rollup, @@ -1526,32 +1498,59 @@ let gen_game ?nonempty_messages ~p1_strategy ~p2_strategy () = p2_client, contract3, p1_start, - levels_and_messages, - additional_payloads ) + levels_and_messages ) (** [prepare_game block rollup lcc commitment_level p1_client p2_client contract levels_and_messages] prepares a context where [p1_client] and [p2_client] are in conflict for one commitment. It creates the protocol inbox using [levels_and_messages]. *) -let prepare_game block rollup lcc commitment_level p1_client p2_client contract - levels_and_messages = +let prepare_game ~p1_start block rollup lcc commitment_level p1_client p2_client + contract levels_and_messages = let open Lwt_result_syntax in let* block = construct_inbox_proto block levels_and_messages contract in - let* operation_publish_commitment_p1 = + let* p1_commitment = operation_publish_commitment (B block) rollup lcc commitment_level p1_client in - let* operation_publish_commitment_p2 = + let* p2_commitment = operation_publish_commitment (B block) rollup lcc commitment_level p2_client in - Block.bake - ~operations: - [operation_publish_commitment_p1; operation_publish_commitment_p2] - block + let commit_then_commit_and_refute ~defender_commitment ~refuter_commitment + (refuter, defender) = + let* start_game = + Op.sc_rollup_refute + (B block) + refuter.player.contract + rollup + defender.player.pkh + None + in + let* refuter_batch = + Op.batch_operations + ~recompute_counters:true + ~source:refuter.player.contract + (B block) + [refuter_commitment; start_game] + in + let* block = + Block.bake ~operations:[defender_commitment; refuter_batch] block + in + return (block, refuter, defender) + in + if p1_start then + commit_then_commit_and_refute + ~defender_commitment:p2_commitment + ~refuter_commitment:p1_commitment + (p1_client, p2_client) + else + commit_then_commit_and_refute + ~defender_commitment:p1_commitment + ~refuter_commitment:p2_commitment + (p2_client, p1_client) (** Create a test of [p1_strategy] against [p2_strategy]. One of them must be a {!Perfect} player, otherwise, we do not care about which cheater wins. *) -let test_game ?nonempty_messages ~p1_strategy ~p2_strategy () = +let test_game ~p1_strategy ~p2_strategy () = let name = Format.asprintf "%a against %a" @@ -1570,8 +1569,7 @@ let test_game ?nonempty_messages ~p1_strategy ~p2_strategy () = p2_client, _contract3, p1_start, - levels_and_messages, - _additional_payloads ) -> + levels_and_messages ) -> let level = WithExceptions.Result.get_ok ~loc:__LOC__ @@ Context.get_level (B block) in @@ -1605,7 +1603,7 @@ let test_game ?nonempty_messages ~p1_strategy ~p2_strategy () = levels_and_messages) ~count:200 ~name - ~gen:(gen_game ~p1_strategy ~p2_strategy ()) + ~gen:(gen_game ~p1_strategy ~p2_strategy) (fun ( block, rollup, commitment_level, @@ -1614,8 +1612,7 @@ let test_game ?nonempty_messages ~p1_strategy ~p2_strategy () = p2_client, contract3, p1_start, - levels_and_inputs, - additional_payloads ) -> + levels_and_messages ) -> let open Lwt_result_syntax in (* Otherwise, there is no conflict. *) QCheck2.assume @@ -1627,8 +1624,9 @@ let test_game ?nonempty_messages ~p1_strategy ~p2_strategy () = Tick.equal t1 t2 && State_hash.equal state_hash1 state_hash2) p1_head p2_head)) ; - let* block = + let* block, refuter, defender = prepare_game + ~p1_start block rollup lcc @@ -1636,43 +1634,7 @@ let test_game ?nonempty_messages ~p1_strategy ~p2_strategy () = p1_client p2_client contract3 - levels_and_inputs - in - let refuter, defender = - if p1_start then (p1_client, p2_client) else (p2_client, p1_client) - in - let* operation_start_game = - Op.sc_rollup_refute - (B block) - refuter.player.contract - rollup - defender.player.pkh - None - in - let* block = - match additional_payloads with - | [] -> Block.bake ~operation:operation_start_game block - | payloads -> - (* Add messages before starting the game. *) - let* operation_add_messages1 = - Op.sc_rollup_add_messages - (B block) - defender.player.contract - payloads - in - (* Start the game in between adding messages so the latest protocol - inbox is no longer equal to the player's view on inbox. *) - let* operation_add_messages2 = - Op.sc_rollup_add_messages (B block) contract3 payloads - in - Block.bake - ~operations: - [ - operation_add_messages1; - operation_start_game; - operation_add_messages2; - ] - block + levels_and_messages in let* game_result = play_until_game_result @@ -1692,16 +1654,16 @@ let test_random_against_perfect = test_game ~p1_strategy:Random ~p2_strategy:Perfect () let test_perfect_against_lazy = - test_game ~nonempty_messages:true ~p1_strategy:Perfect ~p2_strategy:Lazy () + test_game ~p1_strategy:Perfect ~p2_strategy:Lazy () let test_lazy_against_perfect = - test_game ~nonempty_messages:true ~p1_strategy:Lazy ~p2_strategy:Perfect () + test_game ~p1_strategy:Lazy ~p2_strategy:Perfect () let test_perfect_against_eager = - test_game ~nonempty_messages:true ~p1_strategy:Perfect ~p2_strategy:Eager () + test_game ~p1_strategy:Perfect ~p2_strategy:Eager () let test_eager_against_perfect = - test_game ~nonempty_messages:true ~p1_strategy:Eager ~p2_strategy:Perfect () + test_game ~p1_strategy:Eager ~p2_strategy:Perfect () let test_perfect_against_keen = test_game ~p1_strategy:Perfect ~p2_strategy:Keen () @@ -1717,10 +1679,10 @@ let tests = test_random_against_perfect; test_perfect_against_lazy; test_lazy_against_perfect; - test_perfect_against_eager; - test_eager_against_perfect; test_perfect_against_keen; test_keen_against_perfect; + test_perfect_against_eager; + test_eager_against_perfect; ] ) (** {2 Entry point} *) -- GitLab From 3b5a2ae575ca20055a5f8455fd03d202221b6c56 Mon Sep 17 00:00:00 2001 From: Valentin Chaboche Date: Mon, 10 Oct 2022 18:01:59 +0200 Subject: [PATCH 27/36] Scoru,Test: speed up refutation games pbt --- .../lib_protocol/test/pbt/test_refutation_game.ml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/proto_alpha/lib_protocol/test/pbt/test_refutation_game.ml b/src/proto_alpha/lib_protocol/test/pbt/test_refutation_game.ml index e46debfe9220..602f419c3342 100644 --- a/src/proto_alpha/lib_protocol/test/pbt/test_refutation_game.ml +++ b/src/proto_alpha/lib_protocol/test/pbt/test_refutation_game.ml @@ -1500,6 +1500,13 @@ let gen_game ~p1_strategy ~p2_strategy = p1_start, levels_and_messages ) +(** Shrinker is really slow. Deactivating it. *) +let gen_game ~p1_strategy ~p2_strategy = + let open QCheck2.Gen in + make_primitive + ~gen:(fun rand -> generate1 ~rand (gen_game ~p1_strategy ~p2_strategy)) + ~shrink:(fun _ -> Seq.empty) + (** [prepare_game block rollup lcc commitment_level p1_client p2_client contract levels_and_messages] prepares a context where [p1_client] and [p2_client] are in conflict for one commitment. @@ -1601,7 +1608,7 @@ let test_game ~p1_strategy ~p2_strategy () = (if p1_start then "p1" else "p2") pp_levels_and_messages levels_and_messages) - ~count:200 + ~count:100 ~name ~gen:(gen_game ~p1_strategy ~p2_strategy) (fun ( block, -- GitLab From bc6f9959d3ceea49fe9c59a5f647e8d859e3e804 Mon Sep 17 00:00:00 2001 From: Valentin Chaboche Date: Tue, 11 Oct 2022 15:13:25 +0200 Subject: [PATCH 28/36] Scoru,Test: fix unit tests --- .../operations/test_sc_rollup_transfer.ml | 5 +- .../test/unit/test_sc_rollup_inbox.ml | 296 ++++++------------ 2 files changed, 106 insertions(+), 195 deletions(-) diff --git a/src/proto_alpha/lib_protocol/test/integration/operations/test_sc_rollup_transfer.ml b/src/proto_alpha/lib_protocol/test/integration/operations/test_sc_rollup_transfer.ml index c650448175d8..0c3f71e08336 100644 --- a/src/proto_alpha/lib_protocol/test/integration/operations/test_sc_rollup_transfer.ml +++ b/src/proto_alpha/lib_protocol/test/integration/operations/test_sc_rollup_transfer.ml @@ -297,7 +297,7 @@ let test_transfer_works () = let* inc = Incremental.begin_construction b in let ctxt = Incremental.alpha_ctxt inc in let payload = Expr.from_string "42" in - let* expected_inbox_after, _size, _ctxt = + let* _inbox, _size, ctxt = Sc_rollup.Inbox.add_deposit ctxt ~destination:rollup @@ -306,6 +306,9 @@ let test_transfer_works () = ~source:(Context.Contract.pkh c) >|= Environment.wrap_tzresult in + let* expected_inbox_after, _size, _ctxt = + Sc_rollup.Inbox.add_end_of_level ctxt >|= Environment.wrap_tzresult + in return expected_inbox_after in let param = Format.sprintf "%S" (Sc_rollup.Address.to_b58check rollup) in diff --git a/src/proto_alpha/lib_protocol/test/unit/test_sc_rollup_inbox.ml b/src/proto_alpha/lib_protocol/test/unit/test_sc_rollup_inbox.ml index 6c2c6fbc472b..65a9073ab712 100644 --- a/src/proto_alpha/lib_protocol/test/unit/test_sc_rollup_inbox.ml +++ b/src/proto_alpha/lib_protocol/test/unit/test_sc_rollup_inbox.ml @@ -43,9 +43,24 @@ let rollup = Sc_rollup_repr.Address.hash_string [""] let first_level = Raw_level_repr.(succ root) +let inbox_message_testable = + Alcotest.testable + Sc_rollup_PVM_sig.pp_inbox_message + Sc_rollup_PVM_sig.inbox_message_equal + let create_context () = Context.init1 () >>=? fun (block, _contract) -> return block.context +let make_payload message = + WithExceptions.Result.get_ok ~loc:__LOC__ + @@ Sc_rollup_inbox_message_repr.(serialize @@ External message) + +let payloads_from_messages = + List.map (fun Sc_rollup_helpers.{input_repr = input; _} -> + match input with + | Inbox_message {payload; _} -> payload + | Reveal _ -> assert false) + let populate_inboxes ctxt level history inbox inboxes level_tree list_of_payloads = let open Lwt_syntax in @@ -55,13 +70,6 @@ let populate_inboxes ctxt level history inbox inboxes level_tree let level = Raw_level_repr.succ level in aux level history inbox inboxes level_tree ps | payloads :: ps -> - Lwt.return - (List.map_e - (fun payload -> - Sc_rollup_inbox_message_repr.(serialize @@ External payload)) - payloads) - >|= Environment.wrap_tzresult - >>=? fun payloads -> add_messages ctxt history inbox level payloads level_tree >|= Environment.wrap_tzresult >>=? fun (level_tree, history, inbox') -> @@ -88,7 +96,8 @@ let setup_inbox_with_messages list_of_payloads f = | None -> fail (err "setup_inbox_with_messages called with no messages") | Some tree -> f ctxt tree history inbox inboxes -let test_add_messages payloads = +let test_add_messages messages = + let payloads = List.map make_payload messages in let nb_payloads = List.length payloads in setup_inbox_with_messages [payloads] @@ fun _ctxt _messages _history inbox _inboxes -> @@ -118,13 +127,14 @@ let check_payload messages external_message = (Bytes.to_string expected_payload) (Bytes.to_string payload))) -let test_get_message_payload payloads = +let test_get_message_payload messages = + let payloads = List.map make_payload messages in setup_inbox_with_messages [payloads] - @@ fun _ctxt messages _history _inbox _inboxes -> + @@ fun _ctxt level_tree _history _inbox _inboxes -> List.iteri_es (fun i message -> let expected_payload = encode_external_message message in - get_message_payload messages (Z.of_int i) >>= function + get_message_payload level_tree (Z.of_int i) >>= function | Some payload -> let payload = Sc_rollup_inbox_message_repr.unsafe_to_string payload in fail_unless @@ -133,10 +143,11 @@ let test_get_message_payload payloads = | None -> fail (err (Printf.sprintf "No message payload number %d in messages" i))) - payloads + messages -let test_inclusion_proof_production (list_of_payloads, n) = +let test_inclusion_proof_production (list_of_messages, n) = let open Lwt_result_syntax in + let list_of_payloads = List.map (List.map make_payload) list_of_messages in setup_inbox_with_messages list_of_payloads @@ fun _ctxt _messages history _inbox inboxes -> let inbox = Stdlib.List.hd inboxes in @@ -164,8 +175,9 @@ let test_inclusion_proof_production (list_of_payloads, n) = (old_levels_messages inbox)) (err "The produced inclusion proof is invalid.") -let test_inclusion_proof_verification (list_of_payloads, n) = +let test_inclusion_proof_verification (list_of_messages, n) = let open Lwt_result_syntax in + let list_of_payloads = List.map (List.map make_payload) list_of_messages in setup_inbox_with_messages list_of_payloads @@ fun _ctxt _messages history _inbox inboxes -> let inbox = Stdlib.List.hd inboxes in @@ -286,24 +298,12 @@ let setup_node_inbox_with_messages list_of_payloads f = let history = History.empty ~capacity:10000L in let rec aux level history inbox inboxes level_tree = function | [] -> return (ok (level_tree, history, inbox, inboxes)) - | payloads :: ps -> ( - Lwt.return - (List.map_e - (fun payload -> - Sc_rollup_inbox_message_repr.(serialize @@ External payload)) - payloads) + | payloads :: ps -> + add_messages ctxt history inbox level payloads level_tree >|= Environment.wrap_tzresult - >>=? fun payloads -> - match payloads with - | [] -> - let level = Raw_level_repr.succ level in - aux level history inbox inboxes level_tree ps - | _ -> - add_messages ctxt history inbox level payloads level_tree - >|= Environment.wrap_tzresult - >>=? fun (level_tree, history, inbox') -> - let level = Raw_level_repr.succ level in - aux level history inbox' (inbox :: inboxes) (Some level_tree) ps) + >>=? fun (level_tree, history, inbox') -> + let level = Raw_level_repr.succ level in + aux level history inbox' (inbox :: inboxes) (Some level_tree) ps in aux first_level history inbox [] None list_of_payloads >>=? fun (level_tree, history, inbox, inboxes) -> @@ -332,34 +332,36 @@ let payload_string msg = Sc_rollup_inbox_message_repr.unsafe_of_string (Bytes.to_string (encode_external_message msg)) -let next_input ps l n = - let ( let* ) = Option.bind in - let idx = level_to_int l - 1 in - let* payloads = List.nth ps idx in - match List.nth payloads (Z.to_int n) with - | Some msg -> - let payload = payload_string msg in - Some Sc_rollup_PVM_sig.{inbox_level = l; message_counter = n; payload} - | None -> - let rec aux idx = - let* payloads = List.nth ps idx in - match List.hd payloads with - | Some msg -> - let payload = payload_string msg in - Some - Sc_rollup_PVM_sig. - { - inbox_level = level_of_int (idx + 1); - message_counter = Z.zero; - payload; - } - | None -> aux (idx + 1) - in - aux (idx + 1) - -let test_inbox_proof_production (list_of_payloads, additional_payloads, l, n) = +let inbox_message_of_input input = + match input with Sc_rollup_PVM_sig.Inbox_message x -> Some x | _ -> None + +let next_inbox_message levels_and_messages l n = + let equal = Raw_level_repr.( = ) in + let messages = + WithExceptions.Option.get ~loc:__LOC__ + @@ List.assoc ~equal l levels_and_messages + in + match List.nth messages (Z.to_int n) with + | Some Sc_rollup_helpers.{input_repr = input; _} -> + inbox_message_of_input input + | None -> ( + (* If no input at (l, n), the next input is (l+1, 0). *) + match List.assoc ~equal (Raw_level_repr.succ l) levels_and_messages with + | None -> None + | Some messages -> + let Sc_rollup_helpers.{input_repr = input; _} = + Stdlib.List.hd messages + in + inbox_message_of_input input) + +let test_inbox_proof_production (levels_and_messages, l, n) = (* We begin with a Node inbox so we can produce a proof. *) - let exp_input = next_input list_of_payloads l n in + let exp_input = next_inbox_message levels_and_messages l n in + let list_of_payloads = + List.map + (fun (_, messages) -> payloads_from_messages messages) + levels_and_messages + in setup_node_inbox_with_messages list_of_payloads @@ fun ctxt current_level_tree history inbox _inboxes -> let open Lwt_result_syntax in @@ -372,25 +374,34 @@ let test_inbox_proof_production (list_of_payloads, additional_payloads, l, n) = | Ok (proof, input) -> ( (* We now switch to a protocol inbox built from the same messages for verification. *) - setup_inbox_with_messages (list_of_payloads @ [additional_payloads]) - @@ fun _ctxt _current_level_tree _history inbox _inboxes -> - (* If there are [additional_payloads], we will take the snapshot - of the additional level, which should ignore the additional - payloads. Otherwise, we take a snapshot of the whole inbox. *) + (* The snapshot takes the snapshot at the end of the last level, + we need to set the level ahead to match the inbox. *) + setup_inbox_with_messages (list_of_payloads @ [[make_payload "foo"]]) + @@ fun _ctxt _ _history inbox _inboxes -> let snapshot = take_snapshot inbox in let proof = node_proof_to_protocol_proof proof in let*! verification = verify_proof (l, n) snapshot proof in match verification with | Ok v_input -> - fail_unless - (v_input = input && v_input = exp_input) - (err "Proof verified but did not match") + Alcotest.(check (option inbox_message_testable)) + "input = v_input" + input + v_input ; + Alcotest.(check (option inbox_message_testable)) + "exp_input = v_input" + exp_input + v_input ; + return_unit | Error _ -> fail [err "Proof verification failed"]) | Error _ -> fail [err "Proof production failed"] -let test_inbox_proof_verification (list_of_payloads, additional_payloads, l, n) - = +let test_inbox_proof_verification (levels_and_messages, l, n) = (* We begin with a Node inbox so we can produce a proof. *) + let list_of_payloads = + List.map + (fun (_, messages) -> payloads_from_messages messages) + levels_and_messages + in setup_node_inbox_with_messages list_of_payloads @@ fun ctxt current_level_tree history inbox _inboxes -> let open Lwt_result_syntax in @@ -403,14 +414,11 @@ let test_inbox_proof_verification (list_of_payloads, additional_payloads, l, n) | Ok (proof, _input) -> ( (* We now switch to a protocol inbox built from the same messages for verification. *) - setup_inbox_with_messages (list_of_payloads @ [additional_payloads]) - @@ fun _ctxt _current_level_tree _history _inbox inboxes -> + setup_inbox_with_messages (list_of_payloads @ [[make_payload "foo"]]) + @@ fun _ctxt _ _history _inbox inboxes -> (* Use the incorrect inbox *) match List.hd inboxes with | Some inbox -> ( - (* If there are [additional_payloads], we will take the snapshot - of the additional level, which should ignore the additional - payloads. Otherwise, we take a snapshot of the whole inbox. *) let snapshot = take_snapshot inbox in let proof = node_proof_to_protocol_proof proof in let*! verification = verify_proof (l, n) snapshot proof in @@ -420,38 +428,6 @@ let test_inbox_proof_verification (list_of_payloads, additional_payloads, l, n) | None -> fail [err "inboxes was empty"]) | Error _ -> fail [err "Proof production failed"] -let test_empty_inbox_proof (level, n) = - let open Lwt_result_syntax in - let*! index = Tezos_context_memory.Context.init "foo" in - let ctxt = Tezos_context_memory.Context.empty index in - let*! inbox = Node.empty ctxt level in - let history = History.empty ~capacity:10000L in - let* history, history_proof = - Node.form_history_proof ctxt history inbox None - >|= Environment.wrap_tzresult - in - let*! result = - Node.produce_proof ctxt history history_proof (Raw_level_repr.root, n) - in - match result with - | Ok (proof, input) -> ( - (* We now switch to a protocol inbox for verification. *) - create_context () - >>=? fun ctxt -> - let*! inbox = empty ctxt level in - let snapshot = take_snapshot inbox in - let proof = node_proof_to_protocol_proof proof in - let*! verification = - verify_proof (Raw_level_repr.root, n) snapshot proof - in - match verification with - | Ok v_input -> - fail_unless - (v_input = input && v_input = None) - (err "Proof verified but did not match") - | Error _ -> fail [err "Proof verification failed"]) - | Error _ -> fail [err "Proof production failed"] - (** This helper function initializes inboxes and histories with different capacities and populates them. *) let init_inboxes_histories_with_different_capacities @@ -489,6 +465,7 @@ let init_inboxes_histories_with_different_capacities ~capacity ~next_index in + let payloads = List.map (List.map make_payload) payloads in populate_inboxes ctxt first_level history inbox [] None payloads in (* Here, we have `~capacity:0L`. So no history is kept *) @@ -648,24 +625,18 @@ let test_inclusion_proofs_depending_on_history_capacity (** In this test, we make sure that the snapshot of an inbox is taken at the beginning of a block level. *) -let test_inbox_snapshot_taking (list_of_payloads, payloads) = +let test_inbox_snapshot_taking payloads = let open Lwt_result_syntax in - setup_inbox_with_messages list_of_payloads - @@ fun ctxt current_level_tree history inbox inboxes -> + let payloads = List.map make_payload payloads in + create_context () >>=? fun ctxt -> + let*! inbox = empty ctxt first_level in let inbox_level = inbox_level inbox in - let current_level = Raw_level_repr.succ inbox_level in let expected_snapshot = take_snapshot inbox in (* Now, if we add messages to the inbox at [current_level], the inbox's snapshot for this level should not changed. *) - let* _level_tree, _history, inbox, _inboxes = - populate_inboxes - ctxt - current_level - history - inbox - inboxes - (Some current_level_tree) - [payloads] + let* _ = + add_messages_no_history ctxt inbox inbox_level payloads None + >|= Environment.wrap_tzresult in let new_snapshot = take_snapshot inbox in fail_unless @@ -701,57 +672,6 @@ let test_for_successive_add_messages_with_different_histories_capacities && Option.equal I.Internal_for_tests.eq_tree level_tree1 level_tree2) (err "Trees of (supposedly) equal inboxes should be equal.") -let test_inclusion_proof_of_unarchived_message () = - let open Lwt_result_syntax in - let level_zero = first_level in - let message_counter_zero = Z.zero in - let message = "c4c4" in - let payloads = [[message]] in - - let check_expected_input (input : Sc_rollup_PVM_sig.inbox_message option) = - match input with - | Some {payload; _} -> - let message' = - Sc_rollup_inbox_message_repr.deserialize payload - |> WithExceptions.Result.get_ok ~loc:__LOC__ - in - assert (message' = External message) - | None -> assert false - in - - let* proof = - setup_node_inbox_with_messages payloads - @@ fun ctxt level_tree history inbox _inboxes -> - let* history, history_proof = - Node.form_history_proof ctxt history inbox (Some level_tree) - >|= Environment.wrap_tzresult - in - let* proof, input = - Node.produce_proof - ctxt - history - history_proof - (level_zero, message_counter_zero) - >|= Environment.wrap_tzresult - in - let () = check_expected_input input in - return proof - in - - let* snapshot = - setup_inbox_with_messages payloads - @@ fun _ctxt _level_tree _history inbox _inboxes -> - return (take_snapshot inbox) - in - - let proof = node_proof_to_protocol_proof proof in - let* input = - verify_proof (level_zero, message_counter_zero) snapshot proof - >|= Environment.wrap_tzresult - in - let () = check_expected_input input in - return_unit - let tests = let msg_size = QCheck2.Gen.(0 -- 100) in let bounded_string = QCheck2.Gen.string_size msg_size in @@ -779,16 +699,18 @@ let tests = in let gen_proof_inputs = QCheck2.Gen.( - let small = 0 -- 5 in - let* level = 0 -- 8 in - let* before = list_size (return level) (list_size small bounded_string) in - let* at = list_size (2 -- 6) bounded_string in - let* after = list_size small (list_size small bounded_string) in - let payloads = List.append before (at :: after) in - let* n = 0 -- (List.length at + 3) in - let* additional_payloads = small_list bounded_string in - return - (payloads, additional_payloads, level_of_int (succ level), Z.of_int n)) + let* levels = 2 -- 15 in + let* levels_and_messages = + Sc_rollup_helpers.gen_message_reprs_for_levels_repr + ~start_level:1 + ~max_level:levels + bounded_string + in + let* l = 1 -- (levels - 1) in + let l = level_of_int l in + let messages_at_l = Stdlib.List.assoc l levels_and_messages in + let* n = 0 -- List.length messages_at_l in + return (levels_and_messages, l, Z.of_int n)) in let gen_history_params = QCheck2.Gen.( @@ -828,13 +750,6 @@ let tests = ~name:"Verify inbox proofs" gen_proof_inputs test_inbox_proof_verification; - Tztest.tztest_qcheck2 - ~name:"An empty inbox is still able to produce proofs that return None" - QCheck2.Gen.( - let* n = 1 -- 2000 in - let* m = 0 -- 1000 in - return (level_of_int n, Z.of_int m)) - test_empty_inbox_proof; Tztest.tztest_qcheck2 ~count:10 ~name:"Checking inboxes history length" @@ -863,14 +778,7 @@ let tests = "Take snapshot is not impacted by messages added during the current \ level" (let open QCheck2.Gen in - let* list_of_payloads = - list_size (1 -- 50) (list_size (1 -- 10) bounded_string) - in let* payloads = list_size (1 -- 10) bounded_string in - return (list_of_payloads, payloads)) + return payloads) test_inbox_snapshot_taking; - Tztest.tztest - "Test that a unarchived message belongs to the snapshot" - `Quick - test_inclusion_proof_of_unarchived_message; ] -- GitLab From 2e01f63b54b75f8ec843cc3a2042a5b77be3e19b Mon Sep 17 00:00:00 2001 From: Valentin Chaboche Date: Wed, 12 Oct 2022 14:31:27 +0200 Subject: [PATCH 29/36] Scoru,Tezt: remove "predicting level tree" test --- ...s in the inbox - current messages hash.out | 113 ------------- ...s in the inbox - current messages hash.out | 113 ------------- tezt/tests/sc_rollup.ml | 154 ------------------ 3 files changed, 380 deletions(-) delete mode 100644 tezt/tests/expected/sc_rollup.ml/Alpha- arith - pushing messages in the inbox - current messages hash.out delete mode 100644 tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - pushing messages in the inbox - current messages hash.out diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - pushing messages in the inbox - current messages hash.out b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - pushing messages in the inbox - current messages hash.out deleted file mode 100644 index 0e65d5aafa8c..000000000000 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - pushing messages in the inbox - current messages hash.out +++ /dev/null @@ -1,113 +0,0 @@ - -./octez-client --wait none originate sc rollup from bootstrap1 of kind arith of type string booting with --burn-cap 9999999 -Node is bootstrapped. -Estimated gas: 3110.449 units (will add 100 for safety) -Estimated storage: 6655 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00067 - Expected counter: 1 - Gas limit: 3211 - Storage limit: 6675 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00067 - payload fees(the block proposer) ....... +ꜩ0.00067 - Smart contract rollup origination: - Kind: arith - Parameter type: string - Boot sector Blake2B hash: '0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8' - This smart contract rollup origination was successfully applied - Consumed gas: 3110.449 - Storage size: 6655 bytes - Address: [SC_ROLLUP_HASH] - Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.66375 - storage fees ........................... +ꜩ1.66375 - - -./octez-client --wait none send sc rollup message 'text:["hello, message number 0", "hello, message number 1", "hello, message number 2", "hello, message number 3", "hello, message number 4"]' from bootstrap2 to '[SC_ROLLUP_HASH]' -Node is bootstrapped. -Estimated gas: 1880.381 units (will add 100 for safety) -Estimated storage: no bytes added -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000603 - Expected counter: 1 - Gas limit: 1981 - Storage limit: 0 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000603 - payload fees(the block proposer) ....... +ꜩ0.000603 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] - This smart contract rollup messages submission was successfully applied - Consumed gas: 1880.509 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 3 - current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 5 - starting_level_of_current_commitment_period = 2 - message_counter = 5 - old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] - - content = [SC_ROLLUP_INBOX_HASH] - index = 1 - back_pointers = [SC_ROLLUP_INBOX_HASH] - - } - - -./octez-client --wait none send sc rollup message 'text:["hello, message number 5", "hello, message number 6", "hello, message number 7", "hello, message number 8", "hello, message number 9", "hello, message number 10"]' from bootstrap2 to '[SC_ROLLUP_HASH]' -Node is bootstrapped. -Estimated gas: 1881.471 units (will add 100 for safety) -Estimated storage: no bytes added -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000631 - Expected counter: 2 - Gas limit: 1982 - Storage limit: 0 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000631 - payload fees(the block proposer) ....... +ꜩ0.000631 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] - This smart contract rollup messages submission was successfully applied - Consumed gas: 1881.599 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 4 - current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 11 - starting_level_of_current_commitment_period = 2 - message_counter = 6 - old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] - - content = [SC_ROLLUP_INBOX_HASH] - index = 2 - back_pointers = [SC_ROLLUP_INBOX_HASH] - [SC_ROLLUP_INBOX_HASH] - - } - diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - pushing messages in the inbox - current messages hash.out b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - pushing messages in the inbox - current messages hash.out deleted file mode 100644 index 39da20e40ad4..000000000000 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - pushing messages in the inbox - current messages hash.out +++ /dev/null @@ -1,113 +0,0 @@ - -./octez-client --wait none originate sc rollup from bootstrap1 of kind wasm_2_0_0 of type string booting with 010fa03030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303000d5024ff4c33df62141bd485af4154641aa9220c5dede9aed006eb5d3c88bff3b --burn-cap 9999999 -Node is bootstrapped. -Estimated gas: 3126.593 units (will add 100 for safety) -Estimated storage: 10691 bytes added (will add 20 for safety) -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.004713 - Expected counter: 1 - Gas limit: 3227 - Storage limit: 10711 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004713 - payload fees(the block proposer) ....... +ꜩ0.004713 - Smart contract rollup origination: - Kind: wasm_2_0_0 - Parameter type: string - Boot sector Blake2B hash: '789431137a40057a39867cbc5cd7f984139360559c655c0508821b9be8047a02' - This smart contract rollup origination was successfully applied - Consumed gas: 3126.593 - Storage size: 10691 bytes - Address: [SC_ROLLUP_HASH] - Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ2.67275 - storage fees ........................... +ꜩ2.67275 - - -./octez-client --wait none send sc rollup message 'text:["hello, message number 0", "hello, message number 1", "hello, message number 2", "hello, message number 3", "hello, message number 4"]' from bootstrap2 to '[SC_ROLLUP_HASH]' -Node is bootstrapped. -Estimated gas: 1880.381 units (will add 100 for safety) -Estimated storage: no bytes added -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000603 - Expected counter: 1 - Gas limit: 1981 - Storage limit: 0 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000603 - payload fees(the block proposer) ....... +ꜩ0.000603 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] - This smart contract rollup messages submission was successfully applied - Consumed gas: 1880.509 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 3 - current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 5 - starting_level_of_current_commitment_period = 2 - message_counter = 5 - old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] - - content = [SC_ROLLUP_INBOX_HASH] - index = 1 - back_pointers = [SC_ROLLUP_INBOX_HASH] - - } - - -./octez-client --wait none send sc rollup message 'text:["hello, message number 5", "hello, message number 6", "hello, message number 7", "hello, message number 8", "hello, message number 9", "hello, message number 10"]' from bootstrap2 to '[SC_ROLLUP_HASH]' -Node is bootstrapped. -Estimated gas: 1881.471 units (will add 100 for safety) -Estimated storage: no bytes added -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000631 - Expected counter: 2 - Gas limit: 1982 - Storage limit: 0 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000631 - payload fees(the block proposer) ....... +ꜩ0.000631 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] - This smart contract rollup messages submission was successfully applied - Consumed gas: 1881.599 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 4 - current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 11 - starting_level_of_current_commitment_period = 2 - message_counter = 6 - old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] - - content = [SC_ROLLUP_INBOX_HASH] - index = 2 - back_pointers = [SC_ROLLUP_INBOX_HASH] - [SC_ROLLUP_INBOX_HASH] - - } - diff --git a/tezt/tests/sc_rollup.ml b/tezt/tests/sc_rollup.ml index 345a2c68cd57..54e2e82c6f85 100644 --- a/tezt/tests/sc_rollup.ml +++ b/tezt/tests/sc_rollup.ml @@ -581,70 +581,6 @@ let test_rollup_inbox_size ~kind = node client) -module Sc_rollup_inbox = struct - open Tezos_context_encoding.Context - - module Store = struct - module Maker = Irmin_pack_mem.Maker (Conf) - include Maker.Make (Schema) - module Schema = Tezos_context_encoding.Context.Schema - end - - include Tezos_context_helpers.Context.Make_tree (Conf) (Store) - - (* An external message is prefixed with a tag whose length is one byte, and - whose value is 1. *) - let encode_external_message message = - let prefix = "\001" in - Bytes.of_string (prefix ^ message) - - (* - The hash for empty messages is the hash of empty bytes, and not of an empty - tree. - - The hash for non-empty messages is the hash of the tree, where each message - payload sits at the key [[message_index, "payload"]], where [message_index] - is the index of the current message relative to the first message. - - The [message_counter] is reset to zero when the inbox level increments (and - therefore [current_messages] are zero-indexed in the tree). - *) - let rec build_current_messages_tree counter tree messages = - match messages with - | [] -> return tree - | message :: rest -> - let key = Data_encoding.Binary.to_string_exn Data_encoding.z counter in - let payload = encode_external_message message in - let* tree = add tree ["message"; key] payload in - build_current_messages_tree (Z.succ counter) tree rest - - module P = Tezos_protocol_alpha.Protocol - - let predict_current_messages_hash level current_messages = - let open P.Alpha_context.Sc_rollup in - let open Lwt.Syntax in - let level_bytes = - Data_encoding.Binary.to_bytes_exn - P.Raw_level_repr.encoding - (P.Raw_level_repr.of_int32_exn level) - in - let number_of_messages_bytes = - Data_encoding.Binary.to_bytes_exn - Data_encoding.n - (Z.of_int (List.length current_messages)) - in - let* tree = add (empty ()) ["level"] level_bytes in - let* tree = add tree ["number_of_messages"] number_of_messages_bytes in - let* tree = build_current_messages_tree Z.zero tree current_messages in - let context_hash = hash tree in - let test = - Data_encoding.Binary.to_bytes_exn - Tezos_base.TzPervasives.Context_hash.encoding - context_hash - in - return (Inbox.Hash.of_bytes_exn test) -end - let fetch_messages_from_block client = let* ops = RPC.Client.call client @@ RPC.get_chain_block_operations () in let messages = @@ -660,95 +596,6 @@ let fetch_messages_from_block client = in return messages -let test_rollup_inbox_current_messages_hash ~kind = - regression_test - ~__FILE__ - ~tags:["sc_rollup"; "inbox"; kind] - (Format.asprintf - "%s - pushing messages in the inbox - current messages hash" - kind) - (fun protocol -> - setup ~protocol @@ fun node client -> - ( with_fresh_rollup ~kind @@ fun _sc_rollup _sc_rollup_node _filename -> - let gen_message_batch from until = - List.map - (fun x -> - Printf.sprintf "hello, message number %s" (Int.to_string x)) - (range from until) - in - let prepare_batch messages = - messages - |> List.map (Printf.sprintf "\"%s\"") - |> String.concat ", " |> Printf.sprintf "text:[%s]" - in - let open Tezos_protocol_alpha.Protocol.Alpha_context.Sc_rollup in - (* no messages have been sent *) - let* pristine_hash, nb_available_messages = - get_inbox_from_tezos_node client - in - let () = - Check.((nb_available_messages = 0) int) - ~error_msg:"0 messages expected in the inbox" - in - let* expected = Sc_rollup_inbox.predict_current_messages_hash 0l [] in - let () = - Check.( - (Inbox.Hash.to_b58check expected = pristine_hash) - string - ~error_msg:"FIRST: expected pristine hash %L, got %R") - in - (* - send messages, and assert that - - the hash has changed - - the hash matches the 'predicted' hash from the messages we sent - *) - let fst_batch = gen_message_batch 0 4 in - let* () = send_message client @@ prepare_batch fst_batch in - let* fst_batch_hash, _ = get_inbox_from_tezos_node client in - let () = - Check.( - (pristine_hash <> fst_batch_hash) - string - ~error_msg: - "expected current messages hash to change when messages sent") - in - let* expected = - Sc_rollup_inbox.predict_current_messages_hash 3l fst_batch - in - let () = - Check.( - (Inbox.Hash.to_b58check expected = fst_batch_hash) - string - ~error_msg:"2 expected first batch hash %L, got %R") - in - (* - send more messages, and assert that - - the messages can be retrieved from the latest block - - the hash matches the 'predicted' hash from the messages we sent - *) - let snd_batch = gen_message_batch 5 10 in - let* () = send_message client @@ prepare_batch snd_batch in - let* messages = fetch_messages_from_block client in - let () = - Check.( - (messages = snd_batch) - (list string) - ~error_msg:"expected messages:\n%R\nretrieved:\n%L") - in - let* snd_batch_hash, _ = get_inbox_from_tezos_node client in - let* expected = - Sc_rollup_inbox.predict_current_messages_hash 4l snd_batch - in - let () = - Check.( - (Inbox.Hash.to_b58check expected = snd_batch_hash) - string - ~error_msg:"expected second batch hash %L, got %R") - in - unit ) - node - client) - (* Synchronizing the inbox in the rollup node ------------------------------------------ @@ -3304,7 +3151,6 @@ let register ~kind ~protocols = ~kind protocols ; test_rollup_inbox_size ~kind protocols ; - test_rollup_inbox_current_messages_hash ~kind protocols ; test_rollup_inbox_of_rollup_node ~kind "basic" basic_scenario protocols ; test_rpcs ~kind protocols ; (* See above at definition of sc_rollup_node_stops_scenario: -- GitLab From 58851cf268825fc01e3655ccb4f9a87706ce3ee4 Mon Sep 17 00:00:00 2001 From: Valentin Chaboche Date: Wed, 12 Oct 2022 15:22:19 +0200 Subject: [PATCH 30/36] Scoru,Test: adapt tezt tests --- tezt/tests/sc_rollup.ml | 28 ++++++++++++++++++++-------- 1 file changed, 20 insertions(+), 8 deletions(-) diff --git a/tezt/tests/sc_rollup.ml b/tezt/tests/sc_rollup.ml index 54e2e82c6f85..9dd6f4f9ba8d 100644 --- a/tezt/tests/sc_rollup.ml +++ b/tezt/tests/sc_rollup.ml @@ -573,9 +573,12 @@ let test_rollup_inbox_size ~kind = let* _, inbox_msg_during_commitment_period = get_inbox_from_tezos_node client in + (* Expect [n] messages per level + SOL/EOL for each level including + at inbox's creation. *) return @@ Check.( - (inbox_msg_during_commitment_period = n * (n + 1) / 2) + (inbox_msg_during_commitment_period + = (n * (n + 1) / 2) + (((n + 1) * 2) + 2)) int ~error_msg:"expected value %R, got %L") ) node @@ -1399,7 +1402,7 @@ let commitments_messages_reset _protocol sc_rollup_node sc_rollup _node client = ~error_msg: "Commitment has been stored at a level different than expected (%L = %R)" ; (let stored_number_of_ticks = Option.map number_of_ticks stored_commitment in - Check.(stored_number_of_ticks = Some 0) + Check.(stored_number_of_ticks = Some (2 * levels_to_commitment)) (Check.option Check.int) ~error_msg: "Number of messages processed by commitment is different from the \ @@ -1498,7 +1501,7 @@ let commitment_stored_robust_to_failures _protocol sc_rollup_node sc_rollup node (Option.map (fun (_, c, _) -> c) stored_commitment', "stored in second node") ; return () -let commitments_reorgs protocol sc_rollup_node sc_rollup node client = +let commitments_reorgs ~kind protocol sc_rollup_node sc_rollup node client = (* No messages are published after origination, for `sc_rollup_commitment_period_in_blocks - 1` levels. Then a divergence occurs: in the first branch one message is published for @@ -1603,12 +1606,21 @@ let commitments_reorgs protocol sc_rollup_node sc_rollup node client = (Check.option Check.int) ~error_msg: "Commitment has been stored at a level different than expected (%L = %R)" ; + let () = Log.info "init_level: %d" init_level in (let stored_number_of_ticks = Option.map number_of_ticks stored_commitment in - Check.(stored_number_of_ticks = Some 0) + let additional_ticks = + match kind with + | "arith" -> 1 (* boot sector *) + 1 (* metadata *) + | "wasm_2_0_0" -> 1 (* boot_sector *) + | _ -> assert false + in + Check.( + stored_number_of_ticks + = Some ((2 * levels_to_commitment) + additional_ticks)) (Check.option Check.int) ~error_msg: - "Number of messages processed by commitment is different from the \ - number of messages expected (%L = %R)") ; + "Number of ticks processed by commitment is different from the number \ + of ticks expected (%L = %R)") ; let* published_commitment = Sc_rollup_client.last_published_commitment ~hooks sc_rollup_client in @@ -3109,7 +3121,7 @@ let test_rpcs ~kind = ["global"; "block"; "head"; "num_messages"] in let l2_num_messages = JSON.as_int l2_num_messages in - Check.((l2_num_messages = batch_size) int) + Check.((l2_num_messages = batch_size + 2) int) ~error_msg:"Number of messages of head is %L but should be %R" ; let* _status = Sc_rollup_client.rpc_get @@ -3235,7 +3247,7 @@ let register ~kind ~protocols = ~kind ; test_commitment_scenario "handles_chain_reorgs" - commitments_reorgs + (commitments_reorgs ~kind) protocols ~kind ; test_commitment_scenario -- GitLab From da245961af40c2f690b9913c879f55b05af79b76 Mon Sep 17 00:00:00 2001 From: Valentin Chaboche Date: Thu, 13 Oct 2022 09:47:56 +0200 Subject: [PATCH 31/36] Scoru,Test: test the addition of SOL/EOL in the inbox --- .../lib_protocol/alpha_context.mli | 2 ++ .../lib_protocol/sc_rollup_inbox_repr.ml | 6 ++++ .../lib_protocol/sc_rollup_inbox_repr.mli | 5 ++- .../integration/operations/test_sc_rollup.ml | 33 +++++++++++++++++++ 4 files changed, 45 insertions(+), 1 deletion(-) diff --git a/src/proto_alpha/lib_protocol/alpha_context.mli b/src/proto_alpha/lib_protocol/alpha_context.mli index f919c7c879fc..8e0795fbb177 100644 --- a/src/proto_alpha/lib_protocol/alpha_context.mli +++ b/src/proto_alpha/lib_protocol/alpha_context.mli @@ -3179,6 +3179,8 @@ module Sc_rollup : sig inclusion_proof option tzresult val serialized_proof_of_string : string -> serialized_proof + + val inbox_message_counter : t -> Z.t end end diff --git a/src/proto_alpha/lib_protocol/sc_rollup_inbox_repr.ml b/src/proto_alpha/lib_protocol/sc_rollup_inbox_repr.ml index f5228e276359..04e7fd93bb8c 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_inbox_repr.ml +++ b/src/proto_alpha/lib_protocol/sc_rollup_inbox_repr.ml @@ -277,6 +277,8 @@ module V1 = struct let inbox_level inbox = inbox.level + let inbox_message_counter inbox = inbox.message_counter + let old_levels_messages inbox = inbox.old_levels_messages let current_level_hash inbox = inbox.current_level_hash () @@ -435,6 +437,8 @@ module type Merkelized_operations = sig inclusion_proof option tzresult val serialized_proof_of_string : string -> serialized_proof + + val inbox_message_counter : t -> Z.t end end @@ -990,6 +994,8 @@ struct |> Option.join |> return let serialized_proof_of_string x = Bytes.of_string x + + let inbox_message_counter = inbox_message_counter end end diff --git a/src/proto_alpha/lib_protocol/sc_rollup_inbox_repr.mli b/src/proto_alpha/lib_protocol/sc_rollup_inbox_repr.mli index c754b6db0e3f..f3bc208d45b4 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_inbox_repr.mli +++ b/src/proto_alpha/lib_protocol/sc_rollup_inbox_repr.mli @@ -141,7 +141,7 @@ module V1 : sig val encoding : t Data_encoding.t (** [inbox_level inbox] returns the maximum level of message insertion in - [inbox] or its initial level. *) + [inbox] or its initial level. *) val inbox_level : t -> Raw_level_repr.t (** A [history_proof] is a [Skip_list.cell] that stores multiple @@ -403,6 +403,9 @@ module type Merkelized_operations = sig (** Allows to create a dumb {!serialized_proof} from a string, instead of serializing a proof with {!to_serialized_proof}. *) val serialized_proof_of_string : string -> serialized_proof + + (** [inbox_message_counter inbox] returns the [inbox]'s message counter. *) + val inbox_message_counter : t -> Z.t end end diff --git a/src/proto_alpha/lib_protocol/test/integration/operations/test_sc_rollup.ml b/src/proto_alpha/lib_protocol/test/integration/operations/test_sc_rollup.ml index a654a75bb67f..8b69412f9f57 100644 --- a/src/proto_alpha/lib_protocol/test/integration/operations/test_sc_rollup.ml +++ b/src/proto_alpha/lib_protocol/test/integration/operations/test_sc_rollup.ml @@ -2016,6 +2016,35 @@ let test_refute_invalid_metadata () = in assert_refute_result ~game_status:expected_game_status incr +(** Test that the protocol adds a [SOL] and [EOL] for each Tezos level, + even if no messages are added to the inbox. *) +let test_sol_and_eol () = + let* block, account = context_init Context.T1 in + let* first_inbox = Context.Sc_rollup.inbox (B block) in + let messages_first_inbox = + Sc_rollup.Inbox.Internal_for_tests.inbox_message_counter first_inbox + in + let* () = Assert.equal_int ~loc:__LOC__ 0 (Z.to_int messages_first_inbox) in + + (* SOL and EOL are added when no messages are added. *) + let* block = Block.bake block in + let* second_inbox = Context.Sc_rollup.inbox (B block) in + let messages_second_inbox = + Sc_rollup.Inbox.Internal_for_tests.inbox_message_counter second_inbox + in + let* () = Assert.equal_int ~loc:__LOC__ 2 (Z.to_int messages_second_inbox) in + + (* SOL and EOL are added when messages are added. *) + let* operation = Op.sc_rollup_add_messages (B block) account ["foo"] in + let* block = Block.bake ~operation block in + let* third_inbox = Context.Sc_rollup.inbox (B block) in + let messages_third_inbox = + Sc_rollup.Inbox.Internal_for_tests.inbox_message_counter third_inbox + in + let* () = Assert.equal_int ~loc:__LOC__ 3 (Z.to_int messages_third_inbox) in + + return_unit + let tests = [ Tztest.tztest @@ -2125,4 +2154,8 @@ let tests = "Invalid metadata initialization can be refuted" `Quick test_refute_invalid_metadata; + Tztest.tztest + "Test that SOL/EOL are added in the inbox" + `Quick + test_sol_and_eol; ] -- GitLab From 5aa9ee94b00aa338cb312bc779d0b3c96663e6e6 Mon Sep 17 00:00:00 2001 From: Valentin Chaboche Date: Thu, 13 Oct 2022 11:07:44 +0200 Subject: [PATCH 32/36] Scoru,Test: add [SOL/EOL]'s hater strategy --- .../test/pbt/test_refutation_game.ml | 39 +++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/src/proto_alpha/lib_protocol/test/pbt/test_refutation_game.ml b/src/proto_alpha/lib_protocol/test/pbt/test_refutation_game.ml index 602f419c3342..65ec64ad933c 100644 --- a/src/proto_alpha/lib_protocol/test/pbt/test_refutation_game.ml +++ b/src/proto_alpha/lib_protocol/test/pbt/test_refutation_game.ml @@ -1008,6 +1008,8 @@ type strategy = | Lazy (** A lazy player will not execute all messages. *) | Eager (** A eager player will not cheat until a certain point. *) | Keen (** A keen player will execute more messages. *) + | SOL_hater (** A SOL hater will not execute the SOL input. *) + | EOL_hater (** A EOL hater will not execute the EOL input. *) let pp_strategy fmt = function | Random -> Format.pp_print_string fmt "Random" @@ -1015,6 +1017,8 @@ let pp_strategy fmt = function | Lazy -> Format.pp_print_string fmt "Lazy" | Eager -> Format.pp_print_string fmt "Eager" | Keen -> Format.pp_print_string fmt "Keen" + | SOL_hater -> Format.pp_print_string fmt "SOL hater" + | EOL_hater -> Format.pp_print_string fmt "EOL hater" type player = { pkh : Signature.Public_key_hash.t; @@ -1226,6 +1230,25 @@ module Player_client = struct in let _state, tick, our_states = eval_messages new_levels_and_messages in return (tick, our_states, new_levels_and_messages) + | SOL_hater -> + let new_levels_and_messages = + List.map + (fun (level, messages) -> (level, Stdlib.List.tl messages)) + levels_and_messages + in + let _state, tick, our_states = eval_messages new_levels_and_messages in + return (tick, our_states, new_levels_and_messages) + | EOL_hater -> + let new_levels_and_messages = + List.map + (fun (level, messages) -> + let rev_messages = List.rev messages in + let without_eol = Stdlib.List.tl rev_messages in + (level, List.rev without_eol)) + levels_and_messages + in + let _state, tick, our_states = eval_messages new_levels_and_messages in + return (tick, our_states, new_levels_and_messages) (** [gen ~inbox ~rollup ~origination_level ~start_level ~max_level player levels_and_messages] generates a {!player_client} based on @@ -1678,6 +1701,18 @@ let test_perfect_against_keen = let test_keen_against_perfect = test_game ~p1_strategy:Keen ~p2_strategy:Perfect () +let test_sol_hater_against_perfect = + test_game ~p1_strategy:SOL_hater ~p2_strategy:Perfect () + +let test_perfect_against_sol_hater = + test_game ~p1_strategy:Perfect ~p2_strategy:SOL_hater () + +let test_eol_hater_against_perfect = + test_game ~p1_strategy:EOL_hater ~p2_strategy:Perfect () + +let test_perfect_against_eol_hater = + test_game ~p1_strategy:Perfect ~p2_strategy:EOL_hater () + let tests = ( "Refutation", qcheck_wrap @@ -1690,6 +1725,10 @@ let tests = test_keen_against_perfect; test_perfect_against_eager; test_eager_against_perfect; + test_sol_hater_against_perfect; + test_perfect_against_sol_hater; + test_eol_hater_against_perfect; + test_perfect_against_eol_hater; ] ) (** {2 Entry point} *) -- GitLab From 080ba1f6dc2717d88b6ca05e46c9a535b809ad5e Mon Sep 17 00:00:00 2001 From: Valentin Chaboche Date: Fri, 14 Oct 2022 16:29:57 +0200 Subject: [PATCH 33/36] Scoru,Proto: make internal messages' encoding JSON compatible --- .../sc_rollup_inbox_message_repr.ml | 15 ++++--- .../test/pbt/test_sc_rollup_encoding.ml | 41 ++++++++++++++++++- 2 files changed, 50 insertions(+), 6 deletions(-) diff --git a/src/proto_alpha/lib_protocol/sc_rollup_inbox_message_repr.ml b/src/proto_alpha/lib_protocol/sc_rollup_inbox_message_repr.ml index 50cdfbf6bd13..05ce21e3eb4d 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_inbox_message_repr.ml +++ b/src/proto_alpha/lib_protocol/sc_rollup_inbox_message_repr.ml @@ -66,36 +66,41 @@ type internal_inbox_message = let internal_inbox_message_encoding = let open Data_encoding in + let kind name = req "internal_inbox_message_kind" (constant name) in union [ case (Tag 0) ~title:"Transfer" - (obj4 + (obj5 + (kind "transfer") (req "payload" Script_repr.expr_encoding) (req "sender" Contract_hash.encoding) (req "source" Signature.Public_key_hash.encoding) (req "destination" Sc_rollup_repr.Address.encoding)) (function | Transfer {payload; sender; source; destination} -> - Some (payload, sender, source, destination) + Some ((), payload, sender, source, destination) | _ -> None) - (fun (payload, sender, source, destination) -> + (fun ((), payload, sender, source, destination) -> Transfer {payload; sender; source; destination}); case (Tag 1) ~title:"Start_of_level" - empty + (obj1 (kind "start_of_level")) (function Start_of_level -> Some () | _ -> None) (fun () -> Start_of_level); case (Tag 2) ~title:"End_of_level" - empty + (obj1 (kind "end_of_level")) (function End_of_level -> Some () | _ -> None) (fun () -> End_of_level); ] +(* TODO: https://gitlab.com/tezos/tezos/-/issues/4027 + We should change the payload of [External] from [bytes] to [string]. *) + type t = Internal of internal_inbox_message | External of string let encoding = diff --git a/src/proto_alpha/lib_protocol/test/pbt/test_sc_rollup_encoding.ml b/src/proto_alpha/lib_protocol/test/pbt/test_sc_rollup_encoding.ml index e718fea50486..a06186cc5957 100644 --- a/src/proto_alpha/lib_protocol/test/pbt/test_sc_rollup_encoding.ml +++ b/src/proto_alpha/lib_protocol/test/pbt/test_sc_rollup_encoding.ml @@ -176,6 +176,31 @@ let gen_conflict = Sc_rollup_refutation_storage. {other; their_commitment; our_commitment; parent_commitment} +let gen_rollup = + let open QCheck2.Gen in + let* bytes = bytes_fixed_gen Sc_rollup_repr.Address.size in + return (Sc_rollup_repr.Address.hash_bytes [bytes]) + +let gen_inbox_message = + let open Gen in + let open Sc_rollup_inbox_message_repr in + let gen_external = + let+ s = small_string ~gen:printable in + External s + in + let gen_sol = return (Internal Start_of_level) in + let gen_eol = return (Internal End_of_level) in + let gen_deposit = + (* We won't test the encoding of these values. It's out of scope. *) + let payload = Script_repr.unit in + let sender = Contract_hash.zero in + let source = Signature.Public_key_hash.zero in + (* But the encoding of the rollup's address is our problem. *) + let+ destination = gen_rollup in + Internal (Transfer {payload; sender; source; destination}) + in + oneof [gen_external; gen_sol; gen_eol; gen_deposit] + (** {2 Tests} *) let test_commitment = @@ -210,7 +235,21 @@ let test_conflict = ~eq:( = ) Sc_rollup_refutation_storage.conflict_encoding +let test_inbox_message = + test_roundtrip + ~count:1_000 + ~title:"Sc_rollup_inbox_message_repr.t" + ~gen:gen_inbox_message + ~eq:( = ) + Sc_rollup_inbox_message_repr.encoding + let tests = - [test_commitment; test_versioned_commitment; test_game; test_conflict] + [ + test_commitment; + test_versioned_commitment; + test_game; + test_conflict; + test_inbox_message; + ] let () = Alcotest.run "SC rollup encoding" [("roundtrip", qcheck_wrap tests)] -- GitLab From 9dad3427737f1d1b286d6e7fbbd0b4e357f1f6ba Mon Sep 17 00:00:00 2001 From: Valentin Chaboche Date: Thu, 20 Oct 2022 16:31:29 +0200 Subject: [PATCH 34/36] Tezt: update regression trace --- ...ctionality (feature_flag_is_disabled).out | 22 +- ...ctionality (rollup_node_dal_subscript.out | 22 +- ...y layer node (rollup_node_downloads_sl.out | 22 +- ...PC API should work and be stable (api).out | 435 ++--- ...- a late rollup should catch up (late).out | 22 +- ...interruption before first inbox (inter.out | 22 +- ...tbox message should be executable (_0).out | 50 +- ...tbox message should be executable (_5).out | 50 +- ...x message should be executable (aux_0).out | 50 +- ...x message should be executable (aux_5).out | 50 +- ...Alpha- arith - consecutive commitments.out | 22 +- ...rith - get genesis info of a sc rollup.out | 22 +- ...nt hash and inbox level of a sc rollup.out | 22 +- ...ce of inbox in the rollup node (basic).out | 77 +- ...inbox in the rollup node (disconnects).out | 132 +- ... the rollup node (handles_chain_reorg).out | 132 +- ...ances PVM state with internal messages.out | 62 +- ... node advances PVM state with messages.out | 333 ++-- ...th - node boots into the initial state.out | 22 +- ...tion of a SCORU executes without error.out | 22 +- ...ssages in the inbox - check inbox size.out | 295 ++- ...orrect handling of commitments (arith).out | 50 +- ...ing of commitments (batcher_does_not_p.out | 1579 ++++++++-------- ...ing of commitments (commitment_is_stor.out | 828 ++++----- ...ing of commitments (first_published_at.out | 28 +- ...ing of commitments (handles_chain_reor.out | 57 +- ...ing of commitments (maintenance_publis.out | 1581 ++++++++--------- ...ndling of commitments (messages_reset).out | 828 ++++----- ...ing of commitments (no_commitment_publ.out | 30 +- ...ing of commitments (node_use_proto_par.out | 435 ++--- ...dling of commitments (non_final_level).out | 824 ++++----- ...ing of commitments (observer_does_not_.out | 1579 ++++++++-------- ...ing of commitments (operator_publishes.out | 1581 ++++++++--------- ...ing of commitments (robust_to_failures.out | 828 ++++----- ...o cement not on top of LCC or disputed.out | 28 +- ... smart contract optimistic rollup node.out | 22 +- ...lpha- ensure arith boot sector is used.out | 101 +- ...ract rollup address through the client.out | 22 +- .../Alpha- list originated rollups.out | 220 +-- ...lpha- originate arith with boot sector.out | 22 +- .../Alpha- refutation game timeout.out | 28 +- ...ation- check the punishment and reward.out | 26 +- .../Alpha- valid dispute dissection.out | 22 +- ...PC API should work and be stable (api).out | 435 ++--- ...- a late rollup should catch up (late).out | 22 +- ...r on interruption before first inbox (.out | 22 +- ...tbox message should be executable (_0).out | 22 +- ...tbox message should be executable (_5).out | 22 +- ...x message should be executable (aux_0).out | 22 +- ...x message should be executable (aux_5).out | 22 +- ...- wasm_2_0_0 - consecutive commitments.out | 22 +- ..._0_0 - get genesis info of a sc rollup.out | 22 +- ...itment hash and inbox level of a sc ro.out | 22 +- ...ce of inbox in the rollup node (basic).out | 77 +- ...inbox in the rollup node (disconnects).out | 132 +- ...n the rollup node (handles_chain_reorg.out | 132 +- ...ances PVM state with internal messages.out | 62 +- ... node advances PVM state with messages.out | 333 ++-- ..._0 - node boots into the initial state.out | 22 +- ...tion of a SCORU executes without error.out | 22 +- ...ssages in the inbox - check inbox size.out | 295 ++- ...handling of commitments (batcher_does_.out | 1579 ++++++++-------- ...handling of commitments (commitment_is.out | 828 ++++----- ...handling of commitments (first_publish.out | 28 +- ...handling of commitments (handles_chain.out | 57 +- ...handling of commitments (maintenance_p.out | 1581 ++++++++--------- ...handling of commitments (messages_rese.out | 828 ++++----- ...handling of commitments (no_commitment.out | 30 +- ...handling of commitments (node_use_prot.out | 435 ++--- ...handling of commitments (non_final_lev.out | 824 ++++----- ...handling of commitments (observer_does.out | 1579 ++++++++-------- ...handling of commitments (operator_publ.out | 1581 ++++++++--------- ...handling of commitments (robust_to_fai.out | 828 ++++----- ...with kernel - no_parse_bad_fingerprint.out | 333 ++-- ...0 - runs with kernel - no_parse_random.out | 333 ++-- .../Alpha- Send tickets in bigmap.out | 8 +- 76 files changed, 11345 insertions(+), 13820 deletions(-) diff --git a/tezt/tests/expected/dal.ml/Alpha- Testing data availability layer functionality (feature_flag_is_disabled).out b/tezt/tests/expected/dal.ml/Alpha- Testing data availability layer functionality (feature_flag_is_disabled).out index 407cffe6a5a7..48bc70e9a114 100644 --- a/tezt/tests/expected/dal.ml/Alpha- Testing data availability layer functionality (feature_flag_is_disabled).out +++ b/tezt/tests/expected/dal.ml/Alpha- Testing data availability layer functionality (feature_flag_is_disabled).out @@ -1,8 +1,8 @@ ./octez-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type unit booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.449 units (will add 100 for safety) -Estimated storage: 6655 bytes added (will add 20 for safety) +Estimated gas: 2909.925 units (will add 100 for safety) +Estimated storage: 6524 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,23 +12,23 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00067 + Fee to the baker: ꜩ0.000649 Expected counter: 1 - Gas limit: 3211 - Storage limit: 6675 bytes + Gas limit: 3010 + Storage limit: 6544 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00067 - payload fees(the block proposer) ....... +ꜩ0.00067 + [PUBLIC_KEY_HASH] ... -ꜩ0.000649 + payload fees(the block proposer) ....... +ꜩ0.000649 Smart contract rollup origination: Kind: arith Parameter type: unit Boot sector Blake2B hash: '0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8' This smart contract rollup origination was successfully applied - Consumed gas: 3110.449 - Storage size: 6655 bytes + Consumed gas: 2909.925 + Storage size: 6524 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.66375 - storage fees ........................... +ꜩ1.66375 + [PUBLIC_KEY_HASH] ... -ꜩ1.631 + storage fees ........................... +ꜩ1.631 diff --git a/tezt/tests/expected/dal.ml/Alpha- Testing data availability layer functionality (rollup_node_dal_subscript.out b/tezt/tests/expected/dal.ml/Alpha- Testing data availability layer functionality (rollup_node_dal_subscript.out index 17fe5133e8f1..43194a77da0d 100644 --- a/tezt/tests/expected/dal.ml/Alpha- Testing data availability layer functionality (rollup_node_dal_subscript.out +++ b/tezt/tests/expected/dal.ml/Alpha- Testing data availability layer functionality (rollup_node_dal_subscript.out @@ -1,8 +1,8 @@ ./octez-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type unit booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.449 units (will add 100 for safety) -Estimated storage: 6655 bytes added (will add 20 for safety) +Estimated gas: 2909.925 units (will add 100 for safety) +Estimated storage: 6524 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,25 +12,25 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00067 + Fee to the baker: ꜩ0.000649 Expected counter: 1 - Gas limit: 3211 - Storage limit: 6675 bytes + Gas limit: 3010 + Storage limit: 6544 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00067 - payload fees(the block proposer) ....... +ꜩ0.00067 + [PUBLIC_KEY_HASH] ... -ꜩ0.000649 + payload fees(the block proposer) ....... +ꜩ0.000649 Smart contract rollup origination: Kind: arith Parameter type: unit Boot sector Blake2B hash: '0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8' This smart contract rollup origination was successfully applied - Consumed gas: 3110.449 - Storage size: 6655 bytes + Consumed gas: 2909.925 + Storage size: 6524 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.66375 - storage fees ........................... +ꜩ1.66375 + [PUBLIC_KEY_HASH] ... -ꜩ1.631 + storage fees ........................... +ꜩ1.631 ./octez-client rpc get '/chains/main/blocks/head/context/sc_rollup/[SC_ROLLUP_HASH]/genesis_info' diff --git a/tezt/tests/expected/dal.ml/Alpha- Testing rollup and Data availability layer node (rollup_node_downloads_sl.out b/tezt/tests/expected/dal.ml/Alpha- Testing rollup and Data availability layer node (rollup_node_downloads_sl.out index aad878a4f33c..45821d4931e2 100644 --- a/tezt/tests/expected/dal.ml/Alpha- Testing rollup and Data availability layer node (rollup_node_downloads_sl.out +++ b/tezt/tests/expected/dal.ml/Alpha- Testing rollup and Data availability layer node (rollup_node_downloads_sl.out @@ -1,8 +1,8 @@ ./octez-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type unit booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.449 units (will add 100 for safety) -Estimated storage: 6655 bytes added (will add 20 for safety) +Estimated gas: 2909.925 units (will add 100 for safety) +Estimated storage: 6524 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,25 +12,25 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00067 + Fee to the baker: ꜩ0.000649 Expected counter: 1 - Gas limit: 3211 - Storage limit: 6675 bytes + Gas limit: 3010 + Storage limit: 6544 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00067 - payload fees(the block proposer) ....... +ꜩ0.00067 + [PUBLIC_KEY_HASH] ... -ꜩ0.000649 + payload fees(the block proposer) ....... +ꜩ0.000649 Smart contract rollup origination: Kind: arith Parameter type: unit Boot sector Blake2B hash: '0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8' This smart contract rollup origination was successfully applied - Consumed gas: 3110.449 - Storage size: 6655 bytes + Consumed gas: 2909.925 + Storage size: 6524 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.66375 - storage fees ........................... +ꜩ1.66375 + [PUBLIC_KEY_HASH] ... -ꜩ1.631 + storage fees ........................... +ꜩ1.631 ./octez-client rpc get '/chains/main/blocks/head/context/sc_rollup/[SC_ROLLUP_HASH]/genesis_info' diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - RPC API should work and be stable (api).out b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - RPC API should work and be stable (api).out index cad9a8c05110..e2bd94008365 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - RPC API should work and be stable (api).out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - RPC API should work and be stable (api).out @@ -1,8 +1,8 @@ ./octez-client --wait none originate sc rollup from bootstrap1 of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.449 units (will add 100 for safety) -Estimated storage: 6655 bytes added (will add 20 for safety) +Estimated gas: 2909.925 units (will add 100 for safety) +Estimated storage: 6524 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,33 +12,33 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00067 + Fee to the baker: ꜩ0.000649 Expected counter: 1 - Gas limit: 3211 - Storage limit: 6675 bytes + Gas limit: 3010 + Storage limit: 6544 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00067 - payload fees(the block proposer) ....... +ꜩ0.00067 + [PUBLIC_KEY_HASH] ... -ꜩ0.000649 + payload fees(the block proposer) ....... +ꜩ0.000649 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector Blake2B hash: '0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8' This smart contract rollup origination was successfully applied - Consumed gas: 3110.449 - Storage size: 6655 bytes + Consumed gas: 2909.925 + Storage size: 6524 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.66375 - storage fees ........................... +ꜩ1.66375 + [PUBLIC_KEY_HASH] ... -ꜩ1.631 + storage fees ........................... +ꜩ1.631 ./octez-sc-rollup-client-alpha rpc get /global/sc_rollup_address "[SC_ROLLUP_HASH]" -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1879.106 units (will add 100 for safety) +Estimated gas: 1002.980 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -49,35 +49,33 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000527 + Fee to the baker: ꜩ0.000399 Expected counter: 1 - Gas limit: 1980 + Gas limit: 1103 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000527 - payload fees(the block proposer) ....... +ꜩ0.000527 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000399 + payload fees(the block proposer) ....... +ꜩ0.000399 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1879.234 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 3 + Consumed gas: 1002.980 + Resulting inbox state: { level = 3 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 5 - starting_level_of_current_commitment_period = 2 - message_counter = 5 + nb_messages_in_commitment_period = 10 + message_counter = 6 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 1 + index = 2 back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1879.328 units (will add 100 for safety) +Estimated gas: 1002.980 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -88,36 +86,33 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000527 + Fee to the baker: ꜩ0.000399 Expected counter: 2 - Gas limit: 1980 + Gas limit: 1103 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000527 - payload fees(the block proposer) ....... +ꜩ0.000527 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000399 + payload fees(the block proposer) ....... +ꜩ0.000399 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1879.456 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 4 + Consumed gas: 1002.980 + Resulting inbox state: { level = 4 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 10 - starting_level_of_current_commitment_period = 2 - message_counter = 5 + nb_messages_in_commitment_period = 17 + message_counter = 6 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 2 + index = 3 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1879.535 units (will add 100 for safety) +Estimated gas: 1002.980 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -128,36 +123,34 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000527 + Fee to the baker: ꜩ0.000399 Expected counter: 3 - Gas limit: 1980 + Gas limit: 1103 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000527 - payload fees(the block proposer) ....... +ꜩ0.000527 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000399 + payload fees(the block proposer) ....... +ꜩ0.000399 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1879.535 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 5 + Consumed gas: 1002.980 + Resulting inbox state: { level = 5 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 15 - starting_level_of_current_commitment_period = 2 - message_counter = 5 + nb_messages_in_commitment_period = 24 + message_counter = 6 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 3 + index = 4 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1879.535 units (will add 100 for safety) +Estimated gas: 1002.980 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -168,27 +161,24 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000527 + Fee to the baker: ꜩ0.000399 Expected counter: 4 - Gas limit: 1980 + Gas limit: 1103 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000527 - payload fees(the block proposer) ....... +ꜩ0.000527 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000399 + payload fees(the block proposer) ....... +ꜩ0.000399 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1879.663 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 6 + Consumed gas: 1002.980 + Resulting inbox state: { level = 6 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 20 - starting_level_of_current_commitment_period = 2 - message_counter = 5 + nb_messages_in_commitment_period = 31 + message_counter = 6 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 4 + index = 5 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] @@ -196,9 +186,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1879.742 units (will add 100 for safety) +Estimated gas: 1002.980 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -209,27 +199,24 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000527 + Fee to the baker: ꜩ0.000399 Expected counter: 5 - Gas limit: 1980 + Gas limit: 1103 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000527 - payload fees(the block proposer) ....... +ꜩ0.000527 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000399 + payload fees(the block proposer) ....... +ꜩ0.000399 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1879.742 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 7 + Consumed gas: 1002.980 + Resulting inbox state: { level = 7 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 25 - starting_level_of_current_commitment_period = 2 - message_counter = 5 + nb_messages_in_commitment_period = 38 + message_counter = 6 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 5 + index = 6 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] @@ -237,9 +224,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1879.742 units (will add 100 for safety) +Estimated gas: 1002.980 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -250,27 +237,24 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000527 + Fee to the baker: ꜩ0.000399 Expected counter: 6 - Gas limit: 1980 + Gas limit: 1103 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000527 - payload fees(the block proposer) ....... +ꜩ0.000527 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000399 + payload fees(the block proposer) ....... +ꜩ0.000399 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1879.742 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 8 + Consumed gas: 1002.980 + Resulting inbox state: { level = 8 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 30 - starting_level_of_current_commitment_period = 2 - message_counter = 5 + nb_messages_in_commitment_period = 45 + message_counter = 6 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 6 + index = 7 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] @@ -278,9 +262,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1879.742 units (will add 100 for safety) +Estimated gas: 1002.980 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -291,37 +275,35 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000527 + Fee to the baker: ꜩ0.000399 Expected counter: 7 - Gas limit: 1980 + Gas limit: 1103 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000527 - payload fees(the block proposer) ....... +ꜩ0.000527 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000399 + payload fees(the block proposer) ....... +ꜩ0.000399 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1879.742 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 9 + Consumed gas: 1002.980 + Resulting inbox state: { level = 9 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 35 - starting_level_of_current_commitment_period = 2 - message_counter = 5 + nb_messages_in_commitment_period = 52 + message_counter = 6 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 7 + index = 8 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1879.742 units (will add 100 for safety) +Estimated gas: 1002.980 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -332,27 +314,24 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000527 + Fee to the baker: ꜩ0.000399 Expected counter: 8 - Gas limit: 1980 + Gas limit: 1103 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000527 - payload fees(the block proposer) ....... +ꜩ0.000527 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000399 + payload fees(the block proposer) ....... +ꜩ0.000399 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1879.870 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 10 + Consumed gas: 1002.980 + Resulting inbox state: { level = 10 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 40 - starting_level_of_current_commitment_period = 2 - message_counter = 5 + nb_messages_in_commitment_period = 59 + message_counter = 6 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 8 + index = 9 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] @@ -361,9 +340,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1879.949 units (will add 100 for safety) +Estimated gas: 1002.980 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -374,27 +353,24 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000527 + Fee to the baker: ꜩ0.000399 Expected counter: 9 - Gas limit: 1980 + Gas limit: 1103 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000527 - payload fees(the block proposer) ....... +ꜩ0.000527 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000399 + payload fees(the block proposer) ....... +ꜩ0.000399 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1879.949 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 11 + Consumed gas: 1002.980 + Resulting inbox state: { level = 11 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 45 - starting_level_of_current_commitment_period = 2 - message_counter = 5 + nb_messages_in_commitment_period = 66 + message_counter = 6 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 9 + index = 10 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] @@ -403,9 +379,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1879.949 units (will add 100 for safety) +Estimated gas: 1002.980 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -416,27 +392,24 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000527 + Fee to the baker: ꜩ0.000399 Expected counter: 10 - Gas limit: 1980 + Gas limit: 1103 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000527 - payload fees(the block proposer) ....... +ꜩ0.000527 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000399 + payload fees(the block proposer) ....... +ꜩ0.000399 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1879.949 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 12 + Consumed gas: 1002.980 + Resulting inbox state: { level = 12 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 50 - starting_level_of_current_commitment_period = 2 - message_counter = 5 + nb_messages_in_commitment_period = 73 + message_counter = 6 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 10 + index = 11 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] @@ -445,9 +418,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1879.949 units (will add 100 for safety) +Estimated gas: 1002.980 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -458,27 +431,24 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000527 + Fee to the baker: ꜩ0.000399 Expected counter: 11 - Gas limit: 1980 + Gas limit: 1103 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000527 - payload fees(the block proposer) ....... +ꜩ0.000527 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000399 + payload fees(the block proposer) ....... +ꜩ0.000399 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1879.949 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 13 + Consumed gas: 1002.980 + Resulting inbox state: { level = 13 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 55 - starting_level_of_current_commitment_period = 2 - message_counter = 5 + nb_messages_in_commitment_period = 80 + message_counter = 6 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 11 + index = 12 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] @@ -487,9 +457,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1879.949 units (will add 100 for safety) +Estimated gas: 1002.980 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -500,27 +470,24 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000527 + Fee to the baker: ꜩ0.000399 Expected counter: 12 - Gas limit: 1980 + Gas limit: 1103 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000527 - payload fees(the block proposer) ....... +ꜩ0.000527 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000399 + payload fees(the block proposer) ....... +ꜩ0.000399 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1879.949 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 14 + Consumed gas: 1002.980 + Resulting inbox state: { level = 14 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 60 - starting_level_of_current_commitment_period = 2 - message_counter = 5 + nb_messages_in_commitment_period = 87 + message_counter = 6 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 12 + index = 13 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] @@ -529,9 +496,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1879.949 units (will add 100 for safety) +Estimated gas: 1002.980 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -542,27 +509,24 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000527 + Fee to the baker: ꜩ0.000399 Expected counter: 13 - Gas limit: 1980 + Gas limit: 1103 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000527 - payload fees(the block proposer) ....... +ꜩ0.000527 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000399 + payload fees(the block proposer) ....... +ꜩ0.000399 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1879.949 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 15 + Consumed gas: 1002.980 + Resulting inbox state: { level = 15 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 65 - starting_level_of_current_commitment_period = 2 - message_counter = 5 + nb_messages_in_commitment_period = 94 + message_counter = 6 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 13 + index = 14 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] @@ -571,9 +535,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1879.949 units (will add 100 for safety) +Estimated gas: 1002.980 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -584,27 +548,24 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000527 + Fee to the baker: ꜩ0.000399 Expected counter: 14 - Gas limit: 1980 + Gas limit: 1103 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000527 - payload fees(the block proposer) ....... +ꜩ0.000527 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000399 + payload fees(the block proposer) ....... +ꜩ0.000399 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1879.949 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 16 + Consumed gas: 1002.980 + Resulting inbox state: { level = 16 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 70 - starting_level_of_current_commitment_period = 2 - message_counter = 5 + nb_messages_in_commitment_period = 101 + message_counter = 6 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 14 + index = 15 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] @@ -613,9 +574,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1879.949 units (will add 100 for safety) +Estimated gas: 1002.980 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -626,31 +587,29 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000527 + Fee to the baker: ꜩ0.000399 Expected counter: 15 - Gas limit: 1980 + Gas limit: 1103 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000527 - payload fees(the block proposer) ....... +ꜩ0.000527 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000399 + payload fees(the block proposer) ....... +ꜩ0.000399 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1879.949 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 17 + Consumed gas: 1002.980 + Resulting inbox state: { level = 17 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 75 - starting_level_of_current_commitment_period = 2 - message_counter = 5 + nb_messages_in_commitment_period = 108 + message_counter = 6 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 15 + index = 16 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] } @@ -665,13 +624,13 @@ This sequence of operations was run: 15 ./octez-sc-rollup-client-alpha rpc get /global/block/head/num_messages -"5" +"7" ./octez-sc-rollup-client-alpha rpc get /global/block/head/status "Waiting for input message" ./octez-sc-rollup-client-alpha rpc get /global/block/head/ticks -"55" +"57" ./octez-sc-rollup-client-alpha rpc get /global/block/head/state_hash "[SC_ROLLUP_PVM_STATE_HASH]" diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - a late rollup should catch up (late).out b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - a late rollup should catch up (late).out index e4468239ac81..c0e2762bcae7 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - a late rollup should catch up (late).out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - a late rollup should catch up (late).out @@ -1,8 +1,8 @@ ./octez-client --wait none originate sc rollup from bootstrap1 of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.449 units (will add 100 for safety) -Estimated storage: 6655 bytes added (will add 20 for safety) +Estimated gas: 2909.925 units (will add 100 for safety) +Estimated storage: 6524 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,23 +12,23 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00067 + Fee to the baker: ꜩ0.000649 Expected counter: 1 - Gas limit: 3211 - Storage limit: 6675 bytes + Gas limit: 3010 + Storage limit: 6544 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00067 - payload fees(the block proposer) ....... +ꜩ0.00067 + [PUBLIC_KEY_HASH] ... -ꜩ0.000649 + payload fees(the block proposer) ....... +ꜩ0.000649 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector Blake2B hash: '0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8' This smart contract rollup origination was successfully applied - Consumed gas: 3110.449 - Storage size: 6655 bytes + Consumed gas: 2909.925 + Storage size: 6524 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.66375 - storage fees ........................... +ꜩ1.66375 + [PUBLIC_KEY_HASH] ... -ꜩ1.631 + storage fees ........................... +ꜩ1.631 diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - a rollup should recover on interruption before first inbox (inter.out b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - a rollup should recover on interruption before first inbox (inter.out index e4468239ac81..c0e2762bcae7 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - a rollup should recover on interruption before first inbox (inter.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - a rollup should recover on interruption before first inbox (inter.out @@ -1,8 +1,8 @@ ./octez-client --wait none originate sc rollup from bootstrap1 of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.449 units (will add 100 for safety) -Estimated storage: 6655 bytes added (will add 20 for safety) +Estimated gas: 2909.925 units (will add 100 for safety) +Estimated storage: 6524 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,23 +12,23 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00067 + Fee to the baker: ꜩ0.000649 Expected counter: 1 - Gas limit: 3211 - Storage limit: 6675 bytes + Gas limit: 3010 + Storage limit: 6544 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00067 - payload fees(the block proposer) ....... +ꜩ0.00067 + [PUBLIC_KEY_HASH] ... -ꜩ0.000649 + payload fees(the block proposer) ....... +ꜩ0.000649 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector Blake2B hash: '0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8' This smart contract rollup origination was successfully applied - Consumed gas: 3110.449 - Storage size: 6655 bytes + Consumed gas: 2909.925 + Storage size: 6524 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.66375 - storage fees ........................... +ꜩ1.66375 + [PUBLIC_KEY_HASH] ... -ꜩ1.631 + storage fees ........................... +ꜩ1.631 diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - an outbox message should be executable (_0).out b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - an outbox message should be executable (_0).out index 52d9e253387e..d05fb38f92b6 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - an outbox message should be executable (_0).out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - an outbox message should be executable (_0).out @@ -1,8 +1,8 @@ ./octez-client --wait none originate sc rollup from bootstrap1 of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.449 units (will add 100 for safety) -Estimated storage: 6655 bytes added (will add 20 for safety) +Estimated gas: 2909.925 units (will add 100 for safety) +Estimated storage: 6524 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,30 +12,30 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00067 + Fee to the baker: ꜩ0.000649 Expected counter: 1 - Gas limit: 3211 - Storage limit: 6675 bytes + Gas limit: 3010 + Storage limit: 6544 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00067 - payload fees(the block proposer) ....... +ꜩ0.00067 + [PUBLIC_KEY_HASH] ... -ꜩ0.000649 + payload fees(the block proposer) ....... +ꜩ0.000649 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector Blake2B hash: '0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8' This smart contract rollup origination was successfully applied - Consumed gas: 3110.449 - Storage size: 6655 bytes + Consumed gas: 2909.925 + Storage size: 6524 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.66375 - storage fees ........................... +ꜩ1.66375 + [PUBLIC_KEY_HASH] ... -ꜩ1.631 + storage fees ........................... +ꜩ1.631 -./octez-client --wait none send sc rollup message 'text:["37 [CONTRACT_HASH]"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["37 [CONTRACT_HASH]"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1877.377 units (will add 100 for safety) +Estimated gas: 1001.123 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -46,28 +46,26 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00051 + Fee to the baker: ꜩ0.000382 Expected counter: 1 - Gas limit: 1978 + Gas limit: 1102 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00051 - payload fees(the block proposer) ....... +ꜩ0.00051 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000382 + payload fees(the block proposer) ....... +ꜩ0.000382 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1877.377 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 4 + Consumed gas: 1001.123 + Resulting inbox state: { level = 4 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 1 - starting_level_of_current_commitment_period = 4 - message_counter = 1 + nb_messages_in_commitment_period = 8 + message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 1 + index = 3 back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] } diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - an outbox message should be executable (_5).out b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - an outbox message should be executable (_5).out index 52d9e253387e..d05fb38f92b6 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - an outbox message should be executable (_5).out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - an outbox message should be executable (_5).out @@ -1,8 +1,8 @@ ./octez-client --wait none originate sc rollup from bootstrap1 of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.449 units (will add 100 for safety) -Estimated storage: 6655 bytes added (will add 20 for safety) +Estimated gas: 2909.925 units (will add 100 for safety) +Estimated storage: 6524 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,30 +12,30 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00067 + Fee to the baker: ꜩ0.000649 Expected counter: 1 - Gas limit: 3211 - Storage limit: 6675 bytes + Gas limit: 3010 + Storage limit: 6544 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00067 - payload fees(the block proposer) ....... +ꜩ0.00067 + [PUBLIC_KEY_HASH] ... -ꜩ0.000649 + payload fees(the block proposer) ....... +ꜩ0.000649 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector Blake2B hash: '0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8' This smart contract rollup origination was successfully applied - Consumed gas: 3110.449 - Storage size: 6655 bytes + Consumed gas: 2909.925 + Storage size: 6524 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.66375 - storage fees ........................... +ꜩ1.66375 + [PUBLIC_KEY_HASH] ... -ꜩ1.631 + storage fees ........................... +ꜩ1.631 -./octez-client --wait none send sc rollup message 'text:["37 [CONTRACT_HASH]"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["37 [CONTRACT_HASH]"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1877.377 units (will add 100 for safety) +Estimated gas: 1001.123 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -46,28 +46,26 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00051 + Fee to the baker: ꜩ0.000382 Expected counter: 1 - Gas limit: 1978 + Gas limit: 1102 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00051 - payload fees(the block proposer) ....... +ꜩ0.00051 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000382 + payload fees(the block proposer) ....... +ꜩ0.000382 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1877.377 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 4 + Consumed gas: 1001.123 + Resulting inbox state: { level = 4 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 1 - starting_level_of_current_commitment_period = 4 - message_counter = 1 + nb_messages_in_commitment_period = 8 + message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 1 + index = 3 back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] } diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - an outbox message should be executable (aux_0).out b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - an outbox message should be executable (aux_0).out index e0d29a0898f7..3ec555553ad6 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - an outbox message should be executable (aux_0).out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - an outbox message should be executable (aux_0).out @@ -1,8 +1,8 @@ ./octez-client --wait none originate sc rollup from bootstrap1 of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.449 units (will add 100 for safety) -Estimated storage: 6655 bytes added (will add 20 for safety) +Estimated gas: 2909.925 units (will add 100 for safety) +Estimated storage: 6524 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,30 +12,30 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00067 + Fee to the baker: ꜩ0.000649 Expected counter: 1 - Gas limit: 3211 - Storage limit: 6675 bytes + Gas limit: 3010 + Storage limit: 6544 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00067 - payload fees(the block proposer) ....... +ꜩ0.00067 + [PUBLIC_KEY_HASH] ... -ꜩ0.000649 + payload fees(the block proposer) ....... +ꜩ0.000649 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector Blake2B hash: '0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8' This smart contract rollup origination was successfully applied - Consumed gas: 3110.449 - Storage size: 6655 bytes + Consumed gas: 2909.925 + Storage size: 6524 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.66375 - storage fees ........................... +ꜩ1.66375 + [PUBLIC_KEY_HASH] ... -ꜩ1.631 + storage fees ........................... +ꜩ1.631 -./octez-client --wait none send sc rollup message 'text:["37 [CONTRACT_HASH]%aux"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["37 [CONTRACT_HASH]%aux"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1877.445 units (will add 100 for safety) +Estimated gas: 1001.191 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -46,28 +46,26 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000514 + Fee to the baker: ꜩ0.000386 Expected counter: 1 - Gas limit: 1978 + Gas limit: 1102 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000514 - payload fees(the block proposer) ....... +ꜩ0.000514 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000386 + payload fees(the block proposer) ....... +ꜩ0.000386 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1877.445 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 4 + Consumed gas: 1001.191 + Resulting inbox state: { level = 4 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 1 - starting_level_of_current_commitment_period = 4 - message_counter = 1 + nb_messages_in_commitment_period = 8 + message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 1 + index = 3 back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] } diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - an outbox message should be executable (aux_5).out b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - an outbox message should be executable (aux_5).out index e0d29a0898f7..3ec555553ad6 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - an outbox message should be executable (aux_5).out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - an outbox message should be executable (aux_5).out @@ -1,8 +1,8 @@ ./octez-client --wait none originate sc rollup from bootstrap1 of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.449 units (will add 100 for safety) -Estimated storage: 6655 bytes added (will add 20 for safety) +Estimated gas: 2909.925 units (will add 100 for safety) +Estimated storage: 6524 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,30 +12,30 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00067 + Fee to the baker: ꜩ0.000649 Expected counter: 1 - Gas limit: 3211 - Storage limit: 6675 bytes + Gas limit: 3010 + Storage limit: 6544 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00067 - payload fees(the block proposer) ....... +ꜩ0.00067 + [PUBLIC_KEY_HASH] ... -ꜩ0.000649 + payload fees(the block proposer) ....... +ꜩ0.000649 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector Blake2B hash: '0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8' This smart contract rollup origination was successfully applied - Consumed gas: 3110.449 - Storage size: 6655 bytes + Consumed gas: 2909.925 + Storage size: 6524 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.66375 - storage fees ........................... +ꜩ1.66375 + [PUBLIC_KEY_HASH] ... -ꜩ1.631 + storage fees ........................... +ꜩ1.631 -./octez-client --wait none send sc rollup message 'text:["37 [CONTRACT_HASH]%aux"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["37 [CONTRACT_HASH]%aux"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1877.445 units (will add 100 for safety) +Estimated gas: 1001.191 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -46,28 +46,26 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000514 + Fee to the baker: ꜩ0.000386 Expected counter: 1 - Gas limit: 1978 + Gas limit: 1102 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000514 - payload fees(the block proposer) ....... +ꜩ0.000514 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000386 + payload fees(the block proposer) ....... +ꜩ0.000386 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1877.445 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 4 + Consumed gas: 1001.191 + Resulting inbox state: { level = 4 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 1 - starting_level_of_current_commitment_period = 4 - message_counter = 1 + nb_messages_in_commitment_period = 8 + message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 1 + index = 3 back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] } diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - consecutive commitments.out b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - consecutive commitments.out index 12fb44a8bab2..148a3dca79fb 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - consecutive commitments.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - consecutive commitments.out @@ -1,8 +1,8 @@ ./octez-client --wait none originate sc rollup from bootstrap1 of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.449 units (will add 100 for safety) -Estimated storage: 6655 bytes added (will add 20 for safety) +Estimated gas: 2909.925 units (will add 100 for safety) +Estimated storage: 6524 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,25 +12,25 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00067 + Fee to the baker: ꜩ0.000649 Expected counter: 1 - Gas limit: 3211 - Storage limit: 6675 bytes + Gas limit: 3010 + Storage limit: 6544 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00067 - payload fees(the block proposer) ....... +ꜩ0.00067 + [PUBLIC_KEY_HASH] ... -ꜩ0.000649 + payload fees(the block proposer) ....... +ꜩ0.000649 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector Blake2B hash: '0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8' This smart contract rollup origination was successfully applied - Consumed gas: 3110.449 - Storage size: 6655 bytes + Consumed gas: 2909.925 + Storage size: 6524 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.66375 - storage fees ........................... +ꜩ1.66375 + [PUBLIC_KEY_HASH] ... -ꜩ1.631 + storage fees ........................... +ꜩ1.631 ./octez-client --wait none publish commitment from '[PUBLIC_KEY_HASH]' for sc rollup '[SC_ROLLUP_HASH]' with compressed state '[SC_ROLLUP_PVM_STATE_HASH]' at inbox level 32 and predecessor '[SC_ROLLUP_COMMITMENT_HASH]' and number of ticks 1 diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - get genesis info of a sc rollup.out b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - get genesis info of a sc rollup.out index e4468239ac81..c0e2762bcae7 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - get genesis info of a sc rollup.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - get genesis info of a sc rollup.out @@ -1,8 +1,8 @@ ./octez-client --wait none originate sc rollup from bootstrap1 of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.449 units (will add 100 for safety) -Estimated storage: 6655 bytes added (will add 20 for safety) +Estimated gas: 2909.925 units (will add 100 for safety) +Estimated storage: 6524 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,23 +12,23 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00067 + Fee to the baker: ꜩ0.000649 Expected counter: 1 - Gas limit: 3211 - Storage limit: 6675 bytes + Gas limit: 3010 + Storage limit: 6544 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00067 - payload fees(the block proposer) ....... +ꜩ0.00067 + [PUBLIC_KEY_HASH] ... -ꜩ0.000649 + payload fees(the block proposer) ....... +ꜩ0.000649 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector Blake2B hash: '0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8' This smart contract rollup origination was successfully applied - Consumed gas: 3110.449 - Storage size: 6655 bytes + Consumed gas: 2909.925 + Storage size: 6524 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.66375 - storage fees ........................... +ꜩ1.66375 + [PUBLIC_KEY_HASH] ... -ꜩ1.631 + storage fees ........................... +ꜩ1.631 diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - get last cemented commitment hash and inbox level of a sc rollup.out b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - get last cemented commitment hash and inbox level of a sc rollup.out index e4468239ac81..c0e2762bcae7 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - get last cemented commitment hash and inbox level of a sc rollup.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - get last cemented commitment hash and inbox level of a sc rollup.out @@ -1,8 +1,8 @@ ./octez-client --wait none originate sc rollup from bootstrap1 of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.449 units (will add 100 for safety) -Estimated storage: 6655 bytes added (will add 20 for safety) +Estimated gas: 2909.925 units (will add 100 for safety) +Estimated storage: 6524 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,23 +12,23 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00067 + Fee to the baker: ꜩ0.000649 Expected counter: 1 - Gas limit: 3211 - Storage limit: 6675 bytes + Gas limit: 3010 + Storage limit: 6544 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00067 - payload fees(the block proposer) ....... +ꜩ0.00067 + [PUBLIC_KEY_HASH] ... -ꜩ0.000649 + payload fees(the block proposer) ....... +ꜩ0.000649 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector Blake2B hash: '0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8' This smart contract rollup origination was successfully applied - Consumed gas: 3110.449 - Storage size: 6655 bytes + Consumed gas: 2909.925 + Storage size: 6524 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.66375 - storage fees ........................... +ꜩ1.66375 + [PUBLIC_KEY_HASH] ... -ꜩ1.631 + storage fees ........................... +ꜩ1.631 diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - maintenance of inbox in the rollup node (basic).out b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - maintenance of inbox in the rollup node (basic).out index c6dcaf46d996..68a99274801e 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - maintenance of inbox in the rollup node (basic).out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - maintenance of inbox in the rollup node (basic).out @@ -1,8 +1,8 @@ ./octez-client --wait none originate sc rollup from bootstrap1 of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.449 units (will add 100 for safety) -Estimated storage: 6655 bytes added (will add 20 for safety) +Estimated gas: 2909.925 units (will add 100 for safety) +Estimated storage: 6524 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,30 +12,30 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00067 + Fee to the baker: ꜩ0.000649 Expected counter: 1 - Gas limit: 3211 - Storage limit: 6675 bytes + Gas limit: 3010 + Storage limit: 6544 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00067 - payload fees(the block proposer) ....... +ꜩ0.00067 + [PUBLIC_KEY_HASH] ... -ꜩ0.000649 + payload fees(the block proposer) ....... +ꜩ0.000649 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector Blake2B hash: '0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8' This smart contract rollup origination was successfully applied - Consumed gas: 3110.449 - Storage size: 6655 bytes + Consumed gas: 2909.925 + Storage size: 6524 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.66375 - storage fees ........................... +ꜩ1.66375 + [PUBLIC_KEY_HASH] ... -ꜩ1.631 + storage fees ........................... +ꜩ1.631 -./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1876.722 units (will add 100 for safety) +Estimated gas: 1000.596 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -46,35 +46,33 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000479 + Fee to the baker: ꜩ0.000351 Expected counter: 1 - Gas limit: 1977 + Gas limit: 1101 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000479 - payload fees(the block proposer) ....... +ꜩ0.000479 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000351 + payload fees(the block proposer) ....... +ꜩ0.000351 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1876.850 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 3 + Consumed gas: 1000.596 + Resulting inbox state: { level = 3 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 1 - starting_level_of_current_commitment_period = 2 - message_counter = 1 + nb_messages_in_commitment_period = 6 + message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 1 + index = 2 back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1877.540 units (will add 100 for safety) +Estimated gas: 1001.192 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -85,27 +83,24 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000491 + Fee to the baker: ꜩ0.000363 Expected counter: 2 - Gas limit: 1978 + Gas limit: 1102 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000491 - payload fees(the block proposer) ....... +ꜩ0.000491 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000363 + payload fees(the block proposer) ....... +ꜩ0.000363 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1877.668 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 4 + Consumed gas: 1001.192 + Resulting inbox state: { level = 4 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 3 - starting_level_of_current_commitment_period = 2 - message_counter = 2 + nb_messages_in_commitment_period = 10 + message_counter = 3 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 2 + index = 3 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - maintenance of inbox in the rollup node (disconnects).out b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - maintenance of inbox in the rollup node (disconnects).out index 30e64cf249ea..7d378f56094e 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - maintenance of inbox in the rollup node (disconnects).out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - maintenance of inbox in the rollup node (disconnects).out @@ -1,8 +1,8 @@ ./octez-client --wait none originate sc rollup from bootstrap1 of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.449 units (will add 100 for safety) -Estimated storage: 6655 bytes added (will add 20 for safety) +Estimated gas: 2909.925 units (will add 100 for safety) +Estimated storage: 6524 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,30 +12,30 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00067 + Fee to the baker: ꜩ0.000649 Expected counter: 1 - Gas limit: 3211 - Storage limit: 6675 bytes + Gas limit: 3010 + Storage limit: 6544 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00067 - payload fees(the block proposer) ....... +ꜩ0.00067 + [PUBLIC_KEY_HASH] ... -ꜩ0.000649 + payload fees(the block proposer) ....... +ꜩ0.000649 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector Blake2B hash: '0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8' This smart contract rollup origination was successfully applied - Consumed gas: 3110.449 - Storage size: 6655 bytes + Consumed gas: 2909.925 + Storage size: 6524 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.66375 - storage fees ........................... +ꜩ1.66375 + [PUBLIC_KEY_HASH] ... -ꜩ1.631 + storage fees ........................... +ꜩ1.631 -./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1876.722 units (will add 100 for safety) +Estimated gas: 1000.596 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -46,35 +46,33 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000479 + Fee to the baker: ꜩ0.000351 Expected counter: 1 - Gas limit: 1977 + Gas limit: 1101 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000479 - payload fees(the block proposer) ....... +ꜩ0.000479 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000351 + payload fees(the block proposer) ....... +ꜩ0.000351 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1876.850 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 3 + Consumed gas: 1000.596 + Resulting inbox state: { level = 3 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 1 - starting_level_of_current_commitment_period = 2 - message_counter = 1 + nb_messages_in_commitment_period = 6 + message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 1 + index = 2 back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1877.540 units (will add 100 for safety) +Estimated gas: 1001.192 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -85,36 +83,33 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000491 + Fee to the baker: ꜩ0.000363 Expected counter: 2 - Gas limit: 1978 + Gas limit: 1102 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000491 - payload fees(the block proposer) ....... +ꜩ0.000491 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000363 + payload fees(the block proposer) ....... +ꜩ0.000363 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1877.668 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 4 + Consumed gas: 1001.192 + Resulting inbox state: { level = 4 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 3 - starting_level_of_current_commitment_period = 2 - message_counter = 2 + nb_messages_in_commitment_period = 10 + message_counter = 3 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 2 + index = 3 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1877.151 units (will add 100 for safety) +Estimated gas: 1000.596 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -125,36 +120,34 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000479 + Fee to the baker: ꜩ0.000351 Expected counter: 3 - Gas limit: 1978 + Gas limit: 1101 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000479 - payload fees(the block proposer) ....... +ꜩ0.000479 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000351 + payload fees(the block proposer) ....... +ꜩ0.000351 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1877.151 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 5 + Consumed gas: 1000.596 + Resulting inbox state: { level = 5 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 4 - starting_level_of_current_commitment_period = 2 - message_counter = 1 + nb_messages_in_commitment_period = 13 + message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 3 + index = 4 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1877.747 units (will add 100 for safety) +Estimated gas: 1001.192 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -165,27 +158,24 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000491 + Fee to the baker: ꜩ0.000363 Expected counter: 4 - Gas limit: 1978 + Gas limit: 1102 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000491 - payload fees(the block proposer) ....... +ꜩ0.000491 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000363 + payload fees(the block proposer) ....... +ꜩ0.000363 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1877.875 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 6 + Consumed gas: 1001.192 + Resulting inbox state: { level = 6 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 6 - starting_level_of_current_commitment_period = 2 - message_counter = 2 + nb_messages_in_commitment_period = 17 + message_counter = 3 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 4 + index = 5 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - maintenance of inbox in the rollup node (handles_chain_reorg).out b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - maintenance of inbox in the rollup node (handles_chain_reorg).out index 93aee625c2cb..cfc41b43a2b1 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - maintenance of inbox in the rollup node (handles_chain_reorg).out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - maintenance of inbox in the rollup node (handles_chain_reorg).out @@ -1,8 +1,8 @@ ./octez-client --wait none originate sc rollup from bootstrap1 of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.449 units (will add 100 for safety) -Estimated storage: 6655 bytes added (will add 20 for safety) +Estimated gas: 2909.925 units (will add 100 for safety) +Estimated storage: 6524 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,30 +12,30 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00067 + Fee to the baker: ꜩ0.000649 Expected counter: 1 - Gas limit: 3211 - Storage limit: 6675 bytes + Gas limit: 3010 + Storage limit: 6544 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00067 - payload fees(the block proposer) ....... +ꜩ0.00067 + [PUBLIC_KEY_HASH] ... -ꜩ0.000649 + payload fees(the block proposer) ....... +ꜩ0.000649 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector Blake2B hash: '0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8' This smart contract rollup origination was successfully applied - Consumed gas: 3110.449 - Storage size: 6655 bytes + Consumed gas: 2909.925 + Storage size: 6524 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.66375 - storage fees ........................... +ꜩ1.66375 + [PUBLIC_KEY_HASH] ... -ꜩ1.631 + storage fees ........................... +ꜩ1.631 -./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1876.722 units (will add 100 for safety) +Estimated gas: 1000.596 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -46,35 +46,33 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000479 + Fee to the baker: ꜩ0.000351 Expected counter: 1 - Gas limit: 1977 + Gas limit: 1101 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000479 - payload fees(the block proposer) ....... +ꜩ0.000479 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000351 + payload fees(the block proposer) ....... +ꜩ0.000351 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1876.850 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 3 + Consumed gas: 1000.596 + Resulting inbox state: { level = 3 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 1 - starting_level_of_current_commitment_period = 2 - message_counter = 1 + nb_messages_in_commitment_period = 6 + message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 1 + index = 2 back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1876.944 units (will add 100 for safety) +Estimated gas: 1000.596 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -85,36 +83,33 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000479 + Fee to the baker: ꜩ0.000351 Expected counter: 2 - Gas limit: 1977 + Gas limit: 1101 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000479 - payload fees(the block proposer) ....... +ꜩ0.000479 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000351 + payload fees(the block proposer) ....... +ꜩ0.000351 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1877.072 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 4 + Consumed gas: 1000.596 + Resulting inbox state: { level = 4 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 2 - starting_level_of_current_commitment_period = 2 - message_counter = 1 + nb_messages_in_commitment_period = 9 + message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 2 + index = 3 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1876.944 units (will add 100 for safety) +Estimated gas: 1000.596 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -125,36 +120,33 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000479 + Fee to the baker: ꜩ0.000351 Expected counter: 2 - Gas limit: 1977 + Gas limit: 1101 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000479 - payload fees(the block proposer) ....... +ꜩ0.000479 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000351 + payload fees(the block proposer) ....... +ꜩ0.000351 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1877.072 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 4 + Consumed gas: 1000.596 + Resulting inbox state: { level = 4 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 2 - starting_level_of_current_commitment_period = 2 - message_counter = 1 + nb_messages_in_commitment_period = 9 + message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 2 + index = 3 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1877.151 units (will add 100 for safety) +Estimated gas: 1000.596 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -165,29 +157,27 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000479 + Fee to the baker: ꜩ0.000351 Expected counter: 3 - Gas limit: 1978 + Gas limit: 1101 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000479 - payload fees(the block proposer) ....... +ꜩ0.000479 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000351 + payload fees(the block proposer) ....... +ꜩ0.000351 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1877.151 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 5 + Consumed gas: 1000.596 + Resulting inbox state: { level = 5 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 3 - starting_level_of_current_commitment_period = 2 - message_counter = 1 + nb_messages_in_commitment_period = 12 + message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 3 + index = 4 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] } diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - node advances PVM state with internal messages.out b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - node advances PVM state with internal messages.out index b55570121cc1..d43f39eecfe1 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - node advances PVM state with internal messages.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - node advances PVM state with internal messages.out @@ -1,8 +1,8 @@ ./octez-client --wait none originate sc rollup from bootstrap1 of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.449 units (will add 100 for safety) -Estimated storage: 6655 bytes added (will add 20 for safety) +Estimated gas: 2909.925 units (will add 100 for safety) +Estimated storage: 6524 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,25 +12,25 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00067 + Fee to the baker: ꜩ0.000649 Expected counter: 1 - Gas limit: 3211 - Storage limit: 6675 bytes + Gas limit: 3010 + Storage limit: 6544 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00067 - payload fees(the block proposer) ....... +ꜩ0.00067 + [PUBLIC_KEY_HASH] ... -ꜩ0.000649 + payload fees(the block proposer) ....... +ꜩ0.000649 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector Blake2B hash: '0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8' This smart contract rollup origination was successfully applied - Consumed gas: 3110.449 - Storage size: 6655 bytes + Consumed gas: 2909.925 + Storage size: 6524 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.66375 - storage fees ........................... +ꜩ1.66375 + [PUBLIC_KEY_HASH] ... -ꜩ1.631 + storage fees ........................... +ꜩ1.631 ./octez-client rpc get '/chains/main/blocks/head/context/sc_rollup/[SC_ROLLUP_HASH]/genesis_info' @@ -41,7 +41,7 @@ This sequence of operations was run: "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"0" +"4" ./octez-sc-rollup-client-alpha get state value for vars/value --block head "\000\000\000\007" @@ -50,13 +50,13 @@ This sequence of operations was run: "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"20" +"24" ./octez-sc-rollup-client-alpha rpc get /global/block/head/state_hash "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"20" +"24" ./octez-sc-rollup-client-alpha get state value for vars/value --block head "\000\000\000\n" @@ -65,13 +65,13 @@ This sequence of operations was run: "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"38" +"44" ./octez-sc-rollup-client-alpha rpc get /global/block/head/state_hash "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"38" +"44" ./octez-sc-rollup-client-alpha get state value for vars/value --block head "\000\000\000\r" @@ -80,13 +80,13 @@ This sequence of operations was run: "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"57" +"65" ./octez-sc-rollup-client-alpha rpc get /global/block/head/state_hash "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"57" +"65" ./octez-sc-rollup-client-alpha get state value for vars/value --block head "\000\000\000\016" @@ -95,13 +95,13 @@ This sequence of operations was run: "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"76" +"86" ./octez-sc-rollup-client-alpha rpc get /global/block/head/state_hash "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"76" +"86" ./octez-sc-rollup-client-alpha get state value for vars/value --block head "\000\000\000\019" @@ -110,13 +110,13 @@ This sequence of operations was run: "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"95" +"107" ./octez-sc-rollup-client-alpha rpc get /global/block/head/state_hash "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"95" +"107" ./octez-sc-rollup-client-alpha get state value for vars/value --block head "\000\000\000\022" @@ -125,13 +125,13 @@ This sequence of operations was run: "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"114" +"128" ./octez-sc-rollup-client-alpha rpc get /global/block/head/state_hash "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"114" +"128" ./octez-sc-rollup-client-alpha get state value for vars/value --block head "\000\000\000\025" @@ -140,13 +140,13 @@ This sequence of operations was run: "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"133" +"149" ./octez-sc-rollup-client-alpha rpc get /global/block/head/state_hash "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"133" +"149" ./octez-sc-rollup-client-alpha get state value for vars/value --block head "\000\000\000\028" @@ -155,13 +155,13 @@ This sequence of operations was run: "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"152" +"170" ./octez-sc-rollup-client-alpha rpc get /global/block/head/state_hash "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"152" +"170" ./octez-sc-rollup-client-alpha get state value for vars/value --block head "\000\000\000\031" @@ -170,13 +170,13 @@ This sequence of operations was run: "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"171" +"191" ./octez-sc-rollup-client-alpha rpc get /global/block/head/state_hash "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"171" +"191" ./octez-sc-rollup-client-alpha get state value for vars/value --block head "\000\000\000\"" @@ -185,4 +185,4 @@ This sequence of operations was run: "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"191" +"213" diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - node advances PVM state with messages.out b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - node advances PVM state with messages.out index fc4284d1a564..5bcf8355836b 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - node advances PVM state with messages.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - node advances PVM state with messages.out @@ -1,8 +1,8 @@ ./octez-client --wait none originate sc rollup from bootstrap1 of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.449 units (will add 100 for safety) -Estimated storage: 6655 bytes added (will add 20 for safety) +Estimated gas: 2909.925 units (will add 100 for safety) +Estimated storage: 6524 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,25 +12,25 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00067 + Fee to the baker: ꜩ0.000649 Expected counter: 1 - Gas limit: 3211 - Storage limit: 6675 bytes + Gas limit: 3010 + Storage limit: 6544 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00067 - payload fees(the block proposer) ....... +ꜩ0.00067 + [PUBLIC_KEY_HASH] ... -ꜩ0.000649 + payload fees(the block proposer) ....... +ꜩ0.000649 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector Blake2B hash: '0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8' This smart contract rollup origination was successfully applied - Consumed gas: 3110.449 - Storage size: 6655 bytes + Consumed gas: 2909.925 + Storage size: 6524 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.66375 - storage fees ........................... +ꜩ1.66375 + [PUBLIC_KEY_HASH] ... -ꜩ1.631 + storage fees ........................... +ꜩ1.631 ./octez-client rpc get '/chains/main/blocks/head/context/sc_rollup/[SC_ROLLUP_HASH]/genesis_info' @@ -43,9 +43,9 @@ This sequence of operations was run: ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks "0" -./octez-client --wait none send sc rollup message '["1 6 + value"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message '["1 6 + value"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1876.773 units (will add 100 for safety) +Estimated gas: 1000.647 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -56,28 +56,26 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000482 + Fee to the baker: ꜩ0.000354 Expected counter: 1 - Gas limit: 1977 + Gas limit: 1101 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000482 - payload fees(the block proposer) ....... +ꜩ0.000482 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000354 + payload fees(the block proposer) ....... +ꜩ0.000354 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1876.901 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 3 + Consumed gas: 1000.647 + Resulting inbox state: { level = 3 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 1 - starting_level_of_current_commitment_period = 2 - message_counter = 1 + nb_messages_in_commitment_period = 6 + message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 1 + index = 2 back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] } @@ -89,17 +87,17 @@ This sequence of operations was run: "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"20" +"22" ./octez-sc-rollup-client-alpha rpc get /global/block/head/state_hash "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"20" +"22" -./octez-client --wait none send sc rollup message '["2 8 + value"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message '["2 8 + value"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1876.995 units (will add 100 for safety) +Estimated gas: 1000.647 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -110,27 +108,24 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000482 + Fee to the baker: ꜩ0.000354 Expected counter: 2 - Gas limit: 1977 + Gas limit: 1101 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000482 - payload fees(the block proposer) ....... +ꜩ0.000482 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000354 + payload fees(the block proposer) ....... +ꜩ0.000354 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1877.123 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 4 + Consumed gas: 1000.647 + Resulting inbox state: { level = 4 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 2 - starting_level_of_current_commitment_period = 2 - message_counter = 1 + nb_messages_in_commitment_period = 9 + message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 2 + index = 3 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] @@ -144,17 +139,17 @@ This sequence of operations was run: "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"38" +"42" ./octez-sc-rollup-client-alpha rpc get /global/block/head/state_hash "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"38" +"42" -./octez-client --wait none send sc rollup message '["3 10 + value"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message '["3 10 + value"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1877.219 units (will add 100 for safety) +Estimated gas: 1000.664 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -165,29 +160,27 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000483 + Fee to the baker: ꜩ0.000355 Expected counter: 3 - Gas limit: 1978 + Gas limit: 1101 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000483 - payload fees(the block proposer) ....... +ꜩ0.000483 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000355 + payload fees(the block proposer) ....... +ꜩ0.000355 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1877.219 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 5 + Consumed gas: 1000.664 + Resulting inbox state: { level = 5 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 3 - starting_level_of_current_commitment_period = 2 - message_counter = 1 + nb_messages_in_commitment_period = 12 + message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 3 + index = 4 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] } @@ -199,17 +192,17 @@ This sequence of operations was run: "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"57" +"63" ./octez-sc-rollup-client-alpha rpc get /global/block/head/state_hash "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"57" +"63" -./octez-client --wait none send sc rollup message '["4 12 + value"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message '["4 12 + value"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1877.219 units (will add 100 for safety) +Estimated gas: 1000.664 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -220,27 +213,24 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000483 + Fee to the baker: ꜩ0.000355 Expected counter: 4 - Gas limit: 1978 + Gas limit: 1101 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000483 - payload fees(the block proposer) ....... +ꜩ0.000483 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000355 + payload fees(the block proposer) ....... +ꜩ0.000355 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1877.347 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 6 + Consumed gas: 1000.664 + Resulting inbox state: { level = 6 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 4 - starting_level_of_current_commitment_period = 2 - message_counter = 1 + nb_messages_in_commitment_period = 15 + message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 4 + index = 5 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] @@ -255,17 +245,17 @@ This sequence of operations was run: "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"76" +"84" ./octez-sc-rollup-client-alpha rpc get /global/block/head/state_hash "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"76" +"84" -./octez-client --wait none send sc rollup message '["5 14 + value"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message '["5 14 + value"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1877.426 units (will add 100 for safety) +Estimated gas: 1000.664 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -276,27 +266,24 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000483 + Fee to the baker: ꜩ0.000355 Expected counter: 5 - Gas limit: 1978 + Gas limit: 1101 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000483 - payload fees(the block proposer) ....... +ꜩ0.000483 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000355 + payload fees(the block proposer) ....... +ꜩ0.000355 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1877.426 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 7 + Consumed gas: 1000.664 + Resulting inbox state: { level = 7 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 5 - starting_level_of_current_commitment_period = 2 - message_counter = 1 + nb_messages_in_commitment_period = 18 + message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 5 + index = 6 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] @@ -311,17 +298,17 @@ This sequence of operations was run: "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"95" +"105" ./octez-sc-rollup-client-alpha rpc get /global/block/head/state_hash "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"95" +"105" -./octez-client --wait none send sc rollup message '["6 16 + value"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message '["6 16 + value"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1877.426 units (will add 100 for safety) +Estimated gas: 1000.664 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -332,27 +319,24 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000483 + Fee to the baker: ꜩ0.000355 Expected counter: 6 - Gas limit: 1978 + Gas limit: 1101 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000483 - payload fees(the block proposer) ....... +ꜩ0.000483 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000355 + payload fees(the block proposer) ....... +ꜩ0.000355 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1877.426 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 8 + Consumed gas: 1000.664 + Resulting inbox state: { level = 8 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 6 - starting_level_of_current_commitment_period = 2 - message_counter = 1 + nb_messages_in_commitment_period = 21 + message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 6 + index = 7 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] @@ -367,17 +351,17 @@ This sequence of operations was run: "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"114" +"126" ./octez-sc-rollup-client-alpha rpc get /global/block/head/state_hash "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"114" +"126" -./octez-client --wait none send sc rollup message '["7 18 + value"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message '["7 18 + value"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1877.426 units (will add 100 for safety) +Estimated gas: 1000.664 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -388,30 +372,28 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000483 + Fee to the baker: ꜩ0.000355 Expected counter: 7 - Gas limit: 1978 + Gas limit: 1101 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000483 - payload fees(the block proposer) ....... +ꜩ0.000483 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000355 + payload fees(the block proposer) ....... +ꜩ0.000355 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1877.426 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 9 + Consumed gas: 1000.664 + Resulting inbox state: { level = 9 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 7 - starting_level_of_current_commitment_period = 2 - message_counter = 1 + nb_messages_in_commitment_period = 24 + message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 7 + index = 8 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] } @@ -423,17 +405,17 @@ This sequence of operations was run: "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"133" +"147" ./octez-sc-rollup-client-alpha rpc get /global/block/head/state_hash "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"133" +"147" -./octez-client --wait none send sc rollup message '["8 20 + value"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message '["8 20 + value"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1877.426 units (will add 100 for safety) +Estimated gas: 1000.664 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -444,27 +426,24 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000483 + Fee to the baker: ꜩ0.000355 Expected counter: 8 - Gas limit: 1978 + Gas limit: 1101 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000483 - payload fees(the block proposer) ....... +ꜩ0.000483 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000355 + payload fees(the block proposer) ....... +ꜩ0.000355 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1877.554 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 10 + Consumed gas: 1000.664 + Resulting inbox state: { level = 10 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 8 - starting_level_of_current_commitment_period = 2 - message_counter = 1 + nb_messages_in_commitment_period = 27 + message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 8 + index = 9 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] @@ -480,17 +459,17 @@ This sequence of operations was run: "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"152" +"168" ./octez-sc-rollup-client-alpha rpc get /global/block/head/state_hash "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"152" +"168" -./octez-client --wait none send sc rollup message '["9 22 + value"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message '["9 22 + value"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1877.633 units (will add 100 for safety) +Estimated gas: 1000.664 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -501,27 +480,24 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000483 + Fee to the baker: ꜩ0.000355 Expected counter: 9 - Gas limit: 1978 + Gas limit: 1101 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000483 - payload fees(the block proposer) ....... +ꜩ0.000483 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000355 + payload fees(the block proposer) ....... +ꜩ0.000355 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1877.633 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 11 + Consumed gas: 1000.664 + Resulting inbox state: { level = 11 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 9 - starting_level_of_current_commitment_period = 2 - message_counter = 1 + nb_messages_in_commitment_period = 30 + message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 9 + index = 10 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] @@ -537,17 +513,17 @@ This sequence of operations was run: "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"171" +"189" ./octez-sc-rollup-client-alpha rpc get /global/block/head/state_hash "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"171" +"189" -./octez-client --wait none send sc rollup message '["10 24 + value"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message '["10 24 + value"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1877.650 units (will add 100 for safety) +Estimated gas: 1000.681 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -558,27 +534,24 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000484 + Fee to the baker: ꜩ0.000356 Expected counter: 10 - Gas limit: 1978 + Gas limit: 1101 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000484 - payload fees(the block proposer) ....... +ꜩ0.000484 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000356 + payload fees(the block proposer) ....... +ꜩ0.000356 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1877.650 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 12 + Consumed gas: 1000.681 + Resulting inbox state: { level = 12 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 10 - starting_level_of_current_commitment_period = 2 - message_counter = 1 + nb_messages_in_commitment_period = 33 + message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 10 + index = 11 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] @@ -594,4 +567,4 @@ This sequence of operations was run: "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"191" +"211" diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - node boots into the initial state.out b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - node boots into the initial state.out index 70e5b93ad3a3..20d2e971230c 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - node boots into the initial state.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - node boots into the initial state.out @@ -1,8 +1,8 @@ ./octez-client --wait none originate sc rollup from bootstrap1 of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.449 units (will add 100 for safety) -Estimated storage: 6655 bytes added (will add 20 for safety) +Estimated gas: 2909.925 units (will add 100 for safety) +Estimated storage: 6524 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,25 +12,25 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00067 + Fee to the baker: ꜩ0.000649 Expected counter: 1 - Gas limit: 3211 - Storage limit: 6675 bytes + Gas limit: 3010 + Storage limit: 6544 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00067 - payload fees(the block proposer) ....... +ꜩ0.00067 + [PUBLIC_KEY_HASH] ... -ꜩ0.000649 + payload fees(the block proposer) ....... +ꜩ0.000649 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector Blake2B hash: '0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8' This smart contract rollup origination was successfully applied - Consumed gas: 3110.449 - Storage size: 6655 bytes + Consumed gas: 2909.925 + Storage size: 6524 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.66375 - storage fees ........................... +ꜩ1.66375 + [PUBLIC_KEY_HASH] ... -ꜩ1.631 + storage fees ........................... +ꜩ1.631 ./octez-client rpc get '/chains/main/blocks/head/context/sc_rollup/[SC_ROLLUP_HASH]/genesis_info' diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - origination of a SCORU executes without error.out b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - origination of a SCORU executes without error.out index e4468239ac81..c0e2762bcae7 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - origination of a SCORU executes without error.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - origination of a SCORU executes without error.out @@ -1,8 +1,8 @@ ./octez-client --wait none originate sc rollup from bootstrap1 of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.449 units (will add 100 for safety) -Estimated storage: 6655 bytes added (will add 20 for safety) +Estimated gas: 2909.925 units (will add 100 for safety) +Estimated storage: 6524 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,23 +12,23 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00067 + Fee to the baker: ꜩ0.000649 Expected counter: 1 - Gas limit: 3211 - Storage limit: 6675 bytes + Gas limit: 3010 + Storage limit: 6544 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00067 - payload fees(the block proposer) ....... +ꜩ0.00067 + [PUBLIC_KEY_HASH] ... -ꜩ0.000649 + payload fees(the block proposer) ....... +ꜩ0.000649 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector Blake2B hash: '0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8' This smart contract rollup origination was successfully applied - Consumed gas: 3110.449 - Storage size: 6655 bytes + Consumed gas: 2909.925 + Storage size: 6524 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.66375 - storage fees ........................... +ꜩ1.66375 + [PUBLIC_KEY_HASH] ... -ꜩ1.631 + storage fees ........................... +ꜩ1.631 diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - pushing messages in the inbox - check inbox size.out b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - pushing messages in the inbox - check inbox size.out index c869edc1f9d9..67fe6cfcf07f 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - pushing messages in the inbox - check inbox size.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - pushing messages in the inbox - check inbox size.out @@ -1,8 +1,8 @@ ./octez-client --wait none originate sc rollup from bootstrap1 of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.449 units (will add 100 for safety) -Estimated storage: 6655 bytes added (will add 20 for safety) +Estimated gas: 2909.925 units (will add 100 for safety) +Estimated storage: 6524 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,30 +12,30 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00067 + Fee to the baker: ꜩ0.000649 Expected counter: 1 - Gas limit: 3211 - Storage limit: 6675 bytes + Gas limit: 3010 + Storage limit: 6544 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00067 - payload fees(the block proposer) ....... +ꜩ0.00067 + [PUBLIC_KEY_HASH] ... -ꜩ0.000649 + payload fees(the block proposer) ....... +ꜩ0.000649 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector Blake2B hash: '0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8' This smart contract rollup origination was successfully applied - Consumed gas: 3110.449 - Storage size: 6655 bytes + Consumed gas: 2909.925 + Storage size: 6524 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.66375 - storage fees ........................... +ꜩ1.66375 + [PUBLIC_KEY_HASH] ... -ꜩ1.631 + storage fees ........................... +ꜩ1.631 -./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1876.722 units (will add 100 for safety) +Estimated gas: 1000.596 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -46,35 +46,33 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000479 + Fee to the baker: ꜩ0.000351 Expected counter: 1 - Gas limit: 1977 + Gas limit: 1101 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000479 - payload fees(the block proposer) ....... +ꜩ0.000479 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000351 + payload fees(the block proposer) ....... +ꜩ0.000351 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1876.850 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 3 + Consumed gas: 1000.596 + Resulting inbox state: { level = 3 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 1 - starting_level_of_current_commitment_period = 2 - message_counter = 1 + nb_messages_in_commitment_period = 6 + message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 1 + index = 2 back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1877.540 units (will add 100 for safety) +Estimated gas: 1001.192 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -85,36 +83,33 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000491 + Fee to the baker: ꜩ0.000363 Expected counter: 2 - Gas limit: 1978 + Gas limit: 1102 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000491 - payload fees(the block proposer) ....... +ꜩ0.000491 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000363 + payload fees(the block proposer) ....... +ꜩ0.000363 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1877.668 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 4 + Consumed gas: 1001.192 + Resulting inbox state: { level = 4 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 3 - starting_level_of_current_commitment_period = 2 - message_counter = 2 + nb_messages_in_commitment_period = 10 + message_counter = 3 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 2 + index = 3 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1878.343 units (will add 100 for safety) +Estimated gas: 1001.788 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -125,36 +120,34 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000503 + Fee to the baker: ꜩ0.000375 Expected counter: 3 - Gas limit: 1979 + Gas limit: 1102 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000503 - payload fees(the block proposer) ....... +ꜩ0.000503 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000375 + payload fees(the block proposer) ....... +ꜩ0.000375 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1878.343 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 5 + Consumed gas: 1001.788 + Resulting inbox state: { level = 5 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 6 - starting_level_of_current_commitment_period = 2 - message_counter = 3 + nb_messages_in_commitment_period = 15 + message_counter = 4 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 3 + index = 4 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1878.939 units (will add 100 for safety) +Estimated gas: 1002.384 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -165,27 +158,24 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000515 + Fee to the baker: ꜩ0.000387 Expected counter: 4 - Gas limit: 1979 + Gas limit: 1103 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000515 - payload fees(the block proposer) ....... +ꜩ0.000515 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000387 + payload fees(the block proposer) ....... +ꜩ0.000387 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1879.067 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 6 + Consumed gas: 1002.384 + Resulting inbox state: { level = 6 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 10 - starting_level_of_current_commitment_period = 2 - message_counter = 4 + nb_messages_in_commitment_period = 21 + message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 4 + index = 5 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] @@ -193,9 +183,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1879.742 units (will add 100 for safety) +Estimated gas: 1002.980 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -206,27 +196,24 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000527 + Fee to the baker: ꜩ0.000399 Expected counter: 5 - Gas limit: 1980 + Gas limit: 1103 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000527 - payload fees(the block proposer) ....... +ꜩ0.000527 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000399 + payload fees(the block proposer) ....... +ꜩ0.000399 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1879.742 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 7 + Consumed gas: 1002.980 + Resulting inbox state: { level = 7 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 15 - starting_level_of_current_commitment_period = 2 - message_counter = 5 + nb_messages_in_commitment_period = 28 + message_counter = 6 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 5 + index = 6 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] @@ -234,9 +221,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1880.338 units (will add 100 for safety) +Estimated gas: 1003.576 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -247,27 +234,24 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00054 + Fee to the baker: ꜩ0.000411 Expected counter: 6 - Gas limit: 1981 + Gas limit: 1104 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00054 - payload fees(the block proposer) ....... +ꜩ0.00054 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000411 + payload fees(the block proposer) ....... +ꜩ0.000411 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1880.338 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 8 + Consumed gas: 1003.576 + Resulting inbox state: { level = 8 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 21 - starting_level_of_current_commitment_period = 2 - message_counter = 6 + nb_messages_in_commitment_period = 36 + message_counter = 7 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 6 + index = 7 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] @@ -275,9 +259,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1880.934 units (will add 100 for safety) +Estimated gas: 1004.172 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -288,37 +272,35 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000552 + Fee to the baker: ꜩ0.000423 Expected counter: 7 - Gas limit: 1981 + Gas limit: 1105 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000552 - payload fees(the block proposer) ....... +ꜩ0.000552 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000423 + payload fees(the block proposer) ....... +ꜩ0.000423 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1880.934 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 9 + Consumed gas: 1004.172 + Resulting inbox state: { level = 9 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 28 - starting_level_of_current_commitment_period = 2 - message_counter = 7 + nb_messages_in_commitment_period = 45 + message_counter = 8 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 7 + index = 8 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1881.530 units (will add 100 for safety) +Estimated gas: 1004.768 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -329,27 +311,24 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000564 + Fee to the baker: ꜩ0.000435 Expected counter: 8 - Gas limit: 1982 + Gas limit: 1105 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000564 - payload fees(the block proposer) ....... +ꜩ0.000564 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000435 + payload fees(the block proposer) ....... +ꜩ0.000435 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1881.658 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 10 + Consumed gas: 1004.768 + Resulting inbox state: { level = 10 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 36 - starting_level_of_current_commitment_period = 2 - message_counter = 8 + nb_messages_in_commitment_period = 55 + message_counter = 9 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 8 + index = 9 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] @@ -358,9 +337,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1882.333 units (will add 100 for safety) +Estimated gas: 1005.364 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -371,27 +350,24 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000576 + Fee to the baker: ꜩ0.000447 Expected counter: 9 - Gas limit: 1983 + Gas limit: 1106 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000576 - payload fees(the block proposer) ....... +ꜩ0.000576 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000447 + payload fees(the block proposer) ....... +ꜩ0.000447 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1882.333 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 11 + Consumed gas: 1005.364 + Resulting inbox state: { level = 11 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 45 - starting_level_of_current_commitment_period = 2 - message_counter = 9 + nb_messages_in_commitment_period = 66 + message_counter = 10 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 9 + index = 10 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] @@ -400,9 +376,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1882.929 units (will add 100 for safety) +Estimated gas: 1005.960 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -413,27 +389,24 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000588 + Fee to the baker: ꜩ0.000459 Expected counter: 10 - Gas limit: 1983 + Gas limit: 1106 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000588 - payload fees(the block proposer) ....... +ꜩ0.000588 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000459 + payload fees(the block proposer) ....... +ꜩ0.000459 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1882.929 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 12 + Consumed gas: 1005.960 + Resulting inbox state: { level = 12 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 55 - starting_level_of_current_commitment_period = 2 - message_counter = 10 + nb_messages_in_commitment_period = 78 + message_counter = 11 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 10 + index = 11 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (arith).out b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (arith).out index efc4548d6e49..cc5cb0a12be2 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (arith).out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (arith).out @@ -1,8 +1,8 @@ ./octez-client --wait none originate sc rollup from bootstrap1 of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.449 units (will add 100 for safety) -Estimated storage: 6655 bytes added (will add 20 for safety) +Estimated gas: 2909.925 units (will add 100 for safety) +Estimated storage: 6524 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,34 +12,34 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00067 + Fee to the baker: ꜩ0.000649 Expected counter: 1 - Gas limit: 3211 - Storage limit: 6675 bytes + Gas limit: 3010 + Storage limit: 6544 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00067 - payload fees(the block proposer) ....... +ꜩ0.00067 + [PUBLIC_KEY_HASH] ... -ꜩ0.000649 + payload fees(the block proposer) ....... +ꜩ0.000649 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector Blake2B hash: '0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8' This smart contract rollup origination was successfully applied - Consumed gas: 3110.449 - Storage size: 6655 bytes + Consumed gas: 2909.925 + Storage size: 6524 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.66375 - storage fees ........................... +ꜩ1.66375 + [PUBLIC_KEY_HASH] ... -ꜩ1.631 + storage fees ........................... +ꜩ1.631 ./octez-client rpc get '/chains/main/blocks/head/context/sc_rollup/[SC_ROLLUP_HASH]/genesis_info' { "level": 2, "commitment_hash": "[SC_ROLLUP_COMMITMENT_HASH]" } -./octez-client --wait none send sc rollup message 'text:["hash:scrh12kkMqK9bHNXruyMnrcFsfyBqdBwdsZqjrVm6fYahM4tWRXKANu\n"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["hash:scrh12kkMqK9bHNXruyMnrcFsfyBqdBwdsZqjrVm6fYahM4tWRXKANu\n"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1877.623 units (will add 100 for safety) +Estimated gas: 1001.497 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -50,28 +50,26 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000532 + Fee to the baker: ꜩ0.000404 Expected counter: 1 - Gas limit: 1978 + Gas limit: 1102 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000532 - payload fees(the block proposer) ....... +ꜩ0.000532 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000404 + payload fees(the block proposer) ....... +ꜩ0.000404 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1877.751 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 3 + Consumed gas: 1001.497 + Resulting inbox state: { level = 3 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 1 - starting_level_of_current_commitment_period = 2 - message_counter = 1 + nb_messages_in_commitment_period = 6 + message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 1 + index = 2 back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] } diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (batcher_does_not_p.out b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (batcher_does_not_p.out index 4b2c409f4ca0..a144083922de 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (batcher_does_not_p.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (batcher_does_not_p.out @@ -1,8 +1,8 @@ ./octez-client --wait none originate sc rollup from bootstrap1 of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.449 units (will add 100 for safety) -Estimated storage: 6655 bytes added (will add 20 for safety) +Estimated gas: 2909.925 units (will add 100 for safety) +Estimated storage: 6524 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,30 +12,30 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00067 + Fee to the baker: ꜩ0.000649 Expected counter: 1 - Gas limit: 3211 - Storage limit: 6675 bytes + Gas limit: 3010 + Storage limit: 6544 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00067 - payload fees(the block proposer) ....... +ꜩ0.00067 + [PUBLIC_KEY_HASH] ... -ꜩ0.000649 + payload fees(the block proposer) ....... +ꜩ0.000649 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector Blake2B hash: '0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8' This smart contract rollup origination was successfully applied - Consumed gas: 3110.449 - Storage size: 6655 bytes + Consumed gas: 2909.925 + Storage size: 6524 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.66375 - storage fees ........................... +ꜩ1.66375 + [PUBLIC_KEY_HASH] ... -ꜩ1.631 + storage fees ........................... +ꜩ1.631 -./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1876.722 units (will add 100 for safety) +Estimated gas: 1000.596 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -46,61 +46,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000479 + Fee to the baker: ꜩ0.000351 Expected counter: 1 - Gas limit: 1977 + Gas limit: 1101 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000479 - payload fees(the block proposer) ....... +ꜩ0.000479 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] - This smart contract rollup messages submission was successfully applied - Consumed gas: 1876.850 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 3 - current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 1 - starting_level_of_current_commitment_period = 2 - message_counter = 1 - old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] - - content = [SC_ROLLUP_INBOX_HASH] - index = 1 - back_pointers = [SC_ROLLUP_INBOX_HASH] - - } - - -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' -Node is bootstrapped. -Estimated gas: 1877.540 units (will add 100 for safety) -Estimated storage: no bytes added -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000491 - Expected counter: 2 - Gas limit: 1978 - Storage limit: 0 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000491 - payload fees(the block proposer) ....... +ꜩ0.000491 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000351 + payload fees(the block proposer) ....... +ꜩ0.000351 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1877.668 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 4 + Consumed gas: 1000.596 + Resulting inbox state: { level = 3 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 3 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 6 message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -112,9 +70,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1878.343 units (will add 100 for safety) +Estimated gas: 1001.192 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -125,22 +83,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000503 - Expected counter: 3 - Gas limit: 1979 + Fee to the baker: ꜩ0.000363 + Expected counter: 2 + Gas limit: 1102 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000503 - payload fees(the block proposer) ....... +ꜩ0.000503 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000363 + payload fees(the block proposer) ....... +ꜩ0.000363 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1878.343 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 5 + Consumed gas: 1001.192 + Resulting inbox state: { level = 4 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 6 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 10 message_counter = 3 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -152,9 +107,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1878.939 units (will add 100 for safety) +Estimated gas: 1001.788 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -165,22 +120,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000515 - Expected counter: 4 - Gas limit: 1979 + Fee to the baker: ꜩ0.000375 + Expected counter: 3 + Gas limit: 1102 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000515 - payload fees(the block proposer) ....... +ꜩ0.000515 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000375 + payload fees(the block proposer) ....... +ꜩ0.000375 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1879.067 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 6 + Consumed gas: 1001.788 + Resulting inbox state: { level = 5 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 10 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 15 message_counter = 4 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -193,9 +145,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1879.742 units (will add 100 for safety) +Estimated gas: 1002.384 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -206,22 +158,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000527 - Expected counter: 5 - Gas limit: 1980 + Fee to the baker: ꜩ0.000387 + Expected counter: 4 + Gas limit: 1103 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000527 - payload fees(the block proposer) ....... +ꜩ0.000527 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000387 + payload fees(the block proposer) ....... +ꜩ0.000387 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1879.742 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 7 + Consumed gas: 1002.384 + Resulting inbox state: { level = 6 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 15 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 21 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -234,9 +183,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1880.338 units (will add 100 for safety) +Estimated gas: 1002.980 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -247,22 +196,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00054 - Expected counter: 6 - Gas limit: 1981 + Fee to the baker: ꜩ0.000399 + Expected counter: 5 + Gas limit: 1103 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00054 - payload fees(the block proposer) ....... +ꜩ0.00054 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000399 + payload fees(the block proposer) ....... +ꜩ0.000399 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1880.338 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 8 + Consumed gas: 1002.980 + Resulting inbox state: { level = 7 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 21 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 28 message_counter = 6 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -275,9 +221,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1880.934 units (will add 100 for safety) +Estimated gas: 1003.576 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -288,22 +234,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000552 - Expected counter: 7 - Gas limit: 1981 + Fee to the baker: ꜩ0.000411 + Expected counter: 6 + Gas limit: 1104 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000552 - payload fees(the block proposer) ....... +ꜩ0.000552 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000411 + payload fees(the block proposer) ....... +ꜩ0.000411 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1880.934 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 9 + Consumed gas: 1003.576 + Resulting inbox state: { level = 8 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 28 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 36 message_counter = 7 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -316,9 +259,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1881.530 units (will add 100 for safety) +Estimated gas: 1004.172 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -329,22 +272,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000564 - Expected counter: 8 - Gas limit: 1982 + Fee to the baker: ꜩ0.000423 + Expected counter: 7 + Gas limit: 1105 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000564 - payload fees(the block proposer) ....... +ꜩ0.000564 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000423 + payload fees(the block proposer) ....... +ꜩ0.000423 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1881.658 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 10 + Consumed gas: 1004.172 + Resulting inbox state: { level = 9 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 36 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 45 message_counter = 8 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -358,9 +298,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1882.333 units (will add 100 for safety) +Estimated gas: 1004.768 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -371,22 +311,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000576 - Expected counter: 9 - Gas limit: 1983 + Fee to the baker: ꜩ0.000435 + Expected counter: 8 + Gas limit: 1105 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000576 - payload fees(the block proposer) ....... +ꜩ0.000576 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000435 + payload fees(the block proposer) ....... +ꜩ0.000435 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1882.333 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 11 + Consumed gas: 1004.768 + Resulting inbox state: { level = 10 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 45 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 55 message_counter = 9 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -400,9 +337,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1882.929 units (will add 100 for safety) +Estimated gas: 1005.364 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -413,22 +350,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000588 - Expected counter: 10 - Gas limit: 1983 + Fee to the baker: ꜩ0.000447 + Expected counter: 9 + Gas limit: 1106 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000588 - payload fees(the block proposer) ....... +ꜩ0.000588 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000447 + payload fees(the block proposer) ....... +ꜩ0.000447 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1882.929 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 12 + Consumed gas: 1005.364 + Resulting inbox state: { level = 11 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 55 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 66 message_counter = 10 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -442,9 +376,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1883.525 units (will add 100 for safety) +Estimated gas: 1005.960 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -455,22 +389,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.0006 - Expected counter: 11 - Gas limit: 1984 + Fee to the baker: ꜩ0.000459 + Expected counter: 10 + Gas limit: 1106 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.0006 - payload fees(the block proposer) ....... +ꜩ0.0006 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000459 + payload fees(the block proposer) ....... +ꜩ0.000459 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1883.525 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 13 + Consumed gas: 1005.960 + Resulting inbox state: { level = 12 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 66 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 78 message_counter = 11 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -484,9 +415,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1884.121 units (will add 100 for safety) +Estimated gas: 1006.556 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -497,22 +428,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000612 - Expected counter: 12 - Gas limit: 1985 + Fee to the baker: ꜩ0.000471 + Expected counter: 11 + Gas limit: 1107 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000612 - payload fees(the block proposer) ....... +ꜩ0.000612 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000471 + payload fees(the block proposer) ....... +ꜩ0.000471 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1884.121 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 14 + Consumed gas: 1006.556 + Resulting inbox state: { level = 13 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 78 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 91 message_counter = 12 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -526,9 +454,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1884.717 units (will add 100 for safety) +Estimated gas: 1007.152 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -539,22 +467,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000624 - Expected counter: 13 - Gas limit: 1985 + Fee to the baker: ꜩ0.000483 + Expected counter: 12 + Gas limit: 1108 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000624 - payload fees(the block proposer) ....... +ꜩ0.000624 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000483 + payload fees(the block proposer) ....... +ꜩ0.000483 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1884.717 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 15 + Consumed gas: 1007.152 + Resulting inbox state: { level = 14 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 91 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 105 message_counter = 13 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -568,9 +493,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1885.313 units (will add 100 for safety) +Estimated gas: 1007.748 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -581,22 +506,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000636 - Expected counter: 14 - Gas limit: 1986 + Fee to the baker: ꜩ0.000495 + Expected counter: 13 + Gas limit: 1108 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000636 - payload fees(the block proposer) ....... +ꜩ0.000636 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000495 + payload fees(the block proposer) ....... +ꜩ0.000495 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1885.313 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 16 + Consumed gas: 1007.748 + Resulting inbox state: { level = 15 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 105 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 120 message_counter = 14 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -610,9 +532,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1885.909 units (will add 100 for safety) +Estimated gas: 1008.344 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -623,22 +545,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000648 - Expected counter: 15 - Gas limit: 1986 + Fee to the baker: ꜩ0.000507 + Expected counter: 14 + Gas limit: 1109 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000648 - payload fees(the block proposer) ....... +ꜩ0.000648 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000507 + payload fees(the block proposer) ....... +ꜩ0.000507 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1885.909 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 17 + Consumed gas: 1008.344 + Resulting inbox state: { level = 16 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 120 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 136 message_counter = 15 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -652,9 +571,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1886.505 units (will add 100 for safety) +Estimated gas: 1008.940 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -665,22 +584,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00066 - Expected counter: 16 - Gas limit: 1987 + Fee to the baker: ꜩ0.000519 + Expected counter: 15 + Gas limit: 1109 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00066 - payload fees(the block proposer) ....... +ꜩ0.00066 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000519 + payload fees(the block proposer) ....... +ꜩ0.000519 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1886.633 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 18 + Consumed gas: 1008.940 + Resulting inbox state: { level = 17 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 136 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 153 message_counter = 16 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -695,9 +611,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1887.308 units (will add 100 for safety) +Estimated gas: 1009.536 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -708,22 +624,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000672 - Expected counter: 17 - Gas limit: 1988 + Fee to the baker: ꜩ0.000531 + Expected counter: 16 + Gas limit: 1110 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000672 - payload fees(the block proposer) ....... +ꜩ0.000672 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000531 + payload fees(the block proposer) ....... +ꜩ0.000531 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1887.308 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 19 + Consumed gas: 1009.536 + Resulting inbox state: { level = 18 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 153 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 171 message_counter = 17 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -738,9 +651,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1887.904 units (will add 100 for safety) +Estimated gas: 1010.132 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -751,22 +664,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000684 - Expected counter: 18 - Gas limit: 1988 + Fee to the baker: ꜩ0.000544 + Expected counter: 17 + Gas limit: 1111 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000684 - payload fees(the block proposer) ....... +ꜩ0.000684 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000544 + payload fees(the block proposer) ....... +ꜩ0.000544 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1887.904 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 20 + Consumed gas: 1010.132 + Resulting inbox state: { level = 19 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 171 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 190 message_counter = 18 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -781,9 +691,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1888.500 units (will add 100 for safety) +Estimated gas: 1010.728 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -794,22 +704,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000696 - Expected counter: 19 - Gas limit: 1989 + Fee to the baker: ꜩ0.000556 + Expected counter: 18 + Gas limit: 1111 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000696 - payload fees(the block proposer) ....... +ꜩ0.000696 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000556 + payload fees(the block proposer) ....... +ꜩ0.000556 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1888.500 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 21 + Consumed gas: 1010.728 + Resulting inbox state: { level = 20 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 190 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 210 message_counter = 19 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -824,9 +731,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1889.096 units (will add 100 for safety) +Estimated gas: 1011.324 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -837,22 +744,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000708 - Expected counter: 20 - Gas limit: 1990 + Fee to the baker: ꜩ0.000568 + Expected counter: 19 + Gas limit: 1112 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000708 - payload fees(the block proposer) ....... +ꜩ0.000708 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000568 + payload fees(the block proposer) ....... +ꜩ0.000568 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1889.096 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 22 + Consumed gas: 1011.324 + Resulting inbox state: { level = 21 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 210 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 231 message_counter = 20 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -867,9 +771,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1889.692 units (will add 100 for safety) +Estimated gas: 1011.920 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -880,22 +784,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00072 - Expected counter: 21 - Gas limit: 1990 + Fee to the baker: ꜩ0.00058 + Expected counter: 20 + Gas limit: 1112 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00072 - payload fees(the block proposer) ....... +ꜩ0.00072 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.00058 + payload fees(the block proposer) ....... +ꜩ0.00058 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1889.692 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 23 + Consumed gas: 1011.920 + Resulting inbox state: { level = 22 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 231 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 253 message_counter = 21 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -910,9 +811,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1890.288 units (will add 100 for safety) +Estimated gas: 1012.516 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -923,22 +824,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000733 - Expected counter: 22 - Gas limit: 1991 + Fee to the baker: ꜩ0.000592 + Expected counter: 21 + Gas limit: 1113 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000733 - payload fees(the block proposer) ....... +ꜩ0.000733 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000592 + payload fees(the block proposer) ....... +ꜩ0.000592 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1890.288 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 24 + Consumed gas: 1012.516 + Resulting inbox state: { level = 23 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 253 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 276 message_counter = 22 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -953,9 +851,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1890.884 units (will add 100 for safety) +Estimated gas: 1013.112 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -966,22 +864,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000745 - Expected counter: 23 - Gas limit: 1991 + Fee to the baker: ꜩ0.000604 + Expected counter: 22 + Gas limit: 1114 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000745 - payload fees(the block proposer) ....... +ꜩ0.000745 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000604 + payload fees(the block proposer) ....... +ꜩ0.000604 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1890.884 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 25 + Consumed gas: 1013.112 + Resulting inbox state: { level = 24 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 276 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 300 message_counter = 23 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -996,9 +891,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1891.480 units (will add 100 for safety) +Estimated gas: 1013.708 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1009,22 +904,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000757 - Expected counter: 24 - Gas limit: 1992 + Fee to the baker: ꜩ0.000616 + Expected counter: 23 + Gas limit: 1114 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000757 - payload fees(the block proposer) ....... +ꜩ0.000757 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000616 + payload fees(the block proposer) ....... +ꜩ0.000616 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1891.480 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 26 + Consumed gas: 1013.708 + Resulting inbox state: { level = 25 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 300 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 325 message_counter = 24 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1039,9 +931,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1892.076 units (will add 100 for safety) +Estimated gas: 1014.304 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1052,22 +944,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000769 - Expected counter: 25 - Gas limit: 1993 + Fee to the baker: ꜩ0.000628 + Expected counter: 24 + Gas limit: 1115 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000769 - payload fees(the block proposer) ....... +ꜩ0.000769 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000628 + payload fees(the block proposer) ....... +ꜩ0.000628 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1892.076 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 27 + Consumed gas: 1014.304 + Resulting inbox state: { level = 26 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 325 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 351 message_counter = 25 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1082,9 +971,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1892.672 units (will add 100 for safety) +Estimated gas: 1014.900 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1095,22 +984,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000781 - Expected counter: 26 - Gas limit: 1993 + Fee to the baker: ꜩ0.00064 + Expected counter: 25 + Gas limit: 1115 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000781 - payload fees(the block proposer) ....... +ꜩ0.000781 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.00064 + payload fees(the block proposer) ....... +ꜩ0.00064 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1892.672 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 28 + Consumed gas: 1014.900 + Resulting inbox state: { level = 27 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 351 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 378 message_counter = 26 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1125,9 +1011,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1893.268 units (will add 100 for safety) +Estimated gas: 1015.496 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1138,22 +1024,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000793 - Expected counter: 27 - Gas limit: 1994 + Fee to the baker: ꜩ0.000652 + Expected counter: 26 + Gas limit: 1116 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000793 - payload fees(the block proposer) ....... +ꜩ0.000793 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000652 + payload fees(the block proposer) ....... +ꜩ0.000652 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1893.268 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 29 + Consumed gas: 1015.496 + Resulting inbox state: { level = 28 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 378 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 406 message_counter = 27 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1168,9 +1051,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1893.864 units (will add 100 for safety) +Estimated gas: 1016.092 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1181,22 +1064,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000805 - Expected counter: 28 - Gas limit: 1994 + Fee to the baker: ꜩ0.000664 + Expected counter: 27 + Gas limit: 1117 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000805 - payload fees(the block proposer) ....... +ꜩ0.000805 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000664 + payload fees(the block proposer) ....... +ꜩ0.000664 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1893.864 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 30 + Consumed gas: 1016.092 + Resulting inbox state: { level = 29 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 406 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 435 message_counter = 28 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1211,9 +1091,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1894.460 units (will add 100 for safety) +Estimated gas: 1016.688 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1224,22 +1104,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000817 - Expected counter: 29 - Gas limit: 1995 + Fee to the baker: ꜩ0.000676 + Expected counter: 28 + Gas limit: 1117 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000817 - payload fees(the block proposer) ....... +ꜩ0.000817 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000676 + payload fees(the block proposer) ....... +ꜩ0.000676 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1894.460 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 31 + Consumed gas: 1016.688 + Resulting inbox state: { level = 30 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 435 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 465 message_counter = 29 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1254,9 +1131,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1895.056 units (will add 100 for safety) +Estimated gas: 1017.284 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1267,22 +1144,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000829 - Expected counter: 30 - Gas limit: 1996 + Fee to the baker: ꜩ0.000688 + Expected counter: 29 + Gas limit: 1118 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000829 - payload fees(the block proposer) ....... +ꜩ0.000829 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000688 + payload fees(the block proposer) ....... +ꜩ0.000688 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1895.056 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 32 + Consumed gas: 1017.284 + Resulting inbox state: { level = 31 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 30 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 496 message_counter = 30 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1297,9 +1171,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1877.772 units (will add 100 for safety) +Estimated gas: 1017.880 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1310,23 +1184,20 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000479 - Expected counter: 31 - Gas limit: 1978 + Fee to the baker: ꜩ0.0007 + Expected counter: 30 + Gas limit: 1118 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000479 - payload fees(the block proposer) ....... +ꜩ0.000479 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.0007 + payload fees(the block proposer) ....... +ꜩ0.0007 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1877.772 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 33 + Consumed gas: 1017.880 + Resulting inbox state: { level = 32 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 31 - starting_level_of_current_commitment_period = 32 - message_counter = 1 + nb_messages_in_commitment_period = 528 + message_counter = 31 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] @@ -1340,9 +1211,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1878.368 units (will add 100 for safety) +Estimated gas: 1000.596 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1353,22 +1224,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000491 - Expected counter: 32 - Gas limit: 1979 + Fee to the baker: ꜩ0.000351 + Expected counter: 31 + Gas limit: 1101 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000491 - payload fees(the block proposer) ....... +ꜩ0.000491 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000351 + payload fees(the block proposer) ....... +ꜩ0.000351 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1878.496 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 34 + Consumed gas: 1000.596 + Resulting inbox state: { level = 33 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 33 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 531 message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1384,9 +1252,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1879.171 units (will add 100 for safety) +Estimated gas: 1001.192 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1397,22 +1265,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000503 - Expected counter: 33 - Gas limit: 1980 + Fee to the baker: ꜩ0.000363 + Expected counter: 32 + Gas limit: 1102 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000503 - payload fees(the block proposer) ....... +ꜩ0.000503 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000363 + payload fees(the block proposer) ....... +ꜩ0.000363 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1879.171 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 35 + Consumed gas: 1001.192 + Resulting inbox state: { level = 34 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 36 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 535 message_counter = 3 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1428,9 +1293,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1879.767 units (will add 100 for safety) +Estimated gas: 1001.788 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1441,22 +1306,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000515 - Expected counter: 34 - Gas limit: 1980 + Fee to the baker: ꜩ0.000375 + Expected counter: 33 + Gas limit: 1102 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000515 - payload fees(the block proposer) ....... +ꜩ0.000515 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000375 + payload fees(the block proposer) ....... +ꜩ0.000375 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1879.767 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 36 + Consumed gas: 1001.788 + Resulting inbox state: { level = 35 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 40 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 540 message_counter = 4 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1472,9 +1334,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1880.363 units (will add 100 for safety) +Estimated gas: 1002.384 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1485,22 +1347,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000528 - Expected counter: 35 - Gas limit: 1981 + Fee to the baker: ꜩ0.000387 + Expected counter: 34 + Gas limit: 1103 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000528 - payload fees(the block proposer) ....... +ꜩ0.000528 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000387 + payload fees(the block proposer) ....... +ꜩ0.000387 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1880.363 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 37 + Consumed gas: 1002.384 + Resulting inbox state: { level = 36 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 45 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 546 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1516,9 +1375,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1880.959 units (will add 100 for safety) +Estimated gas: 1002.980 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1529,22 +1388,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00054 - Expected counter: 36 - Gas limit: 1981 + Fee to the baker: ꜩ0.000399 + Expected counter: 35 + Gas limit: 1103 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00054 - payload fees(the block proposer) ....... +ꜩ0.00054 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000399 + payload fees(the block proposer) ....... +ꜩ0.000399 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1880.959 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 38 + Consumed gas: 1002.980 + Resulting inbox state: { level = 37 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 51 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 553 message_counter = 6 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1560,9 +1416,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1881.555 units (will add 100 for safety) +Estimated gas: 1003.576 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1573,22 +1429,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000552 - Expected counter: 37 - Gas limit: 1982 + Fee to the baker: ꜩ0.000411 + Expected counter: 36 + Gas limit: 1104 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000552 - payload fees(the block proposer) ....... +ꜩ0.000552 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000411 + payload fees(the block proposer) ....... +ꜩ0.000411 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1881.555 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 39 + Consumed gas: 1003.576 + Resulting inbox state: { level = 38 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 58 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 561 message_counter = 7 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1604,9 +1457,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1882.151 units (will add 100 for safety) +Estimated gas: 1004.172 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1617,22 +1470,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000564 - Expected counter: 38 - Gas limit: 1983 + Fee to the baker: ꜩ0.000423 + Expected counter: 37 + Gas limit: 1105 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000564 - payload fees(the block proposer) ....... +ꜩ0.000564 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000423 + payload fees(the block proposer) ....... +ꜩ0.000423 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1882.151 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 40 + Consumed gas: 1004.172 + Resulting inbox state: { level = 39 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 66 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 570 message_counter = 8 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1648,9 +1498,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1882.747 units (will add 100 for safety) +Estimated gas: 1004.768 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1661,22 +1511,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000576 - Expected counter: 39 - Gas limit: 1983 + Fee to the baker: ꜩ0.000435 + Expected counter: 38 + Gas limit: 1105 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000576 - payload fees(the block proposer) ....... +ꜩ0.000576 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000435 + payload fees(the block proposer) ....... +ꜩ0.000435 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1882.747 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 41 + Consumed gas: 1004.768 + Resulting inbox state: { level = 40 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 75 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 580 message_counter = 9 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1692,9 +1539,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1883.343 units (will add 100 for safety) +Estimated gas: 1005.364 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1705,22 +1552,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000588 - Expected counter: 40 - Gas limit: 1984 + Fee to the baker: ꜩ0.000447 + Expected counter: 39 + Gas limit: 1106 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000588 - payload fees(the block proposer) ....... +ꜩ0.000588 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000447 + payload fees(the block proposer) ....... +ꜩ0.000447 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1883.343 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 42 + Consumed gas: 1005.364 + Resulting inbox state: { level = 41 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 85 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 591 message_counter = 10 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1736,9 +1580,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1883.939 units (will add 100 for safety) +Estimated gas: 1005.960 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1749,22 +1593,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.0006 - Expected counter: 41 - Gas limit: 1984 + Fee to the baker: ꜩ0.000459 + Expected counter: 40 + Gas limit: 1106 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.0006 - payload fees(the block proposer) ....... +ꜩ0.0006 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000459 + payload fees(the block proposer) ....... +ꜩ0.000459 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1883.939 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 43 + Consumed gas: 1005.960 + Resulting inbox state: { level = 42 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 96 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 603 message_counter = 11 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1780,9 +1621,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1884.535 units (will add 100 for safety) +Estimated gas: 1006.556 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1793,22 +1634,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000612 - Expected counter: 42 - Gas limit: 1985 + Fee to the baker: ꜩ0.000471 + Expected counter: 41 + Gas limit: 1107 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000612 - payload fees(the block proposer) ....... +ꜩ0.000612 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000471 + payload fees(the block proposer) ....... +ꜩ0.000471 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1884.535 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 44 + Consumed gas: 1006.556 + Resulting inbox state: { level = 43 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 108 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 616 message_counter = 12 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1824,9 +1662,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1885.131 units (will add 100 for safety) +Estimated gas: 1007.152 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1837,22 +1675,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000624 - Expected counter: 43 - Gas limit: 1986 + Fee to the baker: ꜩ0.000483 + Expected counter: 42 + Gas limit: 1108 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000624 - payload fees(the block proposer) ....... +ꜩ0.000624 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000483 + payload fees(the block proposer) ....... +ꜩ0.000483 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1885.131 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 45 + Consumed gas: 1007.152 + Resulting inbox state: { level = 44 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 121 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 630 message_counter = 13 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1868,9 +1703,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1885.727 units (will add 100 for safety) +Estimated gas: 1007.748 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1881,22 +1716,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000636 - Expected counter: 44 - Gas limit: 1986 + Fee to the baker: ꜩ0.000495 + Expected counter: 43 + Gas limit: 1108 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000636 - payload fees(the block proposer) ....... +ꜩ0.000636 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000495 + payload fees(the block proposer) ....... +ꜩ0.000495 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1885.727 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 46 + Consumed gas: 1007.748 + Resulting inbox state: { level = 45 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 135 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 645 message_counter = 14 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1912,9 +1744,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1886.323 units (will add 100 for safety) +Estimated gas: 1008.344 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1925,22 +1757,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000648 - Expected counter: 45 - Gas limit: 1987 + Fee to the baker: ꜩ0.000507 + Expected counter: 44 + Gas limit: 1109 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000648 - payload fees(the block proposer) ....... +ꜩ0.000648 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000507 + payload fees(the block proposer) ....... +ꜩ0.000507 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1886.323 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 47 + Consumed gas: 1008.344 + Resulting inbox state: { level = 46 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 150 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 661 message_counter = 15 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1956,9 +1785,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1886.919 units (will add 100 for safety) +Estimated gas: 1008.940 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1969,22 +1798,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00066 - Expected counter: 46 - Gas limit: 1987 + Fee to the baker: ꜩ0.000519 + Expected counter: 45 + Gas limit: 1109 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00066 - payload fees(the block proposer) ....... +ꜩ0.00066 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000519 + payload fees(the block proposer) ....... +ꜩ0.000519 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1886.919 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 48 + Consumed gas: 1008.940 + Resulting inbox state: { level = 47 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 166 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 678 message_counter = 16 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2000,9 +1826,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1887.515 units (will add 100 for safety) +Estimated gas: 1009.536 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2013,22 +1839,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000672 - Expected counter: 47 - Gas limit: 1988 + Fee to the baker: ꜩ0.000531 + Expected counter: 46 + Gas limit: 1110 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000672 - payload fees(the block proposer) ....... +ꜩ0.000672 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000531 + payload fees(the block proposer) ....... +ꜩ0.000531 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1887.515 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 49 + Consumed gas: 1009.536 + Resulting inbox state: { level = 48 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 183 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 696 message_counter = 17 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2044,9 +1867,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1888.111 units (will add 100 for safety) +Estimated gas: 1010.132 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2057,22 +1880,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000684 - Expected counter: 48 - Gas limit: 1989 + Fee to the baker: ꜩ0.000544 + Expected counter: 47 + Gas limit: 1111 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000684 - payload fees(the block proposer) ....... +ꜩ0.000684 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000544 + payload fees(the block proposer) ....... +ꜩ0.000544 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1888.111 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 50 + Consumed gas: 1010.132 + Resulting inbox state: { level = 49 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 201 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 715 message_counter = 18 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2088,9 +1908,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1888.707 units (will add 100 for safety) +Estimated gas: 1010.728 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2101,22 +1921,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000696 - Expected counter: 49 - Gas limit: 1989 + Fee to the baker: ꜩ0.000556 + Expected counter: 48 + Gas limit: 1111 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000696 - payload fees(the block proposer) ....... +ꜩ0.000696 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000556 + payload fees(the block proposer) ....... +ꜩ0.000556 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1888.707 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 51 + Consumed gas: 1010.728 + Resulting inbox state: { level = 50 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 220 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 735 message_counter = 19 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2132,9 +1949,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1889.303 units (will add 100 for safety) +Estimated gas: 1011.324 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2145,22 +1962,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000708 - Expected counter: 50 - Gas limit: 1990 + Fee to the baker: ꜩ0.000568 + Expected counter: 49 + Gas limit: 1112 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000708 - payload fees(the block proposer) ....... +ꜩ0.000708 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000568 + payload fees(the block proposer) ....... +ꜩ0.000568 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1889.303 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 52 + Consumed gas: 1011.324 + Resulting inbox state: { level = 51 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 240 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 756 message_counter = 20 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2176,9 +1990,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1889.899 units (will add 100 for safety) +Estimated gas: 1011.920 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2189,22 +2003,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00072 - Expected counter: 51 - Gas limit: 1990 + Fee to the baker: ꜩ0.00058 + Expected counter: 50 + Gas limit: 1112 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00072 - payload fees(the block proposer) ....... +ꜩ0.00072 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.00058 + payload fees(the block proposer) ....... +ꜩ0.00058 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1889.899 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 53 + Consumed gas: 1011.920 + Resulting inbox state: { level = 52 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 261 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 778 message_counter = 21 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2220,9 +2031,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1890.495 units (will add 100 for safety) +Estimated gas: 1012.516 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2233,22 +2044,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000733 - Expected counter: 52 - Gas limit: 1991 + Fee to the baker: ꜩ0.000592 + Expected counter: 51 + Gas limit: 1113 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000733 - payload fees(the block proposer) ....... +ꜩ0.000733 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000592 + payload fees(the block proposer) ....... +ꜩ0.000592 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1890.495 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 54 + Consumed gas: 1012.516 + Resulting inbox state: { level = 53 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 283 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 801 message_counter = 22 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2264,9 +2072,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1891.091 units (will add 100 for safety) +Estimated gas: 1013.112 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2277,22 +2085,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000745 - Expected counter: 53 - Gas limit: 1992 + Fee to the baker: ꜩ0.000604 + Expected counter: 52 + Gas limit: 1114 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000745 - payload fees(the block proposer) ....... +ꜩ0.000745 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000604 + payload fees(the block proposer) ....... +ꜩ0.000604 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1891.091 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 55 + Consumed gas: 1013.112 + Resulting inbox state: { level = 54 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 306 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 825 message_counter = 23 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2308,9 +2113,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1891.687 units (will add 100 for safety) +Estimated gas: 1013.708 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2321,22 +2126,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000757 - Expected counter: 54 - Gas limit: 1992 + Fee to the baker: ꜩ0.000616 + Expected counter: 53 + Gas limit: 1114 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000757 - payload fees(the block proposer) ....... +ꜩ0.000757 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000616 + payload fees(the block proposer) ....... +ꜩ0.000616 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1891.687 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 56 + Consumed gas: 1013.708 + Resulting inbox state: { level = 55 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 330 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 850 message_counter = 24 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2352,9 +2154,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1892.283 units (will add 100 for safety) +Estimated gas: 1014.304 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2365,22 +2167,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000769 - Expected counter: 55 - Gas limit: 1993 + Fee to the baker: ꜩ0.000628 + Expected counter: 54 + Gas limit: 1115 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000769 - payload fees(the block proposer) ....... +ꜩ0.000769 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000628 + payload fees(the block proposer) ....... +ꜩ0.000628 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1892.283 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 57 + Consumed gas: 1014.304 + Resulting inbox state: { level = 56 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 355 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 876 message_counter = 25 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2396,9 +2195,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1892.879 units (will add 100 for safety) +Estimated gas: 1014.900 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2409,22 +2208,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000781 - Expected counter: 56 - Gas limit: 1993 + Fee to the baker: ꜩ0.00064 + Expected counter: 55 + Gas limit: 1115 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000781 - payload fees(the block proposer) ....... +ꜩ0.000781 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.00064 + payload fees(the block proposer) ....... +ꜩ0.00064 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1892.879 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 58 + Consumed gas: 1014.900 + Resulting inbox state: { level = 57 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 381 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 903 message_counter = 26 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2440,9 +2236,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1893.475 units (will add 100 for safety) +Estimated gas: 1015.496 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2453,22 +2249,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000793 - Expected counter: 57 - Gas limit: 1994 + Fee to the baker: ꜩ0.000652 + Expected counter: 56 + Gas limit: 1116 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000793 - payload fees(the block proposer) ....... +ꜩ0.000793 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000652 + payload fees(the block proposer) ....... +ꜩ0.000652 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1893.475 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 59 + Consumed gas: 1015.496 + Resulting inbox state: { level = 58 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 408 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 931 message_counter = 27 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2484,9 +2277,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1894.071 units (will add 100 for safety) +Estimated gas: 1016.092 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2497,22 +2290,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000805 - Expected counter: 58 - Gas limit: 1995 + Fee to the baker: ꜩ0.000664 + Expected counter: 57 + Gas limit: 1117 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000805 - payload fees(the block proposer) ....... +ꜩ0.000805 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000664 + payload fees(the block proposer) ....... +ꜩ0.000664 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1894.071 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 60 + Consumed gas: 1016.092 + Resulting inbox state: { level = 59 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 436 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 960 message_counter = 28 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2528,9 +2318,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1894.667 units (will add 100 for safety) +Estimated gas: 1016.688 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2541,22 +2331,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000817 - Expected counter: 59 - Gas limit: 1995 + Fee to the baker: ꜩ0.000676 + Expected counter: 58 + Gas limit: 1117 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000817 - payload fees(the block proposer) ....... +ꜩ0.000817 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000676 + payload fees(the block proposer) ....... +ꜩ0.000676 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1894.667 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 61 + Consumed gas: 1016.688 + Resulting inbox state: { level = 60 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 465 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 990 message_counter = 29 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2572,9 +2359,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1895.263 units (will add 100 for safety) +Estimated gas: 1017.284 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2585,22 +2372,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000829 - Expected counter: 60 - Gas limit: 1996 + Fee to the baker: ꜩ0.000688 + Expected counter: 59 + Gas limit: 1118 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000829 - payload fees(the block proposer) ....... +ꜩ0.000829 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000688 + payload fees(the block proposer) ....... +ꜩ0.000688 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1895.263 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 62 + Consumed gas: 1017.284 + Resulting inbox state: { level = 61 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 30 - starting_level_of_current_commitment_period = 62 + nb_messages_in_commitment_period = 1021 message_counter = 30 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2616,13 +2400,54 @@ This sequence of operations was run: } +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 +Node is bootstrapped. +Estimated gas: 1017.880 units (will add 100 for safety) +Estimated storage: no bytes added +Operation successfully injected in the node. +Operation hash is '[OPERATION_HASH]' +NOT waiting for the operation to be included. +Use command + octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] +and/or an external block explorer to make sure that it has been included. +This sequence of operations was run: + Manager signed operations: + From: [PUBLIC_KEY_HASH] + Fee to the baker: ꜩ0.0007 + Expected counter: 60 + Gas limit: 1118 + Storage limit: 0 bytes + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ0.0007 + payload fees(the block proposer) ....... +ꜩ0.0007 + Smart contract rollup messages submission + This smart contract rollup messages submission was successfully applied + Consumed gas: 1017.880 + Resulting inbox state: { level = 62 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 1053 + message_counter = 31 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 61 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + ./octez-sc-rollup-client-alpha rpc get /local/last_published_commitment { "commitment": { "compressed_state": "[SC_ROLLUP_PVM_STATE_HASH]", "inbox_level": 32, "predecessor": "[SC_ROLLUP_COMMITMENT_HASH]", - "number_of_ticks": "5117" }, + "number_of_ticks": "5177" }, "hash": "[SC_ROLLUP_COMMITMENT_HASH]", "published_at_level": 35 } diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (commitment_is_stor.out b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (commitment_is_stor.out index f6da6ec1b6d1..0e3db719096a 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (commitment_is_stor.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (commitment_is_stor.out @@ -1,8 +1,8 @@ ./octez-client --wait none originate sc rollup from bootstrap1 of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.449 units (will add 100 for safety) -Estimated storage: 6655 bytes added (will add 20 for safety) +Estimated gas: 2909.925 units (will add 100 for safety) +Estimated storage: 6524 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,34 +12,34 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00067 + Fee to the baker: ꜩ0.000649 Expected counter: 1 - Gas limit: 3211 - Storage limit: 6675 bytes + Gas limit: 3010 + Storage limit: 6544 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00067 - payload fees(the block proposer) ....... +ꜩ0.00067 + [PUBLIC_KEY_HASH] ... -ꜩ0.000649 + payload fees(the block proposer) ....... +ꜩ0.000649 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector Blake2B hash: '0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8' This smart contract rollup origination was successfully applied - Consumed gas: 3110.449 - Storage size: 6655 bytes + Consumed gas: 2909.925 + Storage size: 6524 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.66375 - storage fees ........................... +ꜩ1.66375 + [PUBLIC_KEY_HASH] ... -ꜩ1.631 + storage fees ........................... +ꜩ1.631 ./octez-client rpc get '/chains/main/blocks/head/context/sc_rollup/[SC_ROLLUP_HASH]/genesis_info' { "level": 2, "commitment_hash": "[SC_ROLLUP_COMMITMENT_HASH]" } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1876.722 units (will add 100 for safety) +Estimated gas: 1000.596 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -50,61 +50,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000479 + Fee to the baker: ꜩ0.000351 Expected counter: 1 - Gas limit: 1977 + Gas limit: 1101 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000479 - payload fees(the block proposer) ....... +ꜩ0.000479 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] - This smart contract rollup messages submission was successfully applied - Consumed gas: 1876.850 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 3 - current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 1 - starting_level_of_current_commitment_period = 2 - message_counter = 1 - old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] - - content = [SC_ROLLUP_INBOX_HASH] - index = 1 - back_pointers = [SC_ROLLUP_INBOX_HASH] - - } - - -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' -Node is bootstrapped. -Estimated gas: 1877.540 units (will add 100 for safety) -Estimated storage: no bytes added -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000491 - Expected counter: 2 - Gas limit: 1978 - Storage limit: 0 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000491 - payload fees(the block proposer) ....... +ꜩ0.000491 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000351 + payload fees(the block proposer) ....... +ꜩ0.000351 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1877.668 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 4 + Consumed gas: 1000.596 + Resulting inbox state: { level = 3 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 3 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 6 message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -116,9 +74,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1878.343 units (will add 100 for safety) +Estimated gas: 1001.192 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -129,22 +87,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000503 - Expected counter: 3 - Gas limit: 1979 + Fee to the baker: ꜩ0.000363 + Expected counter: 2 + Gas limit: 1102 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000503 - payload fees(the block proposer) ....... +ꜩ0.000503 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000363 + payload fees(the block proposer) ....... +ꜩ0.000363 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1878.343 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 5 + Consumed gas: 1001.192 + Resulting inbox state: { level = 4 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 6 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 10 message_counter = 3 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -156,9 +111,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1878.939 units (will add 100 for safety) +Estimated gas: 1001.788 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -169,22 +124,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000515 - Expected counter: 4 - Gas limit: 1979 + Fee to the baker: ꜩ0.000375 + Expected counter: 3 + Gas limit: 1102 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000515 - payload fees(the block proposer) ....... +ꜩ0.000515 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000375 + payload fees(the block proposer) ....... +ꜩ0.000375 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1879.067 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 6 + Consumed gas: 1001.788 + Resulting inbox state: { level = 5 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 10 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 15 message_counter = 4 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -197,9 +149,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1879.742 units (will add 100 for safety) +Estimated gas: 1002.384 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -210,22 +162,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000527 - Expected counter: 5 - Gas limit: 1980 + Fee to the baker: ꜩ0.000387 + Expected counter: 4 + Gas limit: 1103 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000527 - payload fees(the block proposer) ....... +ꜩ0.000527 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000387 + payload fees(the block proposer) ....... +ꜩ0.000387 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1879.742 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 7 + Consumed gas: 1002.384 + Resulting inbox state: { level = 6 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 15 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 21 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -238,9 +187,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1880.338 units (will add 100 for safety) +Estimated gas: 1002.980 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -251,22 +200,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00054 - Expected counter: 6 - Gas limit: 1981 + Fee to the baker: ꜩ0.000399 + Expected counter: 5 + Gas limit: 1103 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00054 - payload fees(the block proposer) ....... +ꜩ0.00054 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000399 + payload fees(the block proposer) ....... +ꜩ0.000399 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1880.338 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 8 + Consumed gas: 1002.980 + Resulting inbox state: { level = 7 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 21 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 28 message_counter = 6 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -279,9 +225,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1880.934 units (will add 100 for safety) +Estimated gas: 1003.576 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -292,22 +238,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000552 - Expected counter: 7 - Gas limit: 1981 + Fee to the baker: ꜩ0.000411 + Expected counter: 6 + Gas limit: 1104 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000552 - payload fees(the block proposer) ....... +ꜩ0.000552 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000411 + payload fees(the block proposer) ....... +ꜩ0.000411 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1880.934 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 9 + Consumed gas: 1003.576 + Resulting inbox state: { level = 8 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 28 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 36 message_counter = 7 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -320,9 +263,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1881.530 units (will add 100 for safety) +Estimated gas: 1004.172 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -333,22 +276,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000564 - Expected counter: 8 - Gas limit: 1982 + Fee to the baker: ꜩ0.000423 + Expected counter: 7 + Gas limit: 1105 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000564 - payload fees(the block proposer) ....... +ꜩ0.000564 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000423 + payload fees(the block proposer) ....... +ꜩ0.000423 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1881.658 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 10 + Consumed gas: 1004.172 + Resulting inbox state: { level = 9 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 36 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 45 message_counter = 8 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -362,9 +302,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1882.333 units (will add 100 for safety) +Estimated gas: 1004.768 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -375,22 +315,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000576 - Expected counter: 9 - Gas limit: 1983 + Fee to the baker: ꜩ0.000435 + Expected counter: 8 + Gas limit: 1105 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000576 - payload fees(the block proposer) ....... +ꜩ0.000576 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000435 + payload fees(the block proposer) ....... +ꜩ0.000435 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1882.333 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 11 + Consumed gas: 1004.768 + Resulting inbox state: { level = 10 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 45 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 55 message_counter = 9 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -404,9 +341,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1882.929 units (will add 100 for safety) +Estimated gas: 1005.364 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -417,22 +354,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000588 - Expected counter: 10 - Gas limit: 1983 + Fee to the baker: ꜩ0.000447 + Expected counter: 9 + Gas limit: 1106 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000588 - payload fees(the block proposer) ....... +ꜩ0.000588 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000447 + payload fees(the block proposer) ....... +ꜩ0.000447 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1882.929 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 12 + Consumed gas: 1005.364 + Resulting inbox state: { level = 11 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 55 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 66 message_counter = 10 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -446,9 +380,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1883.525 units (will add 100 for safety) +Estimated gas: 1005.960 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -459,22 +393,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.0006 - Expected counter: 11 - Gas limit: 1984 + Fee to the baker: ꜩ0.000459 + Expected counter: 10 + Gas limit: 1106 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.0006 - payload fees(the block proposer) ....... +ꜩ0.0006 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000459 + payload fees(the block proposer) ....... +ꜩ0.000459 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1883.525 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 13 + Consumed gas: 1005.960 + Resulting inbox state: { level = 12 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 66 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 78 message_counter = 11 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -488,9 +419,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1884.121 units (will add 100 for safety) +Estimated gas: 1006.556 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -501,22 +432,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000612 - Expected counter: 12 - Gas limit: 1985 + Fee to the baker: ꜩ0.000471 + Expected counter: 11 + Gas limit: 1107 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000612 - payload fees(the block proposer) ....... +ꜩ0.000612 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000471 + payload fees(the block proposer) ....... +ꜩ0.000471 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1884.121 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 14 + Consumed gas: 1006.556 + Resulting inbox state: { level = 13 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 78 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 91 message_counter = 12 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -530,9 +458,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1884.717 units (will add 100 for safety) +Estimated gas: 1007.152 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -543,22 +471,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000624 - Expected counter: 13 - Gas limit: 1985 + Fee to the baker: ꜩ0.000483 + Expected counter: 12 + Gas limit: 1108 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000624 - payload fees(the block proposer) ....... +ꜩ0.000624 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000483 + payload fees(the block proposer) ....... +ꜩ0.000483 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1884.717 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 15 + Consumed gas: 1007.152 + Resulting inbox state: { level = 14 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 91 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 105 message_counter = 13 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -572,9 +497,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1885.313 units (will add 100 for safety) +Estimated gas: 1007.748 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -585,22 +510,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000636 - Expected counter: 14 - Gas limit: 1986 + Fee to the baker: ꜩ0.000495 + Expected counter: 13 + Gas limit: 1108 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000636 - payload fees(the block proposer) ....... +ꜩ0.000636 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000495 + payload fees(the block proposer) ....... +ꜩ0.000495 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1885.313 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 16 + Consumed gas: 1007.748 + Resulting inbox state: { level = 15 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 105 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 120 message_counter = 14 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -614,9 +536,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1885.909 units (will add 100 for safety) +Estimated gas: 1008.344 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -627,22 +549,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000648 - Expected counter: 15 - Gas limit: 1986 + Fee to the baker: ꜩ0.000507 + Expected counter: 14 + Gas limit: 1109 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000648 - payload fees(the block proposer) ....... +ꜩ0.000648 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000507 + payload fees(the block proposer) ....... +ꜩ0.000507 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1885.909 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 17 + Consumed gas: 1008.344 + Resulting inbox state: { level = 16 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 120 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 136 message_counter = 15 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -656,9 +575,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1886.505 units (will add 100 for safety) +Estimated gas: 1008.940 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -669,22 +588,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00066 - Expected counter: 16 - Gas limit: 1987 + Fee to the baker: ꜩ0.000519 + Expected counter: 15 + Gas limit: 1109 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00066 - payload fees(the block proposer) ....... +ꜩ0.00066 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000519 + payload fees(the block proposer) ....... +ꜩ0.000519 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1886.633 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 18 + Consumed gas: 1008.940 + Resulting inbox state: { level = 17 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 136 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 153 message_counter = 16 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -699,9 +615,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1887.308 units (will add 100 for safety) +Estimated gas: 1009.536 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -712,22 +628,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000672 - Expected counter: 17 - Gas limit: 1988 + Fee to the baker: ꜩ0.000531 + Expected counter: 16 + Gas limit: 1110 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000672 - payload fees(the block proposer) ....... +ꜩ0.000672 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000531 + payload fees(the block proposer) ....... +ꜩ0.000531 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1887.308 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 19 + Consumed gas: 1009.536 + Resulting inbox state: { level = 18 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 153 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 171 message_counter = 17 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -742,9 +655,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1887.904 units (will add 100 for safety) +Estimated gas: 1010.132 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -755,22 +668,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000684 - Expected counter: 18 - Gas limit: 1988 + Fee to the baker: ꜩ0.000544 + Expected counter: 17 + Gas limit: 1111 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000684 - payload fees(the block proposer) ....... +ꜩ0.000684 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000544 + payload fees(the block proposer) ....... +ꜩ0.000544 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1887.904 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 20 + Consumed gas: 1010.132 + Resulting inbox state: { level = 19 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 171 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 190 message_counter = 18 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -785,9 +695,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1888.500 units (will add 100 for safety) +Estimated gas: 1010.728 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -798,22 +708,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000696 - Expected counter: 19 - Gas limit: 1989 + Fee to the baker: ꜩ0.000556 + Expected counter: 18 + Gas limit: 1111 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000696 - payload fees(the block proposer) ....... +ꜩ0.000696 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000556 + payload fees(the block proposer) ....... +ꜩ0.000556 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1888.500 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 21 + Consumed gas: 1010.728 + Resulting inbox state: { level = 20 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 190 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 210 message_counter = 19 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -828,9 +735,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1889.096 units (will add 100 for safety) +Estimated gas: 1011.324 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -841,22 +748,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000708 - Expected counter: 20 - Gas limit: 1990 + Fee to the baker: ꜩ0.000568 + Expected counter: 19 + Gas limit: 1112 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000708 - payload fees(the block proposer) ....... +ꜩ0.000708 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000568 + payload fees(the block proposer) ....... +ꜩ0.000568 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1889.096 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 22 + Consumed gas: 1011.324 + Resulting inbox state: { level = 21 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 210 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 231 message_counter = 20 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -871,9 +775,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1889.692 units (will add 100 for safety) +Estimated gas: 1011.920 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -884,22 +788,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00072 - Expected counter: 21 - Gas limit: 1990 + Fee to the baker: ꜩ0.00058 + Expected counter: 20 + Gas limit: 1112 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00072 - payload fees(the block proposer) ....... +ꜩ0.00072 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.00058 + payload fees(the block proposer) ....... +ꜩ0.00058 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1889.692 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 23 + Consumed gas: 1011.920 + Resulting inbox state: { level = 22 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 231 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 253 message_counter = 21 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -914,9 +815,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1890.288 units (will add 100 for safety) +Estimated gas: 1012.516 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -927,22 +828,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000733 - Expected counter: 22 - Gas limit: 1991 + Fee to the baker: ꜩ0.000592 + Expected counter: 21 + Gas limit: 1113 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000733 - payload fees(the block proposer) ....... +ꜩ0.000733 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000592 + payload fees(the block proposer) ....... +ꜩ0.000592 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1890.288 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 24 + Consumed gas: 1012.516 + Resulting inbox state: { level = 23 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 253 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 276 message_counter = 22 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -957,9 +855,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1890.884 units (will add 100 for safety) +Estimated gas: 1013.112 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -970,22 +868,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000745 - Expected counter: 23 - Gas limit: 1991 + Fee to the baker: ꜩ0.000604 + Expected counter: 22 + Gas limit: 1114 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000745 - payload fees(the block proposer) ....... +ꜩ0.000745 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000604 + payload fees(the block proposer) ....... +ꜩ0.000604 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1890.884 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 25 + Consumed gas: 1013.112 + Resulting inbox state: { level = 24 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 276 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 300 message_counter = 23 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1000,9 +895,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1891.480 units (will add 100 for safety) +Estimated gas: 1013.708 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1013,22 +908,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000757 - Expected counter: 24 - Gas limit: 1992 + Fee to the baker: ꜩ0.000616 + Expected counter: 23 + Gas limit: 1114 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000757 - payload fees(the block proposer) ....... +ꜩ0.000757 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000616 + payload fees(the block proposer) ....... +ꜩ0.000616 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1891.480 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 26 + Consumed gas: 1013.708 + Resulting inbox state: { level = 25 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 300 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 325 message_counter = 24 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1043,9 +935,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1892.076 units (will add 100 for safety) +Estimated gas: 1014.304 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1056,22 +948,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000769 - Expected counter: 25 - Gas limit: 1993 + Fee to the baker: ꜩ0.000628 + Expected counter: 24 + Gas limit: 1115 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000769 - payload fees(the block proposer) ....... +ꜩ0.000769 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000628 + payload fees(the block proposer) ....... +ꜩ0.000628 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1892.076 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 27 + Consumed gas: 1014.304 + Resulting inbox state: { level = 26 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 325 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 351 message_counter = 25 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1086,9 +975,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1892.672 units (will add 100 for safety) +Estimated gas: 1014.900 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1099,22 +988,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000781 - Expected counter: 26 - Gas limit: 1993 + Fee to the baker: ꜩ0.00064 + Expected counter: 25 + Gas limit: 1115 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000781 - payload fees(the block proposer) ....... +ꜩ0.000781 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.00064 + payload fees(the block proposer) ....... +ꜩ0.00064 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1892.672 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 28 + Consumed gas: 1014.900 + Resulting inbox state: { level = 27 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 351 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 378 message_counter = 26 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1129,9 +1015,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1893.268 units (will add 100 for safety) +Estimated gas: 1015.496 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1142,22 +1028,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000793 - Expected counter: 27 - Gas limit: 1994 + Fee to the baker: ꜩ0.000652 + Expected counter: 26 + Gas limit: 1116 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000793 - payload fees(the block proposer) ....... +ꜩ0.000793 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000652 + payload fees(the block proposer) ....... +ꜩ0.000652 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1893.268 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 29 + Consumed gas: 1015.496 + Resulting inbox state: { level = 28 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 378 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 406 message_counter = 27 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1172,9 +1055,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1893.864 units (will add 100 for safety) +Estimated gas: 1016.092 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1185,22 +1068,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000805 - Expected counter: 28 - Gas limit: 1994 + Fee to the baker: ꜩ0.000664 + Expected counter: 27 + Gas limit: 1117 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000805 - payload fees(the block proposer) ....... +ꜩ0.000805 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000664 + payload fees(the block proposer) ....... +ꜩ0.000664 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1893.864 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 30 + Consumed gas: 1016.092 + Resulting inbox state: { level = 29 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 406 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 435 message_counter = 28 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1215,9 +1095,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1894.460 units (will add 100 for safety) +Estimated gas: 1016.688 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1228,22 +1108,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000817 - Expected counter: 29 - Gas limit: 1995 + Fee to the baker: ꜩ0.000676 + Expected counter: 28 + Gas limit: 1117 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000817 - payload fees(the block proposer) ....... +ꜩ0.000817 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000676 + payload fees(the block proposer) ....... +ꜩ0.000676 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1894.460 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 31 + Consumed gas: 1016.688 + Resulting inbox state: { level = 30 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 435 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 465 message_counter = 29 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1258,9 +1135,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1895.056 units (will add 100 for safety) +Estimated gas: 1017.284 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1271,22 +1148,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000829 - Expected counter: 30 - Gas limit: 1996 + Fee to the baker: ꜩ0.000688 + Expected counter: 29 + Gas limit: 1118 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000829 - payload fees(the block proposer) ....... +ꜩ0.000829 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000688 + payload fees(the block proposer) ....... +ꜩ0.000688 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1895.056 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 32 + Consumed gas: 1017.284 + Resulting inbox state: { level = 31 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 30 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 496 message_counter = 30 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1301,13 +1175,53 @@ This sequence of operations was run: } +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 +Node is bootstrapped. +Estimated gas: 1017.880 units (will add 100 for safety) +Estimated storage: no bytes added +Operation successfully injected in the node. +Operation hash is '[OPERATION_HASH]' +NOT waiting for the operation to be included. +Use command + octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] +and/or an external block explorer to make sure that it has been included. +This sequence of operations was run: + Manager signed operations: + From: [PUBLIC_KEY_HASH] + Fee to the baker: ꜩ0.0007 + Expected counter: 30 + Gas limit: 1118 + Storage limit: 0 bytes + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ0.0007 + payload fees(the block proposer) ....... +ꜩ0.0007 + Smart contract rollup messages submission + This smart contract rollup messages submission was successfully applied + Consumed gas: 1017.880 + Resulting inbox state: { level = 32 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 528 + message_counter = 31 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 31 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + ./octez-sc-rollup-client-alpha rpc get /global/last_stored_commitment { "commitment": { "compressed_state": "[SC_ROLLUP_PVM_STATE_HASH]", "inbox_level": 32, "predecessor": "[SC_ROLLUP_COMMITMENT_HASH]", - "number_of_ticks": "5117" }, + "number_of_ticks": "5177" }, "hash": "[SC_ROLLUP_COMMITMENT_HASH]" } ./octez-sc-rollup-client-alpha rpc get /local/last_published_commitment @@ -1316,6 +1230,6 @@ This sequence of operations was run: "[SC_ROLLUP_PVM_STATE_HASH]", "inbox_level": 32, "predecessor": "[SC_ROLLUP_COMMITMENT_HASH]", - "number_of_ticks": "5117" }, + "number_of_ticks": "5177" }, "hash": "[SC_ROLLUP_COMMITMENT_HASH]", "published_at_level": 35 } diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (first_published_at.out b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (first_published_at.out index be2881509b74..43d2e5b582f8 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (first_published_at.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (first_published_at.out @@ -1,8 +1,8 @@ ./octez-client --wait none originate sc rollup from bootstrap1 of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.449 units (will add 100 for safety) -Estimated storage: 6655 bytes added (will add 20 for safety) +Estimated gas: 2909.925 units (will add 100 for safety) +Estimated storage: 6524 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,25 +12,25 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00067 + Fee to the baker: ꜩ0.000649 Expected counter: 1 - Gas limit: 3211 - Storage limit: 6675 bytes + Gas limit: 3010 + Storage limit: 6544 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00067 - payload fees(the block proposer) ....... +ꜩ0.00067 + [PUBLIC_KEY_HASH] ... -ꜩ0.000649 + payload fees(the block proposer) ....... +ꜩ0.000649 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector Blake2B hash: '0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8' This smart contract rollup origination was successfully applied - Consumed gas: 3110.449 - Storage size: 6655 bytes + Consumed gas: 2909.925 + Storage size: 6524 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.66375 - storage fees ........................... +ꜩ1.66375 + [PUBLIC_KEY_HASH] ... -ꜩ1.631 + storage fees ........................... +ꜩ1.631 ./octez-client rpc get '/chains/main/blocks/head/context/sc_rollup/[SC_ROLLUP_HASH]/genesis_info' @@ -43,7 +43,7 @@ This sequence of operations was run: "[SC_ROLLUP_PVM_STATE_HASH]", "inbox_level": 32, "predecessor": "[SC_ROLLUP_COMMITMENT_HASH]", - "number_of_ticks": "0" }, + "number_of_ticks": "62" }, "hash": "[SC_ROLLUP_COMMITMENT_HASH]" } ./octez-sc-rollup-client-alpha rpc get /local/last_published_commitment @@ -52,7 +52,7 @@ This sequence of operations was run: "[SC_ROLLUP_PVM_STATE_HASH]", "inbox_level": 32, "predecessor": "[SC_ROLLUP_COMMITMENT_HASH]", - "number_of_ticks": "0" }, + "number_of_ticks": "62" }, "hash": "[SC_ROLLUP_COMMITMENT_HASH]", "published_at_level": 35 } @@ -62,6 +62,6 @@ This sequence of operations was run: "[SC_ROLLUP_PVM_STATE_HASH]", "inbox_level": 32, "predecessor": "[SC_ROLLUP_COMMITMENT_HASH]", - "number_of_ticks": "0" }, + "number_of_ticks": "62" }, "hash": "[SC_ROLLUP_COMMITMENT_HASH]", "published_at_level": 35 } diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (handles_chain_reor.out b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (handles_chain_reor.out index bf942e5bc491..5b08a0aff684 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (handles_chain_reor.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (handles_chain_reor.out @@ -1,8 +1,8 @@ ./octez-client --wait none originate sc rollup from bootstrap1 of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.449 units (will add 100 for safety) -Estimated storage: 6655 bytes added (will add 20 for safety) +Estimated gas: 2909.925 units (will add 100 for safety) +Estimated storage: 6524 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,34 +12,34 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00067 + Fee to the baker: ꜩ0.000649 Expected counter: 1 - Gas limit: 3211 - Storage limit: 6675 bytes + Gas limit: 3010 + Storage limit: 6544 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00067 - payload fees(the block proposer) ....... +ꜩ0.00067 + [PUBLIC_KEY_HASH] ... -ꜩ0.000649 + payload fees(the block proposer) ....... +ꜩ0.000649 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector Blake2B hash: '0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8' This smart contract rollup origination was successfully applied - Consumed gas: 3110.449 - Storage size: 6655 bytes + Consumed gas: 2909.925 + Storage size: 6524 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.66375 - storage fees ........................... +ꜩ1.66375 + [PUBLIC_KEY_HASH] ... -ꜩ1.631 + storage fees ........................... +ꜩ1.631 ./octez-client rpc get '/chains/main/blocks/head/context/sc_rollup/[SC_ROLLUP_HASH]/genesis_info' { "level": 2, "commitment_hash": "[SC_ROLLUP_COMMITMENT_HASH]" } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1876.850 units (will add 100 for safety) +Estimated gas: 1000.596 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -50,28 +50,29 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000479 + Fee to the baker: ꜩ0.000351 Expected counter: 1 - Gas limit: 1977 + Gas limit: 1101 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000479 - payload fees(the block proposer) ....... +ꜩ0.000479 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000351 + payload fees(the block proposer) ....... +ꜩ0.000351 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1876.850 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 32 + Consumed gas: 1000.596 + Resulting inbox state: { level = 32 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 1 - starting_level_of_current_commitment_period = 32 - message_counter = 1 + nb_messages_in_commitment_period = 64 + message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 1 + index = 31 back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] } @@ -82,7 +83,7 @@ This sequence of operations was run: "[SC_ROLLUP_PVM_STATE_HASH]", "inbox_level": 32, "predecessor": "[SC_ROLLUP_COMMITMENT_HASH]", - "number_of_ticks": "0" }, + "number_of_ticks": "62" }, "hash": "[SC_ROLLUP_COMMITMENT_HASH]" } ./octez-sc-rollup-client-alpha rpc get /local/last_published_commitment @@ -91,5 +92,5 @@ This sequence of operations was run: "[SC_ROLLUP_PVM_STATE_HASH]", "inbox_level": 32, "predecessor": "[SC_ROLLUP_COMMITMENT_HASH]", - "number_of_ticks": "0" }, + "number_of_ticks": "62" }, "hash": "[SC_ROLLUP_COMMITMENT_HASH]" } diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (maintenance_publis.out b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (maintenance_publis.out index 8af1f5029647..596bf1aa12ea 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (maintenance_publis.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (maintenance_publis.out @@ -1,8 +1,8 @@ ./octez-client --wait none originate sc rollup from bootstrap1 of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.449 units (will add 100 for safety) -Estimated storage: 6655 bytes added (will add 20 for safety) +Estimated gas: 2909.925 units (will add 100 for safety) +Estimated storage: 6524 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,30 +12,30 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00067 + Fee to the baker: ꜩ0.000649 Expected counter: 1 - Gas limit: 3211 - Storage limit: 6675 bytes + Gas limit: 3010 + Storage limit: 6544 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00067 - payload fees(the block proposer) ....... +ꜩ0.00067 + [PUBLIC_KEY_HASH] ... -ꜩ0.000649 + payload fees(the block proposer) ....... +ꜩ0.000649 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector Blake2B hash: '0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8' This smart contract rollup origination was successfully applied - Consumed gas: 3110.449 - Storage size: 6655 bytes + Consumed gas: 2909.925 + Storage size: 6524 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.66375 - storage fees ........................... +ꜩ1.66375 + [PUBLIC_KEY_HASH] ... -ꜩ1.631 + storage fees ........................... +ꜩ1.631 -./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1876.722 units (will add 100 for safety) +Estimated gas: 1000.596 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -46,61 +46,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000479 + Fee to the baker: ꜩ0.000351 Expected counter: 1 - Gas limit: 1977 + Gas limit: 1101 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000479 - payload fees(the block proposer) ....... +ꜩ0.000479 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] - This smart contract rollup messages submission was successfully applied - Consumed gas: 1876.850 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 3 - current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 1 - starting_level_of_current_commitment_period = 2 - message_counter = 1 - old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] - - content = [SC_ROLLUP_INBOX_HASH] - index = 1 - back_pointers = [SC_ROLLUP_INBOX_HASH] - - } - - -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' -Node is bootstrapped. -Estimated gas: 1877.540 units (will add 100 for safety) -Estimated storage: no bytes added -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000491 - Expected counter: 2 - Gas limit: 1978 - Storage limit: 0 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000491 - payload fees(the block proposer) ....... +ꜩ0.000491 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000351 + payload fees(the block proposer) ....... +ꜩ0.000351 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1877.668 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 4 + Consumed gas: 1000.596 + Resulting inbox state: { level = 3 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 3 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 6 message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -112,9 +70,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1878.343 units (will add 100 for safety) +Estimated gas: 1001.192 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -125,22 +83,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000503 - Expected counter: 3 - Gas limit: 1979 + Fee to the baker: ꜩ0.000363 + Expected counter: 2 + Gas limit: 1102 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000503 - payload fees(the block proposer) ....... +ꜩ0.000503 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000363 + payload fees(the block proposer) ....... +ꜩ0.000363 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1878.343 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 5 + Consumed gas: 1001.192 + Resulting inbox state: { level = 4 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 6 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 10 message_counter = 3 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -152,9 +107,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1878.939 units (will add 100 for safety) +Estimated gas: 1001.788 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -165,22 +120,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000515 - Expected counter: 4 - Gas limit: 1979 + Fee to the baker: ꜩ0.000375 + Expected counter: 3 + Gas limit: 1102 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000515 - payload fees(the block proposer) ....... +ꜩ0.000515 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000375 + payload fees(the block proposer) ....... +ꜩ0.000375 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1879.067 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 6 + Consumed gas: 1001.788 + Resulting inbox state: { level = 5 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 10 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 15 message_counter = 4 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -193,9 +145,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1879.742 units (will add 100 for safety) +Estimated gas: 1002.384 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -206,22 +158,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000527 - Expected counter: 5 - Gas limit: 1980 + Fee to the baker: ꜩ0.000387 + Expected counter: 4 + Gas limit: 1103 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000527 - payload fees(the block proposer) ....... +ꜩ0.000527 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000387 + payload fees(the block proposer) ....... +ꜩ0.000387 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1879.742 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 7 + Consumed gas: 1002.384 + Resulting inbox state: { level = 6 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 15 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 21 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -234,9 +183,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1880.338 units (will add 100 for safety) +Estimated gas: 1002.980 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -247,22 +196,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00054 - Expected counter: 6 - Gas limit: 1981 + Fee to the baker: ꜩ0.000399 + Expected counter: 5 + Gas limit: 1103 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00054 - payload fees(the block proposer) ....... +ꜩ0.00054 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000399 + payload fees(the block proposer) ....... +ꜩ0.000399 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1880.338 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 8 + Consumed gas: 1002.980 + Resulting inbox state: { level = 7 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 21 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 28 message_counter = 6 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -275,9 +221,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1880.934 units (will add 100 for safety) +Estimated gas: 1003.576 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -288,22 +234,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000552 - Expected counter: 7 - Gas limit: 1981 + Fee to the baker: ꜩ0.000411 + Expected counter: 6 + Gas limit: 1104 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000552 - payload fees(the block proposer) ....... +ꜩ0.000552 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000411 + payload fees(the block proposer) ....... +ꜩ0.000411 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1880.934 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 9 + Consumed gas: 1003.576 + Resulting inbox state: { level = 8 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 28 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 36 message_counter = 7 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -316,9 +259,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1881.530 units (will add 100 for safety) +Estimated gas: 1004.172 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -329,22 +272,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000564 - Expected counter: 8 - Gas limit: 1982 + Fee to the baker: ꜩ0.000423 + Expected counter: 7 + Gas limit: 1105 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000564 - payload fees(the block proposer) ....... +ꜩ0.000564 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000423 + payload fees(the block proposer) ....... +ꜩ0.000423 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1881.658 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 10 + Consumed gas: 1004.172 + Resulting inbox state: { level = 9 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 36 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 45 message_counter = 8 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -358,9 +298,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1882.333 units (will add 100 for safety) +Estimated gas: 1004.768 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -371,22 +311,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000576 - Expected counter: 9 - Gas limit: 1983 + Fee to the baker: ꜩ0.000435 + Expected counter: 8 + Gas limit: 1105 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000576 - payload fees(the block proposer) ....... +ꜩ0.000576 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000435 + payload fees(the block proposer) ....... +ꜩ0.000435 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1882.333 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 11 + Consumed gas: 1004.768 + Resulting inbox state: { level = 10 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 45 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 55 message_counter = 9 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -400,9 +337,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1882.929 units (will add 100 for safety) +Estimated gas: 1005.364 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -413,22 +350,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000588 - Expected counter: 10 - Gas limit: 1983 + Fee to the baker: ꜩ0.000447 + Expected counter: 9 + Gas limit: 1106 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000588 - payload fees(the block proposer) ....... +ꜩ0.000588 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000447 + payload fees(the block proposer) ....... +ꜩ0.000447 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1882.929 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 12 + Consumed gas: 1005.364 + Resulting inbox state: { level = 11 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 55 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 66 message_counter = 10 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -442,9 +376,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1883.525 units (will add 100 for safety) +Estimated gas: 1005.960 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -455,22 +389,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.0006 - Expected counter: 11 - Gas limit: 1984 + Fee to the baker: ꜩ0.000459 + Expected counter: 10 + Gas limit: 1106 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.0006 - payload fees(the block proposer) ....... +ꜩ0.0006 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000459 + payload fees(the block proposer) ....... +ꜩ0.000459 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1883.525 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 13 + Consumed gas: 1005.960 + Resulting inbox state: { level = 12 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 66 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 78 message_counter = 11 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -484,9 +415,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1884.121 units (will add 100 for safety) +Estimated gas: 1006.556 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -497,22 +428,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000612 - Expected counter: 12 - Gas limit: 1985 + Fee to the baker: ꜩ0.000471 + Expected counter: 11 + Gas limit: 1107 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000612 - payload fees(the block proposer) ....... +ꜩ0.000612 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000471 + payload fees(the block proposer) ....... +ꜩ0.000471 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1884.121 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 14 + Consumed gas: 1006.556 + Resulting inbox state: { level = 13 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 78 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 91 message_counter = 12 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -526,9 +454,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1884.717 units (will add 100 for safety) +Estimated gas: 1007.152 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -539,22 +467,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000624 - Expected counter: 13 - Gas limit: 1985 + Fee to the baker: ꜩ0.000483 + Expected counter: 12 + Gas limit: 1108 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000624 - payload fees(the block proposer) ....... +ꜩ0.000624 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000483 + payload fees(the block proposer) ....... +ꜩ0.000483 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1884.717 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 15 + Consumed gas: 1007.152 + Resulting inbox state: { level = 14 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 91 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 105 message_counter = 13 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -568,9 +493,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1885.313 units (will add 100 for safety) +Estimated gas: 1007.748 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -581,22 +506,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000636 - Expected counter: 14 - Gas limit: 1986 + Fee to the baker: ꜩ0.000495 + Expected counter: 13 + Gas limit: 1108 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000636 - payload fees(the block proposer) ....... +ꜩ0.000636 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000495 + payload fees(the block proposer) ....... +ꜩ0.000495 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1885.313 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 16 + Consumed gas: 1007.748 + Resulting inbox state: { level = 15 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 105 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 120 message_counter = 14 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -610,9 +532,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1885.909 units (will add 100 for safety) +Estimated gas: 1008.344 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -623,22 +545,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000648 - Expected counter: 15 - Gas limit: 1986 + Fee to the baker: ꜩ0.000507 + Expected counter: 14 + Gas limit: 1109 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000648 - payload fees(the block proposer) ....... +ꜩ0.000648 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000507 + payload fees(the block proposer) ....... +ꜩ0.000507 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1885.909 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 17 + Consumed gas: 1008.344 + Resulting inbox state: { level = 16 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 120 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 136 message_counter = 15 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -652,9 +571,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1886.505 units (will add 100 for safety) +Estimated gas: 1008.940 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -665,22 +584,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00066 - Expected counter: 16 - Gas limit: 1987 + Fee to the baker: ꜩ0.000519 + Expected counter: 15 + Gas limit: 1109 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00066 - payload fees(the block proposer) ....... +ꜩ0.00066 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000519 + payload fees(the block proposer) ....... +ꜩ0.000519 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1886.633 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 18 + Consumed gas: 1008.940 + Resulting inbox state: { level = 17 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 136 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 153 message_counter = 16 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -695,9 +611,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1887.308 units (will add 100 for safety) +Estimated gas: 1009.536 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -708,22 +624,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000672 - Expected counter: 17 - Gas limit: 1988 + Fee to the baker: ꜩ0.000531 + Expected counter: 16 + Gas limit: 1110 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000672 - payload fees(the block proposer) ....... +ꜩ0.000672 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000531 + payload fees(the block proposer) ....... +ꜩ0.000531 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1887.308 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 19 + Consumed gas: 1009.536 + Resulting inbox state: { level = 18 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 153 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 171 message_counter = 17 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -738,9 +651,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1887.904 units (will add 100 for safety) +Estimated gas: 1010.132 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -751,22 +664,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000684 - Expected counter: 18 - Gas limit: 1988 + Fee to the baker: ꜩ0.000544 + Expected counter: 17 + Gas limit: 1111 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000684 - payload fees(the block proposer) ....... +ꜩ0.000684 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000544 + payload fees(the block proposer) ....... +ꜩ0.000544 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1887.904 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 20 + Consumed gas: 1010.132 + Resulting inbox state: { level = 19 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 171 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 190 message_counter = 18 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -781,9 +691,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1888.500 units (will add 100 for safety) +Estimated gas: 1010.728 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -794,22 +704,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000696 - Expected counter: 19 - Gas limit: 1989 + Fee to the baker: ꜩ0.000556 + Expected counter: 18 + Gas limit: 1111 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000696 - payload fees(the block proposer) ....... +ꜩ0.000696 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000556 + payload fees(the block proposer) ....... +ꜩ0.000556 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1888.500 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 21 + Consumed gas: 1010.728 + Resulting inbox state: { level = 20 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 190 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 210 message_counter = 19 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -824,9 +731,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1889.096 units (will add 100 for safety) +Estimated gas: 1011.324 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -837,22 +744,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000708 - Expected counter: 20 - Gas limit: 1990 + Fee to the baker: ꜩ0.000568 + Expected counter: 19 + Gas limit: 1112 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000708 - payload fees(the block proposer) ....... +ꜩ0.000708 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000568 + payload fees(the block proposer) ....... +ꜩ0.000568 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1889.096 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 22 + Consumed gas: 1011.324 + Resulting inbox state: { level = 21 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 210 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 231 message_counter = 20 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -867,9 +771,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1889.692 units (will add 100 for safety) +Estimated gas: 1011.920 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -880,22 +784,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00072 - Expected counter: 21 - Gas limit: 1990 + Fee to the baker: ꜩ0.00058 + Expected counter: 20 + Gas limit: 1112 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00072 - payload fees(the block proposer) ....... +ꜩ0.00072 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.00058 + payload fees(the block proposer) ....... +ꜩ0.00058 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1889.692 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 23 + Consumed gas: 1011.920 + Resulting inbox state: { level = 22 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 231 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 253 message_counter = 21 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -910,9 +811,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1890.288 units (will add 100 for safety) +Estimated gas: 1012.516 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -923,22 +824,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000733 - Expected counter: 22 - Gas limit: 1991 + Fee to the baker: ꜩ0.000592 + Expected counter: 21 + Gas limit: 1113 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000733 - payload fees(the block proposer) ....... +ꜩ0.000733 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000592 + payload fees(the block proposer) ....... +ꜩ0.000592 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1890.288 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 24 + Consumed gas: 1012.516 + Resulting inbox state: { level = 23 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 253 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 276 message_counter = 22 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -953,9 +851,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1890.884 units (will add 100 for safety) +Estimated gas: 1013.112 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -966,22 +864,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000745 - Expected counter: 23 - Gas limit: 1991 + Fee to the baker: ꜩ0.000604 + Expected counter: 22 + Gas limit: 1114 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000745 - payload fees(the block proposer) ....... +ꜩ0.000745 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000604 + payload fees(the block proposer) ....... +ꜩ0.000604 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1890.884 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 25 + Consumed gas: 1013.112 + Resulting inbox state: { level = 24 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 276 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 300 message_counter = 23 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -996,9 +891,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1891.480 units (will add 100 for safety) +Estimated gas: 1013.708 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1009,22 +904,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000757 - Expected counter: 24 - Gas limit: 1992 + Fee to the baker: ꜩ0.000616 + Expected counter: 23 + Gas limit: 1114 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000757 - payload fees(the block proposer) ....... +ꜩ0.000757 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000616 + payload fees(the block proposer) ....... +ꜩ0.000616 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1891.480 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 26 + Consumed gas: 1013.708 + Resulting inbox state: { level = 25 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 300 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 325 message_counter = 24 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1039,9 +931,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1892.076 units (will add 100 for safety) +Estimated gas: 1014.304 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1052,22 +944,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000769 - Expected counter: 25 - Gas limit: 1993 + Fee to the baker: ꜩ0.000628 + Expected counter: 24 + Gas limit: 1115 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000769 - payload fees(the block proposer) ....... +ꜩ0.000769 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000628 + payload fees(the block proposer) ....... +ꜩ0.000628 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1892.076 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 27 + Consumed gas: 1014.304 + Resulting inbox state: { level = 26 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 325 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 351 message_counter = 25 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1082,9 +971,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1892.672 units (will add 100 for safety) +Estimated gas: 1014.900 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1095,22 +984,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000781 - Expected counter: 26 - Gas limit: 1993 + Fee to the baker: ꜩ0.00064 + Expected counter: 25 + Gas limit: 1115 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000781 - payload fees(the block proposer) ....... +ꜩ0.000781 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.00064 + payload fees(the block proposer) ....... +ꜩ0.00064 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1892.672 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 28 + Consumed gas: 1014.900 + Resulting inbox state: { level = 27 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 351 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 378 message_counter = 26 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1125,9 +1011,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1893.268 units (will add 100 for safety) +Estimated gas: 1015.496 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1138,22 +1024,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000793 - Expected counter: 27 - Gas limit: 1994 + Fee to the baker: ꜩ0.000652 + Expected counter: 26 + Gas limit: 1116 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000793 - payload fees(the block proposer) ....... +ꜩ0.000793 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000652 + payload fees(the block proposer) ....... +ꜩ0.000652 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1893.268 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 29 + Consumed gas: 1015.496 + Resulting inbox state: { level = 28 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 378 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 406 message_counter = 27 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1168,9 +1051,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1893.864 units (will add 100 for safety) +Estimated gas: 1016.092 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1181,22 +1064,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000805 - Expected counter: 28 - Gas limit: 1994 + Fee to the baker: ꜩ0.000664 + Expected counter: 27 + Gas limit: 1117 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000805 - payload fees(the block proposer) ....... +ꜩ0.000805 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000664 + payload fees(the block proposer) ....... +ꜩ0.000664 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1893.864 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 30 + Consumed gas: 1016.092 + Resulting inbox state: { level = 29 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 406 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 435 message_counter = 28 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1211,9 +1091,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1894.460 units (will add 100 for safety) +Estimated gas: 1016.688 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1224,22 +1104,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000817 - Expected counter: 29 - Gas limit: 1995 + Fee to the baker: ꜩ0.000676 + Expected counter: 28 + Gas limit: 1117 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000817 - payload fees(the block proposer) ....... +ꜩ0.000817 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000676 + payload fees(the block proposer) ....... +ꜩ0.000676 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1894.460 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 31 + Consumed gas: 1016.688 + Resulting inbox state: { level = 30 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 435 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 465 message_counter = 29 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1254,9 +1131,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1895.056 units (will add 100 for safety) +Estimated gas: 1017.284 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1267,22 +1144,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000829 - Expected counter: 30 - Gas limit: 1996 + Fee to the baker: ꜩ0.000688 + Expected counter: 29 + Gas limit: 1118 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000829 - payload fees(the block proposer) ....... +ꜩ0.000829 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000688 + payload fees(the block proposer) ....... +ꜩ0.000688 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1895.056 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 32 + Consumed gas: 1017.284 + Resulting inbox state: { level = 31 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 30 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 496 message_counter = 30 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1297,9 +1171,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1877.772 units (will add 100 for safety) +Estimated gas: 1017.880 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1310,23 +1184,20 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000479 - Expected counter: 31 - Gas limit: 1978 + Fee to the baker: ꜩ0.0007 + Expected counter: 30 + Gas limit: 1118 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000479 - payload fees(the block proposer) ....... +ꜩ0.000479 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.0007 + payload fees(the block proposer) ....... +ꜩ0.0007 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1877.772 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 33 + Consumed gas: 1017.880 + Resulting inbox state: { level = 32 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 31 - starting_level_of_current_commitment_period = 32 - message_counter = 1 + nb_messages_in_commitment_period = 528 + message_counter = 31 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] @@ -1340,9 +1211,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1878.368 units (will add 100 for safety) +Estimated gas: 1000.596 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1353,22 +1224,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000491 - Expected counter: 32 - Gas limit: 1979 + Fee to the baker: ꜩ0.000351 + Expected counter: 31 + Gas limit: 1101 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000491 - payload fees(the block proposer) ....... +ꜩ0.000491 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000351 + payload fees(the block proposer) ....... +ꜩ0.000351 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1878.496 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 34 + Consumed gas: 1000.596 + Resulting inbox state: { level = 33 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 33 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 531 message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1384,9 +1252,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1879.171 units (will add 100 for safety) +Estimated gas: 1001.192 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1397,22 +1265,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000503 - Expected counter: 33 - Gas limit: 1980 + Fee to the baker: ꜩ0.000363 + Expected counter: 32 + Gas limit: 1102 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000503 - payload fees(the block proposer) ....... +ꜩ0.000503 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000363 + payload fees(the block proposer) ....... +ꜩ0.000363 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1879.171 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 35 + Consumed gas: 1001.192 + Resulting inbox state: { level = 34 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 36 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 535 message_counter = 3 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1428,9 +1293,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1879.767 units (will add 100 for safety) +Estimated gas: 1001.788 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1441,22 +1306,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000515 - Expected counter: 34 - Gas limit: 1980 + Fee to the baker: ꜩ0.000375 + Expected counter: 33 + Gas limit: 1102 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000515 - payload fees(the block proposer) ....... +ꜩ0.000515 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000375 + payload fees(the block proposer) ....... +ꜩ0.000375 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1879.767 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 36 + Consumed gas: 1001.788 + Resulting inbox state: { level = 35 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 40 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 540 message_counter = 4 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1472,9 +1334,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1880.363 units (will add 100 for safety) +Estimated gas: 1002.384 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1485,22 +1347,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000528 - Expected counter: 35 - Gas limit: 1981 + Fee to the baker: ꜩ0.000387 + Expected counter: 34 + Gas limit: 1103 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000528 - payload fees(the block proposer) ....... +ꜩ0.000528 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000387 + payload fees(the block proposer) ....... +ꜩ0.000387 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1880.363 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 37 + Consumed gas: 1002.384 + Resulting inbox state: { level = 36 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 45 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 546 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1516,9 +1375,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1880.959 units (will add 100 for safety) +Estimated gas: 1002.980 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1529,22 +1388,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00054 - Expected counter: 36 - Gas limit: 1981 + Fee to the baker: ꜩ0.000399 + Expected counter: 35 + Gas limit: 1103 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00054 - payload fees(the block proposer) ....... +ꜩ0.00054 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000399 + payload fees(the block proposer) ....... +ꜩ0.000399 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1880.959 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 38 + Consumed gas: 1002.980 + Resulting inbox state: { level = 37 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 51 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 553 message_counter = 6 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1560,9 +1416,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1881.555 units (will add 100 for safety) +Estimated gas: 1003.576 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1573,22 +1429,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000552 - Expected counter: 37 - Gas limit: 1982 + Fee to the baker: ꜩ0.000411 + Expected counter: 36 + Gas limit: 1104 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000552 - payload fees(the block proposer) ....... +ꜩ0.000552 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000411 + payload fees(the block proposer) ....... +ꜩ0.000411 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1881.555 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 39 + Consumed gas: 1003.576 + Resulting inbox state: { level = 38 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 58 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 561 message_counter = 7 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1604,9 +1457,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1882.151 units (will add 100 for safety) +Estimated gas: 1004.172 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1617,22 +1470,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000564 - Expected counter: 38 - Gas limit: 1983 + Fee to the baker: ꜩ0.000423 + Expected counter: 37 + Gas limit: 1105 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000564 - payload fees(the block proposer) ....... +ꜩ0.000564 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000423 + payload fees(the block proposer) ....... +ꜩ0.000423 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1882.151 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 40 + Consumed gas: 1004.172 + Resulting inbox state: { level = 39 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 66 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 570 message_counter = 8 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1648,9 +1498,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1882.747 units (will add 100 for safety) +Estimated gas: 1004.768 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1661,22 +1511,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000576 - Expected counter: 39 - Gas limit: 1983 + Fee to the baker: ꜩ0.000435 + Expected counter: 38 + Gas limit: 1105 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000576 - payload fees(the block proposer) ....... +ꜩ0.000576 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000435 + payload fees(the block proposer) ....... +ꜩ0.000435 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1882.747 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 41 + Consumed gas: 1004.768 + Resulting inbox state: { level = 40 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 75 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 580 message_counter = 9 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1692,9 +1539,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1883.343 units (will add 100 for safety) +Estimated gas: 1005.364 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1705,22 +1552,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000588 - Expected counter: 40 - Gas limit: 1984 + Fee to the baker: ꜩ0.000447 + Expected counter: 39 + Gas limit: 1106 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000588 - payload fees(the block proposer) ....... +ꜩ0.000588 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000447 + payload fees(the block proposer) ....... +ꜩ0.000447 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1883.343 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 42 + Consumed gas: 1005.364 + Resulting inbox state: { level = 41 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 85 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 591 message_counter = 10 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1736,9 +1580,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1883.939 units (will add 100 for safety) +Estimated gas: 1005.960 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1749,22 +1593,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.0006 - Expected counter: 41 - Gas limit: 1984 + Fee to the baker: ꜩ0.000459 + Expected counter: 40 + Gas limit: 1106 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.0006 - payload fees(the block proposer) ....... +ꜩ0.0006 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000459 + payload fees(the block proposer) ....... +ꜩ0.000459 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1883.939 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 43 + Consumed gas: 1005.960 + Resulting inbox state: { level = 42 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 96 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 603 message_counter = 11 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1780,9 +1621,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1884.535 units (will add 100 for safety) +Estimated gas: 1006.556 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1793,22 +1634,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000612 - Expected counter: 42 - Gas limit: 1985 + Fee to the baker: ꜩ0.000471 + Expected counter: 41 + Gas limit: 1107 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000612 - payload fees(the block proposer) ....... +ꜩ0.000612 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000471 + payload fees(the block proposer) ....... +ꜩ0.000471 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1884.535 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 44 + Consumed gas: 1006.556 + Resulting inbox state: { level = 43 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 108 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 616 message_counter = 12 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1824,9 +1662,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1885.131 units (will add 100 for safety) +Estimated gas: 1007.152 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1837,22 +1675,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000624 - Expected counter: 43 - Gas limit: 1986 + Fee to the baker: ꜩ0.000483 + Expected counter: 42 + Gas limit: 1108 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000624 - payload fees(the block proposer) ....... +ꜩ0.000624 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000483 + payload fees(the block proposer) ....... +ꜩ0.000483 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1885.131 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 45 + Consumed gas: 1007.152 + Resulting inbox state: { level = 44 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 121 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 630 message_counter = 13 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1868,9 +1703,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1885.727 units (will add 100 for safety) +Estimated gas: 1007.748 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1881,22 +1716,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000636 - Expected counter: 44 - Gas limit: 1986 + Fee to the baker: ꜩ0.000495 + Expected counter: 43 + Gas limit: 1108 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000636 - payload fees(the block proposer) ....... +ꜩ0.000636 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000495 + payload fees(the block proposer) ....... +ꜩ0.000495 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1885.727 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 46 + Consumed gas: 1007.748 + Resulting inbox state: { level = 45 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 135 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 645 message_counter = 14 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1912,9 +1744,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1886.323 units (will add 100 for safety) +Estimated gas: 1008.344 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1925,22 +1757,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000648 - Expected counter: 45 - Gas limit: 1987 + Fee to the baker: ꜩ0.000507 + Expected counter: 44 + Gas limit: 1109 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000648 - payload fees(the block proposer) ....... +ꜩ0.000648 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000507 + payload fees(the block proposer) ....... +ꜩ0.000507 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1886.323 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 47 + Consumed gas: 1008.344 + Resulting inbox state: { level = 46 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 150 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 661 message_counter = 15 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1956,9 +1785,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1886.919 units (will add 100 for safety) +Estimated gas: 1008.940 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1969,22 +1798,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00066 - Expected counter: 46 - Gas limit: 1987 + Fee to the baker: ꜩ0.000519 + Expected counter: 45 + Gas limit: 1109 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00066 - payload fees(the block proposer) ....... +ꜩ0.00066 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000519 + payload fees(the block proposer) ....... +ꜩ0.000519 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1886.919 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 48 + Consumed gas: 1008.940 + Resulting inbox state: { level = 47 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 166 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 678 message_counter = 16 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2000,9 +1826,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1887.515 units (will add 100 for safety) +Estimated gas: 1009.536 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2013,22 +1839,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000672 - Expected counter: 47 - Gas limit: 1988 + Fee to the baker: ꜩ0.000531 + Expected counter: 46 + Gas limit: 1110 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000672 - payload fees(the block proposer) ....... +ꜩ0.000672 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000531 + payload fees(the block proposer) ....... +ꜩ0.000531 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1887.515 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 49 + Consumed gas: 1009.536 + Resulting inbox state: { level = 48 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 183 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 696 message_counter = 17 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2044,9 +1867,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1888.111 units (will add 100 for safety) +Estimated gas: 1010.132 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2057,22 +1880,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000684 - Expected counter: 48 - Gas limit: 1989 + Fee to the baker: ꜩ0.000544 + Expected counter: 47 + Gas limit: 1111 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000684 - payload fees(the block proposer) ....... +ꜩ0.000684 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000544 + payload fees(the block proposer) ....... +ꜩ0.000544 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1888.111 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 50 + Consumed gas: 1010.132 + Resulting inbox state: { level = 49 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 201 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 715 message_counter = 18 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2088,9 +1908,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1888.707 units (will add 100 for safety) +Estimated gas: 1010.728 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2101,22 +1921,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000696 - Expected counter: 49 - Gas limit: 1989 + Fee to the baker: ꜩ0.000556 + Expected counter: 48 + Gas limit: 1111 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000696 - payload fees(the block proposer) ....... +ꜩ0.000696 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000556 + payload fees(the block proposer) ....... +ꜩ0.000556 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1888.707 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 51 + Consumed gas: 1010.728 + Resulting inbox state: { level = 50 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 220 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 735 message_counter = 19 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2132,9 +1949,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1889.303 units (will add 100 for safety) +Estimated gas: 1011.324 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2145,22 +1962,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000708 - Expected counter: 50 - Gas limit: 1990 + Fee to the baker: ꜩ0.000568 + Expected counter: 49 + Gas limit: 1112 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000708 - payload fees(the block proposer) ....... +ꜩ0.000708 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000568 + payload fees(the block proposer) ....... +ꜩ0.000568 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1889.303 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 52 + Consumed gas: 1011.324 + Resulting inbox state: { level = 51 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 240 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 756 message_counter = 20 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2176,9 +1990,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1889.899 units (will add 100 for safety) +Estimated gas: 1011.920 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2189,22 +2003,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00072 - Expected counter: 51 - Gas limit: 1990 + Fee to the baker: ꜩ0.00058 + Expected counter: 50 + Gas limit: 1112 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00072 - payload fees(the block proposer) ....... +ꜩ0.00072 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.00058 + payload fees(the block proposer) ....... +ꜩ0.00058 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1889.899 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 53 + Consumed gas: 1011.920 + Resulting inbox state: { level = 52 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 261 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 778 message_counter = 21 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2220,9 +2031,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1890.495 units (will add 100 for safety) +Estimated gas: 1012.516 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2233,22 +2044,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000733 - Expected counter: 52 - Gas limit: 1991 + Fee to the baker: ꜩ0.000592 + Expected counter: 51 + Gas limit: 1113 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000733 - payload fees(the block proposer) ....... +ꜩ0.000733 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000592 + payload fees(the block proposer) ....... +ꜩ0.000592 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1890.495 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 54 + Consumed gas: 1012.516 + Resulting inbox state: { level = 53 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 283 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 801 message_counter = 22 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2264,9 +2072,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1891.091 units (will add 100 for safety) +Estimated gas: 1013.112 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2277,22 +2085,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000745 - Expected counter: 53 - Gas limit: 1992 + Fee to the baker: ꜩ0.000604 + Expected counter: 52 + Gas limit: 1114 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000745 - payload fees(the block proposer) ....... +ꜩ0.000745 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000604 + payload fees(the block proposer) ....... +ꜩ0.000604 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1891.091 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 55 + Consumed gas: 1013.112 + Resulting inbox state: { level = 54 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 306 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 825 message_counter = 23 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2308,9 +2113,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1891.687 units (will add 100 for safety) +Estimated gas: 1013.708 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2321,22 +2126,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000757 - Expected counter: 54 - Gas limit: 1992 + Fee to the baker: ꜩ0.000616 + Expected counter: 53 + Gas limit: 1114 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000757 - payload fees(the block proposer) ....... +ꜩ0.000757 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000616 + payload fees(the block proposer) ....... +ꜩ0.000616 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1891.687 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 56 + Consumed gas: 1013.708 + Resulting inbox state: { level = 55 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 330 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 850 message_counter = 24 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2352,9 +2154,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1892.283 units (will add 100 for safety) +Estimated gas: 1014.304 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2365,22 +2167,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000769 - Expected counter: 55 - Gas limit: 1993 + Fee to the baker: ꜩ0.000628 + Expected counter: 54 + Gas limit: 1115 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000769 - payload fees(the block proposer) ....... +ꜩ0.000769 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000628 + payload fees(the block proposer) ....... +ꜩ0.000628 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1892.283 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 57 + Consumed gas: 1014.304 + Resulting inbox state: { level = 56 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 355 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 876 message_counter = 25 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2396,9 +2195,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1892.879 units (will add 100 for safety) +Estimated gas: 1014.900 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2409,22 +2208,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000781 - Expected counter: 56 - Gas limit: 1993 + Fee to the baker: ꜩ0.00064 + Expected counter: 55 + Gas limit: 1115 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000781 - payload fees(the block proposer) ....... +ꜩ0.000781 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.00064 + payload fees(the block proposer) ....... +ꜩ0.00064 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1892.879 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 58 + Consumed gas: 1014.900 + Resulting inbox state: { level = 57 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 381 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 903 message_counter = 26 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2440,9 +2236,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1893.475 units (will add 100 for safety) +Estimated gas: 1015.496 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2453,22 +2249,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000793 - Expected counter: 57 - Gas limit: 1994 + Fee to the baker: ꜩ0.000652 + Expected counter: 56 + Gas limit: 1116 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000793 - payload fees(the block proposer) ....... +ꜩ0.000793 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000652 + payload fees(the block proposer) ....... +ꜩ0.000652 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1893.475 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 59 + Consumed gas: 1015.496 + Resulting inbox state: { level = 58 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 408 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 931 message_counter = 27 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2484,9 +2277,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1894.071 units (will add 100 for safety) +Estimated gas: 1016.092 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2497,22 +2290,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000805 - Expected counter: 58 - Gas limit: 1995 + Fee to the baker: ꜩ0.000664 + Expected counter: 57 + Gas limit: 1117 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000805 - payload fees(the block proposer) ....... +ꜩ0.000805 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000664 + payload fees(the block proposer) ....... +ꜩ0.000664 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1894.071 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 60 + Consumed gas: 1016.092 + Resulting inbox state: { level = 59 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 436 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 960 message_counter = 28 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2528,9 +2318,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1894.667 units (will add 100 for safety) +Estimated gas: 1016.688 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2541,22 +2331,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000817 - Expected counter: 59 - Gas limit: 1995 + Fee to the baker: ꜩ0.000676 + Expected counter: 58 + Gas limit: 1117 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000817 - payload fees(the block proposer) ....... +ꜩ0.000817 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000676 + payload fees(the block proposer) ....... +ꜩ0.000676 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1894.667 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 61 + Consumed gas: 1016.688 + Resulting inbox state: { level = 60 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 465 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 990 message_counter = 29 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2572,9 +2359,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1895.263 units (will add 100 for safety) +Estimated gas: 1017.284 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2585,22 +2372,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000829 - Expected counter: 60 - Gas limit: 1996 + Fee to the baker: ꜩ0.000688 + Expected counter: 59 + Gas limit: 1118 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000829 - payload fees(the block proposer) ....... +ꜩ0.000829 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000688 + payload fees(the block proposer) ....... +ꜩ0.000688 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1895.263 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 62 + Consumed gas: 1017.284 + Resulting inbox state: { level = 61 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 30 - starting_level_of_current_commitment_period = 62 + nb_messages_in_commitment_period = 1021 message_counter = 30 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2616,13 +2400,54 @@ This sequence of operations was run: } +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 +Node is bootstrapped. +Estimated gas: 1017.880 units (will add 100 for safety) +Estimated storage: no bytes added +Operation successfully injected in the node. +Operation hash is '[OPERATION_HASH]' +NOT waiting for the operation to be included. +Use command + octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] +and/or an external block explorer to make sure that it has been included. +This sequence of operations was run: + Manager signed operations: + From: [PUBLIC_KEY_HASH] + Fee to the baker: ꜩ0.0007 + Expected counter: 60 + Gas limit: 1118 + Storage limit: 0 bytes + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ0.0007 + payload fees(the block proposer) ....... +ꜩ0.0007 + Smart contract rollup messages submission + This smart contract rollup messages submission was successfully applied + Consumed gas: 1017.880 + Resulting inbox state: { level = 62 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 1053 + message_counter = 31 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 61 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + ./octez-sc-rollup-client-alpha rpc get /local/last_published_commitment { "commitment": { "compressed_state": "[SC_ROLLUP_PVM_STATE_HASH]", "inbox_level": 32, "predecessor": "[SC_ROLLUP_COMMITMENT_HASH]", - "number_of_ticks": "5117" }, + "number_of_ticks": "5177" }, "hash": "[SC_ROLLUP_COMMITMENT_HASH]", "published_at_level": 35 } @@ -2632,6 +2457,6 @@ This sequence of operations was run: "[SC_ROLLUP_PVM_STATE_HASH]", "inbox_level": 32, "predecessor": "[SC_ROLLUP_COMMITMENT_HASH]", - "number_of_ticks": "5117" }, + "number_of_ticks": "5177" }, "hash": "[SC_ROLLUP_COMMITMENT_HASH]", "published_at_level": 35 } diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (messages_reset).out b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (messages_reset).out index 35488984056e..ca27516578b9 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (messages_reset).out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (messages_reset).out @@ -1,8 +1,8 @@ ./octez-client --wait none originate sc rollup from bootstrap1 of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.449 units (will add 100 for safety) -Estimated storage: 6655 bytes added (will add 20 for safety) +Estimated gas: 2909.925 units (will add 100 for safety) +Estimated storage: 6524 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,34 +12,34 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00067 + Fee to the baker: ꜩ0.000649 Expected counter: 1 - Gas limit: 3211 - Storage limit: 6675 bytes + Gas limit: 3010 + Storage limit: 6544 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00067 - payload fees(the block proposer) ....... +ꜩ0.00067 + [PUBLIC_KEY_HASH] ... -ꜩ0.000649 + payload fees(the block proposer) ....... +ꜩ0.000649 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector Blake2B hash: '0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8' This smart contract rollup origination was successfully applied - Consumed gas: 3110.449 - Storage size: 6655 bytes + Consumed gas: 2909.925 + Storage size: 6524 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.66375 - storage fees ........................... +ꜩ1.66375 + [PUBLIC_KEY_HASH] ... -ꜩ1.631 + storage fees ........................... +ꜩ1.631 ./octez-client rpc get '/chains/main/blocks/head/context/sc_rollup/[SC_ROLLUP_HASH]/genesis_info' { "level": 2, "commitment_hash": "[SC_ROLLUP_COMMITMENT_HASH]" } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1876.722 units (will add 100 for safety) +Estimated gas: 1000.596 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -50,61 +50,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000479 + Fee to the baker: ꜩ0.000351 Expected counter: 1 - Gas limit: 1977 + Gas limit: 1101 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000479 - payload fees(the block proposer) ....... +ꜩ0.000479 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] - This smart contract rollup messages submission was successfully applied - Consumed gas: 1876.850 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 3 - current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 1 - starting_level_of_current_commitment_period = 2 - message_counter = 1 - old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] - - content = [SC_ROLLUP_INBOX_HASH] - index = 1 - back_pointers = [SC_ROLLUP_INBOX_HASH] - - } - - -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' -Node is bootstrapped. -Estimated gas: 1877.540 units (will add 100 for safety) -Estimated storage: no bytes added -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000491 - Expected counter: 2 - Gas limit: 1978 - Storage limit: 0 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000491 - payload fees(the block proposer) ....... +ꜩ0.000491 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000351 + payload fees(the block proposer) ....... +ꜩ0.000351 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1877.668 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 4 + Consumed gas: 1000.596 + Resulting inbox state: { level = 3 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 3 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 6 message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -116,9 +74,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1878.343 units (will add 100 for safety) +Estimated gas: 1001.192 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -129,22 +87,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000503 - Expected counter: 3 - Gas limit: 1979 + Fee to the baker: ꜩ0.000363 + Expected counter: 2 + Gas limit: 1102 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000503 - payload fees(the block proposer) ....... +ꜩ0.000503 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000363 + payload fees(the block proposer) ....... +ꜩ0.000363 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1878.343 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 5 + Consumed gas: 1001.192 + Resulting inbox state: { level = 4 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 6 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 10 message_counter = 3 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -156,9 +111,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1878.939 units (will add 100 for safety) +Estimated gas: 1001.788 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -169,22 +124,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000515 - Expected counter: 4 - Gas limit: 1979 + Fee to the baker: ꜩ0.000375 + Expected counter: 3 + Gas limit: 1102 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000515 - payload fees(the block proposer) ....... +ꜩ0.000515 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000375 + payload fees(the block proposer) ....... +ꜩ0.000375 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1879.067 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 6 + Consumed gas: 1001.788 + Resulting inbox state: { level = 5 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 10 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 15 message_counter = 4 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -197,9 +149,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1879.742 units (will add 100 for safety) +Estimated gas: 1002.384 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -210,22 +162,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000527 - Expected counter: 5 - Gas limit: 1980 + Fee to the baker: ꜩ0.000387 + Expected counter: 4 + Gas limit: 1103 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000527 - payload fees(the block proposer) ....... +ꜩ0.000527 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000387 + payload fees(the block proposer) ....... +ꜩ0.000387 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1879.742 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 7 + Consumed gas: 1002.384 + Resulting inbox state: { level = 6 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 15 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 21 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -238,9 +187,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1880.338 units (will add 100 for safety) +Estimated gas: 1002.980 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -251,22 +200,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00054 - Expected counter: 6 - Gas limit: 1981 + Fee to the baker: ꜩ0.000399 + Expected counter: 5 + Gas limit: 1103 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00054 - payload fees(the block proposer) ....... +ꜩ0.00054 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000399 + payload fees(the block proposer) ....... +ꜩ0.000399 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1880.338 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 8 + Consumed gas: 1002.980 + Resulting inbox state: { level = 7 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 21 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 28 message_counter = 6 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -279,9 +225,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1880.934 units (will add 100 for safety) +Estimated gas: 1003.576 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -292,22 +238,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000552 - Expected counter: 7 - Gas limit: 1981 + Fee to the baker: ꜩ0.000411 + Expected counter: 6 + Gas limit: 1104 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000552 - payload fees(the block proposer) ....... +ꜩ0.000552 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000411 + payload fees(the block proposer) ....... +ꜩ0.000411 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1880.934 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 9 + Consumed gas: 1003.576 + Resulting inbox state: { level = 8 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 28 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 36 message_counter = 7 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -320,9 +263,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1881.530 units (will add 100 for safety) +Estimated gas: 1004.172 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -333,22 +276,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000564 - Expected counter: 8 - Gas limit: 1982 + Fee to the baker: ꜩ0.000423 + Expected counter: 7 + Gas limit: 1105 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000564 - payload fees(the block proposer) ....... +ꜩ0.000564 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000423 + payload fees(the block proposer) ....... +ꜩ0.000423 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1881.658 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 10 + Consumed gas: 1004.172 + Resulting inbox state: { level = 9 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 36 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 45 message_counter = 8 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -362,9 +302,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1882.333 units (will add 100 for safety) +Estimated gas: 1004.768 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -375,22 +315,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000576 - Expected counter: 9 - Gas limit: 1983 + Fee to the baker: ꜩ0.000435 + Expected counter: 8 + Gas limit: 1105 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000576 - payload fees(the block proposer) ....... +ꜩ0.000576 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000435 + payload fees(the block proposer) ....... +ꜩ0.000435 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1882.333 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 11 + Consumed gas: 1004.768 + Resulting inbox state: { level = 10 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 45 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 55 message_counter = 9 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -404,9 +341,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1882.929 units (will add 100 for safety) +Estimated gas: 1005.364 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -417,22 +354,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000588 - Expected counter: 10 - Gas limit: 1983 + Fee to the baker: ꜩ0.000447 + Expected counter: 9 + Gas limit: 1106 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000588 - payload fees(the block proposer) ....... +ꜩ0.000588 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000447 + payload fees(the block proposer) ....... +ꜩ0.000447 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1882.929 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 12 + Consumed gas: 1005.364 + Resulting inbox state: { level = 11 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 55 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 66 message_counter = 10 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -446,9 +380,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1883.525 units (will add 100 for safety) +Estimated gas: 1005.960 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -459,22 +393,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.0006 - Expected counter: 11 - Gas limit: 1984 + Fee to the baker: ꜩ0.000459 + Expected counter: 10 + Gas limit: 1106 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.0006 - payload fees(the block proposer) ....... +ꜩ0.0006 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000459 + payload fees(the block proposer) ....... +ꜩ0.000459 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1883.525 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 13 + Consumed gas: 1005.960 + Resulting inbox state: { level = 12 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 66 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 78 message_counter = 11 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -488,9 +419,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1884.121 units (will add 100 for safety) +Estimated gas: 1006.556 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -501,22 +432,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000612 - Expected counter: 12 - Gas limit: 1985 + Fee to the baker: ꜩ0.000471 + Expected counter: 11 + Gas limit: 1107 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000612 - payload fees(the block proposer) ....... +ꜩ0.000612 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000471 + payload fees(the block proposer) ....... +ꜩ0.000471 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1884.121 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 14 + Consumed gas: 1006.556 + Resulting inbox state: { level = 13 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 78 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 91 message_counter = 12 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -530,9 +458,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1884.717 units (will add 100 for safety) +Estimated gas: 1007.152 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -543,22 +471,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000624 - Expected counter: 13 - Gas limit: 1985 + Fee to the baker: ꜩ0.000483 + Expected counter: 12 + Gas limit: 1108 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000624 - payload fees(the block proposer) ....... +ꜩ0.000624 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000483 + payload fees(the block proposer) ....... +ꜩ0.000483 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1884.717 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 15 + Consumed gas: 1007.152 + Resulting inbox state: { level = 14 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 91 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 105 message_counter = 13 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -572,9 +497,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1885.313 units (will add 100 for safety) +Estimated gas: 1007.748 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -585,22 +510,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000636 - Expected counter: 14 - Gas limit: 1986 + Fee to the baker: ꜩ0.000495 + Expected counter: 13 + Gas limit: 1108 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000636 - payload fees(the block proposer) ....... +ꜩ0.000636 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000495 + payload fees(the block proposer) ....... +ꜩ0.000495 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1885.313 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 16 + Consumed gas: 1007.748 + Resulting inbox state: { level = 15 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 105 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 120 message_counter = 14 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -614,9 +536,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1885.909 units (will add 100 for safety) +Estimated gas: 1008.344 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -627,22 +549,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000648 - Expected counter: 15 - Gas limit: 1986 + Fee to the baker: ꜩ0.000507 + Expected counter: 14 + Gas limit: 1109 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000648 - payload fees(the block proposer) ....... +ꜩ0.000648 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000507 + payload fees(the block proposer) ....... +ꜩ0.000507 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1885.909 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 17 + Consumed gas: 1008.344 + Resulting inbox state: { level = 16 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 120 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 136 message_counter = 15 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -656,9 +575,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1886.505 units (will add 100 for safety) +Estimated gas: 1008.940 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -669,22 +588,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00066 - Expected counter: 16 - Gas limit: 1987 + Fee to the baker: ꜩ0.000519 + Expected counter: 15 + Gas limit: 1109 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00066 - payload fees(the block proposer) ....... +ꜩ0.00066 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000519 + payload fees(the block proposer) ....... +ꜩ0.000519 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1886.633 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 18 + Consumed gas: 1008.940 + Resulting inbox state: { level = 17 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 136 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 153 message_counter = 16 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -699,9 +615,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1887.308 units (will add 100 for safety) +Estimated gas: 1009.536 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -712,22 +628,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000672 - Expected counter: 17 - Gas limit: 1988 + Fee to the baker: ꜩ0.000531 + Expected counter: 16 + Gas limit: 1110 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000672 - payload fees(the block proposer) ....... +ꜩ0.000672 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000531 + payload fees(the block proposer) ....... +ꜩ0.000531 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1887.308 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 19 + Consumed gas: 1009.536 + Resulting inbox state: { level = 18 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 153 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 171 message_counter = 17 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -742,9 +655,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1887.904 units (will add 100 for safety) +Estimated gas: 1010.132 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -755,22 +668,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000684 - Expected counter: 18 - Gas limit: 1988 + Fee to the baker: ꜩ0.000544 + Expected counter: 17 + Gas limit: 1111 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000684 - payload fees(the block proposer) ....... +ꜩ0.000684 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000544 + payload fees(the block proposer) ....... +ꜩ0.000544 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1887.904 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 20 + Consumed gas: 1010.132 + Resulting inbox state: { level = 19 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 171 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 190 message_counter = 18 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -785,9 +695,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1888.500 units (will add 100 for safety) +Estimated gas: 1010.728 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -798,22 +708,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000696 - Expected counter: 19 - Gas limit: 1989 + Fee to the baker: ꜩ0.000556 + Expected counter: 18 + Gas limit: 1111 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000696 - payload fees(the block proposer) ....... +ꜩ0.000696 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000556 + payload fees(the block proposer) ....... +ꜩ0.000556 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1888.500 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 21 + Consumed gas: 1010.728 + Resulting inbox state: { level = 20 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 190 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 210 message_counter = 19 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -828,9 +735,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1889.096 units (will add 100 for safety) +Estimated gas: 1011.324 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -841,22 +748,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000708 - Expected counter: 20 - Gas limit: 1990 + Fee to the baker: ꜩ0.000568 + Expected counter: 19 + Gas limit: 1112 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000708 - payload fees(the block proposer) ....... +ꜩ0.000708 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000568 + payload fees(the block proposer) ....... +ꜩ0.000568 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1889.096 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 22 + Consumed gas: 1011.324 + Resulting inbox state: { level = 21 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 210 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 231 message_counter = 20 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -871,9 +775,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1889.692 units (will add 100 for safety) +Estimated gas: 1011.920 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -884,22 +788,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00072 - Expected counter: 21 - Gas limit: 1990 + Fee to the baker: ꜩ0.00058 + Expected counter: 20 + Gas limit: 1112 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00072 - payload fees(the block proposer) ....... +ꜩ0.00072 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.00058 + payload fees(the block proposer) ....... +ꜩ0.00058 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1889.692 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 23 + Consumed gas: 1011.920 + Resulting inbox state: { level = 22 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 231 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 253 message_counter = 21 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -914,9 +815,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1890.288 units (will add 100 for safety) +Estimated gas: 1012.516 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -927,22 +828,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000733 - Expected counter: 22 - Gas limit: 1991 + Fee to the baker: ꜩ0.000592 + Expected counter: 21 + Gas limit: 1113 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000733 - payload fees(the block proposer) ....... +ꜩ0.000733 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000592 + payload fees(the block proposer) ....... +ꜩ0.000592 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1890.288 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 24 + Consumed gas: 1012.516 + Resulting inbox state: { level = 23 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 253 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 276 message_counter = 22 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -957,9 +855,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1890.884 units (will add 100 for safety) +Estimated gas: 1013.112 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -970,22 +868,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000745 - Expected counter: 23 - Gas limit: 1991 + Fee to the baker: ꜩ0.000604 + Expected counter: 22 + Gas limit: 1114 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000745 - payload fees(the block proposer) ....... +ꜩ0.000745 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000604 + payload fees(the block proposer) ....... +ꜩ0.000604 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1890.884 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 25 + Consumed gas: 1013.112 + Resulting inbox state: { level = 24 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 276 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 300 message_counter = 23 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1000,9 +895,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1891.480 units (will add 100 for safety) +Estimated gas: 1013.708 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1013,22 +908,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000757 - Expected counter: 24 - Gas limit: 1992 + Fee to the baker: ꜩ0.000616 + Expected counter: 23 + Gas limit: 1114 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000757 - payload fees(the block proposer) ....... +ꜩ0.000757 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000616 + payload fees(the block proposer) ....... +ꜩ0.000616 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1891.480 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 26 + Consumed gas: 1013.708 + Resulting inbox state: { level = 25 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 300 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 325 message_counter = 24 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1043,9 +935,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1892.076 units (will add 100 for safety) +Estimated gas: 1014.304 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1056,22 +948,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000769 - Expected counter: 25 - Gas limit: 1993 + Fee to the baker: ꜩ0.000628 + Expected counter: 24 + Gas limit: 1115 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000769 - payload fees(the block proposer) ....... +ꜩ0.000769 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000628 + payload fees(the block proposer) ....... +ꜩ0.000628 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1892.076 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 27 + Consumed gas: 1014.304 + Resulting inbox state: { level = 26 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 325 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 351 message_counter = 25 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1086,9 +975,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1892.672 units (will add 100 for safety) +Estimated gas: 1014.900 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1099,22 +988,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000781 - Expected counter: 26 - Gas limit: 1993 + Fee to the baker: ꜩ0.00064 + Expected counter: 25 + Gas limit: 1115 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000781 - payload fees(the block proposer) ....... +ꜩ0.000781 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.00064 + payload fees(the block proposer) ....... +ꜩ0.00064 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1892.672 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 28 + Consumed gas: 1014.900 + Resulting inbox state: { level = 27 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 351 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 378 message_counter = 26 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1129,9 +1015,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1893.268 units (will add 100 for safety) +Estimated gas: 1015.496 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1142,22 +1028,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000793 - Expected counter: 27 - Gas limit: 1994 + Fee to the baker: ꜩ0.000652 + Expected counter: 26 + Gas limit: 1116 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000793 - payload fees(the block proposer) ....... +ꜩ0.000793 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000652 + payload fees(the block proposer) ....... +ꜩ0.000652 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1893.268 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 29 + Consumed gas: 1015.496 + Resulting inbox state: { level = 28 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 378 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 406 message_counter = 27 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1172,9 +1055,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1893.864 units (will add 100 for safety) +Estimated gas: 1016.092 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1185,22 +1068,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000805 - Expected counter: 28 - Gas limit: 1994 + Fee to the baker: ꜩ0.000664 + Expected counter: 27 + Gas limit: 1117 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000805 - payload fees(the block proposer) ....... +ꜩ0.000805 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000664 + payload fees(the block proposer) ....... +ꜩ0.000664 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1893.864 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 30 + Consumed gas: 1016.092 + Resulting inbox state: { level = 29 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 406 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 435 message_counter = 28 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1215,9 +1095,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1894.460 units (will add 100 for safety) +Estimated gas: 1016.688 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1228,22 +1108,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000817 - Expected counter: 29 - Gas limit: 1995 + Fee to the baker: ꜩ0.000676 + Expected counter: 28 + Gas limit: 1117 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000817 - payload fees(the block proposer) ....... +ꜩ0.000817 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000676 + payload fees(the block proposer) ....... +ꜩ0.000676 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1894.460 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 31 + Consumed gas: 1016.688 + Resulting inbox state: { level = 30 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 435 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 465 message_counter = 29 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1258,9 +1135,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1895.056 units (will add 100 for safety) +Estimated gas: 1017.284 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1271,22 +1148,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000829 - Expected counter: 30 - Gas limit: 1996 + Fee to the baker: ꜩ0.000688 + Expected counter: 29 + Gas limit: 1118 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000829 - payload fees(the block proposer) ....... +ꜩ0.000829 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000688 + payload fees(the block proposer) ....... +ꜩ0.000688 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1895.056 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 32 + Consumed gas: 1017.284 + Resulting inbox state: { level = 31 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 30 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 496 message_counter = 30 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1301,13 +1175,53 @@ This sequence of operations was run: } +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 +Node is bootstrapped. +Estimated gas: 1017.880 units (will add 100 for safety) +Estimated storage: no bytes added +Operation successfully injected in the node. +Operation hash is '[OPERATION_HASH]' +NOT waiting for the operation to be included. +Use command + octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] +and/or an external block explorer to make sure that it has been included. +This sequence of operations was run: + Manager signed operations: + From: [PUBLIC_KEY_HASH] + Fee to the baker: ꜩ0.0007 + Expected counter: 30 + Gas limit: 1118 + Storage limit: 0 bytes + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ0.0007 + payload fees(the block proposer) ....... +ꜩ0.0007 + Smart contract rollup messages submission + This smart contract rollup messages submission was successfully applied + Consumed gas: 1017.880 + Resulting inbox state: { level = 32 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 528 + message_counter = 31 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 31 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + ./octez-sc-rollup-client-alpha rpc get /global/last_stored_commitment { "commitment": { "compressed_state": "[SC_ROLLUP_PVM_STATE_HASH]", "inbox_level": 62, "predecessor": "[SC_ROLLUP_COMMITMENT_HASH]", - "number_of_ticks": "0" }, + "number_of_ticks": "60" }, "hash": "[SC_ROLLUP_COMMITMENT_HASH]" } ./octez-sc-rollup-client-alpha rpc get /local/last_published_commitment @@ -1316,5 +1230,5 @@ This sequence of operations was run: "[SC_ROLLUP_PVM_STATE_HASH]", "inbox_level": 62, "predecessor": "[SC_ROLLUP_COMMITMENT_HASH]", - "number_of_ticks": "0" }, + "number_of_ticks": "60" }, "hash": "[SC_ROLLUP_COMMITMENT_HASH]" } diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (no_commitment_publ.out b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (no_commitment_publ.out index d15c07e0db54..0f8e5db3bc41 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (no_commitment_publ.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (no_commitment_publ.out @@ -1,8 +1,8 @@ ./octez-client --wait none originate sc rollup from bootstrap1 of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.449 units (will add 100 for safety) -Estimated storage: 6655 bytes added (will add 20 for safety) +Estimated gas: 2909.925 units (will add 100 for safety) +Estimated storage: 6524 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,25 +12,25 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00067 + Fee to the baker: ꜩ0.000649 Expected counter: 1 - Gas limit: 3211 - Storage limit: 6675 bytes + Gas limit: 3010 + Storage limit: 6544 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00067 - payload fees(the block proposer) ....... +ꜩ0.00067 + [PUBLIC_KEY_HASH] ... -ꜩ0.000649 + payload fees(the block proposer) ....... +ꜩ0.000649 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector Blake2B hash: '0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8' This smart contract rollup origination was successfully applied - Consumed gas: 3110.449 - Storage size: 6655 bytes + Consumed gas: 2909.925 + Storage size: 6524 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.66375 - storage fees ........................... +ꜩ1.66375 + [PUBLIC_KEY_HASH] ... -ꜩ1.631 + storage fees ........................... +ꜩ1.631 ./octez-client rpc get '/chains/main/blocks/head/context/sc_rollup/[SC_ROLLUP_HASH]/genesis_info' @@ -43,7 +43,7 @@ This sequence of operations was run: "[SC_ROLLUP_PVM_STATE_HASH]", "inbox_level": 32, "predecessor": "[SC_ROLLUP_COMMITMENT_HASH]", - "number_of_ticks": "0" }, + "number_of_ticks": "62" }, "hash": "[SC_ROLLUP_COMMITMENT_HASH]" } ./octez-sc-rollup-client-alpha rpc get /local/last_published_commitment @@ -52,7 +52,7 @@ This sequence of operations was run: "[SC_ROLLUP_PVM_STATE_HASH]", "inbox_level": 32, "predecessor": "[SC_ROLLUP_COMMITMENT_HASH]", - "number_of_ticks": "0" }, + "number_of_ticks": "62" }, "hash": "[SC_ROLLUP_COMMITMENT_HASH]" } ./octez-client rpc get /chains/main/blocks/head/context/constants @@ -266,7 +266,7 @@ null "[SC_ROLLUP_PVM_STATE_HASH]", "inbox_level": 32, "predecessor": "[SC_ROLLUP_COMMITMENT_HASH]", - "number_of_ticks": "0" }, + "number_of_ticks": "62" }, "hash": "[SC_ROLLUP_COMMITMENT_HASH]" } ./octez-sc-rollup-client-alpha rpc get /local/last_published_commitment @@ -275,6 +275,6 @@ null "[SC_ROLLUP_PVM_STATE_HASH]", "inbox_level": 62, "predecessor": "[SC_ROLLUP_COMMITMENT_HASH]", - "number_of_ticks": "0" }, + "number_of_ticks": "60" }, "hash": "[SC_ROLLUP_COMMITMENT_HASH]", "published_at_level": 65 } diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (node_use_proto_par.out b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (node_use_proto_par.out index e7b7bea3767f..696661cbc72a 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (node_use_proto_par.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (node_use_proto_par.out @@ -1,8 +1,8 @@ ./octez-client --wait none originate sc rollup from bootstrap1 of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.449 units (will add 100 for safety) -Estimated storage: 6655 bytes added (will add 20 for safety) +Estimated gas: 2909.925 units (will add 100 for safety) +Estimated storage: 6524 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,34 +12,34 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00067 + Fee to the baker: ꜩ0.000649 Expected counter: 1 - Gas limit: 3211 - Storage limit: 6675 bytes + Gas limit: 3010 + Storage limit: 6544 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00067 - payload fees(the block proposer) ....... +ꜩ0.00067 + [PUBLIC_KEY_HASH] ... -ꜩ0.000649 + payload fees(the block proposer) ....... +ꜩ0.000649 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector Blake2B hash: '0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8' This smart contract rollup origination was successfully applied - Consumed gas: 3110.449 - Storage size: 6655 bytes + Consumed gas: 2909.925 + Storage size: 6524 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.66375 - storage fees ........................... +ꜩ1.66375 + [PUBLIC_KEY_HASH] ... -ꜩ1.631 + storage fees ........................... +ꜩ1.631 ./octez-client rpc get '/chains/main/blocks/head/context/sc_rollup/[SC_ROLLUP_HASH]/genesis_info' { "level": 2, "commitment_hash": "[SC_ROLLUP_COMMITMENT_HASH]" } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1876.722 units (will add 100 for safety) +Estimated gas: 1000.596 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -50,35 +50,33 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000479 + Fee to the baker: ꜩ0.000351 Expected counter: 1 - Gas limit: 1977 + Gas limit: 1101 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000479 - payload fees(the block proposer) ....... +ꜩ0.000479 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000351 + payload fees(the block proposer) ....... +ꜩ0.000351 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1876.850 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 3 + Consumed gas: 1000.596 + Resulting inbox state: { level = 3 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 1 - starting_level_of_current_commitment_period = 2 - message_counter = 1 + nb_messages_in_commitment_period = 6 + message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 1 + index = 2 back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1877.540 units (will add 100 for safety) +Estimated gas: 1001.192 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -89,36 +87,33 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000491 + Fee to the baker: ꜩ0.000363 Expected counter: 2 - Gas limit: 1978 + Gas limit: 1102 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000491 - payload fees(the block proposer) ....... +ꜩ0.000491 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000363 + payload fees(the block proposer) ....... +ꜩ0.000363 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1877.668 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 4 + Consumed gas: 1001.192 + Resulting inbox state: { level = 4 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 3 - starting_level_of_current_commitment_period = 2 - message_counter = 2 + nb_messages_in_commitment_period = 10 + message_counter = 3 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 2 + index = 3 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1878.343 units (will add 100 for safety) +Estimated gas: 1001.788 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -129,36 +124,34 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000503 + Fee to the baker: ꜩ0.000375 Expected counter: 3 - Gas limit: 1979 + Gas limit: 1102 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000503 - payload fees(the block proposer) ....... +ꜩ0.000503 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000375 + payload fees(the block proposer) ....... +ꜩ0.000375 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1878.343 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 5 + Consumed gas: 1001.788 + Resulting inbox state: { level = 5 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 6 - starting_level_of_current_commitment_period = 2 - message_counter = 3 + nb_messages_in_commitment_period = 15 + message_counter = 4 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 3 + index = 4 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1878.939 units (will add 100 for safety) +Estimated gas: 1002.384 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -169,27 +162,24 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000515 + Fee to the baker: ꜩ0.000387 Expected counter: 4 - Gas limit: 1979 + Gas limit: 1103 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000515 - payload fees(the block proposer) ....... +ꜩ0.000515 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000387 + payload fees(the block proposer) ....... +ꜩ0.000387 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1879.067 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 6 + Consumed gas: 1002.384 + Resulting inbox state: { level = 6 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 10 - starting_level_of_current_commitment_period = 2 - message_counter = 4 + nb_messages_in_commitment_period = 21 + message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 4 + index = 5 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] @@ -197,9 +187,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1879.742 units (will add 100 for safety) +Estimated gas: 1002.980 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -210,27 +200,24 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000527 + Fee to the baker: ꜩ0.000399 Expected counter: 5 - Gas limit: 1980 + Gas limit: 1103 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000527 - payload fees(the block proposer) ....... +ꜩ0.000527 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000399 + payload fees(the block proposer) ....... +ꜩ0.000399 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1879.742 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 7 + Consumed gas: 1002.980 + Resulting inbox state: { level = 7 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 15 - starting_level_of_current_commitment_period = 2 - message_counter = 5 + nb_messages_in_commitment_period = 28 + message_counter = 6 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 5 + index = 6 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] @@ -238,9 +225,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1880.338 units (will add 100 for safety) +Estimated gas: 1003.576 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -251,27 +238,24 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00054 + Fee to the baker: ꜩ0.000411 Expected counter: 6 - Gas limit: 1981 + Gas limit: 1104 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00054 - payload fees(the block proposer) ....... +ꜩ0.00054 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000411 + payload fees(the block proposer) ....... +ꜩ0.000411 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1880.338 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 8 + Consumed gas: 1003.576 + Resulting inbox state: { level = 8 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 21 - starting_level_of_current_commitment_period = 2 - message_counter = 6 + nb_messages_in_commitment_period = 36 + message_counter = 7 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 6 + index = 7 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] @@ -279,9 +263,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1880.934 units (will add 100 for safety) +Estimated gas: 1004.172 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -292,37 +276,35 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000552 + Fee to the baker: ꜩ0.000423 Expected counter: 7 - Gas limit: 1981 + Gas limit: 1105 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000552 - payload fees(the block proposer) ....... +ꜩ0.000552 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000423 + payload fees(the block proposer) ....... +ꜩ0.000423 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1880.934 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 9 + Consumed gas: 1004.172 + Resulting inbox state: { level = 9 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 28 - starting_level_of_current_commitment_period = 2 - message_counter = 7 + nb_messages_in_commitment_period = 45 + message_counter = 8 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 7 + index = 8 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1881.530 units (will add 100 for safety) +Estimated gas: 1004.768 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -333,27 +315,24 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000564 + Fee to the baker: ꜩ0.000435 Expected counter: 8 - Gas limit: 1982 + Gas limit: 1105 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000564 - payload fees(the block proposer) ....... +ꜩ0.000564 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000435 + payload fees(the block proposer) ....... +ꜩ0.000435 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1881.658 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 10 + Consumed gas: 1004.768 + Resulting inbox state: { level = 10 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 36 - starting_level_of_current_commitment_period = 2 - message_counter = 8 + nb_messages_in_commitment_period = 55 + message_counter = 9 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 8 + index = 9 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] @@ -362,9 +341,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1882.333 units (will add 100 for safety) +Estimated gas: 1005.364 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -375,27 +354,24 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000576 + Fee to the baker: ꜩ0.000447 Expected counter: 9 - Gas limit: 1983 + Gas limit: 1106 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000576 - payload fees(the block proposer) ....... +ꜩ0.000576 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000447 + payload fees(the block proposer) ....... +ꜩ0.000447 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1882.333 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 11 + Consumed gas: 1005.364 + Resulting inbox state: { level = 11 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 45 - starting_level_of_current_commitment_period = 2 - message_counter = 9 + nb_messages_in_commitment_period = 66 + message_counter = 10 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 9 + index = 10 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] @@ -404,9 +380,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1882.929 units (will add 100 for safety) +Estimated gas: 1005.960 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -417,27 +393,24 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000588 + Fee to the baker: ꜩ0.000459 Expected counter: 10 - Gas limit: 1983 + Gas limit: 1106 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000588 - payload fees(the block proposer) ....... +ꜩ0.000588 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000459 + payload fees(the block proposer) ....... +ꜩ0.000459 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1882.929 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 12 + Consumed gas: 1005.960 + Resulting inbox state: { level = 12 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 55 - starting_level_of_current_commitment_period = 2 - message_counter = 10 + nb_messages_in_commitment_period = 78 + message_counter = 11 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 10 + index = 11 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] @@ -446,9 +419,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1883.525 units (will add 100 for safety) +Estimated gas: 1006.556 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -459,27 +432,24 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.0006 + Fee to the baker: ꜩ0.000471 Expected counter: 11 - Gas limit: 1984 + Gas limit: 1107 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.0006 - payload fees(the block proposer) ....... +ꜩ0.0006 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000471 + payload fees(the block proposer) ....... +ꜩ0.000471 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1883.525 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 13 + Consumed gas: 1006.556 + Resulting inbox state: { level = 13 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 66 - starting_level_of_current_commitment_period = 2 - message_counter = 11 + nb_messages_in_commitment_period = 91 + message_counter = 12 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 11 + index = 12 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] @@ -488,9 +458,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1884.121 units (will add 100 for safety) +Estimated gas: 1007.152 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -501,27 +471,24 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000612 + Fee to the baker: ꜩ0.000483 Expected counter: 12 - Gas limit: 1985 + Gas limit: 1108 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000612 - payload fees(the block proposer) ....... +ꜩ0.000612 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000483 + payload fees(the block proposer) ....... +ꜩ0.000483 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1884.121 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 14 + Consumed gas: 1007.152 + Resulting inbox state: { level = 14 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 78 - starting_level_of_current_commitment_period = 2 - message_counter = 12 + nb_messages_in_commitment_period = 105 + message_counter = 13 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 12 + index = 13 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] @@ -530,9 +497,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1884.717 units (will add 100 for safety) +Estimated gas: 1007.748 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -543,27 +510,24 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000624 + Fee to the baker: ꜩ0.000495 Expected counter: 13 - Gas limit: 1985 + Gas limit: 1108 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000624 - payload fees(the block proposer) ....... +ꜩ0.000624 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000495 + payload fees(the block proposer) ....... +ꜩ0.000495 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1884.717 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 15 + Consumed gas: 1007.748 + Resulting inbox state: { level = 15 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 91 - starting_level_of_current_commitment_period = 2 - message_counter = 13 + nb_messages_in_commitment_period = 120 + message_counter = 14 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 13 + index = 14 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] @@ -572,9 +536,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1885.313 units (will add 100 for safety) +Estimated gas: 1008.344 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -585,27 +549,24 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000636 + Fee to the baker: ꜩ0.000507 Expected counter: 14 - Gas limit: 1986 + Gas limit: 1109 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000636 - payload fees(the block proposer) ....... +ꜩ0.000636 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000507 + payload fees(the block proposer) ....... +ꜩ0.000507 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1885.313 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 16 + Consumed gas: 1008.344 + Resulting inbox state: { level = 16 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 105 - starting_level_of_current_commitment_period = 2 - message_counter = 14 + nb_messages_in_commitment_period = 136 + message_counter = 15 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 14 + index = 15 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] @@ -614,9 +575,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1885.909 units (will add 100 for safety) +Estimated gas: 1008.940 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -627,31 +588,29 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000648 + Fee to the baker: ꜩ0.000519 Expected counter: 15 - Gas limit: 1986 + Gas limit: 1109 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000648 - payload fees(the block proposer) ....... +ꜩ0.000648 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000519 + payload fees(the block proposer) ....... +ꜩ0.000519 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1885.909 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 17 + Consumed gas: 1008.940 + Resulting inbox state: { level = 17 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 15 - starting_level_of_current_commitment_period = 17 - message_counter = 15 + nb_messages_in_commitment_period = 153 + message_counter = 16 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 15 + index = 16 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] } @@ -662,7 +621,7 @@ This sequence of operations was run: "[SC_ROLLUP_PVM_STATE_HASH]", "inbox_level": 17, "predecessor": "[SC_ROLLUP_COMMITMENT_HASH]", - "number_of_ticks": "1322" }, + "number_of_ticks": "1352" }, "hash": "[SC_ROLLUP_COMMITMENT_HASH]" } ./octez-sc-rollup-client-alpha rpc get /local/last_published_commitment @@ -671,6 +630,6 @@ This sequence of operations was run: "[SC_ROLLUP_PVM_STATE_HASH]", "inbox_level": 17, "predecessor": "[SC_ROLLUP_COMMITMENT_HASH]", - "number_of_ticks": "1322" }, + "number_of_ticks": "1352" }, "hash": "[SC_ROLLUP_COMMITMENT_HASH]", "published_at_level": 20 } diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (non_final_level).out b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (non_final_level).out index dbc9f84eb397..0f619e97f397 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (non_final_level).out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (non_final_level).out @@ -1,8 +1,8 @@ ./octez-client --wait none originate sc rollup from bootstrap1 of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.449 units (will add 100 for safety) -Estimated storage: 6655 bytes added (will add 20 for safety) +Estimated gas: 2909.925 units (will add 100 for safety) +Estimated storage: 6524 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,34 +12,34 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00067 + Fee to the baker: ꜩ0.000649 Expected counter: 1 - Gas limit: 3211 - Storage limit: 6675 bytes + Gas limit: 3010 + Storage limit: 6544 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00067 - payload fees(the block proposer) ....... +ꜩ0.00067 + [PUBLIC_KEY_HASH] ... -ꜩ0.000649 + payload fees(the block proposer) ....... +ꜩ0.000649 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector Blake2B hash: '0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8' This smart contract rollup origination was successfully applied - Consumed gas: 3110.449 - Storage size: 6655 bytes + Consumed gas: 2909.925 + Storage size: 6524 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.66375 - storage fees ........................... +ꜩ1.66375 + [PUBLIC_KEY_HASH] ... -ꜩ1.631 + storage fees ........................... +ꜩ1.631 ./octez-client rpc get '/chains/main/blocks/head/context/sc_rollup/[SC_ROLLUP_HASH]/genesis_info' { "level": 2, "commitment_hash": "[SC_ROLLUP_COMMITMENT_HASH]" } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1876.722 units (will add 100 for safety) +Estimated gas: 1000.596 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -50,61 +50,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000479 + Fee to the baker: ꜩ0.000351 Expected counter: 1 - Gas limit: 1977 + Gas limit: 1101 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000479 - payload fees(the block proposer) ....... +ꜩ0.000479 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] - This smart contract rollup messages submission was successfully applied - Consumed gas: 1876.850 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 3 - current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 1 - starting_level_of_current_commitment_period = 2 - message_counter = 1 - old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] - - content = [SC_ROLLUP_INBOX_HASH] - index = 1 - back_pointers = [SC_ROLLUP_INBOX_HASH] - - } - - -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' -Node is bootstrapped. -Estimated gas: 1877.540 units (will add 100 for safety) -Estimated storage: no bytes added -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000491 - Expected counter: 2 - Gas limit: 1978 - Storage limit: 0 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000491 - payload fees(the block proposer) ....... +ꜩ0.000491 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000351 + payload fees(the block proposer) ....... +ꜩ0.000351 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1877.668 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 4 + Consumed gas: 1000.596 + Resulting inbox state: { level = 3 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 3 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 6 message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -116,9 +74,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1878.343 units (will add 100 for safety) +Estimated gas: 1001.192 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -129,22 +87,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000503 - Expected counter: 3 - Gas limit: 1979 + Fee to the baker: ꜩ0.000363 + Expected counter: 2 + Gas limit: 1102 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000503 - payload fees(the block proposer) ....... +ꜩ0.000503 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000363 + payload fees(the block proposer) ....... +ꜩ0.000363 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1878.343 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 5 + Consumed gas: 1001.192 + Resulting inbox state: { level = 4 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 6 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 10 message_counter = 3 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -156,9 +111,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1878.939 units (will add 100 for safety) +Estimated gas: 1001.788 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -169,22 +124,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000515 - Expected counter: 4 - Gas limit: 1979 + Fee to the baker: ꜩ0.000375 + Expected counter: 3 + Gas limit: 1102 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000515 - payload fees(the block proposer) ....... +ꜩ0.000515 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000375 + payload fees(the block proposer) ....... +ꜩ0.000375 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1879.067 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 6 + Consumed gas: 1001.788 + Resulting inbox state: { level = 5 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 10 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 15 message_counter = 4 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -197,9 +149,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1879.742 units (will add 100 for safety) +Estimated gas: 1002.384 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -210,22 +162,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000527 - Expected counter: 5 - Gas limit: 1980 + Fee to the baker: ꜩ0.000387 + Expected counter: 4 + Gas limit: 1103 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000527 - payload fees(the block proposer) ....... +ꜩ0.000527 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000387 + payload fees(the block proposer) ....... +ꜩ0.000387 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1879.742 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 7 + Consumed gas: 1002.384 + Resulting inbox state: { level = 6 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 15 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 21 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -238,9 +187,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1880.338 units (will add 100 for safety) +Estimated gas: 1002.980 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -251,22 +200,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00054 - Expected counter: 6 - Gas limit: 1981 + Fee to the baker: ꜩ0.000399 + Expected counter: 5 + Gas limit: 1103 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00054 - payload fees(the block proposer) ....... +ꜩ0.00054 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000399 + payload fees(the block proposer) ....... +ꜩ0.000399 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1880.338 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 8 + Consumed gas: 1002.980 + Resulting inbox state: { level = 7 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 21 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 28 message_counter = 6 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -279,9 +225,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1880.934 units (will add 100 for safety) +Estimated gas: 1003.576 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -292,22 +238,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000552 - Expected counter: 7 - Gas limit: 1981 + Fee to the baker: ꜩ0.000411 + Expected counter: 6 + Gas limit: 1104 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000552 - payload fees(the block proposer) ....... +ꜩ0.000552 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000411 + payload fees(the block proposer) ....... +ꜩ0.000411 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1880.934 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 9 + Consumed gas: 1003.576 + Resulting inbox state: { level = 8 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 28 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 36 message_counter = 7 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -320,9 +263,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1881.530 units (will add 100 for safety) +Estimated gas: 1004.172 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -333,22 +276,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000564 - Expected counter: 8 - Gas limit: 1982 + Fee to the baker: ꜩ0.000423 + Expected counter: 7 + Gas limit: 1105 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000564 - payload fees(the block proposer) ....... +ꜩ0.000564 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000423 + payload fees(the block proposer) ....... +ꜩ0.000423 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1881.658 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 10 + Consumed gas: 1004.172 + Resulting inbox state: { level = 9 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 36 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 45 message_counter = 8 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -362,9 +302,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1882.333 units (will add 100 for safety) +Estimated gas: 1004.768 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -375,22 +315,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000576 - Expected counter: 9 - Gas limit: 1983 + Fee to the baker: ꜩ0.000435 + Expected counter: 8 + Gas limit: 1105 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000576 - payload fees(the block proposer) ....... +ꜩ0.000576 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000435 + payload fees(the block proposer) ....... +ꜩ0.000435 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1882.333 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 11 + Consumed gas: 1004.768 + Resulting inbox state: { level = 10 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 45 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 55 message_counter = 9 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -404,9 +341,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1882.929 units (will add 100 for safety) +Estimated gas: 1005.364 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -417,22 +354,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000588 - Expected counter: 10 - Gas limit: 1983 + Fee to the baker: ꜩ0.000447 + Expected counter: 9 + Gas limit: 1106 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000588 - payload fees(the block proposer) ....... +ꜩ0.000588 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000447 + payload fees(the block proposer) ....... +ꜩ0.000447 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1882.929 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 12 + Consumed gas: 1005.364 + Resulting inbox state: { level = 11 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 55 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 66 message_counter = 10 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -446,9 +380,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1883.525 units (will add 100 for safety) +Estimated gas: 1005.960 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -459,22 +393,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.0006 - Expected counter: 11 - Gas limit: 1984 + Fee to the baker: ꜩ0.000459 + Expected counter: 10 + Gas limit: 1106 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.0006 - payload fees(the block proposer) ....... +ꜩ0.0006 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000459 + payload fees(the block proposer) ....... +ꜩ0.000459 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1883.525 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 13 + Consumed gas: 1005.960 + Resulting inbox state: { level = 12 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 66 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 78 message_counter = 11 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -488,9 +419,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1884.121 units (will add 100 for safety) +Estimated gas: 1006.556 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -501,22 +432,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000612 - Expected counter: 12 - Gas limit: 1985 + Fee to the baker: ꜩ0.000471 + Expected counter: 11 + Gas limit: 1107 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000612 - payload fees(the block proposer) ....... +ꜩ0.000612 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000471 + payload fees(the block proposer) ....... +ꜩ0.000471 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1884.121 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 14 + Consumed gas: 1006.556 + Resulting inbox state: { level = 13 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 78 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 91 message_counter = 12 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -530,9 +458,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1884.717 units (will add 100 for safety) +Estimated gas: 1007.152 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -543,22 +471,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000624 - Expected counter: 13 - Gas limit: 1985 + Fee to the baker: ꜩ0.000483 + Expected counter: 12 + Gas limit: 1108 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000624 - payload fees(the block proposer) ....... +ꜩ0.000624 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000483 + payload fees(the block proposer) ....... +ꜩ0.000483 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1884.717 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 15 + Consumed gas: 1007.152 + Resulting inbox state: { level = 14 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 91 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 105 message_counter = 13 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -572,9 +497,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1885.313 units (will add 100 for safety) +Estimated gas: 1007.748 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -585,22 +510,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000636 - Expected counter: 14 - Gas limit: 1986 + Fee to the baker: ꜩ0.000495 + Expected counter: 13 + Gas limit: 1108 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000636 - payload fees(the block proposer) ....... +ꜩ0.000636 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000495 + payload fees(the block proposer) ....... +ꜩ0.000495 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1885.313 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 16 + Consumed gas: 1007.748 + Resulting inbox state: { level = 15 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 105 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 120 message_counter = 14 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -614,9 +536,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1885.909 units (will add 100 for safety) +Estimated gas: 1008.344 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -627,22 +549,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000648 - Expected counter: 15 - Gas limit: 1986 + Fee to the baker: ꜩ0.000507 + Expected counter: 14 + Gas limit: 1109 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000648 - payload fees(the block proposer) ....... +ꜩ0.000648 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000507 + payload fees(the block proposer) ....... +ꜩ0.000507 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1885.909 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 17 + Consumed gas: 1008.344 + Resulting inbox state: { level = 16 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 120 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 136 message_counter = 15 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -656,9 +575,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1886.505 units (will add 100 for safety) +Estimated gas: 1008.940 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -669,22 +588,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00066 - Expected counter: 16 - Gas limit: 1987 + Fee to the baker: ꜩ0.000519 + Expected counter: 15 + Gas limit: 1109 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00066 - payload fees(the block proposer) ....... +ꜩ0.00066 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000519 + payload fees(the block proposer) ....... +ꜩ0.000519 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1886.633 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 18 + Consumed gas: 1008.940 + Resulting inbox state: { level = 17 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 136 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 153 message_counter = 16 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -699,9 +615,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1887.308 units (will add 100 for safety) +Estimated gas: 1009.536 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -712,22 +628,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000672 - Expected counter: 17 - Gas limit: 1988 + Fee to the baker: ꜩ0.000531 + Expected counter: 16 + Gas limit: 1110 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000672 - payload fees(the block proposer) ....... +ꜩ0.000672 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000531 + payload fees(the block proposer) ....... +ꜩ0.000531 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1887.308 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 19 + Consumed gas: 1009.536 + Resulting inbox state: { level = 18 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 153 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 171 message_counter = 17 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -742,9 +655,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1887.904 units (will add 100 for safety) +Estimated gas: 1010.132 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -755,22 +668,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000684 - Expected counter: 18 - Gas limit: 1988 + Fee to the baker: ꜩ0.000544 + Expected counter: 17 + Gas limit: 1111 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000684 - payload fees(the block proposer) ....... +ꜩ0.000684 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000544 + payload fees(the block proposer) ....... +ꜩ0.000544 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1887.904 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 20 + Consumed gas: 1010.132 + Resulting inbox state: { level = 19 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 171 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 190 message_counter = 18 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -785,9 +695,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1888.500 units (will add 100 for safety) +Estimated gas: 1010.728 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -798,22 +708,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000696 - Expected counter: 19 - Gas limit: 1989 + Fee to the baker: ꜩ0.000556 + Expected counter: 18 + Gas limit: 1111 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000696 - payload fees(the block proposer) ....... +ꜩ0.000696 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000556 + payload fees(the block proposer) ....... +ꜩ0.000556 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1888.500 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 21 + Consumed gas: 1010.728 + Resulting inbox state: { level = 20 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 190 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 210 message_counter = 19 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -828,9 +735,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1889.096 units (will add 100 for safety) +Estimated gas: 1011.324 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -841,22 +748,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000708 - Expected counter: 20 - Gas limit: 1990 + Fee to the baker: ꜩ0.000568 + Expected counter: 19 + Gas limit: 1112 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000708 - payload fees(the block proposer) ....... +ꜩ0.000708 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000568 + payload fees(the block proposer) ....... +ꜩ0.000568 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1889.096 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 22 + Consumed gas: 1011.324 + Resulting inbox state: { level = 21 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 210 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 231 message_counter = 20 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -871,9 +775,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1889.692 units (will add 100 for safety) +Estimated gas: 1011.920 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -884,22 +788,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00072 - Expected counter: 21 - Gas limit: 1990 + Fee to the baker: ꜩ0.00058 + Expected counter: 20 + Gas limit: 1112 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00072 - payload fees(the block proposer) ....... +ꜩ0.00072 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.00058 + payload fees(the block proposer) ....... +ꜩ0.00058 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1889.692 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 23 + Consumed gas: 1011.920 + Resulting inbox state: { level = 22 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 231 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 253 message_counter = 21 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -914,9 +815,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1890.288 units (will add 100 for safety) +Estimated gas: 1012.516 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -927,22 +828,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000733 - Expected counter: 22 - Gas limit: 1991 + Fee to the baker: ꜩ0.000592 + Expected counter: 21 + Gas limit: 1113 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000733 - payload fees(the block proposer) ....... +ꜩ0.000733 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000592 + payload fees(the block proposer) ....... +ꜩ0.000592 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1890.288 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 24 + Consumed gas: 1012.516 + Resulting inbox state: { level = 23 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 253 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 276 message_counter = 22 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -957,9 +855,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1890.884 units (will add 100 for safety) +Estimated gas: 1013.112 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -970,22 +868,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000745 - Expected counter: 23 - Gas limit: 1991 + Fee to the baker: ꜩ0.000604 + Expected counter: 22 + Gas limit: 1114 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000745 - payload fees(the block proposer) ....... +ꜩ0.000745 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000604 + payload fees(the block proposer) ....... +ꜩ0.000604 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1890.884 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 25 + Consumed gas: 1013.112 + Resulting inbox state: { level = 24 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 276 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 300 message_counter = 23 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1000,9 +895,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1891.480 units (will add 100 for safety) +Estimated gas: 1013.708 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1013,22 +908,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000757 - Expected counter: 24 - Gas limit: 1992 + Fee to the baker: ꜩ0.000616 + Expected counter: 23 + Gas limit: 1114 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000757 - payload fees(the block proposer) ....... +ꜩ0.000757 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000616 + payload fees(the block proposer) ....... +ꜩ0.000616 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1891.480 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 26 + Consumed gas: 1013.708 + Resulting inbox state: { level = 25 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 300 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 325 message_counter = 24 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1043,9 +935,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1892.076 units (will add 100 for safety) +Estimated gas: 1014.304 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1056,22 +948,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000769 - Expected counter: 25 - Gas limit: 1993 + Fee to the baker: ꜩ0.000628 + Expected counter: 24 + Gas limit: 1115 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000769 - payload fees(the block proposer) ....... +ꜩ0.000769 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000628 + payload fees(the block proposer) ....... +ꜩ0.000628 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1892.076 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 27 + Consumed gas: 1014.304 + Resulting inbox state: { level = 26 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 325 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 351 message_counter = 25 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1086,9 +975,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1892.672 units (will add 100 for safety) +Estimated gas: 1014.900 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1099,22 +988,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000781 - Expected counter: 26 - Gas limit: 1993 + Fee to the baker: ꜩ0.00064 + Expected counter: 25 + Gas limit: 1115 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000781 - payload fees(the block proposer) ....... +ꜩ0.000781 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.00064 + payload fees(the block proposer) ....... +ꜩ0.00064 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1892.672 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 28 + Consumed gas: 1014.900 + Resulting inbox state: { level = 27 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 351 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 378 message_counter = 26 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1129,9 +1015,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1893.268 units (will add 100 for safety) +Estimated gas: 1015.496 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1142,22 +1028,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000793 - Expected counter: 27 - Gas limit: 1994 + Fee to the baker: ꜩ0.000652 + Expected counter: 26 + Gas limit: 1116 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000793 - payload fees(the block proposer) ....... +ꜩ0.000793 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000652 + payload fees(the block proposer) ....... +ꜩ0.000652 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1893.268 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 29 + Consumed gas: 1015.496 + Resulting inbox state: { level = 28 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 378 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 406 message_counter = 27 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1172,9 +1055,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1893.864 units (will add 100 for safety) +Estimated gas: 1016.092 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1185,22 +1068,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000805 - Expected counter: 28 - Gas limit: 1994 + Fee to the baker: ꜩ0.000664 + Expected counter: 27 + Gas limit: 1117 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000805 - payload fees(the block proposer) ....... +ꜩ0.000805 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000664 + payload fees(the block proposer) ....... +ꜩ0.000664 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1893.864 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 30 + Consumed gas: 1016.092 + Resulting inbox state: { level = 29 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 406 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 435 message_counter = 28 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1215,9 +1095,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1894.460 units (will add 100 for safety) +Estimated gas: 1016.688 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1228,22 +1108,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000817 - Expected counter: 29 - Gas limit: 1995 + Fee to the baker: ꜩ0.000676 + Expected counter: 28 + Gas limit: 1117 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000817 - payload fees(the block proposer) ....... +ꜩ0.000817 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000676 + payload fees(the block proposer) ....... +ꜩ0.000676 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1894.460 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 31 + Consumed gas: 1016.688 + Resulting inbox state: { level = 30 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 435 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 465 message_counter = 29 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1258,9 +1135,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1895.056 units (will add 100 for safety) +Estimated gas: 1017.284 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1271,22 +1148,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000829 - Expected counter: 30 - Gas limit: 1996 + Fee to the baker: ꜩ0.000688 + Expected counter: 29 + Gas limit: 1118 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000829 - payload fees(the block proposer) ....... +ꜩ0.000829 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000688 + payload fees(the block proposer) ....... +ꜩ0.000688 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1895.056 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 32 + Consumed gas: 1017.284 + Resulting inbox state: { level = 31 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 30 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 496 message_counter = 30 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1301,6 +1175,46 @@ This sequence of operations was run: } +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 +Node is bootstrapped. +Estimated gas: 1017.880 units (will add 100 for safety) +Estimated storage: no bytes added +Operation successfully injected in the node. +Operation hash is '[OPERATION_HASH]' +NOT waiting for the operation to be included. +Use command + octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] +and/or an external block explorer to make sure that it has been included. +This sequence of operations was run: + Manager signed operations: + From: [PUBLIC_KEY_HASH] + Fee to the baker: ꜩ0.0007 + Expected counter: 30 + Gas limit: 1118 + Storage limit: 0 bytes + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ0.0007 + payload fees(the block proposer) ....... +ꜩ0.0007 + Smart contract rollup messages submission + This smart contract rollup messages submission was successfully applied + Consumed gas: 1017.880 + Resulting inbox state: { level = 32 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 528 + message_counter = 31 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 31 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + ./octez-sc-rollup-client-alpha rpc get /global/last_stored_commitment null diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (observer_does_not_.out b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (observer_does_not_.out index 4b2c409f4ca0..a144083922de 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (observer_does_not_.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (observer_does_not_.out @@ -1,8 +1,8 @@ ./octez-client --wait none originate sc rollup from bootstrap1 of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.449 units (will add 100 for safety) -Estimated storage: 6655 bytes added (will add 20 for safety) +Estimated gas: 2909.925 units (will add 100 for safety) +Estimated storage: 6524 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,30 +12,30 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00067 + Fee to the baker: ꜩ0.000649 Expected counter: 1 - Gas limit: 3211 - Storage limit: 6675 bytes + Gas limit: 3010 + Storage limit: 6544 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00067 - payload fees(the block proposer) ....... +ꜩ0.00067 + [PUBLIC_KEY_HASH] ... -ꜩ0.000649 + payload fees(the block proposer) ....... +ꜩ0.000649 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector Blake2B hash: '0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8' This smart contract rollup origination was successfully applied - Consumed gas: 3110.449 - Storage size: 6655 bytes + Consumed gas: 2909.925 + Storage size: 6524 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.66375 - storage fees ........................... +ꜩ1.66375 + [PUBLIC_KEY_HASH] ... -ꜩ1.631 + storage fees ........................... +ꜩ1.631 -./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1876.722 units (will add 100 for safety) +Estimated gas: 1000.596 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -46,61 +46,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000479 + Fee to the baker: ꜩ0.000351 Expected counter: 1 - Gas limit: 1977 + Gas limit: 1101 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000479 - payload fees(the block proposer) ....... +ꜩ0.000479 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] - This smart contract rollup messages submission was successfully applied - Consumed gas: 1876.850 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 3 - current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 1 - starting_level_of_current_commitment_period = 2 - message_counter = 1 - old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] - - content = [SC_ROLLUP_INBOX_HASH] - index = 1 - back_pointers = [SC_ROLLUP_INBOX_HASH] - - } - - -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' -Node is bootstrapped. -Estimated gas: 1877.540 units (will add 100 for safety) -Estimated storage: no bytes added -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000491 - Expected counter: 2 - Gas limit: 1978 - Storage limit: 0 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000491 - payload fees(the block proposer) ....... +ꜩ0.000491 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000351 + payload fees(the block proposer) ....... +ꜩ0.000351 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1877.668 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 4 + Consumed gas: 1000.596 + Resulting inbox state: { level = 3 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 3 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 6 message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -112,9 +70,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1878.343 units (will add 100 for safety) +Estimated gas: 1001.192 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -125,22 +83,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000503 - Expected counter: 3 - Gas limit: 1979 + Fee to the baker: ꜩ0.000363 + Expected counter: 2 + Gas limit: 1102 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000503 - payload fees(the block proposer) ....... +ꜩ0.000503 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000363 + payload fees(the block proposer) ....... +ꜩ0.000363 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1878.343 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 5 + Consumed gas: 1001.192 + Resulting inbox state: { level = 4 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 6 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 10 message_counter = 3 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -152,9 +107,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1878.939 units (will add 100 for safety) +Estimated gas: 1001.788 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -165,22 +120,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000515 - Expected counter: 4 - Gas limit: 1979 + Fee to the baker: ꜩ0.000375 + Expected counter: 3 + Gas limit: 1102 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000515 - payload fees(the block proposer) ....... +ꜩ0.000515 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000375 + payload fees(the block proposer) ....... +ꜩ0.000375 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1879.067 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 6 + Consumed gas: 1001.788 + Resulting inbox state: { level = 5 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 10 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 15 message_counter = 4 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -193,9 +145,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1879.742 units (will add 100 for safety) +Estimated gas: 1002.384 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -206,22 +158,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000527 - Expected counter: 5 - Gas limit: 1980 + Fee to the baker: ꜩ0.000387 + Expected counter: 4 + Gas limit: 1103 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000527 - payload fees(the block proposer) ....... +ꜩ0.000527 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000387 + payload fees(the block proposer) ....... +ꜩ0.000387 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1879.742 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 7 + Consumed gas: 1002.384 + Resulting inbox state: { level = 6 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 15 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 21 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -234,9 +183,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1880.338 units (will add 100 for safety) +Estimated gas: 1002.980 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -247,22 +196,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00054 - Expected counter: 6 - Gas limit: 1981 + Fee to the baker: ꜩ0.000399 + Expected counter: 5 + Gas limit: 1103 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00054 - payload fees(the block proposer) ....... +ꜩ0.00054 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000399 + payload fees(the block proposer) ....... +ꜩ0.000399 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1880.338 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 8 + Consumed gas: 1002.980 + Resulting inbox state: { level = 7 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 21 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 28 message_counter = 6 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -275,9 +221,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1880.934 units (will add 100 for safety) +Estimated gas: 1003.576 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -288,22 +234,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000552 - Expected counter: 7 - Gas limit: 1981 + Fee to the baker: ꜩ0.000411 + Expected counter: 6 + Gas limit: 1104 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000552 - payload fees(the block proposer) ....... +ꜩ0.000552 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000411 + payload fees(the block proposer) ....... +ꜩ0.000411 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1880.934 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 9 + Consumed gas: 1003.576 + Resulting inbox state: { level = 8 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 28 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 36 message_counter = 7 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -316,9 +259,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1881.530 units (will add 100 for safety) +Estimated gas: 1004.172 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -329,22 +272,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000564 - Expected counter: 8 - Gas limit: 1982 + Fee to the baker: ꜩ0.000423 + Expected counter: 7 + Gas limit: 1105 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000564 - payload fees(the block proposer) ....... +ꜩ0.000564 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000423 + payload fees(the block proposer) ....... +ꜩ0.000423 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1881.658 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 10 + Consumed gas: 1004.172 + Resulting inbox state: { level = 9 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 36 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 45 message_counter = 8 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -358,9 +298,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1882.333 units (will add 100 for safety) +Estimated gas: 1004.768 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -371,22 +311,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000576 - Expected counter: 9 - Gas limit: 1983 + Fee to the baker: ꜩ0.000435 + Expected counter: 8 + Gas limit: 1105 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000576 - payload fees(the block proposer) ....... +ꜩ0.000576 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000435 + payload fees(the block proposer) ....... +ꜩ0.000435 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1882.333 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 11 + Consumed gas: 1004.768 + Resulting inbox state: { level = 10 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 45 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 55 message_counter = 9 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -400,9 +337,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1882.929 units (will add 100 for safety) +Estimated gas: 1005.364 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -413,22 +350,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000588 - Expected counter: 10 - Gas limit: 1983 + Fee to the baker: ꜩ0.000447 + Expected counter: 9 + Gas limit: 1106 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000588 - payload fees(the block proposer) ....... +ꜩ0.000588 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000447 + payload fees(the block proposer) ....... +ꜩ0.000447 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1882.929 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 12 + Consumed gas: 1005.364 + Resulting inbox state: { level = 11 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 55 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 66 message_counter = 10 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -442,9 +376,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1883.525 units (will add 100 for safety) +Estimated gas: 1005.960 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -455,22 +389,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.0006 - Expected counter: 11 - Gas limit: 1984 + Fee to the baker: ꜩ0.000459 + Expected counter: 10 + Gas limit: 1106 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.0006 - payload fees(the block proposer) ....... +ꜩ0.0006 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000459 + payload fees(the block proposer) ....... +ꜩ0.000459 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1883.525 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 13 + Consumed gas: 1005.960 + Resulting inbox state: { level = 12 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 66 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 78 message_counter = 11 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -484,9 +415,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1884.121 units (will add 100 for safety) +Estimated gas: 1006.556 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -497,22 +428,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000612 - Expected counter: 12 - Gas limit: 1985 + Fee to the baker: ꜩ0.000471 + Expected counter: 11 + Gas limit: 1107 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000612 - payload fees(the block proposer) ....... +ꜩ0.000612 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000471 + payload fees(the block proposer) ....... +ꜩ0.000471 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1884.121 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 14 + Consumed gas: 1006.556 + Resulting inbox state: { level = 13 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 78 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 91 message_counter = 12 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -526,9 +454,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1884.717 units (will add 100 for safety) +Estimated gas: 1007.152 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -539,22 +467,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000624 - Expected counter: 13 - Gas limit: 1985 + Fee to the baker: ꜩ0.000483 + Expected counter: 12 + Gas limit: 1108 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000624 - payload fees(the block proposer) ....... +ꜩ0.000624 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000483 + payload fees(the block proposer) ....... +ꜩ0.000483 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1884.717 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 15 + Consumed gas: 1007.152 + Resulting inbox state: { level = 14 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 91 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 105 message_counter = 13 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -568,9 +493,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1885.313 units (will add 100 for safety) +Estimated gas: 1007.748 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -581,22 +506,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000636 - Expected counter: 14 - Gas limit: 1986 + Fee to the baker: ꜩ0.000495 + Expected counter: 13 + Gas limit: 1108 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000636 - payload fees(the block proposer) ....... +ꜩ0.000636 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000495 + payload fees(the block proposer) ....... +ꜩ0.000495 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1885.313 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 16 + Consumed gas: 1007.748 + Resulting inbox state: { level = 15 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 105 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 120 message_counter = 14 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -610,9 +532,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1885.909 units (will add 100 for safety) +Estimated gas: 1008.344 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -623,22 +545,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000648 - Expected counter: 15 - Gas limit: 1986 + Fee to the baker: ꜩ0.000507 + Expected counter: 14 + Gas limit: 1109 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000648 - payload fees(the block proposer) ....... +ꜩ0.000648 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000507 + payload fees(the block proposer) ....... +ꜩ0.000507 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1885.909 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 17 + Consumed gas: 1008.344 + Resulting inbox state: { level = 16 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 120 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 136 message_counter = 15 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -652,9 +571,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1886.505 units (will add 100 for safety) +Estimated gas: 1008.940 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -665,22 +584,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00066 - Expected counter: 16 - Gas limit: 1987 + Fee to the baker: ꜩ0.000519 + Expected counter: 15 + Gas limit: 1109 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00066 - payload fees(the block proposer) ....... +ꜩ0.00066 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000519 + payload fees(the block proposer) ....... +ꜩ0.000519 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1886.633 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 18 + Consumed gas: 1008.940 + Resulting inbox state: { level = 17 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 136 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 153 message_counter = 16 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -695,9 +611,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1887.308 units (will add 100 for safety) +Estimated gas: 1009.536 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -708,22 +624,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000672 - Expected counter: 17 - Gas limit: 1988 + Fee to the baker: ꜩ0.000531 + Expected counter: 16 + Gas limit: 1110 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000672 - payload fees(the block proposer) ....... +ꜩ0.000672 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000531 + payload fees(the block proposer) ....... +ꜩ0.000531 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1887.308 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 19 + Consumed gas: 1009.536 + Resulting inbox state: { level = 18 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 153 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 171 message_counter = 17 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -738,9 +651,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1887.904 units (will add 100 for safety) +Estimated gas: 1010.132 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -751,22 +664,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000684 - Expected counter: 18 - Gas limit: 1988 + Fee to the baker: ꜩ0.000544 + Expected counter: 17 + Gas limit: 1111 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000684 - payload fees(the block proposer) ....... +ꜩ0.000684 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000544 + payload fees(the block proposer) ....... +ꜩ0.000544 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1887.904 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 20 + Consumed gas: 1010.132 + Resulting inbox state: { level = 19 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 171 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 190 message_counter = 18 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -781,9 +691,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1888.500 units (will add 100 for safety) +Estimated gas: 1010.728 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -794,22 +704,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000696 - Expected counter: 19 - Gas limit: 1989 + Fee to the baker: ꜩ0.000556 + Expected counter: 18 + Gas limit: 1111 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000696 - payload fees(the block proposer) ....... +ꜩ0.000696 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000556 + payload fees(the block proposer) ....... +ꜩ0.000556 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1888.500 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 21 + Consumed gas: 1010.728 + Resulting inbox state: { level = 20 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 190 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 210 message_counter = 19 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -824,9 +731,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1889.096 units (will add 100 for safety) +Estimated gas: 1011.324 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -837,22 +744,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000708 - Expected counter: 20 - Gas limit: 1990 + Fee to the baker: ꜩ0.000568 + Expected counter: 19 + Gas limit: 1112 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000708 - payload fees(the block proposer) ....... +ꜩ0.000708 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000568 + payload fees(the block proposer) ....... +ꜩ0.000568 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1889.096 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 22 + Consumed gas: 1011.324 + Resulting inbox state: { level = 21 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 210 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 231 message_counter = 20 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -867,9 +771,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1889.692 units (will add 100 for safety) +Estimated gas: 1011.920 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -880,22 +784,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00072 - Expected counter: 21 - Gas limit: 1990 + Fee to the baker: ꜩ0.00058 + Expected counter: 20 + Gas limit: 1112 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00072 - payload fees(the block proposer) ....... +ꜩ0.00072 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.00058 + payload fees(the block proposer) ....... +ꜩ0.00058 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1889.692 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 23 + Consumed gas: 1011.920 + Resulting inbox state: { level = 22 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 231 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 253 message_counter = 21 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -910,9 +811,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1890.288 units (will add 100 for safety) +Estimated gas: 1012.516 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -923,22 +824,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000733 - Expected counter: 22 - Gas limit: 1991 + Fee to the baker: ꜩ0.000592 + Expected counter: 21 + Gas limit: 1113 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000733 - payload fees(the block proposer) ....... +ꜩ0.000733 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000592 + payload fees(the block proposer) ....... +ꜩ0.000592 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1890.288 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 24 + Consumed gas: 1012.516 + Resulting inbox state: { level = 23 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 253 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 276 message_counter = 22 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -953,9 +851,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1890.884 units (will add 100 for safety) +Estimated gas: 1013.112 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -966,22 +864,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000745 - Expected counter: 23 - Gas limit: 1991 + Fee to the baker: ꜩ0.000604 + Expected counter: 22 + Gas limit: 1114 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000745 - payload fees(the block proposer) ....... +ꜩ0.000745 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000604 + payload fees(the block proposer) ....... +ꜩ0.000604 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1890.884 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 25 + Consumed gas: 1013.112 + Resulting inbox state: { level = 24 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 276 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 300 message_counter = 23 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -996,9 +891,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1891.480 units (will add 100 for safety) +Estimated gas: 1013.708 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1009,22 +904,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000757 - Expected counter: 24 - Gas limit: 1992 + Fee to the baker: ꜩ0.000616 + Expected counter: 23 + Gas limit: 1114 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000757 - payload fees(the block proposer) ....... +ꜩ0.000757 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000616 + payload fees(the block proposer) ....... +ꜩ0.000616 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1891.480 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 26 + Consumed gas: 1013.708 + Resulting inbox state: { level = 25 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 300 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 325 message_counter = 24 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1039,9 +931,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1892.076 units (will add 100 for safety) +Estimated gas: 1014.304 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1052,22 +944,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000769 - Expected counter: 25 - Gas limit: 1993 + Fee to the baker: ꜩ0.000628 + Expected counter: 24 + Gas limit: 1115 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000769 - payload fees(the block proposer) ....... +ꜩ0.000769 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000628 + payload fees(the block proposer) ....... +ꜩ0.000628 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1892.076 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 27 + Consumed gas: 1014.304 + Resulting inbox state: { level = 26 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 325 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 351 message_counter = 25 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1082,9 +971,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1892.672 units (will add 100 for safety) +Estimated gas: 1014.900 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1095,22 +984,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000781 - Expected counter: 26 - Gas limit: 1993 + Fee to the baker: ꜩ0.00064 + Expected counter: 25 + Gas limit: 1115 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000781 - payload fees(the block proposer) ....... +ꜩ0.000781 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.00064 + payload fees(the block proposer) ....... +ꜩ0.00064 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1892.672 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 28 + Consumed gas: 1014.900 + Resulting inbox state: { level = 27 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 351 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 378 message_counter = 26 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1125,9 +1011,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1893.268 units (will add 100 for safety) +Estimated gas: 1015.496 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1138,22 +1024,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000793 - Expected counter: 27 - Gas limit: 1994 + Fee to the baker: ꜩ0.000652 + Expected counter: 26 + Gas limit: 1116 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000793 - payload fees(the block proposer) ....... +ꜩ0.000793 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000652 + payload fees(the block proposer) ....... +ꜩ0.000652 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1893.268 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 29 + Consumed gas: 1015.496 + Resulting inbox state: { level = 28 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 378 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 406 message_counter = 27 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1168,9 +1051,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1893.864 units (will add 100 for safety) +Estimated gas: 1016.092 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1181,22 +1064,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000805 - Expected counter: 28 - Gas limit: 1994 + Fee to the baker: ꜩ0.000664 + Expected counter: 27 + Gas limit: 1117 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000805 - payload fees(the block proposer) ....... +ꜩ0.000805 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000664 + payload fees(the block proposer) ....... +ꜩ0.000664 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1893.864 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 30 + Consumed gas: 1016.092 + Resulting inbox state: { level = 29 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 406 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 435 message_counter = 28 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1211,9 +1091,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1894.460 units (will add 100 for safety) +Estimated gas: 1016.688 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1224,22 +1104,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000817 - Expected counter: 29 - Gas limit: 1995 + Fee to the baker: ꜩ0.000676 + Expected counter: 28 + Gas limit: 1117 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000817 - payload fees(the block proposer) ....... +ꜩ0.000817 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000676 + payload fees(the block proposer) ....... +ꜩ0.000676 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1894.460 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 31 + Consumed gas: 1016.688 + Resulting inbox state: { level = 30 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 435 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 465 message_counter = 29 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1254,9 +1131,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1895.056 units (will add 100 for safety) +Estimated gas: 1017.284 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1267,22 +1144,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000829 - Expected counter: 30 - Gas limit: 1996 + Fee to the baker: ꜩ0.000688 + Expected counter: 29 + Gas limit: 1118 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000829 - payload fees(the block proposer) ....... +ꜩ0.000829 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000688 + payload fees(the block proposer) ....... +ꜩ0.000688 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1895.056 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 32 + Consumed gas: 1017.284 + Resulting inbox state: { level = 31 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 30 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 496 message_counter = 30 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1297,9 +1171,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1877.772 units (will add 100 for safety) +Estimated gas: 1017.880 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1310,23 +1184,20 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000479 - Expected counter: 31 - Gas limit: 1978 + Fee to the baker: ꜩ0.0007 + Expected counter: 30 + Gas limit: 1118 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000479 - payload fees(the block proposer) ....... +ꜩ0.000479 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.0007 + payload fees(the block proposer) ....... +ꜩ0.0007 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1877.772 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 33 + Consumed gas: 1017.880 + Resulting inbox state: { level = 32 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 31 - starting_level_of_current_commitment_period = 32 - message_counter = 1 + nb_messages_in_commitment_period = 528 + message_counter = 31 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] @@ -1340,9 +1211,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1878.368 units (will add 100 for safety) +Estimated gas: 1000.596 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1353,22 +1224,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000491 - Expected counter: 32 - Gas limit: 1979 + Fee to the baker: ꜩ0.000351 + Expected counter: 31 + Gas limit: 1101 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000491 - payload fees(the block proposer) ....... +ꜩ0.000491 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000351 + payload fees(the block proposer) ....... +ꜩ0.000351 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1878.496 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 34 + Consumed gas: 1000.596 + Resulting inbox state: { level = 33 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 33 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 531 message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1384,9 +1252,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1879.171 units (will add 100 for safety) +Estimated gas: 1001.192 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1397,22 +1265,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000503 - Expected counter: 33 - Gas limit: 1980 + Fee to the baker: ꜩ0.000363 + Expected counter: 32 + Gas limit: 1102 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000503 - payload fees(the block proposer) ....... +ꜩ0.000503 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000363 + payload fees(the block proposer) ....... +ꜩ0.000363 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1879.171 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 35 + Consumed gas: 1001.192 + Resulting inbox state: { level = 34 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 36 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 535 message_counter = 3 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1428,9 +1293,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1879.767 units (will add 100 for safety) +Estimated gas: 1001.788 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1441,22 +1306,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000515 - Expected counter: 34 - Gas limit: 1980 + Fee to the baker: ꜩ0.000375 + Expected counter: 33 + Gas limit: 1102 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000515 - payload fees(the block proposer) ....... +ꜩ0.000515 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000375 + payload fees(the block proposer) ....... +ꜩ0.000375 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1879.767 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 36 + Consumed gas: 1001.788 + Resulting inbox state: { level = 35 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 40 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 540 message_counter = 4 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1472,9 +1334,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1880.363 units (will add 100 for safety) +Estimated gas: 1002.384 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1485,22 +1347,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000528 - Expected counter: 35 - Gas limit: 1981 + Fee to the baker: ꜩ0.000387 + Expected counter: 34 + Gas limit: 1103 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000528 - payload fees(the block proposer) ....... +ꜩ0.000528 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000387 + payload fees(the block proposer) ....... +ꜩ0.000387 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1880.363 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 37 + Consumed gas: 1002.384 + Resulting inbox state: { level = 36 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 45 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 546 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1516,9 +1375,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1880.959 units (will add 100 for safety) +Estimated gas: 1002.980 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1529,22 +1388,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00054 - Expected counter: 36 - Gas limit: 1981 + Fee to the baker: ꜩ0.000399 + Expected counter: 35 + Gas limit: 1103 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00054 - payload fees(the block proposer) ....... +ꜩ0.00054 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000399 + payload fees(the block proposer) ....... +ꜩ0.000399 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1880.959 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 38 + Consumed gas: 1002.980 + Resulting inbox state: { level = 37 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 51 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 553 message_counter = 6 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1560,9 +1416,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1881.555 units (will add 100 for safety) +Estimated gas: 1003.576 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1573,22 +1429,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000552 - Expected counter: 37 - Gas limit: 1982 + Fee to the baker: ꜩ0.000411 + Expected counter: 36 + Gas limit: 1104 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000552 - payload fees(the block proposer) ....... +ꜩ0.000552 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000411 + payload fees(the block proposer) ....... +ꜩ0.000411 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1881.555 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 39 + Consumed gas: 1003.576 + Resulting inbox state: { level = 38 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 58 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 561 message_counter = 7 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1604,9 +1457,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1882.151 units (will add 100 for safety) +Estimated gas: 1004.172 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1617,22 +1470,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000564 - Expected counter: 38 - Gas limit: 1983 + Fee to the baker: ꜩ0.000423 + Expected counter: 37 + Gas limit: 1105 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000564 - payload fees(the block proposer) ....... +ꜩ0.000564 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000423 + payload fees(the block proposer) ....... +ꜩ0.000423 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1882.151 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 40 + Consumed gas: 1004.172 + Resulting inbox state: { level = 39 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 66 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 570 message_counter = 8 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1648,9 +1498,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1882.747 units (will add 100 for safety) +Estimated gas: 1004.768 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1661,22 +1511,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000576 - Expected counter: 39 - Gas limit: 1983 + Fee to the baker: ꜩ0.000435 + Expected counter: 38 + Gas limit: 1105 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000576 - payload fees(the block proposer) ....... +ꜩ0.000576 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000435 + payload fees(the block proposer) ....... +ꜩ0.000435 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1882.747 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 41 + Consumed gas: 1004.768 + Resulting inbox state: { level = 40 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 75 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 580 message_counter = 9 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1692,9 +1539,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1883.343 units (will add 100 for safety) +Estimated gas: 1005.364 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1705,22 +1552,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000588 - Expected counter: 40 - Gas limit: 1984 + Fee to the baker: ꜩ0.000447 + Expected counter: 39 + Gas limit: 1106 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000588 - payload fees(the block proposer) ....... +ꜩ0.000588 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000447 + payload fees(the block proposer) ....... +ꜩ0.000447 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1883.343 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 42 + Consumed gas: 1005.364 + Resulting inbox state: { level = 41 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 85 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 591 message_counter = 10 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1736,9 +1580,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1883.939 units (will add 100 for safety) +Estimated gas: 1005.960 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1749,22 +1593,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.0006 - Expected counter: 41 - Gas limit: 1984 + Fee to the baker: ꜩ0.000459 + Expected counter: 40 + Gas limit: 1106 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.0006 - payload fees(the block proposer) ....... +ꜩ0.0006 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000459 + payload fees(the block proposer) ....... +ꜩ0.000459 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1883.939 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 43 + Consumed gas: 1005.960 + Resulting inbox state: { level = 42 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 96 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 603 message_counter = 11 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1780,9 +1621,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1884.535 units (will add 100 for safety) +Estimated gas: 1006.556 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1793,22 +1634,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000612 - Expected counter: 42 - Gas limit: 1985 + Fee to the baker: ꜩ0.000471 + Expected counter: 41 + Gas limit: 1107 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000612 - payload fees(the block proposer) ....... +ꜩ0.000612 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000471 + payload fees(the block proposer) ....... +ꜩ0.000471 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1884.535 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 44 + Consumed gas: 1006.556 + Resulting inbox state: { level = 43 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 108 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 616 message_counter = 12 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1824,9 +1662,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1885.131 units (will add 100 for safety) +Estimated gas: 1007.152 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1837,22 +1675,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000624 - Expected counter: 43 - Gas limit: 1986 + Fee to the baker: ꜩ0.000483 + Expected counter: 42 + Gas limit: 1108 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000624 - payload fees(the block proposer) ....... +ꜩ0.000624 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000483 + payload fees(the block proposer) ....... +ꜩ0.000483 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1885.131 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 45 + Consumed gas: 1007.152 + Resulting inbox state: { level = 44 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 121 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 630 message_counter = 13 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1868,9 +1703,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1885.727 units (will add 100 for safety) +Estimated gas: 1007.748 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1881,22 +1716,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000636 - Expected counter: 44 - Gas limit: 1986 + Fee to the baker: ꜩ0.000495 + Expected counter: 43 + Gas limit: 1108 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000636 - payload fees(the block proposer) ....... +ꜩ0.000636 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000495 + payload fees(the block proposer) ....... +ꜩ0.000495 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1885.727 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 46 + Consumed gas: 1007.748 + Resulting inbox state: { level = 45 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 135 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 645 message_counter = 14 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1912,9 +1744,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1886.323 units (will add 100 for safety) +Estimated gas: 1008.344 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1925,22 +1757,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000648 - Expected counter: 45 - Gas limit: 1987 + Fee to the baker: ꜩ0.000507 + Expected counter: 44 + Gas limit: 1109 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000648 - payload fees(the block proposer) ....... +ꜩ0.000648 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000507 + payload fees(the block proposer) ....... +ꜩ0.000507 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1886.323 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 47 + Consumed gas: 1008.344 + Resulting inbox state: { level = 46 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 150 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 661 message_counter = 15 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1956,9 +1785,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1886.919 units (will add 100 for safety) +Estimated gas: 1008.940 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1969,22 +1798,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00066 - Expected counter: 46 - Gas limit: 1987 + Fee to the baker: ꜩ0.000519 + Expected counter: 45 + Gas limit: 1109 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00066 - payload fees(the block proposer) ....... +ꜩ0.00066 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000519 + payload fees(the block proposer) ....... +ꜩ0.000519 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1886.919 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 48 + Consumed gas: 1008.940 + Resulting inbox state: { level = 47 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 166 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 678 message_counter = 16 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2000,9 +1826,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1887.515 units (will add 100 for safety) +Estimated gas: 1009.536 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2013,22 +1839,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000672 - Expected counter: 47 - Gas limit: 1988 + Fee to the baker: ꜩ0.000531 + Expected counter: 46 + Gas limit: 1110 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000672 - payload fees(the block proposer) ....... +ꜩ0.000672 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000531 + payload fees(the block proposer) ....... +ꜩ0.000531 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1887.515 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 49 + Consumed gas: 1009.536 + Resulting inbox state: { level = 48 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 183 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 696 message_counter = 17 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2044,9 +1867,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1888.111 units (will add 100 for safety) +Estimated gas: 1010.132 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2057,22 +1880,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000684 - Expected counter: 48 - Gas limit: 1989 + Fee to the baker: ꜩ0.000544 + Expected counter: 47 + Gas limit: 1111 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000684 - payload fees(the block proposer) ....... +ꜩ0.000684 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000544 + payload fees(the block proposer) ....... +ꜩ0.000544 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1888.111 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 50 + Consumed gas: 1010.132 + Resulting inbox state: { level = 49 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 201 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 715 message_counter = 18 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2088,9 +1908,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1888.707 units (will add 100 for safety) +Estimated gas: 1010.728 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2101,22 +1921,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000696 - Expected counter: 49 - Gas limit: 1989 + Fee to the baker: ꜩ0.000556 + Expected counter: 48 + Gas limit: 1111 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000696 - payload fees(the block proposer) ....... +ꜩ0.000696 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000556 + payload fees(the block proposer) ....... +ꜩ0.000556 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1888.707 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 51 + Consumed gas: 1010.728 + Resulting inbox state: { level = 50 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 220 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 735 message_counter = 19 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2132,9 +1949,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1889.303 units (will add 100 for safety) +Estimated gas: 1011.324 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2145,22 +1962,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000708 - Expected counter: 50 - Gas limit: 1990 + Fee to the baker: ꜩ0.000568 + Expected counter: 49 + Gas limit: 1112 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000708 - payload fees(the block proposer) ....... +ꜩ0.000708 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000568 + payload fees(the block proposer) ....... +ꜩ0.000568 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1889.303 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 52 + Consumed gas: 1011.324 + Resulting inbox state: { level = 51 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 240 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 756 message_counter = 20 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2176,9 +1990,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1889.899 units (will add 100 for safety) +Estimated gas: 1011.920 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2189,22 +2003,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00072 - Expected counter: 51 - Gas limit: 1990 + Fee to the baker: ꜩ0.00058 + Expected counter: 50 + Gas limit: 1112 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00072 - payload fees(the block proposer) ....... +ꜩ0.00072 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.00058 + payload fees(the block proposer) ....... +ꜩ0.00058 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1889.899 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 53 + Consumed gas: 1011.920 + Resulting inbox state: { level = 52 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 261 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 778 message_counter = 21 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2220,9 +2031,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1890.495 units (will add 100 for safety) +Estimated gas: 1012.516 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2233,22 +2044,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000733 - Expected counter: 52 - Gas limit: 1991 + Fee to the baker: ꜩ0.000592 + Expected counter: 51 + Gas limit: 1113 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000733 - payload fees(the block proposer) ....... +ꜩ0.000733 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000592 + payload fees(the block proposer) ....... +ꜩ0.000592 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1890.495 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 54 + Consumed gas: 1012.516 + Resulting inbox state: { level = 53 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 283 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 801 message_counter = 22 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2264,9 +2072,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1891.091 units (will add 100 for safety) +Estimated gas: 1013.112 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2277,22 +2085,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000745 - Expected counter: 53 - Gas limit: 1992 + Fee to the baker: ꜩ0.000604 + Expected counter: 52 + Gas limit: 1114 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000745 - payload fees(the block proposer) ....... +ꜩ0.000745 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000604 + payload fees(the block proposer) ....... +ꜩ0.000604 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1891.091 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 55 + Consumed gas: 1013.112 + Resulting inbox state: { level = 54 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 306 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 825 message_counter = 23 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2308,9 +2113,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1891.687 units (will add 100 for safety) +Estimated gas: 1013.708 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2321,22 +2126,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000757 - Expected counter: 54 - Gas limit: 1992 + Fee to the baker: ꜩ0.000616 + Expected counter: 53 + Gas limit: 1114 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000757 - payload fees(the block proposer) ....... +ꜩ0.000757 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000616 + payload fees(the block proposer) ....... +ꜩ0.000616 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1891.687 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 56 + Consumed gas: 1013.708 + Resulting inbox state: { level = 55 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 330 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 850 message_counter = 24 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2352,9 +2154,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1892.283 units (will add 100 for safety) +Estimated gas: 1014.304 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2365,22 +2167,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000769 - Expected counter: 55 - Gas limit: 1993 + Fee to the baker: ꜩ0.000628 + Expected counter: 54 + Gas limit: 1115 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000769 - payload fees(the block proposer) ....... +ꜩ0.000769 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000628 + payload fees(the block proposer) ....... +ꜩ0.000628 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1892.283 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 57 + Consumed gas: 1014.304 + Resulting inbox state: { level = 56 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 355 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 876 message_counter = 25 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2396,9 +2195,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1892.879 units (will add 100 for safety) +Estimated gas: 1014.900 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2409,22 +2208,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000781 - Expected counter: 56 - Gas limit: 1993 + Fee to the baker: ꜩ0.00064 + Expected counter: 55 + Gas limit: 1115 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000781 - payload fees(the block proposer) ....... +ꜩ0.000781 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.00064 + payload fees(the block proposer) ....... +ꜩ0.00064 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1892.879 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 58 + Consumed gas: 1014.900 + Resulting inbox state: { level = 57 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 381 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 903 message_counter = 26 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2440,9 +2236,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1893.475 units (will add 100 for safety) +Estimated gas: 1015.496 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2453,22 +2249,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000793 - Expected counter: 57 - Gas limit: 1994 + Fee to the baker: ꜩ0.000652 + Expected counter: 56 + Gas limit: 1116 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000793 - payload fees(the block proposer) ....... +ꜩ0.000793 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000652 + payload fees(the block proposer) ....... +ꜩ0.000652 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1893.475 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 59 + Consumed gas: 1015.496 + Resulting inbox state: { level = 58 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 408 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 931 message_counter = 27 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2484,9 +2277,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1894.071 units (will add 100 for safety) +Estimated gas: 1016.092 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2497,22 +2290,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000805 - Expected counter: 58 - Gas limit: 1995 + Fee to the baker: ꜩ0.000664 + Expected counter: 57 + Gas limit: 1117 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000805 - payload fees(the block proposer) ....... +ꜩ0.000805 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000664 + payload fees(the block proposer) ....... +ꜩ0.000664 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1894.071 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 60 + Consumed gas: 1016.092 + Resulting inbox state: { level = 59 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 436 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 960 message_counter = 28 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2528,9 +2318,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1894.667 units (will add 100 for safety) +Estimated gas: 1016.688 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2541,22 +2331,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000817 - Expected counter: 59 - Gas limit: 1995 + Fee to the baker: ꜩ0.000676 + Expected counter: 58 + Gas limit: 1117 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000817 - payload fees(the block proposer) ....... +ꜩ0.000817 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000676 + payload fees(the block proposer) ....... +ꜩ0.000676 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1894.667 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 61 + Consumed gas: 1016.688 + Resulting inbox state: { level = 60 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 465 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 990 message_counter = 29 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2572,9 +2359,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1895.263 units (will add 100 for safety) +Estimated gas: 1017.284 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2585,22 +2372,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000829 - Expected counter: 60 - Gas limit: 1996 + Fee to the baker: ꜩ0.000688 + Expected counter: 59 + Gas limit: 1118 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000829 - payload fees(the block proposer) ....... +ꜩ0.000829 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000688 + payload fees(the block proposer) ....... +ꜩ0.000688 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1895.263 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 62 + Consumed gas: 1017.284 + Resulting inbox state: { level = 61 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 30 - starting_level_of_current_commitment_period = 62 + nb_messages_in_commitment_period = 1021 message_counter = 30 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2616,13 +2400,54 @@ This sequence of operations was run: } +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 +Node is bootstrapped. +Estimated gas: 1017.880 units (will add 100 for safety) +Estimated storage: no bytes added +Operation successfully injected in the node. +Operation hash is '[OPERATION_HASH]' +NOT waiting for the operation to be included. +Use command + octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] +and/or an external block explorer to make sure that it has been included. +This sequence of operations was run: + Manager signed operations: + From: [PUBLIC_KEY_HASH] + Fee to the baker: ꜩ0.0007 + Expected counter: 60 + Gas limit: 1118 + Storage limit: 0 bytes + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ0.0007 + payload fees(the block proposer) ....... +ꜩ0.0007 + Smart contract rollup messages submission + This smart contract rollup messages submission was successfully applied + Consumed gas: 1017.880 + Resulting inbox state: { level = 62 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 1053 + message_counter = 31 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 61 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + ./octez-sc-rollup-client-alpha rpc get /local/last_published_commitment { "commitment": { "compressed_state": "[SC_ROLLUP_PVM_STATE_HASH]", "inbox_level": 32, "predecessor": "[SC_ROLLUP_COMMITMENT_HASH]", - "number_of_ticks": "5117" }, + "number_of_ticks": "5177" }, "hash": "[SC_ROLLUP_COMMITMENT_HASH]", "published_at_level": 35 } diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (operator_publishes.out b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (operator_publishes.out index 8af1f5029647..596bf1aa12ea 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (operator_publishes.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (operator_publishes.out @@ -1,8 +1,8 @@ ./octez-client --wait none originate sc rollup from bootstrap1 of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.449 units (will add 100 for safety) -Estimated storage: 6655 bytes added (will add 20 for safety) +Estimated gas: 2909.925 units (will add 100 for safety) +Estimated storage: 6524 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,30 +12,30 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00067 + Fee to the baker: ꜩ0.000649 Expected counter: 1 - Gas limit: 3211 - Storage limit: 6675 bytes + Gas limit: 3010 + Storage limit: 6544 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00067 - payload fees(the block proposer) ....... +ꜩ0.00067 + [PUBLIC_KEY_HASH] ... -ꜩ0.000649 + payload fees(the block proposer) ....... +ꜩ0.000649 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector Blake2B hash: '0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8' This smart contract rollup origination was successfully applied - Consumed gas: 3110.449 - Storage size: 6655 bytes + Consumed gas: 2909.925 + Storage size: 6524 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.66375 - storage fees ........................... +ꜩ1.66375 + [PUBLIC_KEY_HASH] ... -ꜩ1.631 + storage fees ........................... +ꜩ1.631 -./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1876.722 units (will add 100 for safety) +Estimated gas: 1000.596 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -46,61 +46,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000479 + Fee to the baker: ꜩ0.000351 Expected counter: 1 - Gas limit: 1977 + Gas limit: 1101 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000479 - payload fees(the block proposer) ....... +ꜩ0.000479 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] - This smart contract rollup messages submission was successfully applied - Consumed gas: 1876.850 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 3 - current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 1 - starting_level_of_current_commitment_period = 2 - message_counter = 1 - old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] - - content = [SC_ROLLUP_INBOX_HASH] - index = 1 - back_pointers = [SC_ROLLUP_INBOX_HASH] - - } - - -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' -Node is bootstrapped. -Estimated gas: 1877.540 units (will add 100 for safety) -Estimated storage: no bytes added -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000491 - Expected counter: 2 - Gas limit: 1978 - Storage limit: 0 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000491 - payload fees(the block proposer) ....... +ꜩ0.000491 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000351 + payload fees(the block proposer) ....... +ꜩ0.000351 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1877.668 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 4 + Consumed gas: 1000.596 + Resulting inbox state: { level = 3 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 3 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 6 message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -112,9 +70,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1878.343 units (will add 100 for safety) +Estimated gas: 1001.192 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -125,22 +83,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000503 - Expected counter: 3 - Gas limit: 1979 + Fee to the baker: ꜩ0.000363 + Expected counter: 2 + Gas limit: 1102 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000503 - payload fees(the block proposer) ....... +ꜩ0.000503 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000363 + payload fees(the block proposer) ....... +ꜩ0.000363 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1878.343 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 5 + Consumed gas: 1001.192 + Resulting inbox state: { level = 4 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 6 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 10 message_counter = 3 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -152,9 +107,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1878.939 units (will add 100 for safety) +Estimated gas: 1001.788 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -165,22 +120,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000515 - Expected counter: 4 - Gas limit: 1979 + Fee to the baker: ꜩ0.000375 + Expected counter: 3 + Gas limit: 1102 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000515 - payload fees(the block proposer) ....... +ꜩ0.000515 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000375 + payload fees(the block proposer) ....... +ꜩ0.000375 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1879.067 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 6 + Consumed gas: 1001.788 + Resulting inbox state: { level = 5 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 10 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 15 message_counter = 4 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -193,9 +145,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1879.742 units (will add 100 for safety) +Estimated gas: 1002.384 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -206,22 +158,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000527 - Expected counter: 5 - Gas limit: 1980 + Fee to the baker: ꜩ0.000387 + Expected counter: 4 + Gas limit: 1103 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000527 - payload fees(the block proposer) ....... +ꜩ0.000527 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000387 + payload fees(the block proposer) ....... +ꜩ0.000387 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1879.742 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 7 + Consumed gas: 1002.384 + Resulting inbox state: { level = 6 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 15 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 21 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -234,9 +183,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1880.338 units (will add 100 for safety) +Estimated gas: 1002.980 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -247,22 +196,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00054 - Expected counter: 6 - Gas limit: 1981 + Fee to the baker: ꜩ0.000399 + Expected counter: 5 + Gas limit: 1103 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00054 - payload fees(the block proposer) ....... +ꜩ0.00054 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000399 + payload fees(the block proposer) ....... +ꜩ0.000399 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1880.338 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 8 + Consumed gas: 1002.980 + Resulting inbox state: { level = 7 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 21 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 28 message_counter = 6 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -275,9 +221,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1880.934 units (will add 100 for safety) +Estimated gas: 1003.576 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -288,22 +234,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000552 - Expected counter: 7 - Gas limit: 1981 + Fee to the baker: ꜩ0.000411 + Expected counter: 6 + Gas limit: 1104 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000552 - payload fees(the block proposer) ....... +ꜩ0.000552 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000411 + payload fees(the block proposer) ....... +ꜩ0.000411 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1880.934 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 9 + Consumed gas: 1003.576 + Resulting inbox state: { level = 8 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 28 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 36 message_counter = 7 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -316,9 +259,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1881.530 units (will add 100 for safety) +Estimated gas: 1004.172 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -329,22 +272,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000564 - Expected counter: 8 - Gas limit: 1982 + Fee to the baker: ꜩ0.000423 + Expected counter: 7 + Gas limit: 1105 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000564 - payload fees(the block proposer) ....... +ꜩ0.000564 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000423 + payload fees(the block proposer) ....... +ꜩ0.000423 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1881.658 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 10 + Consumed gas: 1004.172 + Resulting inbox state: { level = 9 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 36 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 45 message_counter = 8 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -358,9 +298,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1882.333 units (will add 100 for safety) +Estimated gas: 1004.768 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -371,22 +311,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000576 - Expected counter: 9 - Gas limit: 1983 + Fee to the baker: ꜩ0.000435 + Expected counter: 8 + Gas limit: 1105 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000576 - payload fees(the block proposer) ....... +ꜩ0.000576 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000435 + payload fees(the block proposer) ....... +ꜩ0.000435 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1882.333 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 11 + Consumed gas: 1004.768 + Resulting inbox state: { level = 10 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 45 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 55 message_counter = 9 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -400,9 +337,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1882.929 units (will add 100 for safety) +Estimated gas: 1005.364 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -413,22 +350,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000588 - Expected counter: 10 - Gas limit: 1983 + Fee to the baker: ꜩ0.000447 + Expected counter: 9 + Gas limit: 1106 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000588 - payload fees(the block proposer) ....... +ꜩ0.000588 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000447 + payload fees(the block proposer) ....... +ꜩ0.000447 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1882.929 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 12 + Consumed gas: 1005.364 + Resulting inbox state: { level = 11 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 55 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 66 message_counter = 10 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -442,9 +376,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1883.525 units (will add 100 for safety) +Estimated gas: 1005.960 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -455,22 +389,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.0006 - Expected counter: 11 - Gas limit: 1984 + Fee to the baker: ꜩ0.000459 + Expected counter: 10 + Gas limit: 1106 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.0006 - payload fees(the block proposer) ....... +ꜩ0.0006 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000459 + payload fees(the block proposer) ....... +ꜩ0.000459 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1883.525 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 13 + Consumed gas: 1005.960 + Resulting inbox state: { level = 12 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 66 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 78 message_counter = 11 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -484,9 +415,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1884.121 units (will add 100 for safety) +Estimated gas: 1006.556 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -497,22 +428,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000612 - Expected counter: 12 - Gas limit: 1985 + Fee to the baker: ꜩ0.000471 + Expected counter: 11 + Gas limit: 1107 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000612 - payload fees(the block proposer) ....... +ꜩ0.000612 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000471 + payload fees(the block proposer) ....... +ꜩ0.000471 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1884.121 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 14 + Consumed gas: 1006.556 + Resulting inbox state: { level = 13 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 78 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 91 message_counter = 12 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -526,9 +454,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1884.717 units (will add 100 for safety) +Estimated gas: 1007.152 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -539,22 +467,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000624 - Expected counter: 13 - Gas limit: 1985 + Fee to the baker: ꜩ0.000483 + Expected counter: 12 + Gas limit: 1108 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000624 - payload fees(the block proposer) ....... +ꜩ0.000624 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000483 + payload fees(the block proposer) ....... +ꜩ0.000483 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1884.717 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 15 + Consumed gas: 1007.152 + Resulting inbox state: { level = 14 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 91 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 105 message_counter = 13 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -568,9 +493,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1885.313 units (will add 100 for safety) +Estimated gas: 1007.748 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -581,22 +506,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000636 - Expected counter: 14 - Gas limit: 1986 + Fee to the baker: ꜩ0.000495 + Expected counter: 13 + Gas limit: 1108 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000636 - payload fees(the block proposer) ....... +ꜩ0.000636 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000495 + payload fees(the block proposer) ....... +ꜩ0.000495 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1885.313 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 16 + Consumed gas: 1007.748 + Resulting inbox state: { level = 15 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 105 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 120 message_counter = 14 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -610,9 +532,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1885.909 units (will add 100 for safety) +Estimated gas: 1008.344 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -623,22 +545,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000648 - Expected counter: 15 - Gas limit: 1986 + Fee to the baker: ꜩ0.000507 + Expected counter: 14 + Gas limit: 1109 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000648 - payload fees(the block proposer) ....... +ꜩ0.000648 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000507 + payload fees(the block proposer) ....... +ꜩ0.000507 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1885.909 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 17 + Consumed gas: 1008.344 + Resulting inbox state: { level = 16 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 120 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 136 message_counter = 15 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -652,9 +571,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1886.505 units (will add 100 for safety) +Estimated gas: 1008.940 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -665,22 +584,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00066 - Expected counter: 16 - Gas limit: 1987 + Fee to the baker: ꜩ0.000519 + Expected counter: 15 + Gas limit: 1109 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00066 - payload fees(the block proposer) ....... +ꜩ0.00066 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000519 + payload fees(the block proposer) ....... +ꜩ0.000519 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1886.633 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 18 + Consumed gas: 1008.940 + Resulting inbox state: { level = 17 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 136 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 153 message_counter = 16 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -695,9 +611,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1887.308 units (will add 100 for safety) +Estimated gas: 1009.536 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -708,22 +624,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000672 - Expected counter: 17 - Gas limit: 1988 + Fee to the baker: ꜩ0.000531 + Expected counter: 16 + Gas limit: 1110 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000672 - payload fees(the block proposer) ....... +ꜩ0.000672 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000531 + payload fees(the block proposer) ....... +ꜩ0.000531 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1887.308 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 19 + Consumed gas: 1009.536 + Resulting inbox state: { level = 18 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 153 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 171 message_counter = 17 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -738,9 +651,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1887.904 units (will add 100 for safety) +Estimated gas: 1010.132 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -751,22 +664,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000684 - Expected counter: 18 - Gas limit: 1988 + Fee to the baker: ꜩ0.000544 + Expected counter: 17 + Gas limit: 1111 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000684 - payload fees(the block proposer) ....... +ꜩ0.000684 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000544 + payload fees(the block proposer) ....... +ꜩ0.000544 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1887.904 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 20 + Consumed gas: 1010.132 + Resulting inbox state: { level = 19 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 171 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 190 message_counter = 18 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -781,9 +691,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1888.500 units (will add 100 for safety) +Estimated gas: 1010.728 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -794,22 +704,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000696 - Expected counter: 19 - Gas limit: 1989 + Fee to the baker: ꜩ0.000556 + Expected counter: 18 + Gas limit: 1111 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000696 - payload fees(the block proposer) ....... +ꜩ0.000696 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000556 + payload fees(the block proposer) ....... +ꜩ0.000556 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1888.500 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 21 + Consumed gas: 1010.728 + Resulting inbox state: { level = 20 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 190 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 210 message_counter = 19 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -824,9 +731,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1889.096 units (will add 100 for safety) +Estimated gas: 1011.324 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -837,22 +744,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000708 - Expected counter: 20 - Gas limit: 1990 + Fee to the baker: ꜩ0.000568 + Expected counter: 19 + Gas limit: 1112 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000708 - payload fees(the block proposer) ....... +ꜩ0.000708 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000568 + payload fees(the block proposer) ....... +ꜩ0.000568 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1889.096 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 22 + Consumed gas: 1011.324 + Resulting inbox state: { level = 21 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 210 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 231 message_counter = 20 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -867,9 +771,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1889.692 units (will add 100 for safety) +Estimated gas: 1011.920 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -880,22 +784,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00072 - Expected counter: 21 - Gas limit: 1990 + Fee to the baker: ꜩ0.00058 + Expected counter: 20 + Gas limit: 1112 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00072 - payload fees(the block proposer) ....... +ꜩ0.00072 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.00058 + payload fees(the block proposer) ....... +ꜩ0.00058 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1889.692 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 23 + Consumed gas: 1011.920 + Resulting inbox state: { level = 22 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 231 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 253 message_counter = 21 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -910,9 +811,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1890.288 units (will add 100 for safety) +Estimated gas: 1012.516 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -923,22 +824,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000733 - Expected counter: 22 - Gas limit: 1991 + Fee to the baker: ꜩ0.000592 + Expected counter: 21 + Gas limit: 1113 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000733 - payload fees(the block proposer) ....... +ꜩ0.000733 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000592 + payload fees(the block proposer) ....... +ꜩ0.000592 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1890.288 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 24 + Consumed gas: 1012.516 + Resulting inbox state: { level = 23 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 253 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 276 message_counter = 22 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -953,9 +851,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1890.884 units (will add 100 for safety) +Estimated gas: 1013.112 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -966,22 +864,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000745 - Expected counter: 23 - Gas limit: 1991 + Fee to the baker: ꜩ0.000604 + Expected counter: 22 + Gas limit: 1114 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000745 - payload fees(the block proposer) ....... +ꜩ0.000745 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000604 + payload fees(the block proposer) ....... +ꜩ0.000604 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1890.884 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 25 + Consumed gas: 1013.112 + Resulting inbox state: { level = 24 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 276 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 300 message_counter = 23 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -996,9 +891,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1891.480 units (will add 100 for safety) +Estimated gas: 1013.708 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1009,22 +904,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000757 - Expected counter: 24 - Gas limit: 1992 + Fee to the baker: ꜩ0.000616 + Expected counter: 23 + Gas limit: 1114 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000757 - payload fees(the block proposer) ....... +ꜩ0.000757 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000616 + payload fees(the block proposer) ....... +ꜩ0.000616 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1891.480 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 26 + Consumed gas: 1013.708 + Resulting inbox state: { level = 25 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 300 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 325 message_counter = 24 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1039,9 +931,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1892.076 units (will add 100 for safety) +Estimated gas: 1014.304 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1052,22 +944,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000769 - Expected counter: 25 - Gas limit: 1993 + Fee to the baker: ꜩ0.000628 + Expected counter: 24 + Gas limit: 1115 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000769 - payload fees(the block proposer) ....... +ꜩ0.000769 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000628 + payload fees(the block proposer) ....... +ꜩ0.000628 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1892.076 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 27 + Consumed gas: 1014.304 + Resulting inbox state: { level = 26 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 325 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 351 message_counter = 25 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1082,9 +971,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1892.672 units (will add 100 for safety) +Estimated gas: 1014.900 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1095,22 +984,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000781 - Expected counter: 26 - Gas limit: 1993 + Fee to the baker: ꜩ0.00064 + Expected counter: 25 + Gas limit: 1115 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000781 - payload fees(the block proposer) ....... +ꜩ0.000781 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.00064 + payload fees(the block proposer) ....... +ꜩ0.00064 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1892.672 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 28 + Consumed gas: 1014.900 + Resulting inbox state: { level = 27 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 351 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 378 message_counter = 26 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1125,9 +1011,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1893.268 units (will add 100 for safety) +Estimated gas: 1015.496 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1138,22 +1024,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000793 - Expected counter: 27 - Gas limit: 1994 + Fee to the baker: ꜩ0.000652 + Expected counter: 26 + Gas limit: 1116 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000793 - payload fees(the block proposer) ....... +ꜩ0.000793 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000652 + payload fees(the block proposer) ....... +ꜩ0.000652 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1893.268 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 29 + Consumed gas: 1015.496 + Resulting inbox state: { level = 28 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 378 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 406 message_counter = 27 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1168,9 +1051,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1893.864 units (will add 100 for safety) +Estimated gas: 1016.092 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1181,22 +1064,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000805 - Expected counter: 28 - Gas limit: 1994 + Fee to the baker: ꜩ0.000664 + Expected counter: 27 + Gas limit: 1117 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000805 - payload fees(the block proposer) ....... +ꜩ0.000805 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000664 + payload fees(the block proposer) ....... +ꜩ0.000664 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1893.864 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 30 + Consumed gas: 1016.092 + Resulting inbox state: { level = 29 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 406 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 435 message_counter = 28 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1211,9 +1091,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1894.460 units (will add 100 for safety) +Estimated gas: 1016.688 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1224,22 +1104,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000817 - Expected counter: 29 - Gas limit: 1995 + Fee to the baker: ꜩ0.000676 + Expected counter: 28 + Gas limit: 1117 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000817 - payload fees(the block proposer) ....... +ꜩ0.000817 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000676 + payload fees(the block proposer) ....... +ꜩ0.000676 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1894.460 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 31 + Consumed gas: 1016.688 + Resulting inbox state: { level = 30 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 435 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 465 message_counter = 29 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1254,9 +1131,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1895.056 units (will add 100 for safety) +Estimated gas: 1017.284 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1267,22 +1144,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000829 - Expected counter: 30 - Gas limit: 1996 + Fee to the baker: ꜩ0.000688 + Expected counter: 29 + Gas limit: 1118 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000829 - payload fees(the block proposer) ....... +ꜩ0.000829 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000688 + payload fees(the block proposer) ....... +ꜩ0.000688 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1895.056 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 32 + Consumed gas: 1017.284 + Resulting inbox state: { level = 31 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 30 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 496 message_counter = 30 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1297,9 +1171,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1877.772 units (will add 100 for safety) +Estimated gas: 1017.880 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1310,23 +1184,20 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000479 - Expected counter: 31 - Gas limit: 1978 + Fee to the baker: ꜩ0.0007 + Expected counter: 30 + Gas limit: 1118 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000479 - payload fees(the block proposer) ....... +ꜩ0.000479 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.0007 + payload fees(the block proposer) ....... +ꜩ0.0007 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1877.772 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 33 + Consumed gas: 1017.880 + Resulting inbox state: { level = 32 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 31 - starting_level_of_current_commitment_period = 32 - message_counter = 1 + nb_messages_in_commitment_period = 528 + message_counter = 31 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] @@ -1340,9 +1211,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1878.368 units (will add 100 for safety) +Estimated gas: 1000.596 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1353,22 +1224,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000491 - Expected counter: 32 - Gas limit: 1979 + Fee to the baker: ꜩ0.000351 + Expected counter: 31 + Gas limit: 1101 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000491 - payload fees(the block proposer) ....... +ꜩ0.000491 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000351 + payload fees(the block proposer) ....... +ꜩ0.000351 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1878.496 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 34 + Consumed gas: 1000.596 + Resulting inbox state: { level = 33 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 33 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 531 message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1384,9 +1252,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1879.171 units (will add 100 for safety) +Estimated gas: 1001.192 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1397,22 +1265,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000503 - Expected counter: 33 - Gas limit: 1980 + Fee to the baker: ꜩ0.000363 + Expected counter: 32 + Gas limit: 1102 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000503 - payload fees(the block proposer) ....... +ꜩ0.000503 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000363 + payload fees(the block proposer) ....... +ꜩ0.000363 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1879.171 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 35 + Consumed gas: 1001.192 + Resulting inbox state: { level = 34 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 36 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 535 message_counter = 3 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1428,9 +1293,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1879.767 units (will add 100 for safety) +Estimated gas: 1001.788 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1441,22 +1306,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000515 - Expected counter: 34 - Gas limit: 1980 + Fee to the baker: ꜩ0.000375 + Expected counter: 33 + Gas limit: 1102 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000515 - payload fees(the block proposer) ....... +ꜩ0.000515 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000375 + payload fees(the block proposer) ....... +ꜩ0.000375 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1879.767 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 36 + Consumed gas: 1001.788 + Resulting inbox state: { level = 35 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 40 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 540 message_counter = 4 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1472,9 +1334,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1880.363 units (will add 100 for safety) +Estimated gas: 1002.384 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1485,22 +1347,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000528 - Expected counter: 35 - Gas limit: 1981 + Fee to the baker: ꜩ0.000387 + Expected counter: 34 + Gas limit: 1103 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000528 - payload fees(the block proposer) ....... +ꜩ0.000528 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000387 + payload fees(the block proposer) ....... +ꜩ0.000387 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1880.363 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 37 + Consumed gas: 1002.384 + Resulting inbox state: { level = 36 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 45 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 546 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1516,9 +1375,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1880.959 units (will add 100 for safety) +Estimated gas: 1002.980 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1529,22 +1388,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00054 - Expected counter: 36 - Gas limit: 1981 + Fee to the baker: ꜩ0.000399 + Expected counter: 35 + Gas limit: 1103 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00054 - payload fees(the block proposer) ....... +ꜩ0.00054 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000399 + payload fees(the block proposer) ....... +ꜩ0.000399 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1880.959 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 38 + Consumed gas: 1002.980 + Resulting inbox state: { level = 37 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 51 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 553 message_counter = 6 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1560,9 +1416,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1881.555 units (will add 100 for safety) +Estimated gas: 1003.576 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1573,22 +1429,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000552 - Expected counter: 37 - Gas limit: 1982 + Fee to the baker: ꜩ0.000411 + Expected counter: 36 + Gas limit: 1104 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000552 - payload fees(the block proposer) ....... +ꜩ0.000552 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000411 + payload fees(the block proposer) ....... +ꜩ0.000411 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1881.555 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 39 + Consumed gas: 1003.576 + Resulting inbox state: { level = 38 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 58 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 561 message_counter = 7 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1604,9 +1457,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1882.151 units (will add 100 for safety) +Estimated gas: 1004.172 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1617,22 +1470,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000564 - Expected counter: 38 - Gas limit: 1983 + Fee to the baker: ꜩ0.000423 + Expected counter: 37 + Gas limit: 1105 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000564 - payload fees(the block proposer) ....... +ꜩ0.000564 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000423 + payload fees(the block proposer) ....... +ꜩ0.000423 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1882.151 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 40 + Consumed gas: 1004.172 + Resulting inbox state: { level = 39 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 66 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 570 message_counter = 8 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1648,9 +1498,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1882.747 units (will add 100 for safety) +Estimated gas: 1004.768 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1661,22 +1511,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000576 - Expected counter: 39 - Gas limit: 1983 + Fee to the baker: ꜩ0.000435 + Expected counter: 38 + Gas limit: 1105 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000576 - payload fees(the block proposer) ....... +ꜩ0.000576 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000435 + payload fees(the block proposer) ....... +ꜩ0.000435 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1882.747 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 41 + Consumed gas: 1004.768 + Resulting inbox state: { level = 40 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 75 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 580 message_counter = 9 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1692,9 +1539,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1883.343 units (will add 100 for safety) +Estimated gas: 1005.364 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1705,22 +1552,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000588 - Expected counter: 40 - Gas limit: 1984 + Fee to the baker: ꜩ0.000447 + Expected counter: 39 + Gas limit: 1106 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000588 - payload fees(the block proposer) ....... +ꜩ0.000588 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000447 + payload fees(the block proposer) ....... +ꜩ0.000447 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1883.343 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 42 + Consumed gas: 1005.364 + Resulting inbox state: { level = 41 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 85 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 591 message_counter = 10 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1736,9 +1580,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1883.939 units (will add 100 for safety) +Estimated gas: 1005.960 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1749,22 +1593,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.0006 - Expected counter: 41 - Gas limit: 1984 + Fee to the baker: ꜩ0.000459 + Expected counter: 40 + Gas limit: 1106 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.0006 - payload fees(the block proposer) ....... +ꜩ0.0006 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000459 + payload fees(the block proposer) ....... +ꜩ0.000459 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1883.939 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 43 + Consumed gas: 1005.960 + Resulting inbox state: { level = 42 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 96 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 603 message_counter = 11 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1780,9 +1621,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1884.535 units (will add 100 for safety) +Estimated gas: 1006.556 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1793,22 +1634,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000612 - Expected counter: 42 - Gas limit: 1985 + Fee to the baker: ꜩ0.000471 + Expected counter: 41 + Gas limit: 1107 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000612 - payload fees(the block proposer) ....... +ꜩ0.000612 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000471 + payload fees(the block proposer) ....... +ꜩ0.000471 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1884.535 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 44 + Consumed gas: 1006.556 + Resulting inbox state: { level = 43 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 108 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 616 message_counter = 12 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1824,9 +1662,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1885.131 units (will add 100 for safety) +Estimated gas: 1007.152 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1837,22 +1675,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000624 - Expected counter: 43 - Gas limit: 1986 + Fee to the baker: ꜩ0.000483 + Expected counter: 42 + Gas limit: 1108 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000624 - payload fees(the block proposer) ....... +ꜩ0.000624 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000483 + payload fees(the block proposer) ....... +ꜩ0.000483 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1885.131 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 45 + Consumed gas: 1007.152 + Resulting inbox state: { level = 44 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 121 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 630 message_counter = 13 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1868,9 +1703,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1885.727 units (will add 100 for safety) +Estimated gas: 1007.748 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1881,22 +1716,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000636 - Expected counter: 44 - Gas limit: 1986 + Fee to the baker: ꜩ0.000495 + Expected counter: 43 + Gas limit: 1108 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000636 - payload fees(the block proposer) ....... +ꜩ0.000636 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000495 + payload fees(the block proposer) ....... +ꜩ0.000495 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1885.727 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 46 + Consumed gas: 1007.748 + Resulting inbox state: { level = 45 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 135 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 645 message_counter = 14 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1912,9 +1744,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1886.323 units (will add 100 for safety) +Estimated gas: 1008.344 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1925,22 +1757,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000648 - Expected counter: 45 - Gas limit: 1987 + Fee to the baker: ꜩ0.000507 + Expected counter: 44 + Gas limit: 1109 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000648 - payload fees(the block proposer) ....... +ꜩ0.000648 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000507 + payload fees(the block proposer) ....... +ꜩ0.000507 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1886.323 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 47 + Consumed gas: 1008.344 + Resulting inbox state: { level = 46 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 150 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 661 message_counter = 15 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1956,9 +1785,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1886.919 units (will add 100 for safety) +Estimated gas: 1008.940 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1969,22 +1798,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00066 - Expected counter: 46 - Gas limit: 1987 + Fee to the baker: ꜩ0.000519 + Expected counter: 45 + Gas limit: 1109 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00066 - payload fees(the block proposer) ....... +ꜩ0.00066 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000519 + payload fees(the block proposer) ....... +ꜩ0.000519 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1886.919 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 48 + Consumed gas: 1008.940 + Resulting inbox state: { level = 47 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 166 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 678 message_counter = 16 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2000,9 +1826,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1887.515 units (will add 100 for safety) +Estimated gas: 1009.536 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2013,22 +1839,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000672 - Expected counter: 47 - Gas limit: 1988 + Fee to the baker: ꜩ0.000531 + Expected counter: 46 + Gas limit: 1110 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000672 - payload fees(the block proposer) ....... +ꜩ0.000672 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000531 + payload fees(the block proposer) ....... +ꜩ0.000531 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1887.515 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 49 + Consumed gas: 1009.536 + Resulting inbox state: { level = 48 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 183 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 696 message_counter = 17 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2044,9 +1867,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1888.111 units (will add 100 for safety) +Estimated gas: 1010.132 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2057,22 +1880,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000684 - Expected counter: 48 - Gas limit: 1989 + Fee to the baker: ꜩ0.000544 + Expected counter: 47 + Gas limit: 1111 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000684 - payload fees(the block proposer) ....... +ꜩ0.000684 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000544 + payload fees(the block proposer) ....... +ꜩ0.000544 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1888.111 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 50 + Consumed gas: 1010.132 + Resulting inbox state: { level = 49 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 201 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 715 message_counter = 18 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2088,9 +1908,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1888.707 units (will add 100 for safety) +Estimated gas: 1010.728 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2101,22 +1921,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000696 - Expected counter: 49 - Gas limit: 1989 + Fee to the baker: ꜩ0.000556 + Expected counter: 48 + Gas limit: 1111 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000696 - payload fees(the block proposer) ....... +ꜩ0.000696 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000556 + payload fees(the block proposer) ....... +ꜩ0.000556 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1888.707 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 51 + Consumed gas: 1010.728 + Resulting inbox state: { level = 50 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 220 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 735 message_counter = 19 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2132,9 +1949,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1889.303 units (will add 100 for safety) +Estimated gas: 1011.324 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2145,22 +1962,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000708 - Expected counter: 50 - Gas limit: 1990 + Fee to the baker: ꜩ0.000568 + Expected counter: 49 + Gas limit: 1112 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000708 - payload fees(the block proposer) ....... +ꜩ0.000708 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000568 + payload fees(the block proposer) ....... +ꜩ0.000568 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1889.303 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 52 + Consumed gas: 1011.324 + Resulting inbox state: { level = 51 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 240 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 756 message_counter = 20 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2176,9 +1990,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1889.899 units (will add 100 for safety) +Estimated gas: 1011.920 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2189,22 +2003,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00072 - Expected counter: 51 - Gas limit: 1990 + Fee to the baker: ꜩ0.00058 + Expected counter: 50 + Gas limit: 1112 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00072 - payload fees(the block proposer) ....... +ꜩ0.00072 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.00058 + payload fees(the block proposer) ....... +ꜩ0.00058 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1889.899 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 53 + Consumed gas: 1011.920 + Resulting inbox state: { level = 52 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 261 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 778 message_counter = 21 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2220,9 +2031,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1890.495 units (will add 100 for safety) +Estimated gas: 1012.516 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2233,22 +2044,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000733 - Expected counter: 52 - Gas limit: 1991 + Fee to the baker: ꜩ0.000592 + Expected counter: 51 + Gas limit: 1113 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000733 - payload fees(the block proposer) ....... +ꜩ0.000733 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000592 + payload fees(the block proposer) ....... +ꜩ0.000592 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1890.495 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 54 + Consumed gas: 1012.516 + Resulting inbox state: { level = 53 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 283 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 801 message_counter = 22 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2264,9 +2072,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1891.091 units (will add 100 for safety) +Estimated gas: 1013.112 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2277,22 +2085,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000745 - Expected counter: 53 - Gas limit: 1992 + Fee to the baker: ꜩ0.000604 + Expected counter: 52 + Gas limit: 1114 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000745 - payload fees(the block proposer) ....... +ꜩ0.000745 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000604 + payload fees(the block proposer) ....... +ꜩ0.000604 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1891.091 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 55 + Consumed gas: 1013.112 + Resulting inbox state: { level = 54 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 306 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 825 message_counter = 23 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2308,9 +2113,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1891.687 units (will add 100 for safety) +Estimated gas: 1013.708 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2321,22 +2126,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000757 - Expected counter: 54 - Gas limit: 1992 + Fee to the baker: ꜩ0.000616 + Expected counter: 53 + Gas limit: 1114 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000757 - payload fees(the block proposer) ....... +ꜩ0.000757 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000616 + payload fees(the block proposer) ....... +ꜩ0.000616 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1891.687 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 56 + Consumed gas: 1013.708 + Resulting inbox state: { level = 55 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 330 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 850 message_counter = 24 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2352,9 +2154,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1892.283 units (will add 100 for safety) +Estimated gas: 1014.304 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2365,22 +2167,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000769 - Expected counter: 55 - Gas limit: 1993 + Fee to the baker: ꜩ0.000628 + Expected counter: 54 + Gas limit: 1115 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000769 - payload fees(the block proposer) ....... +ꜩ0.000769 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000628 + payload fees(the block proposer) ....... +ꜩ0.000628 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1892.283 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 57 + Consumed gas: 1014.304 + Resulting inbox state: { level = 56 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 355 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 876 message_counter = 25 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2396,9 +2195,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1892.879 units (will add 100 for safety) +Estimated gas: 1014.900 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2409,22 +2208,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000781 - Expected counter: 56 - Gas limit: 1993 + Fee to the baker: ꜩ0.00064 + Expected counter: 55 + Gas limit: 1115 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000781 - payload fees(the block proposer) ....... +ꜩ0.000781 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.00064 + payload fees(the block proposer) ....... +ꜩ0.00064 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1892.879 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 58 + Consumed gas: 1014.900 + Resulting inbox state: { level = 57 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 381 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 903 message_counter = 26 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2440,9 +2236,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1893.475 units (will add 100 for safety) +Estimated gas: 1015.496 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2453,22 +2249,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000793 - Expected counter: 57 - Gas limit: 1994 + Fee to the baker: ꜩ0.000652 + Expected counter: 56 + Gas limit: 1116 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000793 - payload fees(the block proposer) ....... +ꜩ0.000793 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000652 + payload fees(the block proposer) ....... +ꜩ0.000652 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1893.475 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 59 + Consumed gas: 1015.496 + Resulting inbox state: { level = 58 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 408 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 931 message_counter = 27 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2484,9 +2277,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1894.071 units (will add 100 for safety) +Estimated gas: 1016.092 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2497,22 +2290,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000805 - Expected counter: 58 - Gas limit: 1995 + Fee to the baker: ꜩ0.000664 + Expected counter: 57 + Gas limit: 1117 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000805 - payload fees(the block proposer) ....... +ꜩ0.000805 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000664 + payload fees(the block proposer) ....... +ꜩ0.000664 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1894.071 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 60 + Consumed gas: 1016.092 + Resulting inbox state: { level = 59 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 436 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 960 message_counter = 28 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2528,9 +2318,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1894.667 units (will add 100 for safety) +Estimated gas: 1016.688 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2541,22 +2331,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000817 - Expected counter: 59 - Gas limit: 1995 + Fee to the baker: ꜩ0.000676 + Expected counter: 58 + Gas limit: 1117 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000817 - payload fees(the block proposer) ....... +ꜩ0.000817 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000676 + payload fees(the block proposer) ....... +ꜩ0.000676 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1894.667 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 61 + Consumed gas: 1016.688 + Resulting inbox state: { level = 60 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 465 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 990 message_counter = 29 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2572,9 +2359,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1895.263 units (will add 100 for safety) +Estimated gas: 1017.284 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2585,22 +2372,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000829 - Expected counter: 60 - Gas limit: 1996 + Fee to the baker: ꜩ0.000688 + Expected counter: 59 + Gas limit: 1118 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000829 - payload fees(the block proposer) ....... +ꜩ0.000829 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000688 + payload fees(the block proposer) ....... +ꜩ0.000688 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1895.263 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 62 + Consumed gas: 1017.284 + Resulting inbox state: { level = 61 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 30 - starting_level_of_current_commitment_period = 62 + nb_messages_in_commitment_period = 1021 message_counter = 30 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2616,13 +2400,54 @@ This sequence of operations was run: } +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 +Node is bootstrapped. +Estimated gas: 1017.880 units (will add 100 for safety) +Estimated storage: no bytes added +Operation successfully injected in the node. +Operation hash is '[OPERATION_HASH]' +NOT waiting for the operation to be included. +Use command + octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] +and/or an external block explorer to make sure that it has been included. +This sequence of operations was run: + Manager signed operations: + From: [PUBLIC_KEY_HASH] + Fee to the baker: ꜩ0.0007 + Expected counter: 60 + Gas limit: 1118 + Storage limit: 0 bytes + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ0.0007 + payload fees(the block proposer) ....... +ꜩ0.0007 + Smart contract rollup messages submission + This smart contract rollup messages submission was successfully applied + Consumed gas: 1017.880 + Resulting inbox state: { level = 62 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 1053 + message_counter = 31 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 61 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + ./octez-sc-rollup-client-alpha rpc get /local/last_published_commitment { "commitment": { "compressed_state": "[SC_ROLLUP_PVM_STATE_HASH]", "inbox_level": 32, "predecessor": "[SC_ROLLUP_COMMITMENT_HASH]", - "number_of_ticks": "5117" }, + "number_of_ticks": "5177" }, "hash": "[SC_ROLLUP_COMMITMENT_HASH]", "published_at_level": 35 } @@ -2632,6 +2457,6 @@ This sequence of operations was run: "[SC_ROLLUP_PVM_STATE_HASH]", "inbox_level": 32, "predecessor": "[SC_ROLLUP_COMMITMENT_HASH]", - "number_of_ticks": "5117" }, + "number_of_ticks": "5177" }, "hash": "[SC_ROLLUP_COMMITMENT_HASH]", "published_at_level": 35 } diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (robust_to_failures.out b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (robust_to_failures.out index b72f0e067e9d..d5b20fee3dff 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (robust_to_failures.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (robust_to_failures.out @@ -1,8 +1,8 @@ ./octez-client --wait none originate sc rollup from bootstrap1 of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.449 units (will add 100 for safety) -Estimated storage: 6655 bytes added (will add 20 for safety) +Estimated gas: 2909.925 units (will add 100 for safety) +Estimated storage: 6524 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,34 +12,34 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00067 + Fee to the baker: ꜩ0.000649 Expected counter: 1 - Gas limit: 3211 - Storage limit: 6675 bytes + Gas limit: 3010 + Storage limit: 6544 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00067 - payload fees(the block proposer) ....... +ꜩ0.00067 + [PUBLIC_KEY_HASH] ... -ꜩ0.000649 + payload fees(the block proposer) ....... +ꜩ0.000649 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector Blake2B hash: '0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8' This smart contract rollup origination was successfully applied - Consumed gas: 3110.449 - Storage size: 6655 bytes + Consumed gas: 2909.925 + Storage size: 6524 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.66375 - storage fees ........................... +ꜩ1.66375 + [PUBLIC_KEY_HASH] ... -ꜩ1.631 + storage fees ........................... +ꜩ1.631 ./octez-client rpc get '/chains/main/blocks/head/context/sc_rollup/[SC_ROLLUP_HASH]/genesis_info' { "level": 2, "commitment_hash": "[SC_ROLLUP_COMMITMENT_HASH]" } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1876.722 units (will add 100 for safety) +Estimated gas: 1000.596 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -50,61 +50,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000479 + Fee to the baker: ꜩ0.000351 Expected counter: 1 - Gas limit: 1977 + Gas limit: 1101 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000479 - payload fees(the block proposer) ....... +ꜩ0.000479 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] - This smart contract rollup messages submission was successfully applied - Consumed gas: 1876.850 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 3 - current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 1 - starting_level_of_current_commitment_period = 2 - message_counter = 1 - old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] - - content = [SC_ROLLUP_INBOX_HASH] - index = 1 - back_pointers = [SC_ROLLUP_INBOX_HASH] - - } - - -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' -Node is bootstrapped. -Estimated gas: 1877.540 units (will add 100 for safety) -Estimated storage: no bytes added -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000491 - Expected counter: 2 - Gas limit: 1978 - Storage limit: 0 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000491 - payload fees(the block proposer) ....... +ꜩ0.000491 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000351 + payload fees(the block proposer) ....... +ꜩ0.000351 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1877.668 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 4 + Consumed gas: 1000.596 + Resulting inbox state: { level = 3 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 3 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 6 message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -116,9 +74,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1878.343 units (will add 100 for safety) +Estimated gas: 1001.192 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -129,22 +87,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000503 - Expected counter: 3 - Gas limit: 1979 + Fee to the baker: ꜩ0.000363 + Expected counter: 2 + Gas limit: 1102 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000503 - payload fees(the block proposer) ....... +ꜩ0.000503 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000363 + payload fees(the block proposer) ....... +ꜩ0.000363 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1878.343 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 5 + Consumed gas: 1001.192 + Resulting inbox state: { level = 4 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 6 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 10 message_counter = 3 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -156,9 +111,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1878.939 units (will add 100 for safety) +Estimated gas: 1001.788 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -169,22 +124,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000515 - Expected counter: 4 - Gas limit: 1979 + Fee to the baker: ꜩ0.000375 + Expected counter: 3 + Gas limit: 1102 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000515 - payload fees(the block proposer) ....... +ꜩ0.000515 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000375 + payload fees(the block proposer) ....... +ꜩ0.000375 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1879.067 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 6 + Consumed gas: 1001.788 + Resulting inbox state: { level = 5 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 10 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 15 message_counter = 4 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -197,9 +149,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1879.742 units (will add 100 for safety) +Estimated gas: 1002.384 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -210,22 +162,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000527 - Expected counter: 5 - Gas limit: 1980 + Fee to the baker: ꜩ0.000387 + Expected counter: 4 + Gas limit: 1103 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000527 - payload fees(the block proposer) ....... +ꜩ0.000527 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000387 + payload fees(the block proposer) ....... +ꜩ0.000387 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1879.742 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 7 + Consumed gas: 1002.384 + Resulting inbox state: { level = 6 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 15 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 21 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -238,9 +187,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1880.338 units (will add 100 for safety) +Estimated gas: 1002.980 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -251,22 +200,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00054 - Expected counter: 6 - Gas limit: 1981 + Fee to the baker: ꜩ0.000399 + Expected counter: 5 + Gas limit: 1103 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00054 - payload fees(the block proposer) ....... +ꜩ0.00054 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000399 + payload fees(the block proposer) ....... +ꜩ0.000399 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1880.338 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 8 + Consumed gas: 1002.980 + Resulting inbox state: { level = 7 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 21 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 28 message_counter = 6 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -279,9 +225,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1880.934 units (will add 100 for safety) +Estimated gas: 1003.576 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -292,22 +238,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000552 - Expected counter: 7 - Gas limit: 1981 + Fee to the baker: ꜩ0.000411 + Expected counter: 6 + Gas limit: 1104 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000552 - payload fees(the block proposer) ....... +ꜩ0.000552 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000411 + payload fees(the block proposer) ....... +ꜩ0.000411 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1880.934 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 9 + Consumed gas: 1003.576 + Resulting inbox state: { level = 8 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 28 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 36 message_counter = 7 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -320,9 +263,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1881.530 units (will add 100 for safety) +Estimated gas: 1004.172 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -333,22 +276,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000564 - Expected counter: 8 - Gas limit: 1982 + Fee to the baker: ꜩ0.000423 + Expected counter: 7 + Gas limit: 1105 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000564 - payload fees(the block proposer) ....... +ꜩ0.000564 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000423 + payload fees(the block proposer) ....... +ꜩ0.000423 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1881.658 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 10 + Consumed gas: 1004.172 + Resulting inbox state: { level = 9 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 36 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 45 message_counter = 8 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -362,9 +302,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1882.333 units (will add 100 for safety) +Estimated gas: 1004.768 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -375,22 +315,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000576 - Expected counter: 9 - Gas limit: 1983 + Fee to the baker: ꜩ0.000435 + Expected counter: 8 + Gas limit: 1105 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000576 - payload fees(the block proposer) ....... +ꜩ0.000576 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000435 + payload fees(the block proposer) ....... +ꜩ0.000435 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1882.333 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 11 + Consumed gas: 1004.768 + Resulting inbox state: { level = 10 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 45 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 55 message_counter = 9 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -404,9 +341,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1882.929 units (will add 100 for safety) +Estimated gas: 1005.364 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -417,22 +354,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000588 - Expected counter: 10 - Gas limit: 1983 + Fee to the baker: ꜩ0.000447 + Expected counter: 9 + Gas limit: 1106 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000588 - payload fees(the block proposer) ....... +ꜩ0.000588 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000447 + payload fees(the block proposer) ....... +ꜩ0.000447 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1882.929 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 12 + Consumed gas: 1005.364 + Resulting inbox state: { level = 11 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 55 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 66 message_counter = 10 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -446,9 +380,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1883.525 units (will add 100 for safety) +Estimated gas: 1005.960 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -459,22 +393,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.0006 - Expected counter: 11 - Gas limit: 1984 + Fee to the baker: ꜩ0.000459 + Expected counter: 10 + Gas limit: 1106 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.0006 - payload fees(the block proposer) ....... +ꜩ0.0006 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000459 + payload fees(the block proposer) ....... +ꜩ0.000459 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1883.525 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 13 + Consumed gas: 1005.960 + Resulting inbox state: { level = 12 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 66 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 78 message_counter = 11 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -488,9 +419,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1884.121 units (will add 100 for safety) +Estimated gas: 1006.556 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -501,22 +432,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000612 - Expected counter: 12 - Gas limit: 1985 + Fee to the baker: ꜩ0.000471 + Expected counter: 11 + Gas limit: 1107 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000612 - payload fees(the block proposer) ....... +ꜩ0.000612 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000471 + payload fees(the block proposer) ....... +ꜩ0.000471 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1884.121 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 14 + Consumed gas: 1006.556 + Resulting inbox state: { level = 13 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 78 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 91 message_counter = 12 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -530,9 +458,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1884.717 units (will add 100 for safety) +Estimated gas: 1007.152 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -543,22 +471,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000624 - Expected counter: 13 - Gas limit: 1985 + Fee to the baker: ꜩ0.000483 + Expected counter: 12 + Gas limit: 1108 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000624 - payload fees(the block proposer) ....... +ꜩ0.000624 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000483 + payload fees(the block proposer) ....... +ꜩ0.000483 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1884.717 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 15 + Consumed gas: 1007.152 + Resulting inbox state: { level = 14 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 91 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 105 message_counter = 13 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -572,9 +497,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1885.313 units (will add 100 for safety) +Estimated gas: 1007.748 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -585,22 +510,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000636 - Expected counter: 14 - Gas limit: 1986 + Fee to the baker: ꜩ0.000495 + Expected counter: 13 + Gas limit: 1108 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000636 - payload fees(the block proposer) ....... +ꜩ0.000636 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000495 + payload fees(the block proposer) ....... +ꜩ0.000495 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1885.313 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 16 + Consumed gas: 1007.748 + Resulting inbox state: { level = 15 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 105 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 120 message_counter = 14 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -614,9 +536,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1885.909 units (will add 100 for safety) +Estimated gas: 1008.344 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -627,22 +549,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000648 - Expected counter: 15 - Gas limit: 1986 + Fee to the baker: ꜩ0.000507 + Expected counter: 14 + Gas limit: 1109 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000648 - payload fees(the block proposer) ....... +ꜩ0.000648 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000507 + payload fees(the block proposer) ....... +ꜩ0.000507 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1885.909 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 17 + Consumed gas: 1008.344 + Resulting inbox state: { level = 16 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 120 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 136 message_counter = 15 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -656,9 +575,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1886.505 units (will add 100 for safety) +Estimated gas: 1008.940 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -669,22 +588,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00066 - Expected counter: 16 - Gas limit: 1987 + Fee to the baker: ꜩ0.000519 + Expected counter: 15 + Gas limit: 1109 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00066 - payload fees(the block proposer) ....... +ꜩ0.00066 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000519 + payload fees(the block proposer) ....... +ꜩ0.000519 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1886.633 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 18 + Consumed gas: 1008.940 + Resulting inbox state: { level = 17 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 136 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 153 message_counter = 16 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -699,9 +615,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1887.308 units (will add 100 for safety) +Estimated gas: 1009.536 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -712,22 +628,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000672 - Expected counter: 17 - Gas limit: 1988 + Fee to the baker: ꜩ0.000531 + Expected counter: 16 + Gas limit: 1110 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000672 - payload fees(the block proposer) ....... +ꜩ0.000672 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000531 + payload fees(the block proposer) ....... +ꜩ0.000531 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1887.308 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 19 + Consumed gas: 1009.536 + Resulting inbox state: { level = 18 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 153 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 171 message_counter = 17 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -742,9 +655,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1887.904 units (will add 100 for safety) +Estimated gas: 1010.132 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -755,22 +668,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000684 - Expected counter: 18 - Gas limit: 1988 + Fee to the baker: ꜩ0.000544 + Expected counter: 17 + Gas limit: 1111 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000684 - payload fees(the block proposer) ....... +ꜩ0.000684 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000544 + payload fees(the block proposer) ....... +ꜩ0.000544 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1887.904 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 20 + Consumed gas: 1010.132 + Resulting inbox state: { level = 19 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 171 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 190 message_counter = 18 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -785,9 +695,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1888.500 units (will add 100 for safety) +Estimated gas: 1010.728 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -798,22 +708,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000696 - Expected counter: 19 - Gas limit: 1989 + Fee to the baker: ꜩ0.000556 + Expected counter: 18 + Gas limit: 1111 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000696 - payload fees(the block proposer) ....... +ꜩ0.000696 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000556 + payload fees(the block proposer) ....... +ꜩ0.000556 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1888.500 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 21 + Consumed gas: 1010.728 + Resulting inbox state: { level = 20 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 190 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 210 message_counter = 19 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -828,9 +735,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1889.096 units (will add 100 for safety) +Estimated gas: 1011.324 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -841,22 +748,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000708 - Expected counter: 20 - Gas limit: 1990 + Fee to the baker: ꜩ0.000568 + Expected counter: 19 + Gas limit: 1112 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000708 - payload fees(the block proposer) ....... +ꜩ0.000708 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000568 + payload fees(the block proposer) ....... +ꜩ0.000568 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1889.096 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 22 + Consumed gas: 1011.324 + Resulting inbox state: { level = 21 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 210 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 231 message_counter = 20 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -871,9 +775,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1889.692 units (will add 100 for safety) +Estimated gas: 1011.920 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -884,22 +788,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00072 - Expected counter: 21 - Gas limit: 1990 + Fee to the baker: ꜩ0.00058 + Expected counter: 20 + Gas limit: 1112 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00072 - payload fees(the block proposer) ....... +ꜩ0.00072 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.00058 + payload fees(the block proposer) ....... +ꜩ0.00058 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1889.692 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 23 + Consumed gas: 1011.920 + Resulting inbox state: { level = 22 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 231 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 253 message_counter = 21 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -914,9 +815,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1890.288 units (will add 100 for safety) +Estimated gas: 1012.516 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -927,22 +828,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000733 - Expected counter: 22 - Gas limit: 1991 + Fee to the baker: ꜩ0.000592 + Expected counter: 21 + Gas limit: 1113 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000733 - payload fees(the block proposer) ....... +ꜩ0.000733 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000592 + payload fees(the block proposer) ....... +ꜩ0.000592 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1890.288 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 24 + Consumed gas: 1012.516 + Resulting inbox state: { level = 23 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 253 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 276 message_counter = 22 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -957,9 +855,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1890.884 units (will add 100 for safety) +Estimated gas: 1013.112 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -970,22 +868,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000745 - Expected counter: 23 - Gas limit: 1991 + Fee to the baker: ꜩ0.000604 + Expected counter: 22 + Gas limit: 1114 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000745 - payload fees(the block proposer) ....... +ꜩ0.000745 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000604 + payload fees(the block proposer) ....... +ꜩ0.000604 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1890.884 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 25 + Consumed gas: 1013.112 + Resulting inbox state: { level = 24 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 276 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 300 message_counter = 23 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1000,9 +895,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1891.480 units (will add 100 for safety) +Estimated gas: 1013.708 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1013,22 +908,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000757 - Expected counter: 24 - Gas limit: 1992 + Fee to the baker: ꜩ0.000616 + Expected counter: 23 + Gas limit: 1114 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000757 - payload fees(the block proposer) ....... +ꜩ0.000757 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000616 + payload fees(the block proposer) ....... +ꜩ0.000616 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1891.480 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 26 + Consumed gas: 1013.708 + Resulting inbox state: { level = 25 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 300 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 325 message_counter = 24 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1043,9 +935,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1892.076 units (will add 100 for safety) +Estimated gas: 1014.304 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1056,22 +948,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000769 - Expected counter: 25 - Gas limit: 1993 + Fee to the baker: ꜩ0.000628 + Expected counter: 24 + Gas limit: 1115 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000769 - payload fees(the block proposer) ....... +ꜩ0.000769 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000628 + payload fees(the block proposer) ....... +ꜩ0.000628 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1892.076 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 27 + Consumed gas: 1014.304 + Resulting inbox state: { level = 26 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 325 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 351 message_counter = 25 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1086,9 +975,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1892.672 units (will add 100 for safety) +Estimated gas: 1014.900 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1099,22 +988,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000781 - Expected counter: 26 - Gas limit: 1993 + Fee to the baker: ꜩ0.00064 + Expected counter: 25 + Gas limit: 1115 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000781 - payload fees(the block proposer) ....... +ꜩ0.000781 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.00064 + payload fees(the block proposer) ....... +ꜩ0.00064 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1892.672 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 28 + Consumed gas: 1014.900 + Resulting inbox state: { level = 27 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 351 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 378 message_counter = 26 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1129,9 +1015,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1893.268 units (will add 100 for safety) +Estimated gas: 1015.496 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1142,22 +1028,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000793 - Expected counter: 27 - Gas limit: 1994 + Fee to the baker: ꜩ0.000652 + Expected counter: 26 + Gas limit: 1116 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000793 - payload fees(the block proposer) ....... +ꜩ0.000793 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000652 + payload fees(the block proposer) ....... +ꜩ0.000652 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1893.268 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 29 + Consumed gas: 1015.496 + Resulting inbox state: { level = 28 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 378 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 406 message_counter = 27 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1172,9 +1055,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1893.864 units (will add 100 for safety) +Estimated gas: 1016.092 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1185,22 +1068,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000805 - Expected counter: 28 - Gas limit: 1994 + Fee to the baker: ꜩ0.000664 + Expected counter: 27 + Gas limit: 1117 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000805 - payload fees(the block proposer) ....... +ꜩ0.000805 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000664 + payload fees(the block proposer) ....... +ꜩ0.000664 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1893.864 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 30 + Consumed gas: 1016.092 + Resulting inbox state: { level = 29 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 406 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 435 message_counter = 28 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1215,9 +1095,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1894.460 units (will add 100 for safety) +Estimated gas: 1016.688 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1228,22 +1108,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000817 - Expected counter: 29 - Gas limit: 1995 + Fee to the baker: ꜩ0.000676 + Expected counter: 28 + Gas limit: 1117 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000817 - payload fees(the block proposer) ....... +ꜩ0.000817 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000676 + payload fees(the block proposer) ....... +ꜩ0.000676 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1894.460 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 31 + Consumed gas: 1016.688 + Resulting inbox state: { level = 30 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 435 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 465 message_counter = 29 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1258,9 +1135,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1895.056 units (will add 100 for safety) +Estimated gas: 1017.284 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1271,22 +1148,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000829 - Expected counter: 30 - Gas limit: 1996 + Fee to the baker: ꜩ0.000688 + Expected counter: 29 + Gas limit: 1118 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000829 - payload fees(the block proposer) ....... +ꜩ0.000829 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000688 + payload fees(the block proposer) ....... +ꜩ0.000688 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1895.056 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 32 + Consumed gas: 1017.284 + Resulting inbox state: { level = 31 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 30 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 496 message_counter = 30 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1301,13 +1175,53 @@ This sequence of operations was run: } +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 +Node is bootstrapped. +Estimated gas: 1017.880 units (will add 100 for safety) +Estimated storage: no bytes added +Operation successfully injected in the node. +Operation hash is '[OPERATION_HASH]' +NOT waiting for the operation to be included. +Use command + octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] +and/or an external block explorer to make sure that it has been included. +This sequence of operations was run: + Manager signed operations: + From: [PUBLIC_KEY_HASH] + Fee to the baker: ꜩ0.0007 + Expected counter: 30 + Gas limit: 1118 + Storage limit: 0 bytes + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ0.0007 + payload fees(the block proposer) ....... +ꜩ0.0007 + Smart contract rollup messages submission + This smart contract rollup messages submission was successfully applied + Consumed gas: 1017.880 + Resulting inbox state: { level = 32 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 528 + message_counter = 31 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 31 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + ./octez-sc-rollup-client-alpha rpc get /global/last_stored_commitment { "commitment": { "compressed_state": "[SC_ROLLUP_PVM_STATE_HASH]", "inbox_level": 32, "predecessor": "[SC_ROLLUP_COMMITMENT_HASH]", - "number_of_ticks": "5117" }, + "number_of_ticks": "5177" }, "hash": "[SC_ROLLUP_COMMITMENT_HASH]" } ./octez-sc-rollup-client-alpha rpc get /global/last_stored_commitment @@ -1316,5 +1230,5 @@ This sequence of operations was run: "[SC_ROLLUP_PVM_STATE_HASH]", "inbox_level": 32, "predecessor": "[SC_ROLLUP_COMMITMENT_HASH]", - "number_of_ticks": "5117" }, + "number_of_ticks": "5177" }, "hash": "[SC_ROLLUP_COMMITMENT_HASH]" } diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- commitments- publish- and try to cement not on top of LCC or disputed.out b/tezt/tests/expected/sc_rollup.ml/Alpha- commitments- publish- and try to cement not on top of LCC or disputed.out index 715f6af59ecc..f7aade668ab4 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- commitments- publish- and try to cement not on top of LCC or disputed.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- commitments- publish- and try to cement not on top of LCC or disputed.out @@ -1,8 +1,8 @@ ./octez-client --wait none originate sc rollup from bootstrap1 of kind arith of type unit booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.449 units (will add 100 for safety) -Estimated storage: 6655 bytes added (will add 20 for safety) +Estimated gas: 2909.925 units (will add 100 for safety) +Estimated storage: 6524 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,25 +12,25 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00067 + Fee to the baker: ꜩ0.000649 Expected counter: 1 - Gas limit: 3211 - Storage limit: 6675 bytes + Gas limit: 3010 + Storage limit: 6544 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00067 - payload fees(the block proposer) ....... +ꜩ0.00067 + [PUBLIC_KEY_HASH] ... -ꜩ0.000649 + payload fees(the block proposer) ....... +ꜩ0.000649 Smart contract rollup origination: Kind: arith Parameter type: unit Boot sector Blake2B hash: '0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8' This smart contract rollup origination was successfully applied - Consumed gas: 3110.449 - Storage size: 6655 bytes + Consumed gas: 2909.925 + Storage size: 6524 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.66375 - storage fees ........................... +ꜩ1.66375 + [PUBLIC_KEY_HASH] ... -ꜩ1.631 + storage fees ........................... +ꜩ1.631 ./octez-client --wait none publish commitment from '[PUBLIC_KEY_HASH]' for sc rollup '[SC_ROLLUP_HASH]' with compressed state '[SC_ROLLUP_PVM_STATE_HASH]' at inbox level 5 and predecessor '[SC_ROLLUP_COMMITMENT_HASH]' and number of ticks 1 @@ -467,7 +467,7 @@ Error: ./octez-client --wait none timeout dispute on sc rollup '[SC_ROLLUP_HASH]' with '[PUBLIC_KEY_HASH]' from bootstrap1 Node is bootstrapped. -Estimated gas: 8210.876 units (will add 100 for safety) +Estimated gas: 8211.196 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -480,7 +480,7 @@ This sequence of operations was run: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.001139 Expected counter: 8 - Gas limit: 8311 + Gas limit: 8312 Storage limit: 0 bytes Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.001139 @@ -490,7 +490,7 @@ This sequence of operations was run: First staker (Alice): [PUBLIC_KEY_HASH] Second staker (Bob): [PUBLIC_KEY_HASH] This smart contract rollup refutation timeout was successfully applied - Consumed gas: 8210.876 + Consumed gas: 8211.196 Refutation game status: Game ended: [PUBLIC_KEY_HASH] lost because: timeout Balance updates: Frozen_bonds([PUBLIC_KEY_HASH],[SC_ROLLUP_HASH]) ... -ꜩ10000 diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- configuration of a smart contract optimistic rollup node.out b/tezt/tests/expected/sc_rollup.ml/Alpha- configuration of a smart contract optimistic rollup node.out index 8619af933353..6689819e1f5f 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- configuration of a smart contract optimistic rollup node.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- configuration of a smart contract optimistic rollup node.out @@ -1,8 +1,8 @@ ./octez-client --wait none originate sc rollup from bootstrap1 of kind wasm_2_0_0 of type string booting with 010fa03030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303000d5024ff4c33df62141bd485af4154641aa9220c5dede9aed006eb5d3c88bff3b --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3126.593 units (will add 100 for safety) -Estimated storage: 10691 bytes added (will add 20 for safety) +Estimated gas: 2926.069 units (will add 100 for safety) +Estimated storage: 10560 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,23 +12,23 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.004713 + Fee to the baker: ꜩ0.004693 Expected counter: 1 - Gas limit: 3227 - Storage limit: 10711 bytes + Gas limit: 3027 + Storage limit: 10580 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004713 - payload fees(the block proposer) ....... +ꜩ0.004713 + [PUBLIC_KEY_HASH] ... -ꜩ0.004693 + payload fees(the block proposer) ....... +ꜩ0.004693 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string Boot sector Blake2B hash: '789431137a40057a39867cbc5cd7f984139360559c655c0508821b9be8047a02' This smart contract rollup origination was successfully applied - Consumed gas: 3126.593 - Storage size: 10691 bytes + Consumed gas: 2926.069 + Storage size: 10560 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ2.67275 - storage fees ........................... +ꜩ2.67275 + [PUBLIC_KEY_HASH] ... -ꜩ2.64 + storage fees ........................... +ꜩ2.64 diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- ensure arith boot sector is used.out b/tezt/tests/expected/sc_rollup.ml/Alpha- ensure arith boot sector is used.out index d72aaade81ec..c93ffa18e78c 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- ensure arith boot sector is used.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- ensure arith boot sector is used.out @@ -1,8 +1,8 @@ ./octez-client --wait none originate sc rollup from bootstrap1 of kind arith of type string booting with '10 10 10 + +' --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.497 units (will add 100 for safety) -Estimated storage: 6667 bytes added (will add 20 for safety) +Estimated gas: 2909.973 units (will add 100 for safety) +Estimated storage: 6536 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,34 +12,34 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000682 + Fee to the baker: ꜩ0.000661 Expected counter: 1 - Gas limit: 3211 - Storage limit: 6687 bytes + Gas limit: 3010 + Storage limit: 6556 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000682 - payload fees(the block proposer) ....... +ꜩ0.000682 + [PUBLIC_KEY_HASH] ... -ꜩ0.000661 + payload fees(the block proposer) ....... +ꜩ0.000661 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector Blake2B hash: '8eb6ccf70902fcd3fa2040cf27dda202a71d85625516f22a0c9c67fc86057a7b' This smart contract rollup origination was successfully applied - Consumed gas: 3110.497 - Storage size: 6667 bytes + Consumed gas: 2909.973 + Storage size: 6536 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.66675 - storage fees ........................... +ꜩ1.66675 + [PUBLIC_KEY_HASH] ... -ꜩ1.634 + storage fees ........................... +ꜩ1.634 ./octez-client rpc get '/chains/main/blocks/head/context/sc_rollup/[SC_ROLLUP_HASH]/genesis_info' { "level": 2, "commitment_hash": "[SC_ROLLUP_COMMITMENT_HASH]" } -./octez-client --wait none send sc rollup message 'text:["10 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["10 +"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1876.654 units (will add 100 for safety) +Estimated gas: 1000.528 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -50,28 +50,26 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000475 + Fee to the baker: ꜩ0.000347 Expected counter: 1 - Gas limit: 1977 + Gas limit: 1101 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000475 - payload fees(the block proposer) ....... +ꜩ0.000475 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000347 + payload fees(the block proposer) ....... +ꜩ0.000347 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1876.782 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 3 + Consumed gas: 1000.528 + Resulting inbox state: { level = 3 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 1 - starting_level_of_current_commitment_period = 2 - message_counter = 1 + nb_messages_in_commitment_period = 6 + message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 1 + index = 2 back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] } @@ -81,8 +79,8 @@ This sequence of operations was run: ./octez-client --wait none originate sc rollup from bootstrap1 of kind arith of type string booting with 31 --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.457 units (will add 100 for safety) -Estimated storage: 6657 bytes added (will add 20 for safety) +Estimated gas: 2909.933 units (will add 100 for safety) +Estimated storage: 6526 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -92,34 +90,34 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000672 + Fee to the baker: ꜩ0.000651 Expected counter: 2 - Gas limit: 3211 - Storage limit: 6677 bytes + Gas limit: 3010 + Storage limit: 6546 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000672 - payload fees(the block proposer) ....... +ꜩ0.000672 + [PUBLIC_KEY_HASH] ... -ꜩ0.000651 + payload fees(the block proposer) ....... +ꜩ0.000651 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector Blake2B hash: 'b682df8c87f218dfa8151f2eaafe20e6f8d87b243f8fe63de6d49485a8bf6eea' This smart contract rollup origination was successfully applied - Consumed gas: 3110.457 - Storage size: 6657 bytes + Consumed gas: 2909.933 + Storage size: 6526 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.66425 - storage fees ........................... +ꜩ1.66425 + [PUBLIC_KEY_HASH] ... -ꜩ1.6315 + storage fees ........................... +ꜩ1.6315 ./octez-client rpc get '/chains/main/blocks/head/context/sc_rollup/[SC_ROLLUP_HASH]/genesis_info' { "level": 4, "commitment_hash": "[SC_ROLLUP_COMMITMENT_HASH]" } -./octez-client --wait none send sc rollup message 'text:["10 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["10 +"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1876.654 units (will add 100 for safety) +Estimated gas: 1000.528 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -130,28 +128,27 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000475 + Fee to the baker: ꜩ0.000347 Expected counter: 2 - Gas limit: 1977 + Gas limit: 1101 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000475 - payload fees(the block proposer) ....... +ꜩ0.000475 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000347 + payload fees(the block proposer) ....... +ꜩ0.000347 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1876.782 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 5 + Consumed gas: 1000.528 + Resulting inbox state: { level = 5 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 1 - starting_level_of_current_commitment_period = 4 - message_counter = 1 + nb_messages_in_commitment_period = 11 + message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 1 + index = 4 back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] } diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- getting a smart-contract rollup address through the client.out b/tezt/tests/expected/sc_rollup.ml/Alpha- getting a smart-contract rollup address through the client.out index 8619af933353..6689819e1f5f 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- getting a smart-contract rollup address through the client.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- getting a smart-contract rollup address through the client.out @@ -1,8 +1,8 @@ ./octez-client --wait none originate sc rollup from bootstrap1 of kind wasm_2_0_0 of type string booting with 010fa03030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303000d5024ff4c33df62141bd485af4154641aa9220c5dede9aed006eb5d3c88bff3b --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3126.593 units (will add 100 for safety) -Estimated storage: 10691 bytes added (will add 20 for safety) +Estimated gas: 2926.069 units (will add 100 for safety) +Estimated storage: 10560 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,23 +12,23 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.004713 + Fee to the baker: ꜩ0.004693 Expected counter: 1 - Gas limit: 3227 - Storage limit: 10711 bytes + Gas limit: 3027 + Storage limit: 10580 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004713 - payload fees(the block proposer) ....... +ꜩ0.004713 + [PUBLIC_KEY_HASH] ... -ꜩ0.004693 + payload fees(the block proposer) ....... +ꜩ0.004693 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string Boot sector Blake2B hash: '789431137a40057a39867cbc5cd7f984139360559c655c0508821b9be8047a02' This smart contract rollup origination was successfully applied - Consumed gas: 3126.593 - Storage size: 10691 bytes + Consumed gas: 2926.069 + Storage size: 10560 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ2.67275 - storage fees ........................... +ꜩ2.67275 + [PUBLIC_KEY_HASH] ... -ꜩ2.64 + storage fees ........................... +ꜩ2.64 diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- list originated rollups.out b/tezt/tests/expected/sc_rollup.ml/Alpha- list originated rollups.out index bf5b54a8041e..6401eb87c9f8 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- list originated rollups.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- list originated rollups.out @@ -1,8 +1,8 @@ ./octez-client --wait none originate sc rollup from bootstrap1 of kind wasm_2_0_0 of type string booting with 010fa03030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303000d5024ff4c33df62141bd485af4154641aa9220c5dede9aed006eb5d3c88bff3b --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3126.593 units (will add 100 for safety) -Estimated storage: 10691 bytes added (will add 20 for safety) +Estimated gas: 2926.069 units (will add 100 for safety) +Estimated storage: 10560 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,31 +12,31 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.004713 + Fee to the baker: ꜩ0.004693 Expected counter: 1 - Gas limit: 3227 - Storage limit: 10711 bytes + Gas limit: 3027 + Storage limit: 10580 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004713 - payload fees(the block proposer) ....... +ꜩ0.004713 + [PUBLIC_KEY_HASH] ... -ꜩ0.004693 + payload fees(the block proposer) ....... +ꜩ0.004693 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string Boot sector Blake2B hash: '789431137a40057a39867cbc5cd7f984139360559c655c0508821b9be8047a02' This smart contract rollup origination was successfully applied - Consumed gas: 3126.593 - Storage size: 10691 bytes + Consumed gas: 2926.069 + Storage size: 10560 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ2.67275 - storage fees ........................... +ꜩ2.67275 + [PUBLIC_KEY_HASH] ... -ꜩ2.64 + storage fees ........................... +ꜩ2.64 ./octez-client --wait none originate sc rollup from bootstrap1 of kind wasm_2_0_0 of type string booting with 010fa03030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303000d5024ff4c33df62141bd485af4154641aa9220c5dede9aed006eb5d3c88bff3b --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3126.593 units (will add 100 for safety) -Estimated storage: 10691 bytes added (will add 20 for safety) +Estimated gas: 2926.069 units (will add 100 for safety) +Estimated storage: 10560 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -46,31 +46,31 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.004713 + Fee to the baker: ꜩ0.004693 Expected counter: 2 - Gas limit: 3227 - Storage limit: 10711 bytes + Gas limit: 3027 + Storage limit: 10580 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004713 - payload fees(the block proposer) ....... +ꜩ0.004713 + [PUBLIC_KEY_HASH] ... -ꜩ0.004693 + payload fees(the block proposer) ....... +ꜩ0.004693 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string Boot sector Blake2B hash: '789431137a40057a39867cbc5cd7f984139360559c655c0508821b9be8047a02' This smart contract rollup origination was successfully applied - Consumed gas: 3126.593 - Storage size: 10691 bytes + Consumed gas: 2926.069 + Storage size: 10560 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ2.67275 - storage fees ........................... +ꜩ2.67275 + [PUBLIC_KEY_HASH] ... -ꜩ2.64 + storage fees ........................... +ꜩ2.64 ./octez-client --wait none originate sc rollup from bootstrap1 of kind wasm_2_0_0 of type string booting with 010fa03030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303000d5024ff4c33df62141bd485af4154641aa9220c5dede9aed006eb5d3c88bff3b --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3126.593 units (will add 100 for safety) -Estimated storage: 10691 bytes added (will add 20 for safety) +Estimated gas: 2926.069 units (will add 100 for safety) +Estimated storage: 10560 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -80,31 +80,31 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.004713 + Fee to the baker: ꜩ0.004693 Expected counter: 3 - Gas limit: 3227 - Storage limit: 10711 bytes + Gas limit: 3027 + Storage limit: 10580 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004713 - payload fees(the block proposer) ....... +ꜩ0.004713 + [PUBLIC_KEY_HASH] ... -ꜩ0.004693 + payload fees(the block proposer) ....... +ꜩ0.004693 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string Boot sector Blake2B hash: '789431137a40057a39867cbc5cd7f984139360559c655c0508821b9be8047a02' This smart contract rollup origination was successfully applied - Consumed gas: 3126.593 - Storage size: 10691 bytes + Consumed gas: 2926.069 + Storage size: 10560 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ2.67275 - storage fees ........................... +ꜩ2.67275 + [PUBLIC_KEY_HASH] ... -ꜩ2.64 + storage fees ........................... +ꜩ2.64 ./octez-client --wait none originate sc rollup from bootstrap1 of kind wasm_2_0_0 of type string booting with 010fa03030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303000d5024ff4c33df62141bd485af4154641aa9220c5dede9aed006eb5d3c88bff3b --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3126.593 units (will add 100 for safety) -Estimated storage: 10691 bytes added (will add 20 for safety) +Estimated gas: 2926.069 units (will add 100 for safety) +Estimated storage: 10560 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -114,31 +114,31 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.004713 + Fee to the baker: ꜩ0.004693 Expected counter: 4 - Gas limit: 3227 - Storage limit: 10711 bytes + Gas limit: 3027 + Storage limit: 10580 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004713 - payload fees(the block proposer) ....... +ꜩ0.004713 + [PUBLIC_KEY_HASH] ... -ꜩ0.004693 + payload fees(the block proposer) ....... +ꜩ0.004693 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string Boot sector Blake2B hash: '789431137a40057a39867cbc5cd7f984139360559c655c0508821b9be8047a02' This smart contract rollup origination was successfully applied - Consumed gas: 3126.593 - Storage size: 10691 bytes + Consumed gas: 2926.069 + Storage size: 10560 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ2.67275 - storage fees ........................... +ꜩ2.67275 + [PUBLIC_KEY_HASH] ... -ꜩ2.64 + storage fees ........................... +ꜩ2.64 ./octez-client --wait none originate sc rollup from bootstrap1 of kind wasm_2_0_0 of type string booting with 010fa03030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303000d5024ff4c33df62141bd485af4154641aa9220c5dede9aed006eb5d3c88bff3b --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3126.593 units (will add 100 for safety) -Estimated storage: 10691 bytes added (will add 20 for safety) +Estimated gas: 2926.069 units (will add 100 for safety) +Estimated storage: 10560 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -148,31 +148,31 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.004713 + Fee to the baker: ꜩ0.004693 Expected counter: 5 - Gas limit: 3227 - Storage limit: 10711 bytes + Gas limit: 3027 + Storage limit: 10580 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004713 - payload fees(the block proposer) ....... +ꜩ0.004713 + [PUBLIC_KEY_HASH] ... -ꜩ0.004693 + payload fees(the block proposer) ....... +ꜩ0.004693 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string Boot sector Blake2B hash: '789431137a40057a39867cbc5cd7f984139360559c655c0508821b9be8047a02' This smart contract rollup origination was successfully applied - Consumed gas: 3126.593 - Storage size: 10691 bytes + Consumed gas: 2926.069 + Storage size: 10560 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ2.67275 - storage fees ........................... +ꜩ2.67275 + [PUBLIC_KEY_HASH] ... -ꜩ2.64 + storage fees ........................... +ꜩ2.64 ./octez-client --wait none originate sc rollup from bootstrap1 of kind wasm_2_0_0 of type string booting with 010fa03030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303000d5024ff4c33df62141bd485af4154641aa9220c5dede9aed006eb5d3c88bff3b --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3126.593 units (will add 100 for safety) -Estimated storage: 10691 bytes added (will add 20 for safety) +Estimated gas: 2926.069 units (will add 100 for safety) +Estimated storage: 10560 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -182,31 +182,31 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.004713 + Fee to the baker: ꜩ0.004693 Expected counter: 6 - Gas limit: 3227 - Storage limit: 10711 bytes + Gas limit: 3027 + Storage limit: 10580 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004713 - payload fees(the block proposer) ....... +ꜩ0.004713 + [PUBLIC_KEY_HASH] ... -ꜩ0.004693 + payload fees(the block proposer) ....... +ꜩ0.004693 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string Boot sector Blake2B hash: '789431137a40057a39867cbc5cd7f984139360559c655c0508821b9be8047a02' This smart contract rollup origination was successfully applied - Consumed gas: 3126.593 - Storage size: 10691 bytes + Consumed gas: 2926.069 + Storage size: 10560 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ2.67275 - storage fees ........................... +ꜩ2.67275 + [PUBLIC_KEY_HASH] ... -ꜩ2.64 + storage fees ........................... +ꜩ2.64 ./octez-client --wait none originate sc rollup from bootstrap1 of kind wasm_2_0_0 of type string booting with 010fa03030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303000d5024ff4c33df62141bd485af4154641aa9220c5dede9aed006eb5d3c88bff3b --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3126.593 units (will add 100 for safety) -Estimated storage: 10691 bytes added (will add 20 for safety) +Estimated gas: 2926.069 units (will add 100 for safety) +Estimated storage: 10560 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -216,31 +216,31 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.004713 + Fee to the baker: ꜩ0.004693 Expected counter: 7 - Gas limit: 3227 - Storage limit: 10711 bytes + Gas limit: 3027 + Storage limit: 10580 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004713 - payload fees(the block proposer) ....... +ꜩ0.004713 + [PUBLIC_KEY_HASH] ... -ꜩ0.004693 + payload fees(the block proposer) ....... +ꜩ0.004693 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string Boot sector Blake2B hash: '789431137a40057a39867cbc5cd7f984139360559c655c0508821b9be8047a02' This smart contract rollup origination was successfully applied - Consumed gas: 3126.593 - Storage size: 10691 bytes + Consumed gas: 2926.069 + Storage size: 10560 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ2.67275 - storage fees ........................... +ꜩ2.67275 + [PUBLIC_KEY_HASH] ... -ꜩ2.64 + storage fees ........................... +ꜩ2.64 ./octez-client --wait none originate sc rollup from bootstrap1 of kind wasm_2_0_0 of type string booting with 010fa03030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303000d5024ff4c33df62141bd485af4154641aa9220c5dede9aed006eb5d3c88bff3b --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3126.593 units (will add 100 for safety) -Estimated storage: 10691 bytes added (will add 20 for safety) +Estimated gas: 2926.069 units (will add 100 for safety) +Estimated storage: 10560 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -250,31 +250,31 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.004713 + Fee to the baker: ꜩ0.004693 Expected counter: 8 - Gas limit: 3227 - Storage limit: 10711 bytes + Gas limit: 3027 + Storage limit: 10580 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004713 - payload fees(the block proposer) ....... +ꜩ0.004713 + [PUBLIC_KEY_HASH] ... -ꜩ0.004693 + payload fees(the block proposer) ....... +ꜩ0.004693 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string Boot sector Blake2B hash: '789431137a40057a39867cbc5cd7f984139360559c655c0508821b9be8047a02' This smart contract rollup origination was successfully applied - Consumed gas: 3126.593 - Storage size: 10691 bytes + Consumed gas: 2926.069 + Storage size: 10560 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ2.67275 - storage fees ........................... +ꜩ2.67275 + [PUBLIC_KEY_HASH] ... -ꜩ2.64 + storage fees ........................... +ꜩ2.64 ./octez-client --wait none originate sc rollup from bootstrap1 of kind wasm_2_0_0 of type string booting with 010fa03030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303000d5024ff4c33df62141bd485af4154641aa9220c5dede9aed006eb5d3c88bff3b --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3126.593 units (will add 100 for safety) -Estimated storage: 10691 bytes added (will add 20 for safety) +Estimated gas: 2926.069 units (will add 100 for safety) +Estimated storage: 10560 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -284,31 +284,31 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.004713 + Fee to the baker: ꜩ0.004693 Expected counter: 9 - Gas limit: 3227 - Storage limit: 10711 bytes + Gas limit: 3027 + Storage limit: 10580 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004713 - payload fees(the block proposer) ....... +ꜩ0.004713 + [PUBLIC_KEY_HASH] ... -ꜩ0.004693 + payload fees(the block proposer) ....... +ꜩ0.004693 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string Boot sector Blake2B hash: '789431137a40057a39867cbc5cd7f984139360559c655c0508821b9be8047a02' This smart contract rollup origination was successfully applied - Consumed gas: 3126.593 - Storage size: 10691 bytes + Consumed gas: 2926.069 + Storage size: 10560 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ2.67275 - storage fees ........................... +ꜩ2.67275 + [PUBLIC_KEY_HASH] ... -ꜩ2.64 + storage fees ........................... +ꜩ2.64 ./octez-client --wait none originate sc rollup from bootstrap1 of kind wasm_2_0_0 of type string booting with 010fa03030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303000d5024ff4c33df62141bd485af4154641aa9220c5dede9aed006eb5d3c88bff3b --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3126.593 units (will add 100 for safety) -Estimated storage: 10691 bytes added (will add 20 for safety) +Estimated gas: 2926.069 units (will add 100 for safety) +Estimated storage: 10560 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -318,23 +318,23 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.004713 + Fee to the baker: ꜩ0.004693 Expected counter: 10 - Gas limit: 3227 - Storage limit: 10711 bytes + Gas limit: 3027 + Storage limit: 10580 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004713 - payload fees(the block proposer) ....... +ꜩ0.004713 + [PUBLIC_KEY_HASH] ... -ꜩ0.004693 + payload fees(the block proposer) ....... +ꜩ0.004693 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string Boot sector Blake2B hash: '789431137a40057a39867cbc5cd7f984139360559c655c0508821b9be8047a02' This smart contract rollup origination was successfully applied - Consumed gas: 3126.593 - Storage size: 10691 bytes + Consumed gas: 2926.069 + Storage size: 10560 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ2.67275 - storage fees ........................... +ꜩ2.67275 + [PUBLIC_KEY_HASH] ... -ꜩ2.64 + storage fees ........................... +ꜩ2.64 diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- originate arith with boot sector.out b/tezt/tests/expected/sc_rollup.ml/Alpha- originate arith with boot sector.out index 187fe7ea3393..863037a9404d 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- originate arith with boot sector.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- originate arith with boot sector.out @@ -1,8 +1,8 @@ ./octez-client --wait none originate sc rollup from bootstrap1 of kind arith of type string booting with '10 10 10 + +' --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.497 units (will add 100 for safety) -Estimated storage: 6667 bytes added (will add 20 for safety) +Estimated gas: 2909.973 units (will add 100 for safety) +Estimated storage: 6536 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,25 +12,25 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000682 + Fee to the baker: ꜩ0.000661 Expected counter: 1 - Gas limit: 3211 - Storage limit: 6687 bytes + Gas limit: 3010 + Storage limit: 6556 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000682 - payload fees(the block proposer) ....... +ꜩ0.000682 + [PUBLIC_KEY_HASH] ... -ꜩ0.000661 + payload fees(the block proposer) ....... +ꜩ0.000661 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector Blake2B hash: '8eb6ccf70902fcd3fa2040cf27dda202a71d85625516f22a0c9c67fc86057a7b' This smart contract rollup origination was successfully applied - Consumed gas: 3110.497 - Storage size: 6667 bytes + Consumed gas: 2909.973 + Storage size: 6536 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.66675 - storage fees ........................... +ꜩ1.66675 + [PUBLIC_KEY_HASH] ... -ꜩ1.634 + storage fees ........................... +ꜩ1.634 ./octez-client rpc get '/chains/main/blocks/head/context/sc_rollup/[SC_ROLLUP_HASH]/boot_sector' diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- refutation game timeout.out b/tezt/tests/expected/sc_rollup.ml/Alpha- refutation game timeout.out index 27a1f7dfb6e8..ea3c8d4ea438 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- refutation game timeout.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- refutation game timeout.out @@ -1,8 +1,8 @@ ./octez-client --wait none originate sc rollup from bootstrap1 of kind arith of type unit booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.449 units (will add 100 for safety) -Estimated storage: 6655 bytes added (will add 20 for safety) +Estimated gas: 2909.925 units (will add 100 for safety) +Estimated storage: 6524 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,25 +12,25 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00067 + Fee to the baker: ꜩ0.000649 Expected counter: 1 - Gas limit: 3211 - Storage limit: 6675 bytes + Gas limit: 3010 + Storage limit: 6544 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00067 - payload fees(the block proposer) ....... +ꜩ0.00067 + [PUBLIC_KEY_HASH] ... -ꜩ0.000649 + payload fees(the block proposer) ....... +ꜩ0.000649 Smart contract rollup origination: Kind: arith Parameter type: unit Boot sector Blake2B hash: '0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8' This smart contract rollup origination was successfully applied - Consumed gas: 3110.449 - Storage size: 6655 bytes + Consumed gas: 2909.925 + Storage size: 6524 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.66375 - storage fees ........................... +ꜩ1.66375 + [PUBLIC_KEY_HASH] ... -ꜩ1.631 + storage fees ........................... +ꜩ1.631 ./octez-client --wait none publish commitment from '[PUBLIC_KEY_HASH]' for sc rollup '[SC_ROLLUP_HASH]' with compressed state '[SC_ROLLUP_PVM_STATE_HASH]' at inbox level 5 and predecessor '[SC_ROLLUP_COMMITMENT_HASH]' and number of ticks 1 @@ -295,7 +295,7 @@ This sequence of operations was run: ./octez-client --wait none timeout dispute on sc rollup '[SC_ROLLUP_HASH]' with '[PUBLIC_KEY_HASH]' from bootstrap1 Node is bootstrapped. -Estimated gas: 8210.876 units (will add 100 for safety) +Estimated gas: 8211.196 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -308,7 +308,7 @@ This sequence of operations was run: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.001139 Expected counter: 8 - Gas limit: 8311 + Gas limit: 8312 Storage limit: 0 bytes Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.001139 @@ -318,7 +318,7 @@ This sequence of operations was run: First staker (Alice): [PUBLIC_KEY_HASH] Second staker (Bob): [PUBLIC_KEY_HASH] This smart contract rollup refutation timeout was successfully applied - Consumed gas: 8210.876 + Consumed gas: 8211.196 Refutation game status: Game ended: [PUBLIC_KEY_HASH] lost because: timeout Balance updates: Frozen_bonds([PUBLIC_KEY_HASH],[SC_ROLLUP_HASH]) ... -ꜩ10000 diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- refutation- check the punishment and reward.out b/tezt/tests/expected/sc_rollup.ml/Alpha- refutation- check the punishment and reward.out index 0b363f106cea..403955e16f26 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- refutation- check the punishment and reward.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- refutation- check the punishment and reward.out @@ -1,8 +1,8 @@ ./octez-client --wait none originate sc rollup from bootstrap1 of kind arith of type unit booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.449 units (will add 100 for safety) -Estimated storage: 6655 bytes added (will add 20 for safety) +Estimated gas: 2909.925 units (will add 100 for safety) +Estimated storage: 6524 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,25 +12,25 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00067 + Fee to the baker: ꜩ0.000649 Expected counter: 1 - Gas limit: 3211 - Storage limit: 6675 bytes + Gas limit: 3010 + Storage limit: 6544 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00067 - payload fees(the block proposer) ....... +ꜩ0.00067 + [PUBLIC_KEY_HASH] ... -ꜩ0.000649 + payload fees(the block proposer) ....... +ꜩ0.000649 Smart contract rollup origination: Kind: arith Parameter type: unit Boot sector Blake2B hash: '0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8' This smart contract rollup origination was successfully applied - Consumed gas: 3110.449 - Storage size: 6655 bytes + Consumed gas: 2909.925 + Storage size: 6524 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.66375 - storage fees ........................... +ꜩ1.66375 + [PUBLIC_KEY_HASH] ... -ꜩ1.631 + storage fees ........................... +ꜩ1.631 ./octez-client --wait none publish commitment from '[PUBLIC_KEY_HASH]' for sc rollup '[SC_ROLLUP_HASH]' with compressed state '[SC_ROLLUP_PVM_STATE_HASH]' at inbox level 4 and predecessor '[SC_ROLLUP_COMMITMENT_HASH]' and number of ticks 1 @@ -107,7 +107,7 @@ This sequence of operations was run: ./octez-client --wait none timeout dispute on sc rollup '[SC_ROLLUP_HASH]' with '[PUBLIC_KEY_HASH]' from bootstrap1 Node is bootstrapped. -Estimated gas: 6460.698 units (will add 100 for safety) +Estimated gas: 6460.826 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -130,7 +130,7 @@ This sequence of operations was run: First staker (Alice): [PUBLIC_KEY_HASH] Second staker (Bob): [PUBLIC_KEY_HASH] This smart contract rollup refutation timeout was successfully applied - Consumed gas: 6460.698 + Consumed gas: 6460.826 Refutation game status: Game ended: [PUBLIC_KEY_HASH] lost because: timeout Balance updates: Frozen_bonds([PUBLIC_KEY_HASH],[SC_ROLLUP_HASH]) ... -ꜩ10000 diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- valid dispute dissection.out b/tezt/tests/expected/sc_rollup.ml/Alpha- valid dispute dissection.out index 82c7e7aad11a..2723fc76959b 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- valid dispute dissection.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- valid dispute dissection.out @@ -1,8 +1,8 @@ ./octez-client --wait none originate sc rollup from bootstrap1 of kind arith of type unit booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.449 units (will add 100 for safety) -Estimated storage: 6655 bytes added (will add 20 for safety) +Estimated gas: 2909.925 units (will add 100 for safety) +Estimated storage: 6524 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,25 +12,25 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00067 + Fee to the baker: ꜩ0.000649 Expected counter: 1 - Gas limit: 3211 - Storage limit: 6675 bytes + Gas limit: 3010 + Storage limit: 6544 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00067 - payload fees(the block proposer) ....... +ꜩ0.00067 + [PUBLIC_KEY_HASH] ... -ꜩ0.000649 + payload fees(the block proposer) ....... +ꜩ0.000649 Smart contract rollup origination: Kind: arith Parameter type: unit Boot sector Blake2B hash: '0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8' This smart contract rollup origination was successfully applied - Consumed gas: 3110.449 - Storage size: 6655 bytes + Consumed gas: 2909.925 + Storage size: 6524 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.66375 - storage fees ........................... +ꜩ1.66375 + [PUBLIC_KEY_HASH] ... -ꜩ1.631 + storage fees ........................... +ꜩ1.631 ./octez-client --wait none publish commitment from '[PUBLIC_KEY_HASH]' for sc rollup '[SC_ROLLUP_HASH]' with compressed state '[SC_ROLLUP_PVM_STATE_HASH]' at inbox level 5 and predecessor '[SC_ROLLUP_COMMITMENT_HASH]' and number of ticks 1 diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - RPC API should work and be stable (api).out b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - RPC API should work and be stable (api).out index e627997a9277..1a284f882e78 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - RPC API should work and be stable (api).out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - RPC API should work and be stable (api).out @@ -1,8 +1,8 @@ ./octez-client --wait none originate sc rollup from bootstrap1 of kind wasm_2_0_0 of type string booting with 010fa03030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303000d5024ff4c33df62141bd485af4154641aa9220c5dede9aed006eb5d3c88bff3b --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3126.593 units (will add 100 for safety) -Estimated storage: 10691 bytes added (will add 20 for safety) +Estimated gas: 2926.069 units (will add 100 for safety) +Estimated storage: 10560 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,33 +12,33 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.004713 + Fee to the baker: ꜩ0.004693 Expected counter: 1 - Gas limit: 3227 - Storage limit: 10711 bytes + Gas limit: 3027 + Storage limit: 10580 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004713 - payload fees(the block proposer) ....... +ꜩ0.004713 + [PUBLIC_KEY_HASH] ... -ꜩ0.004693 + payload fees(the block proposer) ....... +ꜩ0.004693 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string Boot sector Blake2B hash: '789431137a40057a39867cbc5cd7f984139360559c655c0508821b9be8047a02' This smart contract rollup origination was successfully applied - Consumed gas: 3126.593 - Storage size: 10691 bytes + Consumed gas: 2926.069 + Storage size: 10560 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ2.67275 - storage fees ........................... +ꜩ2.67275 + [PUBLIC_KEY_HASH] ... -ꜩ2.64 + storage fees ........................... +ꜩ2.64 ./octez-sc-rollup-client-alpha rpc get /global/sc_rollup_address "[SC_ROLLUP_HASH]" -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1879.106 units (will add 100 for safety) +Estimated gas: 1002.980 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -49,35 +49,33 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000527 + Fee to the baker: ꜩ0.000399 Expected counter: 1 - Gas limit: 1980 + Gas limit: 1103 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000527 - payload fees(the block proposer) ....... +ꜩ0.000527 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000399 + payload fees(the block proposer) ....... +ꜩ0.000399 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1879.234 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 3 + Consumed gas: 1002.980 + Resulting inbox state: { level = 3 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 5 - starting_level_of_current_commitment_period = 2 - message_counter = 5 + nb_messages_in_commitment_period = 10 + message_counter = 6 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 1 + index = 2 back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1879.328 units (will add 100 for safety) +Estimated gas: 1002.980 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -88,36 +86,33 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000527 + Fee to the baker: ꜩ0.000399 Expected counter: 2 - Gas limit: 1980 + Gas limit: 1103 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000527 - payload fees(the block proposer) ....... +ꜩ0.000527 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000399 + payload fees(the block proposer) ....... +ꜩ0.000399 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1879.456 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 4 + Consumed gas: 1002.980 + Resulting inbox state: { level = 4 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 10 - starting_level_of_current_commitment_period = 2 - message_counter = 5 + nb_messages_in_commitment_period = 17 + message_counter = 6 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 2 + index = 3 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1879.535 units (will add 100 for safety) +Estimated gas: 1002.980 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -128,36 +123,34 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000527 + Fee to the baker: ꜩ0.000399 Expected counter: 3 - Gas limit: 1980 + Gas limit: 1103 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000527 - payload fees(the block proposer) ....... +ꜩ0.000527 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000399 + payload fees(the block proposer) ....... +ꜩ0.000399 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1879.535 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 5 + Consumed gas: 1002.980 + Resulting inbox state: { level = 5 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 15 - starting_level_of_current_commitment_period = 2 - message_counter = 5 + nb_messages_in_commitment_period = 24 + message_counter = 6 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 3 + index = 4 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1879.535 units (will add 100 for safety) +Estimated gas: 1002.980 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -168,27 +161,24 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000527 + Fee to the baker: ꜩ0.000399 Expected counter: 4 - Gas limit: 1980 + Gas limit: 1103 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000527 - payload fees(the block proposer) ....... +ꜩ0.000527 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000399 + payload fees(the block proposer) ....... +ꜩ0.000399 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1879.663 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 6 + Consumed gas: 1002.980 + Resulting inbox state: { level = 6 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 20 - starting_level_of_current_commitment_period = 2 - message_counter = 5 + nb_messages_in_commitment_period = 31 + message_counter = 6 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 4 + index = 5 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] @@ -196,9 +186,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1879.742 units (will add 100 for safety) +Estimated gas: 1002.980 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -209,27 +199,24 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000527 + Fee to the baker: ꜩ0.000399 Expected counter: 5 - Gas limit: 1980 + Gas limit: 1103 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000527 - payload fees(the block proposer) ....... +ꜩ0.000527 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000399 + payload fees(the block proposer) ....... +ꜩ0.000399 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1879.742 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 7 + Consumed gas: 1002.980 + Resulting inbox state: { level = 7 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 25 - starting_level_of_current_commitment_period = 2 - message_counter = 5 + nb_messages_in_commitment_period = 38 + message_counter = 6 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 5 + index = 6 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] @@ -237,9 +224,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1879.742 units (will add 100 for safety) +Estimated gas: 1002.980 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -250,27 +237,24 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000527 + Fee to the baker: ꜩ0.000399 Expected counter: 6 - Gas limit: 1980 + Gas limit: 1103 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000527 - payload fees(the block proposer) ....... +ꜩ0.000527 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000399 + payload fees(the block proposer) ....... +ꜩ0.000399 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1879.742 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 8 + Consumed gas: 1002.980 + Resulting inbox state: { level = 8 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 30 - starting_level_of_current_commitment_period = 2 - message_counter = 5 + nb_messages_in_commitment_period = 45 + message_counter = 6 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 6 + index = 7 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] @@ -278,9 +262,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1879.742 units (will add 100 for safety) +Estimated gas: 1002.980 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -291,37 +275,35 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000527 + Fee to the baker: ꜩ0.000399 Expected counter: 7 - Gas limit: 1980 + Gas limit: 1103 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000527 - payload fees(the block proposer) ....... +ꜩ0.000527 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000399 + payload fees(the block proposer) ....... +ꜩ0.000399 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1879.742 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 9 + Consumed gas: 1002.980 + Resulting inbox state: { level = 9 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 35 - starting_level_of_current_commitment_period = 2 - message_counter = 5 + nb_messages_in_commitment_period = 52 + message_counter = 6 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 7 + index = 8 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1879.742 units (will add 100 for safety) +Estimated gas: 1002.980 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -332,27 +314,24 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000527 + Fee to the baker: ꜩ0.000399 Expected counter: 8 - Gas limit: 1980 + Gas limit: 1103 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000527 - payload fees(the block proposer) ....... +ꜩ0.000527 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000399 + payload fees(the block proposer) ....... +ꜩ0.000399 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1879.870 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 10 + Consumed gas: 1002.980 + Resulting inbox state: { level = 10 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 40 - starting_level_of_current_commitment_period = 2 - message_counter = 5 + nb_messages_in_commitment_period = 59 + message_counter = 6 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 8 + index = 9 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] @@ -361,9 +340,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1879.949 units (will add 100 for safety) +Estimated gas: 1002.980 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -374,27 +353,24 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000527 + Fee to the baker: ꜩ0.000399 Expected counter: 9 - Gas limit: 1980 + Gas limit: 1103 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000527 - payload fees(the block proposer) ....... +ꜩ0.000527 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000399 + payload fees(the block proposer) ....... +ꜩ0.000399 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1879.949 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 11 + Consumed gas: 1002.980 + Resulting inbox state: { level = 11 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 45 - starting_level_of_current_commitment_period = 2 - message_counter = 5 + nb_messages_in_commitment_period = 66 + message_counter = 6 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 9 + index = 10 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] @@ -403,9 +379,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1879.949 units (will add 100 for safety) +Estimated gas: 1002.980 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -416,27 +392,24 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000527 + Fee to the baker: ꜩ0.000399 Expected counter: 10 - Gas limit: 1980 + Gas limit: 1103 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000527 - payload fees(the block proposer) ....... +ꜩ0.000527 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000399 + payload fees(the block proposer) ....... +ꜩ0.000399 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1879.949 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 12 + Consumed gas: 1002.980 + Resulting inbox state: { level = 12 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 50 - starting_level_of_current_commitment_period = 2 - message_counter = 5 + nb_messages_in_commitment_period = 73 + message_counter = 6 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 10 + index = 11 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] @@ -445,9 +418,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1879.949 units (will add 100 for safety) +Estimated gas: 1002.980 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -458,27 +431,24 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000527 + Fee to the baker: ꜩ0.000399 Expected counter: 11 - Gas limit: 1980 + Gas limit: 1103 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000527 - payload fees(the block proposer) ....... +ꜩ0.000527 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000399 + payload fees(the block proposer) ....... +ꜩ0.000399 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1879.949 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 13 + Consumed gas: 1002.980 + Resulting inbox state: { level = 13 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 55 - starting_level_of_current_commitment_period = 2 - message_counter = 5 + nb_messages_in_commitment_period = 80 + message_counter = 6 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 11 + index = 12 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] @@ -487,9 +457,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1879.949 units (will add 100 for safety) +Estimated gas: 1002.980 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -500,27 +470,24 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000527 + Fee to the baker: ꜩ0.000399 Expected counter: 12 - Gas limit: 1980 + Gas limit: 1103 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000527 - payload fees(the block proposer) ....... +ꜩ0.000527 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000399 + payload fees(the block proposer) ....... +ꜩ0.000399 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1879.949 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 14 + Consumed gas: 1002.980 + Resulting inbox state: { level = 14 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 60 - starting_level_of_current_commitment_period = 2 - message_counter = 5 + nb_messages_in_commitment_period = 87 + message_counter = 6 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 12 + index = 13 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] @@ -529,9 +496,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1879.949 units (will add 100 for safety) +Estimated gas: 1002.980 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -542,27 +509,24 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000527 + Fee to the baker: ꜩ0.000399 Expected counter: 13 - Gas limit: 1980 + Gas limit: 1103 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000527 - payload fees(the block proposer) ....... +ꜩ0.000527 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000399 + payload fees(the block proposer) ....... +ꜩ0.000399 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1879.949 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 15 + Consumed gas: 1002.980 + Resulting inbox state: { level = 15 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 65 - starting_level_of_current_commitment_period = 2 - message_counter = 5 + nb_messages_in_commitment_period = 94 + message_counter = 6 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 13 + index = 14 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] @@ -571,9 +535,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1879.949 units (will add 100 for safety) +Estimated gas: 1002.980 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -584,27 +548,24 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000527 + Fee to the baker: ꜩ0.000399 Expected counter: 14 - Gas limit: 1980 + Gas limit: 1103 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000527 - payload fees(the block proposer) ....... +ꜩ0.000527 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000399 + payload fees(the block proposer) ....... +ꜩ0.000399 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1879.949 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 16 + Consumed gas: 1002.980 + Resulting inbox state: { level = 16 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 70 - starting_level_of_current_commitment_period = 2 - message_counter = 5 + nb_messages_in_commitment_period = 101 + message_counter = 6 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 14 + index = 15 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] @@ -613,9 +574,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1879.949 units (will add 100 for safety) +Estimated gas: 1002.980 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -626,31 +587,29 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000527 + Fee to the baker: ꜩ0.000399 Expected counter: 15 - Gas limit: 1980 + Gas limit: 1103 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000527 - payload fees(the block proposer) ....... +ꜩ0.000527 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000399 + payload fees(the block proposer) ....... +ꜩ0.000399 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1879.949 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 17 + Consumed gas: 1002.980 + Resulting inbox state: { level = 17 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 75 - starting_level_of_current_commitment_period = 2 - message_counter = 5 + nb_messages_in_commitment_period = 108 + message_counter = 6 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 15 + index = 16 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] } @@ -665,13 +624,13 @@ This sequence of operations was run: 15 ./octez-sc-rollup-client-alpha rpc get /global/block/head/num_messages -"5" +"7" ./octez-sc-rollup-client-alpha rpc get /global/block/head/status "Waiting for input message" ./octez-sc-rollup-client-alpha rpc get /global/block/head/ticks -"5" +"7" ./octez-sc-rollup-client-alpha rpc get /global/block/head/state_hash "[SC_ROLLUP_PVM_STATE_HASH]" diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - a late rollup should catch up (late).out b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - a late rollup should catch up (late).out index 8619af933353..6689819e1f5f 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - a late rollup should catch up (late).out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - a late rollup should catch up (late).out @@ -1,8 +1,8 @@ ./octez-client --wait none originate sc rollup from bootstrap1 of kind wasm_2_0_0 of type string booting with 010fa03030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303000d5024ff4c33df62141bd485af4154641aa9220c5dede9aed006eb5d3c88bff3b --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3126.593 units (will add 100 for safety) -Estimated storage: 10691 bytes added (will add 20 for safety) +Estimated gas: 2926.069 units (will add 100 for safety) +Estimated storage: 10560 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,23 +12,23 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.004713 + Fee to the baker: ꜩ0.004693 Expected counter: 1 - Gas limit: 3227 - Storage limit: 10711 bytes + Gas limit: 3027 + Storage limit: 10580 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004713 - payload fees(the block proposer) ....... +ꜩ0.004713 + [PUBLIC_KEY_HASH] ... -ꜩ0.004693 + payload fees(the block proposer) ....... +ꜩ0.004693 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string Boot sector Blake2B hash: '789431137a40057a39867cbc5cd7f984139360559c655c0508821b9be8047a02' This smart contract rollup origination was successfully applied - Consumed gas: 3126.593 - Storage size: 10691 bytes + Consumed gas: 2926.069 + Storage size: 10560 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ2.67275 - storage fees ........................... +ꜩ2.67275 + [PUBLIC_KEY_HASH] ... -ꜩ2.64 + storage fees ........................... +ꜩ2.64 diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - a rollup should recover on interruption before first inbox (.out b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - a rollup should recover on interruption before first inbox (.out index 8619af933353..6689819e1f5f 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - a rollup should recover on interruption before first inbox (.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - a rollup should recover on interruption before first inbox (.out @@ -1,8 +1,8 @@ ./octez-client --wait none originate sc rollup from bootstrap1 of kind wasm_2_0_0 of type string booting with 010fa03030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303000d5024ff4c33df62141bd485af4154641aa9220c5dede9aed006eb5d3c88bff3b --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3126.593 units (will add 100 for safety) -Estimated storage: 10691 bytes added (will add 20 for safety) +Estimated gas: 2926.069 units (will add 100 for safety) +Estimated storage: 10560 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,23 +12,23 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.004713 + Fee to the baker: ꜩ0.004693 Expected counter: 1 - Gas limit: 3227 - Storage limit: 10711 bytes + Gas limit: 3027 + Storage limit: 10580 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004713 - payload fees(the block proposer) ....... +ꜩ0.004713 + [PUBLIC_KEY_HASH] ... -ꜩ0.004693 + payload fees(the block proposer) ....... +ꜩ0.004693 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string Boot sector Blake2B hash: '789431137a40057a39867cbc5cd7f984139360559c655c0508821b9be8047a02' This smart contract rollup origination was successfully applied - Consumed gas: 3126.593 - Storage size: 10691 bytes + Consumed gas: 2926.069 + Storage size: 10560 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ2.67275 - storage fees ........................... +ꜩ2.67275 + [PUBLIC_KEY_HASH] ... -ꜩ2.64 + storage fees ........................... +ꜩ2.64 diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - an outbox message should be executable (_0).out b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - an outbox message should be executable (_0).out index 8619af933353..6689819e1f5f 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - an outbox message should be executable (_0).out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - an outbox message should be executable (_0).out @@ -1,8 +1,8 @@ ./octez-client --wait none originate sc rollup from bootstrap1 of kind wasm_2_0_0 of type string booting with 010fa03030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303000d5024ff4c33df62141bd485af4154641aa9220c5dede9aed006eb5d3c88bff3b --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3126.593 units (will add 100 for safety) -Estimated storage: 10691 bytes added (will add 20 for safety) +Estimated gas: 2926.069 units (will add 100 for safety) +Estimated storage: 10560 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,23 +12,23 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.004713 + Fee to the baker: ꜩ0.004693 Expected counter: 1 - Gas limit: 3227 - Storage limit: 10711 bytes + Gas limit: 3027 + Storage limit: 10580 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004713 - payload fees(the block proposer) ....... +ꜩ0.004713 + [PUBLIC_KEY_HASH] ... -ꜩ0.004693 + payload fees(the block proposer) ....... +ꜩ0.004693 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string Boot sector Blake2B hash: '789431137a40057a39867cbc5cd7f984139360559c655c0508821b9be8047a02' This smart contract rollup origination was successfully applied - Consumed gas: 3126.593 - Storage size: 10691 bytes + Consumed gas: 2926.069 + Storage size: 10560 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ2.67275 - storage fees ........................... +ꜩ2.67275 + [PUBLIC_KEY_HASH] ... -ꜩ2.64 + storage fees ........................... +ꜩ2.64 diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - an outbox message should be executable (_5).out b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - an outbox message should be executable (_5).out index 8619af933353..6689819e1f5f 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - an outbox message should be executable (_5).out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - an outbox message should be executable (_5).out @@ -1,8 +1,8 @@ ./octez-client --wait none originate sc rollup from bootstrap1 of kind wasm_2_0_0 of type string booting with 010fa03030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303000d5024ff4c33df62141bd485af4154641aa9220c5dede9aed006eb5d3c88bff3b --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3126.593 units (will add 100 for safety) -Estimated storage: 10691 bytes added (will add 20 for safety) +Estimated gas: 2926.069 units (will add 100 for safety) +Estimated storage: 10560 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,23 +12,23 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.004713 + Fee to the baker: ꜩ0.004693 Expected counter: 1 - Gas limit: 3227 - Storage limit: 10711 bytes + Gas limit: 3027 + Storage limit: 10580 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004713 - payload fees(the block proposer) ....... +ꜩ0.004713 + [PUBLIC_KEY_HASH] ... -ꜩ0.004693 + payload fees(the block proposer) ....... +ꜩ0.004693 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string Boot sector Blake2B hash: '789431137a40057a39867cbc5cd7f984139360559c655c0508821b9be8047a02' This smart contract rollup origination was successfully applied - Consumed gas: 3126.593 - Storage size: 10691 bytes + Consumed gas: 2926.069 + Storage size: 10560 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ2.67275 - storage fees ........................... +ꜩ2.67275 + [PUBLIC_KEY_HASH] ... -ꜩ2.64 + storage fees ........................... +ꜩ2.64 diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - an outbox message should be executable (aux_0).out b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - an outbox message should be executable (aux_0).out index 8619af933353..6689819e1f5f 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - an outbox message should be executable (aux_0).out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - an outbox message should be executable (aux_0).out @@ -1,8 +1,8 @@ ./octez-client --wait none originate sc rollup from bootstrap1 of kind wasm_2_0_0 of type string booting with 010fa03030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303000d5024ff4c33df62141bd485af4154641aa9220c5dede9aed006eb5d3c88bff3b --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3126.593 units (will add 100 for safety) -Estimated storage: 10691 bytes added (will add 20 for safety) +Estimated gas: 2926.069 units (will add 100 for safety) +Estimated storage: 10560 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,23 +12,23 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.004713 + Fee to the baker: ꜩ0.004693 Expected counter: 1 - Gas limit: 3227 - Storage limit: 10711 bytes + Gas limit: 3027 + Storage limit: 10580 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004713 - payload fees(the block proposer) ....... +ꜩ0.004713 + [PUBLIC_KEY_HASH] ... -ꜩ0.004693 + payload fees(the block proposer) ....... +ꜩ0.004693 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string Boot sector Blake2B hash: '789431137a40057a39867cbc5cd7f984139360559c655c0508821b9be8047a02' This smart contract rollup origination was successfully applied - Consumed gas: 3126.593 - Storage size: 10691 bytes + Consumed gas: 2926.069 + Storage size: 10560 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ2.67275 - storage fees ........................... +ꜩ2.67275 + [PUBLIC_KEY_HASH] ... -ꜩ2.64 + storage fees ........................... +ꜩ2.64 diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - an outbox message should be executable (aux_5).out b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - an outbox message should be executable (aux_5).out index 8619af933353..6689819e1f5f 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - an outbox message should be executable (aux_5).out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - an outbox message should be executable (aux_5).out @@ -1,8 +1,8 @@ ./octez-client --wait none originate sc rollup from bootstrap1 of kind wasm_2_0_0 of type string booting with 010fa03030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303000d5024ff4c33df62141bd485af4154641aa9220c5dede9aed006eb5d3c88bff3b --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3126.593 units (will add 100 for safety) -Estimated storage: 10691 bytes added (will add 20 for safety) +Estimated gas: 2926.069 units (will add 100 for safety) +Estimated storage: 10560 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,23 +12,23 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.004713 + Fee to the baker: ꜩ0.004693 Expected counter: 1 - Gas limit: 3227 - Storage limit: 10711 bytes + Gas limit: 3027 + Storage limit: 10580 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004713 - payload fees(the block proposer) ....... +ꜩ0.004713 + [PUBLIC_KEY_HASH] ... -ꜩ0.004693 + payload fees(the block proposer) ....... +ꜩ0.004693 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string Boot sector Blake2B hash: '789431137a40057a39867cbc5cd7f984139360559c655c0508821b9be8047a02' This smart contract rollup origination was successfully applied - Consumed gas: 3126.593 - Storage size: 10691 bytes + Consumed gas: 2926.069 + Storage size: 10560 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ2.67275 - storage fees ........................... +ꜩ2.67275 + [PUBLIC_KEY_HASH] ... -ꜩ2.64 + storage fees ........................... +ꜩ2.64 diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - consecutive commitments.out b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - consecutive commitments.out index 5d5d8109c705..c9bec9628dfd 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - consecutive commitments.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - consecutive commitments.out @@ -1,8 +1,8 @@ ./octez-client --wait none originate sc rollup from bootstrap1 of kind wasm_2_0_0 of type string booting with 010fa03030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303000d5024ff4c33df62141bd485af4154641aa9220c5dede9aed006eb5d3c88bff3b --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3126.593 units (will add 100 for safety) -Estimated storage: 10691 bytes added (will add 20 for safety) +Estimated gas: 2926.069 units (will add 100 for safety) +Estimated storage: 10560 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,25 +12,25 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.004713 + Fee to the baker: ꜩ0.004693 Expected counter: 1 - Gas limit: 3227 - Storage limit: 10711 bytes + Gas limit: 3027 + Storage limit: 10580 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004713 - payload fees(the block proposer) ....... +ꜩ0.004713 + [PUBLIC_KEY_HASH] ... -ꜩ0.004693 + payload fees(the block proposer) ....... +ꜩ0.004693 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string Boot sector Blake2B hash: '789431137a40057a39867cbc5cd7f984139360559c655c0508821b9be8047a02' This smart contract rollup origination was successfully applied - Consumed gas: 3126.593 - Storage size: 10691 bytes + Consumed gas: 2926.069 + Storage size: 10560 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ2.67275 - storage fees ........................... +ꜩ2.67275 + [PUBLIC_KEY_HASH] ... -ꜩ2.64 + storage fees ........................... +ꜩ2.64 ./octez-client --wait none publish commitment from '[PUBLIC_KEY_HASH]' for sc rollup '[SC_ROLLUP_HASH]' with compressed state '[SC_ROLLUP_PVM_STATE_HASH]' at inbox level 32 and predecessor '[SC_ROLLUP_COMMITMENT_HASH]' and number of ticks 1 diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - get genesis info of a sc rollup.out b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - get genesis info of a sc rollup.out index 8619af933353..6689819e1f5f 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - get genesis info of a sc rollup.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - get genesis info of a sc rollup.out @@ -1,8 +1,8 @@ ./octez-client --wait none originate sc rollup from bootstrap1 of kind wasm_2_0_0 of type string booting with 010fa03030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303000d5024ff4c33df62141bd485af4154641aa9220c5dede9aed006eb5d3c88bff3b --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3126.593 units (will add 100 for safety) -Estimated storage: 10691 bytes added (will add 20 for safety) +Estimated gas: 2926.069 units (will add 100 for safety) +Estimated storage: 10560 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,23 +12,23 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.004713 + Fee to the baker: ꜩ0.004693 Expected counter: 1 - Gas limit: 3227 - Storage limit: 10711 bytes + Gas limit: 3027 + Storage limit: 10580 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004713 - payload fees(the block proposer) ....... +ꜩ0.004713 + [PUBLIC_KEY_HASH] ... -ꜩ0.004693 + payload fees(the block proposer) ....... +ꜩ0.004693 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string Boot sector Blake2B hash: '789431137a40057a39867cbc5cd7f984139360559c655c0508821b9be8047a02' This smart contract rollup origination was successfully applied - Consumed gas: 3126.593 - Storage size: 10691 bytes + Consumed gas: 2926.069 + Storage size: 10560 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ2.67275 - storage fees ........................... +ꜩ2.67275 + [PUBLIC_KEY_HASH] ... -ꜩ2.64 + storage fees ........................... +ꜩ2.64 diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - get last cemented commitment hash and inbox level of a sc ro.out b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - get last cemented commitment hash and inbox level of a sc ro.out index 8619af933353..6689819e1f5f 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - get last cemented commitment hash and inbox level of a sc ro.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - get last cemented commitment hash and inbox level of a sc ro.out @@ -1,8 +1,8 @@ ./octez-client --wait none originate sc rollup from bootstrap1 of kind wasm_2_0_0 of type string booting with 010fa03030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303000d5024ff4c33df62141bd485af4154641aa9220c5dede9aed006eb5d3c88bff3b --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3126.593 units (will add 100 for safety) -Estimated storage: 10691 bytes added (will add 20 for safety) +Estimated gas: 2926.069 units (will add 100 for safety) +Estimated storage: 10560 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,23 +12,23 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.004713 + Fee to the baker: ꜩ0.004693 Expected counter: 1 - Gas limit: 3227 - Storage limit: 10711 bytes + Gas limit: 3027 + Storage limit: 10580 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004713 - payload fees(the block proposer) ....... +ꜩ0.004713 + [PUBLIC_KEY_HASH] ... -ꜩ0.004693 + payload fees(the block proposer) ....... +ꜩ0.004693 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string Boot sector Blake2B hash: '789431137a40057a39867cbc5cd7f984139360559c655c0508821b9be8047a02' This smart contract rollup origination was successfully applied - Consumed gas: 3126.593 - Storage size: 10691 bytes + Consumed gas: 2926.069 + Storage size: 10560 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ2.67275 - storage fees ........................... +ꜩ2.67275 + [PUBLIC_KEY_HASH] ... -ꜩ2.64 + storage fees ........................... +ꜩ2.64 diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - maintenance of inbox in the rollup node (basic).out b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - maintenance of inbox in the rollup node (basic).out index 057610b28b7f..a555156a07d3 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - maintenance of inbox in the rollup node (basic).out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - maintenance of inbox in the rollup node (basic).out @@ -1,8 +1,8 @@ ./octez-client --wait none originate sc rollup from bootstrap1 of kind wasm_2_0_0 of type string booting with 010fa03030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303000d5024ff4c33df62141bd485af4154641aa9220c5dede9aed006eb5d3c88bff3b --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3126.593 units (will add 100 for safety) -Estimated storage: 10691 bytes added (will add 20 for safety) +Estimated gas: 2926.069 units (will add 100 for safety) +Estimated storage: 10560 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,30 +12,30 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.004713 + Fee to the baker: ꜩ0.004693 Expected counter: 1 - Gas limit: 3227 - Storage limit: 10711 bytes + Gas limit: 3027 + Storage limit: 10580 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004713 - payload fees(the block proposer) ....... +ꜩ0.004713 + [PUBLIC_KEY_HASH] ... -ꜩ0.004693 + payload fees(the block proposer) ....... +ꜩ0.004693 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string Boot sector Blake2B hash: '789431137a40057a39867cbc5cd7f984139360559c655c0508821b9be8047a02' This smart contract rollup origination was successfully applied - Consumed gas: 3126.593 - Storage size: 10691 bytes + Consumed gas: 2926.069 + Storage size: 10560 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ2.67275 - storage fees ........................... +ꜩ2.67275 + [PUBLIC_KEY_HASH] ... -ꜩ2.64 + storage fees ........................... +ꜩ2.64 -./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1876.722 units (will add 100 for safety) +Estimated gas: 1000.596 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -46,35 +46,33 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000479 + Fee to the baker: ꜩ0.000351 Expected counter: 1 - Gas limit: 1977 + Gas limit: 1101 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000479 - payload fees(the block proposer) ....... +ꜩ0.000479 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000351 + payload fees(the block proposer) ....... +ꜩ0.000351 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1876.850 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 3 + Consumed gas: 1000.596 + Resulting inbox state: { level = 3 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 1 - starting_level_of_current_commitment_period = 2 - message_counter = 1 + nb_messages_in_commitment_period = 6 + message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 1 + index = 2 back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1877.540 units (will add 100 for safety) +Estimated gas: 1001.192 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -85,27 +83,24 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000491 + Fee to the baker: ꜩ0.000363 Expected counter: 2 - Gas limit: 1978 + Gas limit: 1102 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000491 - payload fees(the block proposer) ....... +ꜩ0.000491 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000363 + payload fees(the block proposer) ....... +ꜩ0.000363 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1877.668 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 4 + Consumed gas: 1001.192 + Resulting inbox state: { level = 4 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 3 - starting_level_of_current_commitment_period = 2 - message_counter = 2 + nb_messages_in_commitment_period = 10 + message_counter = 3 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 2 + index = 3 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - maintenance of inbox in the rollup node (disconnects).out b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - maintenance of inbox in the rollup node (disconnects).out index 14d507a9b6d3..d5a377f706d4 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - maintenance of inbox in the rollup node (disconnects).out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - maintenance of inbox in the rollup node (disconnects).out @@ -1,8 +1,8 @@ ./octez-client --wait none originate sc rollup from bootstrap1 of kind wasm_2_0_0 of type string booting with 010fa03030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303000d5024ff4c33df62141bd485af4154641aa9220c5dede9aed006eb5d3c88bff3b --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3126.593 units (will add 100 for safety) -Estimated storage: 10691 bytes added (will add 20 for safety) +Estimated gas: 2926.069 units (will add 100 for safety) +Estimated storage: 10560 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,30 +12,30 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.004713 + Fee to the baker: ꜩ0.004693 Expected counter: 1 - Gas limit: 3227 - Storage limit: 10711 bytes + Gas limit: 3027 + Storage limit: 10580 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004713 - payload fees(the block proposer) ....... +ꜩ0.004713 + [PUBLIC_KEY_HASH] ... -ꜩ0.004693 + payload fees(the block proposer) ....... +ꜩ0.004693 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string Boot sector Blake2B hash: '789431137a40057a39867cbc5cd7f984139360559c655c0508821b9be8047a02' This smart contract rollup origination was successfully applied - Consumed gas: 3126.593 - Storage size: 10691 bytes + Consumed gas: 2926.069 + Storage size: 10560 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ2.67275 - storage fees ........................... +ꜩ2.67275 + [PUBLIC_KEY_HASH] ... -ꜩ2.64 + storage fees ........................... +ꜩ2.64 -./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1876.722 units (will add 100 for safety) +Estimated gas: 1000.596 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -46,35 +46,33 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000479 + Fee to the baker: ꜩ0.000351 Expected counter: 1 - Gas limit: 1977 + Gas limit: 1101 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000479 - payload fees(the block proposer) ....... +ꜩ0.000479 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000351 + payload fees(the block proposer) ....... +ꜩ0.000351 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1876.850 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 3 + Consumed gas: 1000.596 + Resulting inbox state: { level = 3 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 1 - starting_level_of_current_commitment_period = 2 - message_counter = 1 + nb_messages_in_commitment_period = 6 + message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 1 + index = 2 back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1877.540 units (will add 100 for safety) +Estimated gas: 1001.192 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -85,36 +83,33 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000491 + Fee to the baker: ꜩ0.000363 Expected counter: 2 - Gas limit: 1978 + Gas limit: 1102 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000491 - payload fees(the block proposer) ....... +ꜩ0.000491 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000363 + payload fees(the block proposer) ....... +ꜩ0.000363 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1877.668 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 4 + Consumed gas: 1001.192 + Resulting inbox state: { level = 4 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 3 - starting_level_of_current_commitment_period = 2 - message_counter = 2 + nb_messages_in_commitment_period = 10 + message_counter = 3 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 2 + index = 3 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1877.151 units (will add 100 for safety) +Estimated gas: 1000.596 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -125,36 +120,34 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000479 + Fee to the baker: ꜩ0.000351 Expected counter: 3 - Gas limit: 1978 + Gas limit: 1101 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000479 - payload fees(the block proposer) ....... +ꜩ0.000479 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000351 + payload fees(the block proposer) ....... +ꜩ0.000351 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1877.151 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 5 + Consumed gas: 1000.596 + Resulting inbox state: { level = 5 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 4 - starting_level_of_current_commitment_period = 2 - message_counter = 1 + nb_messages_in_commitment_period = 13 + message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 3 + index = 4 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1877.747 units (will add 100 for safety) +Estimated gas: 1001.192 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -165,27 +158,24 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000491 + Fee to the baker: ꜩ0.000363 Expected counter: 4 - Gas limit: 1978 + Gas limit: 1102 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000491 - payload fees(the block proposer) ....... +ꜩ0.000491 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000363 + payload fees(the block proposer) ....... +ꜩ0.000363 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1877.875 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 6 + Consumed gas: 1001.192 + Resulting inbox state: { level = 6 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 6 - starting_level_of_current_commitment_period = 2 - message_counter = 2 + nb_messages_in_commitment_period = 17 + message_counter = 3 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 4 + index = 5 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - maintenance of inbox in the rollup node (handles_chain_reorg.out b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - maintenance of inbox in the rollup node (handles_chain_reorg.out index 5ee8f601d678..e1476b5d2a99 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - maintenance of inbox in the rollup node (handles_chain_reorg.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - maintenance of inbox in the rollup node (handles_chain_reorg.out @@ -1,8 +1,8 @@ ./octez-client --wait none originate sc rollup from bootstrap1 of kind wasm_2_0_0 of type string booting with 010fa03030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303000d5024ff4c33df62141bd485af4154641aa9220c5dede9aed006eb5d3c88bff3b --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3126.593 units (will add 100 for safety) -Estimated storage: 10691 bytes added (will add 20 for safety) +Estimated gas: 2926.069 units (will add 100 for safety) +Estimated storage: 10560 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,30 +12,30 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.004713 + Fee to the baker: ꜩ0.004693 Expected counter: 1 - Gas limit: 3227 - Storage limit: 10711 bytes + Gas limit: 3027 + Storage limit: 10580 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004713 - payload fees(the block proposer) ....... +ꜩ0.004713 + [PUBLIC_KEY_HASH] ... -ꜩ0.004693 + payload fees(the block proposer) ....... +ꜩ0.004693 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string Boot sector Blake2B hash: '789431137a40057a39867cbc5cd7f984139360559c655c0508821b9be8047a02' This smart contract rollup origination was successfully applied - Consumed gas: 3126.593 - Storage size: 10691 bytes + Consumed gas: 2926.069 + Storage size: 10560 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ2.67275 - storage fees ........................... +ꜩ2.67275 + [PUBLIC_KEY_HASH] ... -ꜩ2.64 + storage fees ........................... +ꜩ2.64 -./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1876.722 units (will add 100 for safety) +Estimated gas: 1000.596 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -46,35 +46,33 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000479 + Fee to the baker: ꜩ0.000351 Expected counter: 1 - Gas limit: 1977 + Gas limit: 1101 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000479 - payload fees(the block proposer) ....... +ꜩ0.000479 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000351 + payload fees(the block proposer) ....... +ꜩ0.000351 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1876.850 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 3 + Consumed gas: 1000.596 + Resulting inbox state: { level = 3 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 1 - starting_level_of_current_commitment_period = 2 - message_counter = 1 + nb_messages_in_commitment_period = 6 + message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 1 + index = 2 back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1876.944 units (will add 100 for safety) +Estimated gas: 1000.596 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -85,36 +83,33 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000479 + Fee to the baker: ꜩ0.000351 Expected counter: 2 - Gas limit: 1977 + Gas limit: 1101 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000479 - payload fees(the block proposer) ....... +ꜩ0.000479 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000351 + payload fees(the block proposer) ....... +ꜩ0.000351 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1877.072 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 4 + Consumed gas: 1000.596 + Resulting inbox state: { level = 4 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 2 - starting_level_of_current_commitment_period = 2 - message_counter = 1 + nb_messages_in_commitment_period = 9 + message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 2 + index = 3 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1876.944 units (will add 100 for safety) +Estimated gas: 1000.596 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -125,36 +120,33 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000479 + Fee to the baker: ꜩ0.000351 Expected counter: 2 - Gas limit: 1977 + Gas limit: 1101 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000479 - payload fees(the block proposer) ....... +ꜩ0.000479 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000351 + payload fees(the block proposer) ....... +ꜩ0.000351 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1877.072 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 4 + Consumed gas: 1000.596 + Resulting inbox state: { level = 4 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 2 - starting_level_of_current_commitment_period = 2 - message_counter = 1 + nb_messages_in_commitment_period = 9 + message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 2 + index = 3 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1877.151 units (will add 100 for safety) +Estimated gas: 1000.596 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -165,29 +157,27 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000479 + Fee to the baker: ꜩ0.000351 Expected counter: 3 - Gas limit: 1978 + Gas limit: 1101 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000479 - payload fees(the block proposer) ....... +ꜩ0.000479 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000351 + payload fees(the block proposer) ....... +ꜩ0.000351 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1877.151 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 5 + Consumed gas: 1000.596 + Resulting inbox state: { level = 5 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 3 - starting_level_of_current_commitment_period = 2 - message_counter = 1 + nb_messages_in_commitment_period = 12 + message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 3 + index = 4 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] } diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - node advances PVM state with internal messages.out b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - node advances PVM state with internal messages.out index 588b6e1e033b..c4ed906436d6 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - node advances PVM state with internal messages.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - node advances PVM state with internal messages.out @@ -1,8 +1,8 @@ ./octez-client --wait none originate sc rollup from bootstrap1 of kind wasm_2_0_0 of type string booting with 010fa03030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303000d5024ff4c33df62141bd485af4154641aa9220c5dede9aed006eb5d3c88bff3b --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3126.593 units (will add 100 for safety) -Estimated storage: 10691 bytes added (will add 20 for safety) +Estimated gas: 2926.069 units (will add 100 for safety) +Estimated storage: 10560 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,25 +12,25 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.004713 + Fee to the baker: ꜩ0.004693 Expected counter: 1 - Gas limit: 3227 - Storage limit: 10711 bytes + Gas limit: 3027 + Storage limit: 10580 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004713 - payload fees(the block proposer) ....... +ꜩ0.004713 + [PUBLIC_KEY_HASH] ... -ꜩ0.004693 + payload fees(the block proposer) ....... +ꜩ0.004693 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string Boot sector Blake2B hash: '789431137a40057a39867cbc5cd7f984139360559c655c0508821b9be8047a02' This smart contract rollup origination was successfully applied - Consumed gas: 3126.593 - Storage size: 10691 bytes + Consumed gas: 2926.069 + Storage size: 10560 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ2.67275 - storage fees ........................... +ꜩ2.67275 + [PUBLIC_KEY_HASH] ... -ꜩ2.64 + storage fees ........................... +ꜩ2.64 ./octez-client rpc get '/chains/main/blocks/head/context/sc_rollup/[SC_ROLLUP_HASH]/genesis_info' @@ -41,118 +41,118 @@ This sequence of operations was run: "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"0" +"3" ./octez-sc-rollup-client-alpha rpc get /global/block/head/state_hash "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"2" +"6" ./octez-sc-rollup-client-alpha rpc get /global/block/head/state_hash "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"2" +"6" ./octez-sc-rollup-client-alpha rpc get /global/block/head/state_hash "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"3" +"9" ./octez-sc-rollup-client-alpha rpc get /global/block/head/state_hash "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"3" +"9" ./octez-sc-rollup-client-alpha rpc get /global/block/head/state_hash "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"4" +"12" ./octez-sc-rollup-client-alpha rpc get /global/block/head/state_hash "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"4" +"12" ./octez-sc-rollup-client-alpha rpc get /global/block/head/state_hash "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"5" +"15" ./octez-sc-rollup-client-alpha rpc get /global/block/head/state_hash "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"5" +"15" ./octez-sc-rollup-client-alpha rpc get /global/block/head/state_hash "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"6" +"18" ./octez-sc-rollup-client-alpha rpc get /global/block/head/state_hash "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"6" +"18" ./octez-sc-rollup-client-alpha rpc get /global/block/head/state_hash "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"7" +"21" ./octez-sc-rollup-client-alpha rpc get /global/block/head/state_hash "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"7" +"21" ./octez-sc-rollup-client-alpha rpc get /global/block/head/state_hash "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"8" +"24" ./octez-sc-rollup-client-alpha rpc get /global/block/head/state_hash "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"8" +"24" ./octez-sc-rollup-client-alpha rpc get /global/block/head/state_hash "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"9" +"27" ./octez-sc-rollup-client-alpha rpc get /global/block/head/state_hash "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"9" +"27" ./octez-sc-rollup-client-alpha rpc get /global/block/head/state_hash "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"10" +"30" ./octez-sc-rollup-client-alpha rpc get /global/block/head/state_hash "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"10" +"30" ./octez-sc-rollup-client-alpha rpc get /global/block/head/state_hash "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"11" +"33" diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - node advances PVM state with messages.out b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - node advances PVM state with messages.out index 2b91055161d4..1531aed752d4 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - node advances PVM state with messages.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - node advances PVM state with messages.out @@ -1,8 +1,8 @@ ./octez-client --wait none originate sc rollup from bootstrap1 of kind wasm_2_0_0 of type string booting with 010fa03030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303000d5024ff4c33df62141bd485af4154641aa9220c5dede9aed006eb5d3c88bff3b --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3126.593 units (will add 100 for safety) -Estimated storage: 10691 bytes added (will add 20 for safety) +Estimated gas: 2926.069 units (will add 100 for safety) +Estimated storage: 10560 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,25 +12,25 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.004713 + Fee to the baker: ꜩ0.004693 Expected counter: 1 - Gas limit: 3227 - Storage limit: 10711 bytes + Gas limit: 3027 + Storage limit: 10580 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004713 - payload fees(the block proposer) ....... +ꜩ0.004713 + [PUBLIC_KEY_HASH] ... -ꜩ0.004693 + payload fees(the block proposer) ....... +ꜩ0.004693 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string Boot sector Blake2B hash: '789431137a40057a39867cbc5cd7f984139360559c655c0508821b9be8047a02' This smart contract rollup origination was successfully applied - Consumed gas: 3126.593 - Storage size: 10691 bytes + Consumed gas: 2926.069 + Storage size: 10560 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ2.67275 - storage fees ........................... +ꜩ2.67275 + [PUBLIC_KEY_HASH] ... -ꜩ2.64 + storage fees ........................... +ꜩ2.64 ./octez-client rpc get '/chains/main/blocks/head/context/sc_rollup/[SC_ROLLUP_HASH]/genesis_info' @@ -43,9 +43,9 @@ This sequence of operations was run: ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks "0" -./octez-client --wait none send sc rollup message '["1 6 + value"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message '["1 6 + value"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1876.773 units (will add 100 for safety) +Estimated gas: 1000.647 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -56,28 +56,26 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000482 + Fee to the baker: ꜩ0.000354 Expected counter: 1 - Gas limit: 1977 + Gas limit: 1101 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000482 - payload fees(the block proposer) ....... +ꜩ0.000482 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000354 + payload fees(the block proposer) ....... +ꜩ0.000354 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1876.901 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 3 + Consumed gas: 1000.647 + Resulting inbox state: { level = 3 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 1 - starting_level_of_current_commitment_period = 2 - message_counter = 1 + nb_messages_in_commitment_period = 6 + message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 1 + index = 2 back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] } @@ -86,17 +84,17 @@ This sequence of operations was run: "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"2" +"4" ./octez-sc-rollup-client-alpha rpc get /global/block/head/state_hash "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"2" +"4" -./octez-client --wait none send sc rollup message '["2 8 + value"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message '["2 8 + value"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1876.995 units (will add 100 for safety) +Estimated gas: 1000.647 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -107,27 +105,24 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000482 + Fee to the baker: ꜩ0.000354 Expected counter: 2 - Gas limit: 1977 + Gas limit: 1101 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000482 - payload fees(the block proposer) ....... +ꜩ0.000482 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000354 + payload fees(the block proposer) ....... +ꜩ0.000354 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1877.123 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 4 + Consumed gas: 1000.647 + Resulting inbox state: { level = 4 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 2 - starting_level_of_current_commitment_period = 2 - message_counter = 1 + nb_messages_in_commitment_period = 9 + message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 2 + index = 3 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] @@ -138,17 +133,17 @@ This sequence of operations was run: "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"3" +"7" ./octez-sc-rollup-client-alpha rpc get /global/block/head/state_hash "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"3" +"7" -./octez-client --wait none send sc rollup message '["3 10 + value"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message '["3 10 + value"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1877.219 units (will add 100 for safety) +Estimated gas: 1000.664 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -159,29 +154,27 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000483 + Fee to the baker: ꜩ0.000355 Expected counter: 3 - Gas limit: 1978 + Gas limit: 1101 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000483 - payload fees(the block proposer) ....... +ꜩ0.000483 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000355 + payload fees(the block proposer) ....... +ꜩ0.000355 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1877.219 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 5 + Consumed gas: 1000.664 + Resulting inbox state: { level = 5 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 3 - starting_level_of_current_commitment_period = 2 - message_counter = 1 + nb_messages_in_commitment_period = 12 + message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 3 + index = 4 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] } @@ -190,17 +183,17 @@ This sequence of operations was run: "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"4" +"10" ./octez-sc-rollup-client-alpha rpc get /global/block/head/state_hash "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"4" +"10" -./octez-client --wait none send sc rollup message '["4 12 + value"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message '["4 12 + value"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1877.219 units (will add 100 for safety) +Estimated gas: 1000.664 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -211,27 +204,24 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000483 + Fee to the baker: ꜩ0.000355 Expected counter: 4 - Gas limit: 1978 + Gas limit: 1101 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000483 - payload fees(the block proposer) ....... +ꜩ0.000483 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000355 + payload fees(the block proposer) ....... +ꜩ0.000355 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1877.347 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 6 + Consumed gas: 1000.664 + Resulting inbox state: { level = 6 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 4 - starting_level_of_current_commitment_period = 2 - message_counter = 1 + nb_messages_in_commitment_period = 15 + message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 4 + index = 5 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] @@ -243,17 +233,17 @@ This sequence of operations was run: "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"5" +"13" ./octez-sc-rollup-client-alpha rpc get /global/block/head/state_hash "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"5" +"13" -./octez-client --wait none send sc rollup message '["5 14 + value"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message '["5 14 + value"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1877.426 units (will add 100 for safety) +Estimated gas: 1000.664 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -264,27 +254,24 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000483 + Fee to the baker: ꜩ0.000355 Expected counter: 5 - Gas limit: 1978 + Gas limit: 1101 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000483 - payload fees(the block proposer) ....... +ꜩ0.000483 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000355 + payload fees(the block proposer) ....... +ꜩ0.000355 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1877.426 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 7 + Consumed gas: 1000.664 + Resulting inbox state: { level = 7 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 5 - starting_level_of_current_commitment_period = 2 - message_counter = 1 + nb_messages_in_commitment_period = 18 + message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 5 + index = 6 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] @@ -296,17 +283,17 @@ This sequence of operations was run: "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"6" +"16" ./octez-sc-rollup-client-alpha rpc get /global/block/head/state_hash "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"6" +"16" -./octez-client --wait none send sc rollup message '["6 16 + value"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message '["6 16 + value"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1877.426 units (will add 100 for safety) +Estimated gas: 1000.664 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -317,27 +304,24 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000483 + Fee to the baker: ꜩ0.000355 Expected counter: 6 - Gas limit: 1978 + Gas limit: 1101 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000483 - payload fees(the block proposer) ....... +ꜩ0.000483 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000355 + payload fees(the block proposer) ....... +ꜩ0.000355 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1877.426 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 8 + Consumed gas: 1000.664 + Resulting inbox state: { level = 8 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 6 - starting_level_of_current_commitment_period = 2 - message_counter = 1 + nb_messages_in_commitment_period = 21 + message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 6 + index = 7 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] @@ -349,17 +333,17 @@ This sequence of operations was run: "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"7" +"19" ./octez-sc-rollup-client-alpha rpc get /global/block/head/state_hash "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"7" +"19" -./octez-client --wait none send sc rollup message '["7 18 + value"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message '["7 18 + value"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1877.426 units (will add 100 for safety) +Estimated gas: 1000.664 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -370,30 +354,28 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000483 + Fee to the baker: ꜩ0.000355 Expected counter: 7 - Gas limit: 1978 + Gas limit: 1101 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000483 - payload fees(the block proposer) ....... +ꜩ0.000483 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000355 + payload fees(the block proposer) ....... +ꜩ0.000355 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1877.426 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 9 + Consumed gas: 1000.664 + Resulting inbox state: { level = 9 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 7 - starting_level_of_current_commitment_period = 2 - message_counter = 1 + nb_messages_in_commitment_period = 24 + message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 7 + index = 8 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] } @@ -402,17 +384,17 @@ This sequence of operations was run: "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"8" +"22" ./octez-sc-rollup-client-alpha rpc get /global/block/head/state_hash "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"8" +"22" -./octez-client --wait none send sc rollup message '["8 20 + value"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message '["8 20 + value"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1877.426 units (will add 100 for safety) +Estimated gas: 1000.664 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -423,27 +405,24 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000483 + Fee to the baker: ꜩ0.000355 Expected counter: 8 - Gas limit: 1978 + Gas limit: 1101 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000483 - payload fees(the block proposer) ....... +ꜩ0.000483 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000355 + payload fees(the block proposer) ....... +ꜩ0.000355 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1877.554 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 10 + Consumed gas: 1000.664 + Resulting inbox state: { level = 10 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 8 - starting_level_of_current_commitment_period = 2 - message_counter = 1 + nb_messages_in_commitment_period = 27 + message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 8 + index = 9 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] @@ -456,17 +435,17 @@ This sequence of operations was run: "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"9" +"25" ./octez-sc-rollup-client-alpha rpc get /global/block/head/state_hash "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"9" +"25" -./octez-client --wait none send sc rollup message '["9 22 + value"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message '["9 22 + value"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1877.633 units (will add 100 for safety) +Estimated gas: 1000.664 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -477,27 +456,24 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000483 + Fee to the baker: ꜩ0.000355 Expected counter: 9 - Gas limit: 1978 + Gas limit: 1101 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000483 - payload fees(the block proposer) ....... +ꜩ0.000483 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000355 + payload fees(the block proposer) ....... +ꜩ0.000355 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1877.633 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 11 + Consumed gas: 1000.664 + Resulting inbox state: { level = 11 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 9 - starting_level_of_current_commitment_period = 2 - message_counter = 1 + nb_messages_in_commitment_period = 30 + message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 9 + index = 10 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] @@ -510,17 +486,17 @@ This sequence of operations was run: "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"10" +"28" ./octez-sc-rollup-client-alpha rpc get /global/block/head/state_hash "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"10" +"28" -./octez-client --wait none send sc rollup message '["10 24 + value"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message '["10 24 + value"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1877.650 units (will add 100 for safety) +Estimated gas: 1000.681 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -531,27 +507,24 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000484 + Fee to the baker: ꜩ0.000356 Expected counter: 10 - Gas limit: 1978 + Gas limit: 1101 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000484 - payload fees(the block proposer) ....... +ꜩ0.000484 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000356 + payload fees(the block proposer) ....... +ꜩ0.000356 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1877.650 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 12 + Consumed gas: 1000.681 + Resulting inbox state: { level = 12 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 10 - starting_level_of_current_commitment_period = 2 - message_counter = 1 + nb_messages_in_commitment_period = 33 + message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 10 + index = 11 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] @@ -564,4 +537,4 @@ This sequence of operations was run: "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"11" +"31" diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - node boots into the initial state.out b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - node boots into the initial state.out index c898d686502e..e31b1d023ccc 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - node boots into the initial state.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - node boots into the initial state.out @@ -1,8 +1,8 @@ ./octez-client --wait none originate sc rollup from bootstrap1 of kind wasm_2_0_0 of type string booting with 010fa03030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303000d5024ff4c33df62141bd485af4154641aa9220c5dede9aed006eb5d3c88bff3b --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3126.593 units (will add 100 for safety) -Estimated storage: 10691 bytes added (will add 20 for safety) +Estimated gas: 2926.069 units (will add 100 for safety) +Estimated storage: 10560 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,25 +12,25 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.004713 + Fee to the baker: ꜩ0.004693 Expected counter: 1 - Gas limit: 3227 - Storage limit: 10711 bytes + Gas limit: 3027 + Storage limit: 10580 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004713 - payload fees(the block proposer) ....... +ꜩ0.004713 + [PUBLIC_KEY_HASH] ... -ꜩ0.004693 + payload fees(the block proposer) ....... +ꜩ0.004693 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string Boot sector Blake2B hash: '789431137a40057a39867cbc5cd7f984139360559c655c0508821b9be8047a02' This smart contract rollup origination was successfully applied - Consumed gas: 3126.593 - Storage size: 10691 bytes + Consumed gas: 2926.069 + Storage size: 10560 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ2.67275 - storage fees ........................... +ꜩ2.67275 + [PUBLIC_KEY_HASH] ... -ꜩ2.64 + storage fees ........................... +ꜩ2.64 ./octez-client rpc get '/chains/main/blocks/head/context/sc_rollup/[SC_ROLLUP_HASH]/genesis_info' diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - origination of a SCORU executes without error.out b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - origination of a SCORU executes without error.out index 8619af933353..6689819e1f5f 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - origination of a SCORU executes without error.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - origination of a SCORU executes without error.out @@ -1,8 +1,8 @@ ./octez-client --wait none originate sc rollup from bootstrap1 of kind wasm_2_0_0 of type string booting with 010fa03030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303000d5024ff4c33df62141bd485af4154641aa9220c5dede9aed006eb5d3c88bff3b --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3126.593 units (will add 100 for safety) -Estimated storage: 10691 bytes added (will add 20 for safety) +Estimated gas: 2926.069 units (will add 100 for safety) +Estimated storage: 10560 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,23 +12,23 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.004713 + Fee to the baker: ꜩ0.004693 Expected counter: 1 - Gas limit: 3227 - Storage limit: 10711 bytes + Gas limit: 3027 + Storage limit: 10580 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004713 - payload fees(the block proposer) ....... +ꜩ0.004713 + [PUBLIC_KEY_HASH] ... -ꜩ0.004693 + payload fees(the block proposer) ....... +ꜩ0.004693 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string Boot sector Blake2B hash: '789431137a40057a39867cbc5cd7f984139360559c655c0508821b9be8047a02' This smart contract rollup origination was successfully applied - Consumed gas: 3126.593 - Storage size: 10691 bytes + Consumed gas: 2926.069 + Storage size: 10560 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ2.67275 - storage fees ........................... +ꜩ2.67275 + [PUBLIC_KEY_HASH] ... -ꜩ2.64 + storage fees ........................... +ꜩ2.64 diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - pushing messages in the inbox - check inbox size.out b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - pushing messages in the inbox - check inbox size.out index 2dc3f944b289..5db16574aa67 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - pushing messages in the inbox - check inbox size.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - pushing messages in the inbox - check inbox size.out @@ -1,8 +1,8 @@ ./octez-client --wait none originate sc rollup from bootstrap1 of kind wasm_2_0_0 of type string booting with 010fa03030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303000d5024ff4c33df62141bd485af4154641aa9220c5dede9aed006eb5d3c88bff3b --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3126.593 units (will add 100 for safety) -Estimated storage: 10691 bytes added (will add 20 for safety) +Estimated gas: 2926.069 units (will add 100 for safety) +Estimated storage: 10560 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,30 +12,30 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.004713 + Fee to the baker: ꜩ0.004693 Expected counter: 1 - Gas limit: 3227 - Storage limit: 10711 bytes + Gas limit: 3027 + Storage limit: 10580 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004713 - payload fees(the block proposer) ....... +ꜩ0.004713 + [PUBLIC_KEY_HASH] ... -ꜩ0.004693 + payload fees(the block proposer) ....... +ꜩ0.004693 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string Boot sector Blake2B hash: '789431137a40057a39867cbc5cd7f984139360559c655c0508821b9be8047a02' This smart contract rollup origination was successfully applied - Consumed gas: 3126.593 - Storage size: 10691 bytes + Consumed gas: 2926.069 + Storage size: 10560 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ2.67275 - storage fees ........................... +ꜩ2.67275 + [PUBLIC_KEY_HASH] ... -ꜩ2.64 + storage fees ........................... +ꜩ2.64 -./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1876.722 units (will add 100 for safety) +Estimated gas: 1000.596 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -46,35 +46,33 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000479 + Fee to the baker: ꜩ0.000351 Expected counter: 1 - Gas limit: 1977 + Gas limit: 1101 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000479 - payload fees(the block proposer) ....... +ꜩ0.000479 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000351 + payload fees(the block proposer) ....... +ꜩ0.000351 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1876.850 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 3 + Consumed gas: 1000.596 + Resulting inbox state: { level = 3 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 1 - starting_level_of_current_commitment_period = 2 - message_counter = 1 + nb_messages_in_commitment_period = 6 + message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 1 + index = 2 back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1877.540 units (will add 100 for safety) +Estimated gas: 1001.192 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -85,36 +83,33 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000491 + Fee to the baker: ꜩ0.000363 Expected counter: 2 - Gas limit: 1978 + Gas limit: 1102 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000491 - payload fees(the block proposer) ....... +ꜩ0.000491 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000363 + payload fees(the block proposer) ....... +ꜩ0.000363 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1877.668 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 4 + Consumed gas: 1001.192 + Resulting inbox state: { level = 4 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 3 - starting_level_of_current_commitment_period = 2 - message_counter = 2 + nb_messages_in_commitment_period = 10 + message_counter = 3 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 2 + index = 3 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1878.343 units (will add 100 for safety) +Estimated gas: 1001.788 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -125,36 +120,34 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000503 + Fee to the baker: ꜩ0.000375 Expected counter: 3 - Gas limit: 1979 + Gas limit: 1102 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000503 - payload fees(the block proposer) ....... +ꜩ0.000503 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000375 + payload fees(the block proposer) ....... +ꜩ0.000375 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1878.343 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 5 + Consumed gas: 1001.788 + Resulting inbox state: { level = 5 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 6 - starting_level_of_current_commitment_period = 2 - message_counter = 3 + nb_messages_in_commitment_period = 15 + message_counter = 4 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 3 + index = 4 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1878.939 units (will add 100 for safety) +Estimated gas: 1002.384 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -165,27 +158,24 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000515 + Fee to the baker: ꜩ0.000387 Expected counter: 4 - Gas limit: 1979 + Gas limit: 1103 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000515 - payload fees(the block proposer) ....... +ꜩ0.000515 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000387 + payload fees(the block proposer) ....... +ꜩ0.000387 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1879.067 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 6 + Consumed gas: 1002.384 + Resulting inbox state: { level = 6 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 10 - starting_level_of_current_commitment_period = 2 - message_counter = 4 + nb_messages_in_commitment_period = 21 + message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 4 + index = 5 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] @@ -193,9 +183,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1879.742 units (will add 100 for safety) +Estimated gas: 1002.980 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -206,27 +196,24 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000527 + Fee to the baker: ꜩ0.000399 Expected counter: 5 - Gas limit: 1980 + Gas limit: 1103 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000527 - payload fees(the block proposer) ....... +ꜩ0.000527 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000399 + payload fees(the block proposer) ....... +ꜩ0.000399 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1879.742 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 7 + Consumed gas: 1002.980 + Resulting inbox state: { level = 7 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 15 - starting_level_of_current_commitment_period = 2 - message_counter = 5 + nb_messages_in_commitment_period = 28 + message_counter = 6 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 5 + index = 6 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] @@ -234,9 +221,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1880.338 units (will add 100 for safety) +Estimated gas: 1003.576 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -247,27 +234,24 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00054 + Fee to the baker: ꜩ0.000411 Expected counter: 6 - Gas limit: 1981 + Gas limit: 1104 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00054 - payload fees(the block proposer) ....... +ꜩ0.00054 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000411 + payload fees(the block proposer) ....... +ꜩ0.000411 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1880.338 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 8 + Consumed gas: 1003.576 + Resulting inbox state: { level = 8 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 21 - starting_level_of_current_commitment_period = 2 - message_counter = 6 + nb_messages_in_commitment_period = 36 + message_counter = 7 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 6 + index = 7 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] @@ -275,9 +259,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1880.934 units (will add 100 for safety) +Estimated gas: 1004.172 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -288,37 +272,35 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000552 + Fee to the baker: ꜩ0.000423 Expected counter: 7 - Gas limit: 1981 + Gas limit: 1105 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000552 - payload fees(the block proposer) ....... +ꜩ0.000552 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000423 + payload fees(the block proposer) ....... +ꜩ0.000423 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1880.934 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 9 + Consumed gas: 1004.172 + Resulting inbox state: { level = 9 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 28 - starting_level_of_current_commitment_period = 2 - message_counter = 7 + nb_messages_in_commitment_period = 45 + message_counter = 8 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 7 + index = 8 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1881.530 units (will add 100 for safety) +Estimated gas: 1004.768 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -329,27 +311,24 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000564 + Fee to the baker: ꜩ0.000435 Expected counter: 8 - Gas limit: 1982 + Gas limit: 1105 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000564 - payload fees(the block proposer) ....... +ꜩ0.000564 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000435 + payload fees(the block proposer) ....... +ꜩ0.000435 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1881.658 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 10 + Consumed gas: 1004.768 + Resulting inbox state: { level = 10 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 36 - starting_level_of_current_commitment_period = 2 - message_counter = 8 + nb_messages_in_commitment_period = 55 + message_counter = 9 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 8 + index = 9 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] @@ -358,9 +337,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1882.333 units (will add 100 for safety) +Estimated gas: 1005.364 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -371,27 +350,24 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000576 + Fee to the baker: ꜩ0.000447 Expected counter: 9 - Gas limit: 1983 + Gas limit: 1106 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000576 - payload fees(the block proposer) ....... +ꜩ0.000576 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000447 + payload fees(the block proposer) ....... +ꜩ0.000447 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1882.333 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 11 + Consumed gas: 1005.364 + Resulting inbox state: { level = 11 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 45 - starting_level_of_current_commitment_period = 2 - message_counter = 9 + nb_messages_in_commitment_period = 66 + message_counter = 10 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 9 + index = 10 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] @@ -400,9 +376,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1882.929 units (will add 100 for safety) +Estimated gas: 1005.960 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -413,27 +389,24 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000588 + Fee to the baker: ꜩ0.000459 Expected counter: 10 - Gas limit: 1983 + Gas limit: 1106 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000588 - payload fees(the block proposer) ....... +ꜩ0.000588 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000459 + payload fees(the block proposer) ....... +ꜩ0.000459 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1882.929 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 12 + Consumed gas: 1005.960 + Resulting inbox state: { level = 12 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 55 - starting_level_of_current_commitment_period = 2 - message_counter = 10 + nb_messages_in_commitment_period = 78 + message_counter = 11 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 10 + index = 11 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (batcher_does_.out b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (batcher_does_.out index 12c229c5f1ef..b5e0cb5819b4 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (batcher_does_.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (batcher_does_.out @@ -1,8 +1,8 @@ ./octez-client --wait none originate sc rollup from bootstrap1 of kind wasm_2_0_0 of type string booting with 010fa03030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303000d5024ff4c33df62141bd485af4154641aa9220c5dede9aed006eb5d3c88bff3b --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3126.593 units (will add 100 for safety) -Estimated storage: 10691 bytes added (will add 20 for safety) +Estimated gas: 2926.069 units (will add 100 for safety) +Estimated storage: 10560 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,30 +12,30 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.004713 + Fee to the baker: ꜩ0.004693 Expected counter: 1 - Gas limit: 3227 - Storage limit: 10711 bytes + Gas limit: 3027 + Storage limit: 10580 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004713 - payload fees(the block proposer) ....... +ꜩ0.004713 + [PUBLIC_KEY_HASH] ... -ꜩ0.004693 + payload fees(the block proposer) ....... +ꜩ0.004693 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string Boot sector Blake2B hash: '789431137a40057a39867cbc5cd7f984139360559c655c0508821b9be8047a02' This smart contract rollup origination was successfully applied - Consumed gas: 3126.593 - Storage size: 10691 bytes + Consumed gas: 2926.069 + Storage size: 10560 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ2.67275 - storage fees ........................... +ꜩ2.67275 + [PUBLIC_KEY_HASH] ... -ꜩ2.64 + storage fees ........................... +ꜩ2.64 -./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1876.722 units (will add 100 for safety) +Estimated gas: 1000.596 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -46,61 +46,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000479 + Fee to the baker: ꜩ0.000351 Expected counter: 1 - Gas limit: 1977 + Gas limit: 1101 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000479 - payload fees(the block proposer) ....... +ꜩ0.000479 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] - This smart contract rollup messages submission was successfully applied - Consumed gas: 1876.850 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 3 - current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 1 - starting_level_of_current_commitment_period = 2 - message_counter = 1 - old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] - - content = [SC_ROLLUP_INBOX_HASH] - index = 1 - back_pointers = [SC_ROLLUP_INBOX_HASH] - - } - - -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' -Node is bootstrapped. -Estimated gas: 1877.540 units (will add 100 for safety) -Estimated storage: no bytes added -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000491 - Expected counter: 2 - Gas limit: 1978 - Storage limit: 0 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000491 - payload fees(the block proposer) ....... +ꜩ0.000491 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000351 + payload fees(the block proposer) ....... +ꜩ0.000351 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1877.668 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 4 + Consumed gas: 1000.596 + Resulting inbox state: { level = 3 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 3 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 6 message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -112,9 +70,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1878.343 units (will add 100 for safety) +Estimated gas: 1001.192 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -125,22 +83,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000503 - Expected counter: 3 - Gas limit: 1979 + Fee to the baker: ꜩ0.000363 + Expected counter: 2 + Gas limit: 1102 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000503 - payload fees(the block proposer) ....... +ꜩ0.000503 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000363 + payload fees(the block proposer) ....... +ꜩ0.000363 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1878.343 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 5 + Consumed gas: 1001.192 + Resulting inbox state: { level = 4 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 6 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 10 message_counter = 3 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -152,9 +107,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1878.939 units (will add 100 for safety) +Estimated gas: 1001.788 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -165,22 +120,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000515 - Expected counter: 4 - Gas limit: 1979 + Fee to the baker: ꜩ0.000375 + Expected counter: 3 + Gas limit: 1102 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000515 - payload fees(the block proposer) ....... +ꜩ0.000515 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000375 + payload fees(the block proposer) ....... +ꜩ0.000375 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1879.067 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 6 + Consumed gas: 1001.788 + Resulting inbox state: { level = 5 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 10 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 15 message_counter = 4 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -193,9 +145,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1879.742 units (will add 100 for safety) +Estimated gas: 1002.384 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -206,22 +158,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000527 - Expected counter: 5 - Gas limit: 1980 + Fee to the baker: ꜩ0.000387 + Expected counter: 4 + Gas limit: 1103 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000527 - payload fees(the block proposer) ....... +ꜩ0.000527 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000387 + payload fees(the block proposer) ....... +ꜩ0.000387 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1879.742 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 7 + Consumed gas: 1002.384 + Resulting inbox state: { level = 6 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 15 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 21 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -234,9 +183,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1880.338 units (will add 100 for safety) +Estimated gas: 1002.980 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -247,22 +196,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00054 - Expected counter: 6 - Gas limit: 1981 + Fee to the baker: ꜩ0.000399 + Expected counter: 5 + Gas limit: 1103 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00054 - payload fees(the block proposer) ....... +ꜩ0.00054 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000399 + payload fees(the block proposer) ....... +ꜩ0.000399 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1880.338 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 8 + Consumed gas: 1002.980 + Resulting inbox state: { level = 7 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 21 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 28 message_counter = 6 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -275,9 +221,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1880.934 units (will add 100 for safety) +Estimated gas: 1003.576 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -288,22 +234,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000552 - Expected counter: 7 - Gas limit: 1981 + Fee to the baker: ꜩ0.000411 + Expected counter: 6 + Gas limit: 1104 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000552 - payload fees(the block proposer) ....... +ꜩ0.000552 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000411 + payload fees(the block proposer) ....... +ꜩ0.000411 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1880.934 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 9 + Consumed gas: 1003.576 + Resulting inbox state: { level = 8 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 28 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 36 message_counter = 7 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -316,9 +259,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1881.530 units (will add 100 for safety) +Estimated gas: 1004.172 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -329,22 +272,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000564 - Expected counter: 8 - Gas limit: 1982 + Fee to the baker: ꜩ0.000423 + Expected counter: 7 + Gas limit: 1105 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000564 - payload fees(the block proposer) ....... +ꜩ0.000564 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000423 + payload fees(the block proposer) ....... +ꜩ0.000423 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1881.658 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 10 + Consumed gas: 1004.172 + Resulting inbox state: { level = 9 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 36 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 45 message_counter = 8 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -358,9 +298,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1882.333 units (will add 100 for safety) +Estimated gas: 1004.768 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -371,22 +311,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000576 - Expected counter: 9 - Gas limit: 1983 + Fee to the baker: ꜩ0.000435 + Expected counter: 8 + Gas limit: 1105 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000576 - payload fees(the block proposer) ....... +ꜩ0.000576 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000435 + payload fees(the block proposer) ....... +ꜩ0.000435 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1882.333 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 11 + Consumed gas: 1004.768 + Resulting inbox state: { level = 10 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 45 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 55 message_counter = 9 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -400,9 +337,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1882.929 units (will add 100 for safety) +Estimated gas: 1005.364 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -413,22 +350,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000588 - Expected counter: 10 - Gas limit: 1983 + Fee to the baker: ꜩ0.000447 + Expected counter: 9 + Gas limit: 1106 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000588 - payload fees(the block proposer) ....... +ꜩ0.000588 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000447 + payload fees(the block proposer) ....... +ꜩ0.000447 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1882.929 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 12 + Consumed gas: 1005.364 + Resulting inbox state: { level = 11 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 55 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 66 message_counter = 10 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -442,9 +376,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1883.525 units (will add 100 for safety) +Estimated gas: 1005.960 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -455,22 +389,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.0006 - Expected counter: 11 - Gas limit: 1984 + Fee to the baker: ꜩ0.000459 + Expected counter: 10 + Gas limit: 1106 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.0006 - payload fees(the block proposer) ....... +ꜩ0.0006 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000459 + payload fees(the block proposer) ....... +ꜩ0.000459 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1883.525 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 13 + Consumed gas: 1005.960 + Resulting inbox state: { level = 12 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 66 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 78 message_counter = 11 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -484,9 +415,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1884.121 units (will add 100 for safety) +Estimated gas: 1006.556 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -497,22 +428,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000612 - Expected counter: 12 - Gas limit: 1985 + Fee to the baker: ꜩ0.000471 + Expected counter: 11 + Gas limit: 1107 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000612 - payload fees(the block proposer) ....... +ꜩ0.000612 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000471 + payload fees(the block proposer) ....... +ꜩ0.000471 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1884.121 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 14 + Consumed gas: 1006.556 + Resulting inbox state: { level = 13 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 78 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 91 message_counter = 12 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -526,9 +454,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1884.717 units (will add 100 for safety) +Estimated gas: 1007.152 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -539,22 +467,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000624 - Expected counter: 13 - Gas limit: 1985 + Fee to the baker: ꜩ0.000483 + Expected counter: 12 + Gas limit: 1108 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000624 - payload fees(the block proposer) ....... +ꜩ0.000624 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000483 + payload fees(the block proposer) ....... +ꜩ0.000483 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1884.717 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 15 + Consumed gas: 1007.152 + Resulting inbox state: { level = 14 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 91 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 105 message_counter = 13 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -568,9 +493,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1885.313 units (will add 100 for safety) +Estimated gas: 1007.748 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -581,22 +506,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000636 - Expected counter: 14 - Gas limit: 1986 + Fee to the baker: ꜩ0.000495 + Expected counter: 13 + Gas limit: 1108 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000636 - payload fees(the block proposer) ....... +ꜩ0.000636 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000495 + payload fees(the block proposer) ....... +ꜩ0.000495 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1885.313 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 16 + Consumed gas: 1007.748 + Resulting inbox state: { level = 15 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 105 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 120 message_counter = 14 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -610,9 +532,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1885.909 units (will add 100 for safety) +Estimated gas: 1008.344 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -623,22 +545,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000648 - Expected counter: 15 - Gas limit: 1986 + Fee to the baker: ꜩ0.000507 + Expected counter: 14 + Gas limit: 1109 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000648 - payload fees(the block proposer) ....... +ꜩ0.000648 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000507 + payload fees(the block proposer) ....... +ꜩ0.000507 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1885.909 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 17 + Consumed gas: 1008.344 + Resulting inbox state: { level = 16 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 120 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 136 message_counter = 15 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -652,9 +571,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1886.505 units (will add 100 for safety) +Estimated gas: 1008.940 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -665,22 +584,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00066 - Expected counter: 16 - Gas limit: 1987 + Fee to the baker: ꜩ0.000519 + Expected counter: 15 + Gas limit: 1109 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00066 - payload fees(the block proposer) ....... +ꜩ0.00066 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000519 + payload fees(the block proposer) ....... +ꜩ0.000519 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1886.633 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 18 + Consumed gas: 1008.940 + Resulting inbox state: { level = 17 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 136 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 153 message_counter = 16 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -695,9 +611,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1887.308 units (will add 100 for safety) +Estimated gas: 1009.536 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -708,22 +624,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000672 - Expected counter: 17 - Gas limit: 1988 + Fee to the baker: ꜩ0.000531 + Expected counter: 16 + Gas limit: 1110 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000672 - payload fees(the block proposer) ....... +ꜩ0.000672 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000531 + payload fees(the block proposer) ....... +ꜩ0.000531 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1887.308 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 19 + Consumed gas: 1009.536 + Resulting inbox state: { level = 18 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 153 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 171 message_counter = 17 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -738,9 +651,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1887.904 units (will add 100 for safety) +Estimated gas: 1010.132 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -751,22 +664,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000684 - Expected counter: 18 - Gas limit: 1988 + Fee to the baker: ꜩ0.000544 + Expected counter: 17 + Gas limit: 1111 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000684 - payload fees(the block proposer) ....... +ꜩ0.000684 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000544 + payload fees(the block proposer) ....... +ꜩ0.000544 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1887.904 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 20 + Consumed gas: 1010.132 + Resulting inbox state: { level = 19 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 171 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 190 message_counter = 18 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -781,9 +691,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1888.500 units (will add 100 for safety) +Estimated gas: 1010.728 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -794,22 +704,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000696 - Expected counter: 19 - Gas limit: 1989 + Fee to the baker: ꜩ0.000556 + Expected counter: 18 + Gas limit: 1111 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000696 - payload fees(the block proposer) ....... +ꜩ0.000696 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000556 + payload fees(the block proposer) ....... +ꜩ0.000556 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1888.500 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 21 + Consumed gas: 1010.728 + Resulting inbox state: { level = 20 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 190 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 210 message_counter = 19 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -824,9 +731,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1889.096 units (will add 100 for safety) +Estimated gas: 1011.324 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -837,22 +744,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000708 - Expected counter: 20 - Gas limit: 1990 + Fee to the baker: ꜩ0.000568 + Expected counter: 19 + Gas limit: 1112 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000708 - payload fees(the block proposer) ....... +ꜩ0.000708 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000568 + payload fees(the block proposer) ....... +ꜩ0.000568 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1889.096 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 22 + Consumed gas: 1011.324 + Resulting inbox state: { level = 21 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 210 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 231 message_counter = 20 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -867,9 +771,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1889.692 units (will add 100 for safety) +Estimated gas: 1011.920 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -880,22 +784,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00072 - Expected counter: 21 - Gas limit: 1990 + Fee to the baker: ꜩ0.00058 + Expected counter: 20 + Gas limit: 1112 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00072 - payload fees(the block proposer) ....... +ꜩ0.00072 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.00058 + payload fees(the block proposer) ....... +ꜩ0.00058 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1889.692 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 23 + Consumed gas: 1011.920 + Resulting inbox state: { level = 22 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 231 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 253 message_counter = 21 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -910,9 +811,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1890.288 units (will add 100 for safety) +Estimated gas: 1012.516 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -923,22 +824,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000733 - Expected counter: 22 - Gas limit: 1991 + Fee to the baker: ꜩ0.000592 + Expected counter: 21 + Gas limit: 1113 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000733 - payload fees(the block proposer) ....... +ꜩ0.000733 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000592 + payload fees(the block proposer) ....... +ꜩ0.000592 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1890.288 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 24 + Consumed gas: 1012.516 + Resulting inbox state: { level = 23 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 253 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 276 message_counter = 22 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -953,9 +851,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1890.884 units (will add 100 for safety) +Estimated gas: 1013.112 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -966,22 +864,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000745 - Expected counter: 23 - Gas limit: 1991 + Fee to the baker: ꜩ0.000604 + Expected counter: 22 + Gas limit: 1114 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000745 - payload fees(the block proposer) ....... +ꜩ0.000745 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000604 + payload fees(the block proposer) ....... +ꜩ0.000604 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1890.884 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 25 + Consumed gas: 1013.112 + Resulting inbox state: { level = 24 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 276 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 300 message_counter = 23 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -996,9 +891,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1891.480 units (will add 100 for safety) +Estimated gas: 1013.708 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1009,22 +904,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000757 - Expected counter: 24 - Gas limit: 1992 + Fee to the baker: ꜩ0.000616 + Expected counter: 23 + Gas limit: 1114 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000757 - payload fees(the block proposer) ....... +ꜩ0.000757 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000616 + payload fees(the block proposer) ....... +ꜩ0.000616 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1891.480 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 26 + Consumed gas: 1013.708 + Resulting inbox state: { level = 25 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 300 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 325 message_counter = 24 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1039,9 +931,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1892.076 units (will add 100 for safety) +Estimated gas: 1014.304 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1052,22 +944,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000769 - Expected counter: 25 - Gas limit: 1993 + Fee to the baker: ꜩ0.000628 + Expected counter: 24 + Gas limit: 1115 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000769 - payload fees(the block proposer) ....... +ꜩ0.000769 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000628 + payload fees(the block proposer) ....... +ꜩ0.000628 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1892.076 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 27 + Consumed gas: 1014.304 + Resulting inbox state: { level = 26 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 325 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 351 message_counter = 25 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1082,9 +971,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1892.672 units (will add 100 for safety) +Estimated gas: 1014.900 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1095,22 +984,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000781 - Expected counter: 26 - Gas limit: 1993 + Fee to the baker: ꜩ0.00064 + Expected counter: 25 + Gas limit: 1115 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000781 - payload fees(the block proposer) ....... +ꜩ0.000781 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.00064 + payload fees(the block proposer) ....... +ꜩ0.00064 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1892.672 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 28 + Consumed gas: 1014.900 + Resulting inbox state: { level = 27 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 351 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 378 message_counter = 26 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1125,9 +1011,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1893.268 units (will add 100 for safety) +Estimated gas: 1015.496 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1138,22 +1024,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000793 - Expected counter: 27 - Gas limit: 1994 + Fee to the baker: ꜩ0.000652 + Expected counter: 26 + Gas limit: 1116 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000793 - payload fees(the block proposer) ....... +ꜩ0.000793 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000652 + payload fees(the block proposer) ....... +ꜩ0.000652 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1893.268 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 29 + Consumed gas: 1015.496 + Resulting inbox state: { level = 28 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 378 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 406 message_counter = 27 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1168,9 +1051,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1893.864 units (will add 100 for safety) +Estimated gas: 1016.092 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1181,22 +1064,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000805 - Expected counter: 28 - Gas limit: 1994 + Fee to the baker: ꜩ0.000664 + Expected counter: 27 + Gas limit: 1117 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000805 - payload fees(the block proposer) ....... +ꜩ0.000805 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000664 + payload fees(the block proposer) ....... +ꜩ0.000664 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1893.864 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 30 + Consumed gas: 1016.092 + Resulting inbox state: { level = 29 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 406 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 435 message_counter = 28 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1211,9 +1091,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1894.460 units (will add 100 for safety) +Estimated gas: 1016.688 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1224,22 +1104,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000817 - Expected counter: 29 - Gas limit: 1995 + Fee to the baker: ꜩ0.000676 + Expected counter: 28 + Gas limit: 1117 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000817 - payload fees(the block proposer) ....... +ꜩ0.000817 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000676 + payload fees(the block proposer) ....... +ꜩ0.000676 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1894.460 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 31 + Consumed gas: 1016.688 + Resulting inbox state: { level = 30 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 435 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 465 message_counter = 29 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1254,9 +1131,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1895.056 units (will add 100 for safety) +Estimated gas: 1017.284 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1267,22 +1144,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000829 - Expected counter: 30 - Gas limit: 1996 + Fee to the baker: ꜩ0.000688 + Expected counter: 29 + Gas limit: 1118 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000829 - payload fees(the block proposer) ....... +ꜩ0.000829 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000688 + payload fees(the block proposer) ....... +ꜩ0.000688 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1895.056 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 32 + Consumed gas: 1017.284 + Resulting inbox state: { level = 31 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 30 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 496 message_counter = 30 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1297,9 +1171,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1877.772 units (will add 100 for safety) +Estimated gas: 1017.880 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1310,23 +1184,20 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000479 - Expected counter: 31 - Gas limit: 1978 + Fee to the baker: ꜩ0.0007 + Expected counter: 30 + Gas limit: 1118 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000479 - payload fees(the block proposer) ....... +ꜩ0.000479 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.0007 + payload fees(the block proposer) ....... +ꜩ0.0007 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1877.772 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 33 + Consumed gas: 1017.880 + Resulting inbox state: { level = 32 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 31 - starting_level_of_current_commitment_period = 32 - message_counter = 1 + nb_messages_in_commitment_period = 528 + message_counter = 31 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] @@ -1340,9 +1211,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1878.368 units (will add 100 for safety) +Estimated gas: 1000.596 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1353,22 +1224,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000491 - Expected counter: 32 - Gas limit: 1979 + Fee to the baker: ꜩ0.000351 + Expected counter: 31 + Gas limit: 1101 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000491 - payload fees(the block proposer) ....... +ꜩ0.000491 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000351 + payload fees(the block proposer) ....... +ꜩ0.000351 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1878.496 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 34 + Consumed gas: 1000.596 + Resulting inbox state: { level = 33 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 33 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 531 message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1384,9 +1252,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1879.171 units (will add 100 for safety) +Estimated gas: 1001.192 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1397,22 +1265,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000503 - Expected counter: 33 - Gas limit: 1980 + Fee to the baker: ꜩ0.000363 + Expected counter: 32 + Gas limit: 1102 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000503 - payload fees(the block proposer) ....... +ꜩ0.000503 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000363 + payload fees(the block proposer) ....... +ꜩ0.000363 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1879.171 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 35 + Consumed gas: 1001.192 + Resulting inbox state: { level = 34 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 36 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 535 message_counter = 3 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1428,9 +1293,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1879.767 units (will add 100 for safety) +Estimated gas: 1001.788 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1441,22 +1306,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000515 - Expected counter: 34 - Gas limit: 1980 + Fee to the baker: ꜩ0.000375 + Expected counter: 33 + Gas limit: 1102 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000515 - payload fees(the block proposer) ....... +ꜩ0.000515 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000375 + payload fees(the block proposer) ....... +ꜩ0.000375 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1879.767 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 36 + Consumed gas: 1001.788 + Resulting inbox state: { level = 35 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 40 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 540 message_counter = 4 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1472,9 +1334,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1880.363 units (will add 100 for safety) +Estimated gas: 1002.384 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1485,22 +1347,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000528 - Expected counter: 35 - Gas limit: 1981 + Fee to the baker: ꜩ0.000387 + Expected counter: 34 + Gas limit: 1103 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000528 - payload fees(the block proposer) ....... +ꜩ0.000528 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000387 + payload fees(the block proposer) ....... +ꜩ0.000387 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1880.363 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 37 + Consumed gas: 1002.384 + Resulting inbox state: { level = 36 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 45 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 546 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1516,9 +1375,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1880.959 units (will add 100 for safety) +Estimated gas: 1002.980 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1529,22 +1388,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00054 - Expected counter: 36 - Gas limit: 1981 + Fee to the baker: ꜩ0.000399 + Expected counter: 35 + Gas limit: 1103 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00054 - payload fees(the block proposer) ....... +ꜩ0.00054 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000399 + payload fees(the block proposer) ....... +ꜩ0.000399 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1880.959 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 38 + Consumed gas: 1002.980 + Resulting inbox state: { level = 37 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 51 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 553 message_counter = 6 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1560,9 +1416,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1881.555 units (will add 100 for safety) +Estimated gas: 1003.576 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1573,22 +1429,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000552 - Expected counter: 37 - Gas limit: 1982 + Fee to the baker: ꜩ0.000411 + Expected counter: 36 + Gas limit: 1104 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000552 - payload fees(the block proposer) ....... +ꜩ0.000552 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000411 + payload fees(the block proposer) ....... +ꜩ0.000411 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1881.555 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 39 + Consumed gas: 1003.576 + Resulting inbox state: { level = 38 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 58 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 561 message_counter = 7 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1604,9 +1457,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1882.151 units (will add 100 for safety) +Estimated gas: 1004.172 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1617,22 +1470,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000564 - Expected counter: 38 - Gas limit: 1983 + Fee to the baker: ꜩ0.000423 + Expected counter: 37 + Gas limit: 1105 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000564 - payload fees(the block proposer) ....... +ꜩ0.000564 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000423 + payload fees(the block proposer) ....... +ꜩ0.000423 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1882.151 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 40 + Consumed gas: 1004.172 + Resulting inbox state: { level = 39 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 66 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 570 message_counter = 8 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1648,9 +1498,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1882.747 units (will add 100 for safety) +Estimated gas: 1004.768 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1661,22 +1511,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000576 - Expected counter: 39 - Gas limit: 1983 + Fee to the baker: ꜩ0.000435 + Expected counter: 38 + Gas limit: 1105 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000576 - payload fees(the block proposer) ....... +ꜩ0.000576 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000435 + payload fees(the block proposer) ....... +ꜩ0.000435 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1882.747 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 41 + Consumed gas: 1004.768 + Resulting inbox state: { level = 40 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 75 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 580 message_counter = 9 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1692,9 +1539,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1883.343 units (will add 100 for safety) +Estimated gas: 1005.364 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1705,22 +1552,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000588 - Expected counter: 40 - Gas limit: 1984 + Fee to the baker: ꜩ0.000447 + Expected counter: 39 + Gas limit: 1106 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000588 - payload fees(the block proposer) ....... +ꜩ0.000588 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000447 + payload fees(the block proposer) ....... +ꜩ0.000447 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1883.343 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 42 + Consumed gas: 1005.364 + Resulting inbox state: { level = 41 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 85 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 591 message_counter = 10 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1736,9 +1580,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1883.939 units (will add 100 for safety) +Estimated gas: 1005.960 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1749,22 +1593,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.0006 - Expected counter: 41 - Gas limit: 1984 + Fee to the baker: ꜩ0.000459 + Expected counter: 40 + Gas limit: 1106 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.0006 - payload fees(the block proposer) ....... +ꜩ0.0006 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000459 + payload fees(the block proposer) ....... +ꜩ0.000459 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1883.939 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 43 + Consumed gas: 1005.960 + Resulting inbox state: { level = 42 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 96 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 603 message_counter = 11 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1780,9 +1621,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1884.535 units (will add 100 for safety) +Estimated gas: 1006.556 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1793,22 +1634,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000612 - Expected counter: 42 - Gas limit: 1985 + Fee to the baker: ꜩ0.000471 + Expected counter: 41 + Gas limit: 1107 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000612 - payload fees(the block proposer) ....... +ꜩ0.000612 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000471 + payload fees(the block proposer) ....... +ꜩ0.000471 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1884.535 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 44 + Consumed gas: 1006.556 + Resulting inbox state: { level = 43 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 108 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 616 message_counter = 12 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1824,9 +1662,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1885.131 units (will add 100 for safety) +Estimated gas: 1007.152 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1837,22 +1675,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000624 - Expected counter: 43 - Gas limit: 1986 + Fee to the baker: ꜩ0.000483 + Expected counter: 42 + Gas limit: 1108 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000624 - payload fees(the block proposer) ....... +ꜩ0.000624 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000483 + payload fees(the block proposer) ....... +ꜩ0.000483 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1885.131 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 45 + Consumed gas: 1007.152 + Resulting inbox state: { level = 44 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 121 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 630 message_counter = 13 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1868,9 +1703,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1885.727 units (will add 100 for safety) +Estimated gas: 1007.748 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1881,22 +1716,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000636 - Expected counter: 44 - Gas limit: 1986 + Fee to the baker: ꜩ0.000495 + Expected counter: 43 + Gas limit: 1108 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000636 - payload fees(the block proposer) ....... +ꜩ0.000636 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000495 + payload fees(the block proposer) ....... +ꜩ0.000495 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1885.727 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 46 + Consumed gas: 1007.748 + Resulting inbox state: { level = 45 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 135 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 645 message_counter = 14 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1912,9 +1744,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1886.323 units (will add 100 for safety) +Estimated gas: 1008.344 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1925,22 +1757,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000648 - Expected counter: 45 - Gas limit: 1987 + Fee to the baker: ꜩ0.000507 + Expected counter: 44 + Gas limit: 1109 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000648 - payload fees(the block proposer) ....... +ꜩ0.000648 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000507 + payload fees(the block proposer) ....... +ꜩ0.000507 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1886.323 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 47 + Consumed gas: 1008.344 + Resulting inbox state: { level = 46 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 150 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 661 message_counter = 15 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1956,9 +1785,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1886.919 units (will add 100 for safety) +Estimated gas: 1008.940 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1969,22 +1798,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00066 - Expected counter: 46 - Gas limit: 1987 + Fee to the baker: ꜩ0.000519 + Expected counter: 45 + Gas limit: 1109 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00066 - payload fees(the block proposer) ....... +ꜩ0.00066 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000519 + payload fees(the block proposer) ....... +ꜩ0.000519 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1886.919 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 48 + Consumed gas: 1008.940 + Resulting inbox state: { level = 47 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 166 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 678 message_counter = 16 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2000,9 +1826,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1887.515 units (will add 100 for safety) +Estimated gas: 1009.536 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2013,22 +1839,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000672 - Expected counter: 47 - Gas limit: 1988 + Fee to the baker: ꜩ0.000531 + Expected counter: 46 + Gas limit: 1110 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000672 - payload fees(the block proposer) ....... +ꜩ0.000672 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000531 + payload fees(the block proposer) ....... +ꜩ0.000531 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1887.515 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 49 + Consumed gas: 1009.536 + Resulting inbox state: { level = 48 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 183 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 696 message_counter = 17 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2044,9 +1867,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1888.111 units (will add 100 for safety) +Estimated gas: 1010.132 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2057,22 +1880,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000684 - Expected counter: 48 - Gas limit: 1989 + Fee to the baker: ꜩ0.000544 + Expected counter: 47 + Gas limit: 1111 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000684 - payload fees(the block proposer) ....... +ꜩ0.000684 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000544 + payload fees(the block proposer) ....... +ꜩ0.000544 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1888.111 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 50 + Consumed gas: 1010.132 + Resulting inbox state: { level = 49 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 201 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 715 message_counter = 18 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2088,9 +1908,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1888.707 units (will add 100 for safety) +Estimated gas: 1010.728 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2101,22 +1921,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000696 - Expected counter: 49 - Gas limit: 1989 + Fee to the baker: ꜩ0.000556 + Expected counter: 48 + Gas limit: 1111 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000696 - payload fees(the block proposer) ....... +ꜩ0.000696 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000556 + payload fees(the block proposer) ....... +ꜩ0.000556 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1888.707 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 51 + Consumed gas: 1010.728 + Resulting inbox state: { level = 50 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 220 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 735 message_counter = 19 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2132,9 +1949,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1889.303 units (will add 100 for safety) +Estimated gas: 1011.324 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2145,22 +1962,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000708 - Expected counter: 50 - Gas limit: 1990 + Fee to the baker: ꜩ0.000568 + Expected counter: 49 + Gas limit: 1112 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000708 - payload fees(the block proposer) ....... +ꜩ0.000708 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000568 + payload fees(the block proposer) ....... +ꜩ0.000568 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1889.303 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 52 + Consumed gas: 1011.324 + Resulting inbox state: { level = 51 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 240 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 756 message_counter = 20 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2176,9 +1990,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1889.899 units (will add 100 for safety) +Estimated gas: 1011.920 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2189,22 +2003,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00072 - Expected counter: 51 - Gas limit: 1990 + Fee to the baker: ꜩ0.00058 + Expected counter: 50 + Gas limit: 1112 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00072 - payload fees(the block proposer) ....... +ꜩ0.00072 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.00058 + payload fees(the block proposer) ....... +ꜩ0.00058 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1889.899 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 53 + Consumed gas: 1011.920 + Resulting inbox state: { level = 52 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 261 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 778 message_counter = 21 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2220,9 +2031,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1890.495 units (will add 100 for safety) +Estimated gas: 1012.516 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2233,22 +2044,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000733 - Expected counter: 52 - Gas limit: 1991 + Fee to the baker: ꜩ0.000592 + Expected counter: 51 + Gas limit: 1113 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000733 - payload fees(the block proposer) ....... +ꜩ0.000733 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000592 + payload fees(the block proposer) ....... +ꜩ0.000592 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1890.495 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 54 + Consumed gas: 1012.516 + Resulting inbox state: { level = 53 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 283 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 801 message_counter = 22 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2264,9 +2072,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1891.091 units (will add 100 for safety) +Estimated gas: 1013.112 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2277,22 +2085,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000745 - Expected counter: 53 - Gas limit: 1992 + Fee to the baker: ꜩ0.000604 + Expected counter: 52 + Gas limit: 1114 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000745 - payload fees(the block proposer) ....... +ꜩ0.000745 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000604 + payload fees(the block proposer) ....... +ꜩ0.000604 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1891.091 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 55 + Consumed gas: 1013.112 + Resulting inbox state: { level = 54 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 306 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 825 message_counter = 23 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2308,9 +2113,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1891.687 units (will add 100 for safety) +Estimated gas: 1013.708 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2321,22 +2126,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000757 - Expected counter: 54 - Gas limit: 1992 + Fee to the baker: ꜩ0.000616 + Expected counter: 53 + Gas limit: 1114 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000757 - payload fees(the block proposer) ....... +ꜩ0.000757 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000616 + payload fees(the block proposer) ....... +ꜩ0.000616 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1891.687 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 56 + Consumed gas: 1013.708 + Resulting inbox state: { level = 55 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 330 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 850 message_counter = 24 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2352,9 +2154,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1892.283 units (will add 100 for safety) +Estimated gas: 1014.304 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2365,22 +2167,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000769 - Expected counter: 55 - Gas limit: 1993 + Fee to the baker: ꜩ0.000628 + Expected counter: 54 + Gas limit: 1115 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000769 - payload fees(the block proposer) ....... +ꜩ0.000769 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000628 + payload fees(the block proposer) ....... +ꜩ0.000628 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1892.283 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 57 + Consumed gas: 1014.304 + Resulting inbox state: { level = 56 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 355 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 876 message_counter = 25 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2396,9 +2195,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1892.879 units (will add 100 for safety) +Estimated gas: 1014.900 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2409,22 +2208,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000781 - Expected counter: 56 - Gas limit: 1993 + Fee to the baker: ꜩ0.00064 + Expected counter: 55 + Gas limit: 1115 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000781 - payload fees(the block proposer) ....... +ꜩ0.000781 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.00064 + payload fees(the block proposer) ....... +ꜩ0.00064 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1892.879 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 58 + Consumed gas: 1014.900 + Resulting inbox state: { level = 57 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 381 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 903 message_counter = 26 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2440,9 +2236,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1893.475 units (will add 100 for safety) +Estimated gas: 1015.496 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2453,22 +2249,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000793 - Expected counter: 57 - Gas limit: 1994 + Fee to the baker: ꜩ0.000652 + Expected counter: 56 + Gas limit: 1116 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000793 - payload fees(the block proposer) ....... +ꜩ0.000793 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000652 + payload fees(the block proposer) ....... +ꜩ0.000652 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1893.475 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 59 + Consumed gas: 1015.496 + Resulting inbox state: { level = 58 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 408 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 931 message_counter = 27 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2484,9 +2277,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1894.071 units (will add 100 for safety) +Estimated gas: 1016.092 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2497,22 +2290,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000805 - Expected counter: 58 - Gas limit: 1995 + Fee to the baker: ꜩ0.000664 + Expected counter: 57 + Gas limit: 1117 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000805 - payload fees(the block proposer) ....... +ꜩ0.000805 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000664 + payload fees(the block proposer) ....... +ꜩ0.000664 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1894.071 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 60 + Consumed gas: 1016.092 + Resulting inbox state: { level = 59 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 436 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 960 message_counter = 28 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2528,9 +2318,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1894.667 units (will add 100 for safety) +Estimated gas: 1016.688 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2541,22 +2331,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000817 - Expected counter: 59 - Gas limit: 1995 + Fee to the baker: ꜩ0.000676 + Expected counter: 58 + Gas limit: 1117 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000817 - payload fees(the block proposer) ....... +ꜩ0.000817 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000676 + payload fees(the block proposer) ....... +ꜩ0.000676 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1894.667 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 61 + Consumed gas: 1016.688 + Resulting inbox state: { level = 60 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 465 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 990 message_counter = 29 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2572,9 +2359,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1895.263 units (will add 100 for safety) +Estimated gas: 1017.284 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2585,22 +2372,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000829 - Expected counter: 60 - Gas limit: 1996 + Fee to the baker: ꜩ0.000688 + Expected counter: 59 + Gas limit: 1118 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000829 - payload fees(the block proposer) ....... +ꜩ0.000829 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000688 + payload fees(the block proposer) ....... +ꜩ0.000688 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1895.263 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 62 + Consumed gas: 1017.284 + Resulting inbox state: { level = 61 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 30 - starting_level_of_current_commitment_period = 62 + nb_messages_in_commitment_period = 1021 message_counter = 30 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2616,13 +2400,54 @@ This sequence of operations was run: } +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 +Node is bootstrapped. +Estimated gas: 1017.880 units (will add 100 for safety) +Estimated storage: no bytes added +Operation successfully injected in the node. +Operation hash is '[OPERATION_HASH]' +NOT waiting for the operation to be included. +Use command + octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] +and/or an external block explorer to make sure that it has been included. +This sequence of operations was run: + Manager signed operations: + From: [PUBLIC_KEY_HASH] + Fee to the baker: ꜩ0.0007 + Expected counter: 60 + Gas limit: 1118 + Storage limit: 0 bytes + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ0.0007 + payload fees(the block proposer) ....... +ꜩ0.0007 + Smart contract rollup messages submission + This smart contract rollup messages submission was successfully applied + Consumed gas: 1017.880 + Resulting inbox state: { level = 62 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 1053 + message_counter = 31 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 61 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + ./octez-sc-rollup-client-alpha rpc get /local/last_published_commitment { "commitment": { "compressed_state": "[SC_ROLLUP_PVM_STATE_HASH]", "inbox_level": 32, "predecessor": "[SC_ROLLUP_COMMITMENT_HASH]", - "number_of_ticks": "466" }, + "number_of_ticks": "526" }, "hash": "[SC_ROLLUP_COMMITMENT_HASH]", "published_at_level": 35 } diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (commitment_is.out b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (commitment_is.out index 311f774cb523..ac06c65025e1 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (commitment_is.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (commitment_is.out @@ -1,8 +1,8 @@ ./octez-client --wait none originate sc rollup from bootstrap1 of kind wasm_2_0_0 of type string booting with 010fa03030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303000d5024ff4c33df62141bd485af4154641aa9220c5dede9aed006eb5d3c88bff3b --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3126.593 units (will add 100 for safety) -Estimated storage: 10691 bytes added (will add 20 for safety) +Estimated gas: 2926.069 units (will add 100 for safety) +Estimated storage: 10560 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,34 +12,34 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.004713 + Fee to the baker: ꜩ0.004693 Expected counter: 1 - Gas limit: 3227 - Storage limit: 10711 bytes + Gas limit: 3027 + Storage limit: 10580 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004713 - payload fees(the block proposer) ....... +ꜩ0.004713 + [PUBLIC_KEY_HASH] ... -ꜩ0.004693 + payload fees(the block proposer) ....... +ꜩ0.004693 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string Boot sector Blake2B hash: '789431137a40057a39867cbc5cd7f984139360559c655c0508821b9be8047a02' This smart contract rollup origination was successfully applied - Consumed gas: 3126.593 - Storage size: 10691 bytes + Consumed gas: 2926.069 + Storage size: 10560 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ2.67275 - storage fees ........................... +ꜩ2.67275 + [PUBLIC_KEY_HASH] ... -ꜩ2.64 + storage fees ........................... +ꜩ2.64 ./octez-client rpc get '/chains/main/blocks/head/context/sc_rollup/[SC_ROLLUP_HASH]/genesis_info' { "level": 2, "commitment_hash": "[SC_ROLLUP_COMMITMENT_HASH]" } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1876.722 units (will add 100 for safety) +Estimated gas: 1000.596 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -50,61 +50,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000479 + Fee to the baker: ꜩ0.000351 Expected counter: 1 - Gas limit: 1977 + Gas limit: 1101 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000479 - payload fees(the block proposer) ....... +ꜩ0.000479 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] - This smart contract rollup messages submission was successfully applied - Consumed gas: 1876.850 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 3 - current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 1 - starting_level_of_current_commitment_period = 2 - message_counter = 1 - old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] - - content = [SC_ROLLUP_INBOX_HASH] - index = 1 - back_pointers = [SC_ROLLUP_INBOX_HASH] - - } - - -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' -Node is bootstrapped. -Estimated gas: 1877.540 units (will add 100 for safety) -Estimated storage: no bytes added -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000491 - Expected counter: 2 - Gas limit: 1978 - Storage limit: 0 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000491 - payload fees(the block proposer) ....... +ꜩ0.000491 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000351 + payload fees(the block proposer) ....... +ꜩ0.000351 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1877.668 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 4 + Consumed gas: 1000.596 + Resulting inbox state: { level = 3 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 3 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 6 message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -116,9 +74,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1878.343 units (will add 100 for safety) +Estimated gas: 1001.192 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -129,22 +87,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000503 - Expected counter: 3 - Gas limit: 1979 + Fee to the baker: ꜩ0.000363 + Expected counter: 2 + Gas limit: 1102 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000503 - payload fees(the block proposer) ....... +ꜩ0.000503 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000363 + payload fees(the block proposer) ....... +ꜩ0.000363 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1878.343 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 5 + Consumed gas: 1001.192 + Resulting inbox state: { level = 4 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 6 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 10 message_counter = 3 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -156,9 +111,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1878.939 units (will add 100 for safety) +Estimated gas: 1001.788 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -169,22 +124,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000515 - Expected counter: 4 - Gas limit: 1979 + Fee to the baker: ꜩ0.000375 + Expected counter: 3 + Gas limit: 1102 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000515 - payload fees(the block proposer) ....... +ꜩ0.000515 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000375 + payload fees(the block proposer) ....... +ꜩ0.000375 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1879.067 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 6 + Consumed gas: 1001.788 + Resulting inbox state: { level = 5 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 10 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 15 message_counter = 4 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -197,9 +149,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1879.742 units (will add 100 for safety) +Estimated gas: 1002.384 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -210,22 +162,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000527 - Expected counter: 5 - Gas limit: 1980 + Fee to the baker: ꜩ0.000387 + Expected counter: 4 + Gas limit: 1103 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000527 - payload fees(the block proposer) ....... +ꜩ0.000527 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000387 + payload fees(the block proposer) ....... +ꜩ0.000387 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1879.742 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 7 + Consumed gas: 1002.384 + Resulting inbox state: { level = 6 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 15 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 21 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -238,9 +187,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1880.338 units (will add 100 for safety) +Estimated gas: 1002.980 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -251,22 +200,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00054 - Expected counter: 6 - Gas limit: 1981 + Fee to the baker: ꜩ0.000399 + Expected counter: 5 + Gas limit: 1103 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00054 - payload fees(the block proposer) ....... +ꜩ0.00054 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000399 + payload fees(the block proposer) ....... +ꜩ0.000399 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1880.338 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 8 + Consumed gas: 1002.980 + Resulting inbox state: { level = 7 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 21 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 28 message_counter = 6 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -279,9 +225,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1880.934 units (will add 100 for safety) +Estimated gas: 1003.576 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -292,22 +238,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000552 - Expected counter: 7 - Gas limit: 1981 + Fee to the baker: ꜩ0.000411 + Expected counter: 6 + Gas limit: 1104 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000552 - payload fees(the block proposer) ....... +ꜩ0.000552 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000411 + payload fees(the block proposer) ....... +ꜩ0.000411 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1880.934 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 9 + Consumed gas: 1003.576 + Resulting inbox state: { level = 8 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 28 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 36 message_counter = 7 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -320,9 +263,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1881.530 units (will add 100 for safety) +Estimated gas: 1004.172 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -333,22 +276,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000564 - Expected counter: 8 - Gas limit: 1982 + Fee to the baker: ꜩ0.000423 + Expected counter: 7 + Gas limit: 1105 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000564 - payload fees(the block proposer) ....... +ꜩ0.000564 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000423 + payload fees(the block proposer) ....... +ꜩ0.000423 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1881.658 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 10 + Consumed gas: 1004.172 + Resulting inbox state: { level = 9 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 36 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 45 message_counter = 8 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -362,9 +302,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1882.333 units (will add 100 for safety) +Estimated gas: 1004.768 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -375,22 +315,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000576 - Expected counter: 9 - Gas limit: 1983 + Fee to the baker: ꜩ0.000435 + Expected counter: 8 + Gas limit: 1105 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000576 - payload fees(the block proposer) ....... +ꜩ0.000576 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000435 + payload fees(the block proposer) ....... +ꜩ0.000435 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1882.333 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 11 + Consumed gas: 1004.768 + Resulting inbox state: { level = 10 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 45 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 55 message_counter = 9 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -404,9 +341,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1882.929 units (will add 100 for safety) +Estimated gas: 1005.364 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -417,22 +354,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000588 - Expected counter: 10 - Gas limit: 1983 + Fee to the baker: ꜩ0.000447 + Expected counter: 9 + Gas limit: 1106 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000588 - payload fees(the block proposer) ....... +ꜩ0.000588 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000447 + payload fees(the block proposer) ....... +ꜩ0.000447 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1882.929 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 12 + Consumed gas: 1005.364 + Resulting inbox state: { level = 11 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 55 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 66 message_counter = 10 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -446,9 +380,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1883.525 units (will add 100 for safety) +Estimated gas: 1005.960 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -459,22 +393,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.0006 - Expected counter: 11 - Gas limit: 1984 + Fee to the baker: ꜩ0.000459 + Expected counter: 10 + Gas limit: 1106 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.0006 - payload fees(the block proposer) ....... +ꜩ0.0006 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000459 + payload fees(the block proposer) ....... +ꜩ0.000459 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1883.525 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 13 + Consumed gas: 1005.960 + Resulting inbox state: { level = 12 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 66 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 78 message_counter = 11 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -488,9 +419,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1884.121 units (will add 100 for safety) +Estimated gas: 1006.556 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -501,22 +432,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000612 - Expected counter: 12 - Gas limit: 1985 + Fee to the baker: ꜩ0.000471 + Expected counter: 11 + Gas limit: 1107 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000612 - payload fees(the block proposer) ....... +ꜩ0.000612 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000471 + payload fees(the block proposer) ....... +ꜩ0.000471 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1884.121 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 14 + Consumed gas: 1006.556 + Resulting inbox state: { level = 13 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 78 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 91 message_counter = 12 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -530,9 +458,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1884.717 units (will add 100 for safety) +Estimated gas: 1007.152 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -543,22 +471,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000624 - Expected counter: 13 - Gas limit: 1985 + Fee to the baker: ꜩ0.000483 + Expected counter: 12 + Gas limit: 1108 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000624 - payload fees(the block proposer) ....... +ꜩ0.000624 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000483 + payload fees(the block proposer) ....... +ꜩ0.000483 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1884.717 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 15 + Consumed gas: 1007.152 + Resulting inbox state: { level = 14 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 91 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 105 message_counter = 13 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -572,9 +497,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1885.313 units (will add 100 for safety) +Estimated gas: 1007.748 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -585,22 +510,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000636 - Expected counter: 14 - Gas limit: 1986 + Fee to the baker: ꜩ0.000495 + Expected counter: 13 + Gas limit: 1108 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000636 - payload fees(the block proposer) ....... +ꜩ0.000636 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000495 + payload fees(the block proposer) ....... +ꜩ0.000495 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1885.313 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 16 + Consumed gas: 1007.748 + Resulting inbox state: { level = 15 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 105 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 120 message_counter = 14 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -614,9 +536,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1885.909 units (will add 100 for safety) +Estimated gas: 1008.344 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -627,22 +549,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000648 - Expected counter: 15 - Gas limit: 1986 + Fee to the baker: ꜩ0.000507 + Expected counter: 14 + Gas limit: 1109 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000648 - payload fees(the block proposer) ....... +ꜩ0.000648 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000507 + payload fees(the block proposer) ....... +ꜩ0.000507 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1885.909 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 17 + Consumed gas: 1008.344 + Resulting inbox state: { level = 16 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 120 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 136 message_counter = 15 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -656,9 +575,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1886.505 units (will add 100 for safety) +Estimated gas: 1008.940 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -669,22 +588,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00066 - Expected counter: 16 - Gas limit: 1987 + Fee to the baker: ꜩ0.000519 + Expected counter: 15 + Gas limit: 1109 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00066 - payload fees(the block proposer) ....... +ꜩ0.00066 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000519 + payload fees(the block proposer) ....... +ꜩ0.000519 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1886.633 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 18 + Consumed gas: 1008.940 + Resulting inbox state: { level = 17 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 136 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 153 message_counter = 16 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -699,9 +615,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1887.308 units (will add 100 for safety) +Estimated gas: 1009.536 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -712,22 +628,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000672 - Expected counter: 17 - Gas limit: 1988 + Fee to the baker: ꜩ0.000531 + Expected counter: 16 + Gas limit: 1110 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000672 - payload fees(the block proposer) ....... +ꜩ0.000672 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000531 + payload fees(the block proposer) ....... +ꜩ0.000531 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1887.308 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 19 + Consumed gas: 1009.536 + Resulting inbox state: { level = 18 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 153 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 171 message_counter = 17 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -742,9 +655,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1887.904 units (will add 100 for safety) +Estimated gas: 1010.132 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -755,22 +668,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000684 - Expected counter: 18 - Gas limit: 1988 + Fee to the baker: ꜩ0.000544 + Expected counter: 17 + Gas limit: 1111 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000684 - payload fees(the block proposer) ....... +ꜩ0.000684 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000544 + payload fees(the block proposer) ....... +ꜩ0.000544 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1887.904 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 20 + Consumed gas: 1010.132 + Resulting inbox state: { level = 19 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 171 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 190 message_counter = 18 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -785,9 +695,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1888.500 units (will add 100 for safety) +Estimated gas: 1010.728 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -798,22 +708,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000696 - Expected counter: 19 - Gas limit: 1989 + Fee to the baker: ꜩ0.000556 + Expected counter: 18 + Gas limit: 1111 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000696 - payload fees(the block proposer) ....... +ꜩ0.000696 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000556 + payload fees(the block proposer) ....... +ꜩ0.000556 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1888.500 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 21 + Consumed gas: 1010.728 + Resulting inbox state: { level = 20 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 190 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 210 message_counter = 19 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -828,9 +735,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1889.096 units (will add 100 for safety) +Estimated gas: 1011.324 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -841,22 +748,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000708 - Expected counter: 20 - Gas limit: 1990 + Fee to the baker: ꜩ0.000568 + Expected counter: 19 + Gas limit: 1112 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000708 - payload fees(the block proposer) ....... +ꜩ0.000708 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000568 + payload fees(the block proposer) ....... +ꜩ0.000568 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1889.096 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 22 + Consumed gas: 1011.324 + Resulting inbox state: { level = 21 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 210 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 231 message_counter = 20 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -871,9 +775,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1889.692 units (will add 100 for safety) +Estimated gas: 1011.920 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -884,22 +788,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00072 - Expected counter: 21 - Gas limit: 1990 + Fee to the baker: ꜩ0.00058 + Expected counter: 20 + Gas limit: 1112 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00072 - payload fees(the block proposer) ....... +ꜩ0.00072 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.00058 + payload fees(the block proposer) ....... +ꜩ0.00058 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1889.692 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 23 + Consumed gas: 1011.920 + Resulting inbox state: { level = 22 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 231 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 253 message_counter = 21 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -914,9 +815,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1890.288 units (will add 100 for safety) +Estimated gas: 1012.516 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -927,22 +828,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000733 - Expected counter: 22 - Gas limit: 1991 + Fee to the baker: ꜩ0.000592 + Expected counter: 21 + Gas limit: 1113 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000733 - payload fees(the block proposer) ....... +ꜩ0.000733 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000592 + payload fees(the block proposer) ....... +ꜩ0.000592 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1890.288 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 24 + Consumed gas: 1012.516 + Resulting inbox state: { level = 23 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 253 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 276 message_counter = 22 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -957,9 +855,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1890.884 units (will add 100 for safety) +Estimated gas: 1013.112 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -970,22 +868,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000745 - Expected counter: 23 - Gas limit: 1991 + Fee to the baker: ꜩ0.000604 + Expected counter: 22 + Gas limit: 1114 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000745 - payload fees(the block proposer) ....... +ꜩ0.000745 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000604 + payload fees(the block proposer) ....... +ꜩ0.000604 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1890.884 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 25 + Consumed gas: 1013.112 + Resulting inbox state: { level = 24 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 276 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 300 message_counter = 23 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1000,9 +895,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1891.480 units (will add 100 for safety) +Estimated gas: 1013.708 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1013,22 +908,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000757 - Expected counter: 24 - Gas limit: 1992 + Fee to the baker: ꜩ0.000616 + Expected counter: 23 + Gas limit: 1114 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000757 - payload fees(the block proposer) ....... +ꜩ0.000757 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000616 + payload fees(the block proposer) ....... +ꜩ0.000616 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1891.480 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 26 + Consumed gas: 1013.708 + Resulting inbox state: { level = 25 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 300 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 325 message_counter = 24 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1043,9 +935,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1892.076 units (will add 100 for safety) +Estimated gas: 1014.304 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1056,22 +948,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000769 - Expected counter: 25 - Gas limit: 1993 + Fee to the baker: ꜩ0.000628 + Expected counter: 24 + Gas limit: 1115 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000769 - payload fees(the block proposer) ....... +ꜩ0.000769 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000628 + payload fees(the block proposer) ....... +ꜩ0.000628 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1892.076 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 27 + Consumed gas: 1014.304 + Resulting inbox state: { level = 26 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 325 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 351 message_counter = 25 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1086,9 +975,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1892.672 units (will add 100 for safety) +Estimated gas: 1014.900 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1099,22 +988,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000781 - Expected counter: 26 - Gas limit: 1993 + Fee to the baker: ꜩ0.00064 + Expected counter: 25 + Gas limit: 1115 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000781 - payload fees(the block proposer) ....... +ꜩ0.000781 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.00064 + payload fees(the block proposer) ....... +ꜩ0.00064 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1892.672 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 28 + Consumed gas: 1014.900 + Resulting inbox state: { level = 27 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 351 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 378 message_counter = 26 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1129,9 +1015,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1893.268 units (will add 100 for safety) +Estimated gas: 1015.496 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1142,22 +1028,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000793 - Expected counter: 27 - Gas limit: 1994 + Fee to the baker: ꜩ0.000652 + Expected counter: 26 + Gas limit: 1116 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000793 - payload fees(the block proposer) ....... +ꜩ0.000793 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000652 + payload fees(the block proposer) ....... +ꜩ0.000652 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1893.268 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 29 + Consumed gas: 1015.496 + Resulting inbox state: { level = 28 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 378 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 406 message_counter = 27 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1172,9 +1055,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1893.864 units (will add 100 for safety) +Estimated gas: 1016.092 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1185,22 +1068,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000805 - Expected counter: 28 - Gas limit: 1994 + Fee to the baker: ꜩ0.000664 + Expected counter: 27 + Gas limit: 1117 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000805 - payload fees(the block proposer) ....... +ꜩ0.000805 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000664 + payload fees(the block proposer) ....... +ꜩ0.000664 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1893.864 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 30 + Consumed gas: 1016.092 + Resulting inbox state: { level = 29 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 406 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 435 message_counter = 28 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1215,9 +1095,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1894.460 units (will add 100 for safety) +Estimated gas: 1016.688 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1228,22 +1108,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000817 - Expected counter: 29 - Gas limit: 1995 + Fee to the baker: ꜩ0.000676 + Expected counter: 28 + Gas limit: 1117 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000817 - payload fees(the block proposer) ....... +ꜩ0.000817 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000676 + payload fees(the block proposer) ....... +ꜩ0.000676 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1894.460 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 31 + Consumed gas: 1016.688 + Resulting inbox state: { level = 30 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 435 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 465 message_counter = 29 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1258,9 +1135,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1895.056 units (will add 100 for safety) +Estimated gas: 1017.284 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1271,22 +1148,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000829 - Expected counter: 30 - Gas limit: 1996 + Fee to the baker: ꜩ0.000688 + Expected counter: 29 + Gas limit: 1118 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000829 - payload fees(the block proposer) ....... +ꜩ0.000829 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000688 + payload fees(the block proposer) ....... +ꜩ0.000688 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1895.056 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 32 + Consumed gas: 1017.284 + Resulting inbox state: { level = 31 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 30 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 496 message_counter = 30 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1301,13 +1175,53 @@ This sequence of operations was run: } +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 +Node is bootstrapped. +Estimated gas: 1017.880 units (will add 100 for safety) +Estimated storage: no bytes added +Operation successfully injected in the node. +Operation hash is '[OPERATION_HASH]' +NOT waiting for the operation to be included. +Use command + octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] +and/or an external block explorer to make sure that it has been included. +This sequence of operations was run: + Manager signed operations: + From: [PUBLIC_KEY_HASH] + Fee to the baker: ꜩ0.0007 + Expected counter: 30 + Gas limit: 1118 + Storage limit: 0 bytes + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ0.0007 + payload fees(the block proposer) ....... +ꜩ0.0007 + Smart contract rollup messages submission + This smart contract rollup messages submission was successfully applied + Consumed gas: 1017.880 + Resulting inbox state: { level = 32 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 528 + message_counter = 31 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 31 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + ./octez-sc-rollup-client-alpha rpc get /global/last_stored_commitment { "commitment": { "compressed_state": "[SC_ROLLUP_PVM_STATE_HASH]", "inbox_level": 32, "predecessor": "[SC_ROLLUP_COMMITMENT_HASH]", - "number_of_ticks": "466" }, + "number_of_ticks": "526" }, "hash": "[SC_ROLLUP_COMMITMENT_HASH]" } ./octez-sc-rollup-client-alpha rpc get /local/last_published_commitment @@ -1316,6 +1230,6 @@ This sequence of operations was run: "[SC_ROLLUP_PVM_STATE_HASH]", "inbox_level": 32, "predecessor": "[SC_ROLLUP_COMMITMENT_HASH]", - "number_of_ticks": "466" }, + "number_of_ticks": "526" }, "hash": "[SC_ROLLUP_COMMITMENT_HASH]", "published_at_level": 35 } diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (first_publish.out b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (first_publish.out index cc9a13576581..075be6be0e53 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (first_publish.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (first_publish.out @@ -1,8 +1,8 @@ ./octez-client --wait none originate sc rollup from bootstrap1 of kind wasm_2_0_0 of type string booting with 010fa03030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303000d5024ff4c33df62141bd485af4154641aa9220c5dede9aed006eb5d3c88bff3b --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3126.593 units (will add 100 for safety) -Estimated storage: 10691 bytes added (will add 20 for safety) +Estimated gas: 2926.069 units (will add 100 for safety) +Estimated storage: 10560 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,25 +12,25 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.004713 + Fee to the baker: ꜩ0.004693 Expected counter: 1 - Gas limit: 3227 - Storage limit: 10711 bytes + Gas limit: 3027 + Storage limit: 10580 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004713 - payload fees(the block proposer) ....... +ꜩ0.004713 + [PUBLIC_KEY_HASH] ... -ꜩ0.004693 + payload fees(the block proposer) ....... +ꜩ0.004693 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string Boot sector Blake2B hash: '789431137a40057a39867cbc5cd7f984139360559c655c0508821b9be8047a02' This smart contract rollup origination was successfully applied - Consumed gas: 3126.593 - Storage size: 10691 bytes + Consumed gas: 2926.069 + Storage size: 10560 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ2.67275 - storage fees ........................... +ꜩ2.67275 + [PUBLIC_KEY_HASH] ... -ꜩ2.64 + storage fees ........................... +ꜩ2.64 ./octez-client rpc get '/chains/main/blocks/head/context/sc_rollup/[SC_ROLLUP_HASH]/genesis_info' @@ -43,7 +43,7 @@ This sequence of operations was run: "[SC_ROLLUP_PVM_STATE_HASH]", "inbox_level": 32, "predecessor": "[SC_ROLLUP_COMMITMENT_HASH]", - "number_of_ticks": "0" }, + "number_of_ticks": "61" }, "hash": "[SC_ROLLUP_COMMITMENT_HASH]" } ./octez-sc-rollup-client-alpha rpc get /local/last_published_commitment @@ -52,7 +52,7 @@ This sequence of operations was run: "[SC_ROLLUP_PVM_STATE_HASH]", "inbox_level": 32, "predecessor": "[SC_ROLLUP_COMMITMENT_HASH]", - "number_of_ticks": "0" }, + "number_of_ticks": "61" }, "hash": "[SC_ROLLUP_COMMITMENT_HASH]", "published_at_level": 35 } @@ -62,6 +62,6 @@ This sequence of operations was run: "[SC_ROLLUP_PVM_STATE_HASH]", "inbox_level": 32, "predecessor": "[SC_ROLLUP_COMMITMENT_HASH]", - "number_of_ticks": "0" }, + "number_of_ticks": "61" }, "hash": "[SC_ROLLUP_COMMITMENT_HASH]", "published_at_level": 35 } diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (handles_chain.out b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (handles_chain.out index 8b84ae9b1ba0..5dd850c263e3 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (handles_chain.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (handles_chain.out @@ -1,8 +1,8 @@ ./octez-client --wait none originate sc rollup from bootstrap1 of kind wasm_2_0_0 of type string booting with 010fa03030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303000d5024ff4c33df62141bd485af4154641aa9220c5dede9aed006eb5d3c88bff3b --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3126.593 units (will add 100 for safety) -Estimated storage: 10691 bytes added (will add 20 for safety) +Estimated gas: 2926.069 units (will add 100 for safety) +Estimated storage: 10560 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,34 +12,34 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.004713 + Fee to the baker: ꜩ0.004693 Expected counter: 1 - Gas limit: 3227 - Storage limit: 10711 bytes + Gas limit: 3027 + Storage limit: 10580 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004713 - payload fees(the block proposer) ....... +ꜩ0.004713 + [PUBLIC_KEY_HASH] ... -ꜩ0.004693 + payload fees(the block proposer) ....... +ꜩ0.004693 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string Boot sector Blake2B hash: '789431137a40057a39867cbc5cd7f984139360559c655c0508821b9be8047a02' This smart contract rollup origination was successfully applied - Consumed gas: 3126.593 - Storage size: 10691 bytes + Consumed gas: 2926.069 + Storage size: 10560 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ2.67275 - storage fees ........................... +ꜩ2.67275 + [PUBLIC_KEY_HASH] ... -ꜩ2.64 + storage fees ........................... +ꜩ2.64 ./octez-client rpc get '/chains/main/blocks/head/context/sc_rollup/[SC_ROLLUP_HASH]/genesis_info' { "level": 2, "commitment_hash": "[SC_ROLLUP_COMMITMENT_HASH]" } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1876.850 units (will add 100 for safety) +Estimated gas: 1000.596 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -50,28 +50,29 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000479 + Fee to the baker: ꜩ0.000351 Expected counter: 1 - Gas limit: 1977 + Gas limit: 1101 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000479 - payload fees(the block proposer) ....... +ꜩ0.000479 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000351 + payload fees(the block proposer) ....... +ꜩ0.000351 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1876.850 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 32 + Consumed gas: 1000.596 + Resulting inbox state: { level = 32 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 1 - starting_level_of_current_commitment_period = 32 - message_counter = 1 + nb_messages_in_commitment_period = 64 + message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 1 + index = 31 back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] } @@ -82,7 +83,7 @@ This sequence of operations was run: "[SC_ROLLUP_PVM_STATE_HASH]", "inbox_level": 32, "predecessor": "[SC_ROLLUP_COMMITMENT_HASH]", - "number_of_ticks": "0" }, + "number_of_ticks": "61" }, "hash": "[SC_ROLLUP_COMMITMENT_HASH]" } ./octez-sc-rollup-client-alpha rpc get /local/last_published_commitment @@ -91,5 +92,5 @@ This sequence of operations was run: "[SC_ROLLUP_PVM_STATE_HASH]", "inbox_level": 32, "predecessor": "[SC_ROLLUP_COMMITMENT_HASH]", - "number_of_ticks": "0" }, + "number_of_ticks": "61" }, "hash": "[SC_ROLLUP_COMMITMENT_HASH]" } diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (maintenance_p.out b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (maintenance_p.out index 4a87b98481f3..60376128efba 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (maintenance_p.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (maintenance_p.out @@ -1,8 +1,8 @@ ./octez-client --wait none originate sc rollup from bootstrap1 of kind wasm_2_0_0 of type string booting with 010fa03030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303000d5024ff4c33df62141bd485af4154641aa9220c5dede9aed006eb5d3c88bff3b --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3126.593 units (will add 100 for safety) -Estimated storage: 10691 bytes added (will add 20 for safety) +Estimated gas: 2926.069 units (will add 100 for safety) +Estimated storage: 10560 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,30 +12,30 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.004713 + Fee to the baker: ꜩ0.004693 Expected counter: 1 - Gas limit: 3227 - Storage limit: 10711 bytes + Gas limit: 3027 + Storage limit: 10580 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004713 - payload fees(the block proposer) ....... +ꜩ0.004713 + [PUBLIC_KEY_HASH] ... -ꜩ0.004693 + payload fees(the block proposer) ....... +ꜩ0.004693 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string Boot sector Blake2B hash: '789431137a40057a39867cbc5cd7f984139360559c655c0508821b9be8047a02' This smart contract rollup origination was successfully applied - Consumed gas: 3126.593 - Storage size: 10691 bytes + Consumed gas: 2926.069 + Storage size: 10560 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ2.67275 - storage fees ........................... +ꜩ2.67275 + [PUBLIC_KEY_HASH] ... -ꜩ2.64 + storage fees ........................... +ꜩ2.64 -./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1876.722 units (will add 100 for safety) +Estimated gas: 1000.596 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -46,61 +46,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000479 + Fee to the baker: ꜩ0.000351 Expected counter: 1 - Gas limit: 1977 + Gas limit: 1101 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000479 - payload fees(the block proposer) ....... +ꜩ0.000479 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] - This smart contract rollup messages submission was successfully applied - Consumed gas: 1876.850 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 3 - current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 1 - starting_level_of_current_commitment_period = 2 - message_counter = 1 - old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] - - content = [SC_ROLLUP_INBOX_HASH] - index = 1 - back_pointers = [SC_ROLLUP_INBOX_HASH] - - } - - -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' -Node is bootstrapped. -Estimated gas: 1877.540 units (will add 100 for safety) -Estimated storage: no bytes added -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000491 - Expected counter: 2 - Gas limit: 1978 - Storage limit: 0 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000491 - payload fees(the block proposer) ....... +ꜩ0.000491 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000351 + payload fees(the block proposer) ....... +ꜩ0.000351 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1877.668 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 4 + Consumed gas: 1000.596 + Resulting inbox state: { level = 3 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 3 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 6 message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -112,9 +70,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1878.343 units (will add 100 for safety) +Estimated gas: 1001.192 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -125,22 +83,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000503 - Expected counter: 3 - Gas limit: 1979 + Fee to the baker: ꜩ0.000363 + Expected counter: 2 + Gas limit: 1102 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000503 - payload fees(the block proposer) ....... +ꜩ0.000503 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000363 + payload fees(the block proposer) ....... +ꜩ0.000363 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1878.343 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 5 + Consumed gas: 1001.192 + Resulting inbox state: { level = 4 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 6 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 10 message_counter = 3 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -152,9 +107,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1878.939 units (will add 100 for safety) +Estimated gas: 1001.788 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -165,22 +120,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000515 - Expected counter: 4 - Gas limit: 1979 + Fee to the baker: ꜩ0.000375 + Expected counter: 3 + Gas limit: 1102 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000515 - payload fees(the block proposer) ....... +ꜩ0.000515 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000375 + payload fees(the block proposer) ....... +ꜩ0.000375 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1879.067 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 6 + Consumed gas: 1001.788 + Resulting inbox state: { level = 5 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 10 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 15 message_counter = 4 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -193,9 +145,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1879.742 units (will add 100 for safety) +Estimated gas: 1002.384 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -206,22 +158,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000527 - Expected counter: 5 - Gas limit: 1980 + Fee to the baker: ꜩ0.000387 + Expected counter: 4 + Gas limit: 1103 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000527 - payload fees(the block proposer) ....... +ꜩ0.000527 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000387 + payload fees(the block proposer) ....... +ꜩ0.000387 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1879.742 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 7 + Consumed gas: 1002.384 + Resulting inbox state: { level = 6 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 15 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 21 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -234,9 +183,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1880.338 units (will add 100 for safety) +Estimated gas: 1002.980 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -247,22 +196,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00054 - Expected counter: 6 - Gas limit: 1981 + Fee to the baker: ꜩ0.000399 + Expected counter: 5 + Gas limit: 1103 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00054 - payload fees(the block proposer) ....... +ꜩ0.00054 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000399 + payload fees(the block proposer) ....... +ꜩ0.000399 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1880.338 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 8 + Consumed gas: 1002.980 + Resulting inbox state: { level = 7 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 21 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 28 message_counter = 6 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -275,9 +221,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1880.934 units (will add 100 for safety) +Estimated gas: 1003.576 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -288,22 +234,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000552 - Expected counter: 7 - Gas limit: 1981 + Fee to the baker: ꜩ0.000411 + Expected counter: 6 + Gas limit: 1104 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000552 - payload fees(the block proposer) ....... +ꜩ0.000552 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000411 + payload fees(the block proposer) ....... +ꜩ0.000411 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1880.934 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 9 + Consumed gas: 1003.576 + Resulting inbox state: { level = 8 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 28 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 36 message_counter = 7 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -316,9 +259,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1881.530 units (will add 100 for safety) +Estimated gas: 1004.172 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -329,22 +272,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000564 - Expected counter: 8 - Gas limit: 1982 + Fee to the baker: ꜩ0.000423 + Expected counter: 7 + Gas limit: 1105 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000564 - payload fees(the block proposer) ....... +ꜩ0.000564 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000423 + payload fees(the block proposer) ....... +ꜩ0.000423 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1881.658 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 10 + Consumed gas: 1004.172 + Resulting inbox state: { level = 9 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 36 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 45 message_counter = 8 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -358,9 +298,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1882.333 units (will add 100 for safety) +Estimated gas: 1004.768 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -371,22 +311,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000576 - Expected counter: 9 - Gas limit: 1983 + Fee to the baker: ꜩ0.000435 + Expected counter: 8 + Gas limit: 1105 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000576 - payload fees(the block proposer) ....... +ꜩ0.000576 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000435 + payload fees(the block proposer) ....... +ꜩ0.000435 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1882.333 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 11 + Consumed gas: 1004.768 + Resulting inbox state: { level = 10 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 45 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 55 message_counter = 9 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -400,9 +337,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1882.929 units (will add 100 for safety) +Estimated gas: 1005.364 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -413,22 +350,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000588 - Expected counter: 10 - Gas limit: 1983 + Fee to the baker: ꜩ0.000447 + Expected counter: 9 + Gas limit: 1106 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000588 - payload fees(the block proposer) ....... +ꜩ0.000588 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000447 + payload fees(the block proposer) ....... +ꜩ0.000447 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1882.929 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 12 + Consumed gas: 1005.364 + Resulting inbox state: { level = 11 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 55 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 66 message_counter = 10 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -442,9 +376,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1883.525 units (will add 100 for safety) +Estimated gas: 1005.960 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -455,22 +389,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.0006 - Expected counter: 11 - Gas limit: 1984 + Fee to the baker: ꜩ0.000459 + Expected counter: 10 + Gas limit: 1106 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.0006 - payload fees(the block proposer) ....... +ꜩ0.0006 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000459 + payload fees(the block proposer) ....... +ꜩ0.000459 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1883.525 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 13 + Consumed gas: 1005.960 + Resulting inbox state: { level = 12 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 66 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 78 message_counter = 11 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -484,9 +415,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1884.121 units (will add 100 for safety) +Estimated gas: 1006.556 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -497,22 +428,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000612 - Expected counter: 12 - Gas limit: 1985 + Fee to the baker: ꜩ0.000471 + Expected counter: 11 + Gas limit: 1107 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000612 - payload fees(the block proposer) ....... +ꜩ0.000612 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000471 + payload fees(the block proposer) ....... +ꜩ0.000471 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1884.121 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 14 + Consumed gas: 1006.556 + Resulting inbox state: { level = 13 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 78 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 91 message_counter = 12 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -526,9 +454,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1884.717 units (will add 100 for safety) +Estimated gas: 1007.152 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -539,22 +467,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000624 - Expected counter: 13 - Gas limit: 1985 + Fee to the baker: ꜩ0.000483 + Expected counter: 12 + Gas limit: 1108 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000624 - payload fees(the block proposer) ....... +ꜩ0.000624 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000483 + payload fees(the block proposer) ....... +ꜩ0.000483 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1884.717 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 15 + Consumed gas: 1007.152 + Resulting inbox state: { level = 14 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 91 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 105 message_counter = 13 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -568,9 +493,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1885.313 units (will add 100 for safety) +Estimated gas: 1007.748 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -581,22 +506,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000636 - Expected counter: 14 - Gas limit: 1986 + Fee to the baker: ꜩ0.000495 + Expected counter: 13 + Gas limit: 1108 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000636 - payload fees(the block proposer) ....... +ꜩ0.000636 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000495 + payload fees(the block proposer) ....... +ꜩ0.000495 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1885.313 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 16 + Consumed gas: 1007.748 + Resulting inbox state: { level = 15 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 105 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 120 message_counter = 14 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -610,9 +532,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1885.909 units (will add 100 for safety) +Estimated gas: 1008.344 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -623,22 +545,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000648 - Expected counter: 15 - Gas limit: 1986 + Fee to the baker: ꜩ0.000507 + Expected counter: 14 + Gas limit: 1109 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000648 - payload fees(the block proposer) ....... +ꜩ0.000648 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000507 + payload fees(the block proposer) ....... +ꜩ0.000507 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1885.909 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 17 + Consumed gas: 1008.344 + Resulting inbox state: { level = 16 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 120 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 136 message_counter = 15 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -652,9 +571,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1886.505 units (will add 100 for safety) +Estimated gas: 1008.940 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -665,22 +584,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00066 - Expected counter: 16 - Gas limit: 1987 + Fee to the baker: ꜩ0.000519 + Expected counter: 15 + Gas limit: 1109 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00066 - payload fees(the block proposer) ....... +ꜩ0.00066 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000519 + payload fees(the block proposer) ....... +ꜩ0.000519 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1886.633 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 18 + Consumed gas: 1008.940 + Resulting inbox state: { level = 17 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 136 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 153 message_counter = 16 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -695,9 +611,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1887.308 units (will add 100 for safety) +Estimated gas: 1009.536 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -708,22 +624,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000672 - Expected counter: 17 - Gas limit: 1988 + Fee to the baker: ꜩ0.000531 + Expected counter: 16 + Gas limit: 1110 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000672 - payload fees(the block proposer) ....... +ꜩ0.000672 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000531 + payload fees(the block proposer) ....... +ꜩ0.000531 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1887.308 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 19 + Consumed gas: 1009.536 + Resulting inbox state: { level = 18 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 153 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 171 message_counter = 17 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -738,9 +651,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1887.904 units (will add 100 for safety) +Estimated gas: 1010.132 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -751,22 +664,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000684 - Expected counter: 18 - Gas limit: 1988 + Fee to the baker: ꜩ0.000544 + Expected counter: 17 + Gas limit: 1111 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000684 - payload fees(the block proposer) ....... +ꜩ0.000684 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000544 + payload fees(the block proposer) ....... +ꜩ0.000544 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1887.904 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 20 + Consumed gas: 1010.132 + Resulting inbox state: { level = 19 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 171 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 190 message_counter = 18 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -781,9 +691,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1888.500 units (will add 100 for safety) +Estimated gas: 1010.728 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -794,22 +704,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000696 - Expected counter: 19 - Gas limit: 1989 + Fee to the baker: ꜩ0.000556 + Expected counter: 18 + Gas limit: 1111 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000696 - payload fees(the block proposer) ....... +ꜩ0.000696 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000556 + payload fees(the block proposer) ....... +ꜩ0.000556 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1888.500 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 21 + Consumed gas: 1010.728 + Resulting inbox state: { level = 20 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 190 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 210 message_counter = 19 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -824,9 +731,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1889.096 units (will add 100 for safety) +Estimated gas: 1011.324 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -837,22 +744,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000708 - Expected counter: 20 - Gas limit: 1990 + Fee to the baker: ꜩ0.000568 + Expected counter: 19 + Gas limit: 1112 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000708 - payload fees(the block proposer) ....... +ꜩ0.000708 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000568 + payload fees(the block proposer) ....... +ꜩ0.000568 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1889.096 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 22 + Consumed gas: 1011.324 + Resulting inbox state: { level = 21 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 210 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 231 message_counter = 20 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -867,9 +771,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1889.692 units (will add 100 for safety) +Estimated gas: 1011.920 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -880,22 +784,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00072 - Expected counter: 21 - Gas limit: 1990 + Fee to the baker: ꜩ0.00058 + Expected counter: 20 + Gas limit: 1112 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00072 - payload fees(the block proposer) ....... +ꜩ0.00072 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.00058 + payload fees(the block proposer) ....... +ꜩ0.00058 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1889.692 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 23 + Consumed gas: 1011.920 + Resulting inbox state: { level = 22 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 231 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 253 message_counter = 21 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -910,9 +811,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1890.288 units (will add 100 for safety) +Estimated gas: 1012.516 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -923,22 +824,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000733 - Expected counter: 22 - Gas limit: 1991 + Fee to the baker: ꜩ0.000592 + Expected counter: 21 + Gas limit: 1113 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000733 - payload fees(the block proposer) ....... +ꜩ0.000733 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000592 + payload fees(the block proposer) ....... +ꜩ0.000592 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1890.288 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 24 + Consumed gas: 1012.516 + Resulting inbox state: { level = 23 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 253 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 276 message_counter = 22 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -953,9 +851,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1890.884 units (will add 100 for safety) +Estimated gas: 1013.112 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -966,22 +864,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000745 - Expected counter: 23 - Gas limit: 1991 + Fee to the baker: ꜩ0.000604 + Expected counter: 22 + Gas limit: 1114 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000745 - payload fees(the block proposer) ....... +ꜩ0.000745 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000604 + payload fees(the block proposer) ....... +ꜩ0.000604 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1890.884 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 25 + Consumed gas: 1013.112 + Resulting inbox state: { level = 24 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 276 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 300 message_counter = 23 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -996,9 +891,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1891.480 units (will add 100 for safety) +Estimated gas: 1013.708 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1009,22 +904,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000757 - Expected counter: 24 - Gas limit: 1992 + Fee to the baker: ꜩ0.000616 + Expected counter: 23 + Gas limit: 1114 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000757 - payload fees(the block proposer) ....... +ꜩ0.000757 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000616 + payload fees(the block proposer) ....... +ꜩ0.000616 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1891.480 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 26 + Consumed gas: 1013.708 + Resulting inbox state: { level = 25 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 300 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 325 message_counter = 24 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1039,9 +931,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1892.076 units (will add 100 for safety) +Estimated gas: 1014.304 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1052,22 +944,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000769 - Expected counter: 25 - Gas limit: 1993 + Fee to the baker: ꜩ0.000628 + Expected counter: 24 + Gas limit: 1115 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000769 - payload fees(the block proposer) ....... +ꜩ0.000769 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000628 + payload fees(the block proposer) ....... +ꜩ0.000628 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1892.076 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 27 + Consumed gas: 1014.304 + Resulting inbox state: { level = 26 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 325 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 351 message_counter = 25 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1082,9 +971,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1892.672 units (will add 100 for safety) +Estimated gas: 1014.900 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1095,22 +984,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000781 - Expected counter: 26 - Gas limit: 1993 + Fee to the baker: ꜩ0.00064 + Expected counter: 25 + Gas limit: 1115 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000781 - payload fees(the block proposer) ....... +ꜩ0.000781 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.00064 + payload fees(the block proposer) ....... +ꜩ0.00064 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1892.672 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 28 + Consumed gas: 1014.900 + Resulting inbox state: { level = 27 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 351 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 378 message_counter = 26 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1125,9 +1011,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1893.268 units (will add 100 for safety) +Estimated gas: 1015.496 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1138,22 +1024,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000793 - Expected counter: 27 - Gas limit: 1994 + Fee to the baker: ꜩ0.000652 + Expected counter: 26 + Gas limit: 1116 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000793 - payload fees(the block proposer) ....... +ꜩ0.000793 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000652 + payload fees(the block proposer) ....... +ꜩ0.000652 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1893.268 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 29 + Consumed gas: 1015.496 + Resulting inbox state: { level = 28 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 378 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 406 message_counter = 27 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1168,9 +1051,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1893.864 units (will add 100 for safety) +Estimated gas: 1016.092 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1181,22 +1064,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000805 - Expected counter: 28 - Gas limit: 1994 + Fee to the baker: ꜩ0.000664 + Expected counter: 27 + Gas limit: 1117 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000805 - payload fees(the block proposer) ....... +ꜩ0.000805 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000664 + payload fees(the block proposer) ....... +ꜩ0.000664 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1893.864 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 30 + Consumed gas: 1016.092 + Resulting inbox state: { level = 29 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 406 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 435 message_counter = 28 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1211,9 +1091,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1894.460 units (will add 100 for safety) +Estimated gas: 1016.688 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1224,22 +1104,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000817 - Expected counter: 29 - Gas limit: 1995 + Fee to the baker: ꜩ0.000676 + Expected counter: 28 + Gas limit: 1117 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000817 - payload fees(the block proposer) ....... +ꜩ0.000817 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000676 + payload fees(the block proposer) ....... +ꜩ0.000676 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1894.460 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 31 + Consumed gas: 1016.688 + Resulting inbox state: { level = 30 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 435 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 465 message_counter = 29 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1254,9 +1131,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1895.056 units (will add 100 for safety) +Estimated gas: 1017.284 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1267,22 +1144,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000829 - Expected counter: 30 - Gas limit: 1996 + Fee to the baker: ꜩ0.000688 + Expected counter: 29 + Gas limit: 1118 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000829 - payload fees(the block proposer) ....... +ꜩ0.000829 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000688 + payload fees(the block proposer) ....... +ꜩ0.000688 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1895.056 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 32 + Consumed gas: 1017.284 + Resulting inbox state: { level = 31 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 30 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 496 message_counter = 30 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1297,9 +1171,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1877.772 units (will add 100 for safety) +Estimated gas: 1017.880 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1310,23 +1184,20 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000479 - Expected counter: 31 - Gas limit: 1978 + Fee to the baker: ꜩ0.0007 + Expected counter: 30 + Gas limit: 1118 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000479 - payload fees(the block proposer) ....... +ꜩ0.000479 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.0007 + payload fees(the block proposer) ....... +ꜩ0.0007 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1877.772 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 33 + Consumed gas: 1017.880 + Resulting inbox state: { level = 32 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 31 - starting_level_of_current_commitment_period = 32 - message_counter = 1 + nb_messages_in_commitment_period = 528 + message_counter = 31 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] @@ -1340,9 +1211,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1878.368 units (will add 100 for safety) +Estimated gas: 1000.596 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1353,22 +1224,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000491 - Expected counter: 32 - Gas limit: 1979 + Fee to the baker: ꜩ0.000351 + Expected counter: 31 + Gas limit: 1101 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000491 - payload fees(the block proposer) ....... +ꜩ0.000491 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000351 + payload fees(the block proposer) ....... +ꜩ0.000351 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1878.496 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 34 + Consumed gas: 1000.596 + Resulting inbox state: { level = 33 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 33 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 531 message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1384,9 +1252,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1879.171 units (will add 100 for safety) +Estimated gas: 1001.192 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1397,22 +1265,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000503 - Expected counter: 33 - Gas limit: 1980 + Fee to the baker: ꜩ0.000363 + Expected counter: 32 + Gas limit: 1102 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000503 - payload fees(the block proposer) ....... +ꜩ0.000503 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000363 + payload fees(the block proposer) ....... +ꜩ0.000363 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1879.171 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 35 + Consumed gas: 1001.192 + Resulting inbox state: { level = 34 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 36 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 535 message_counter = 3 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1428,9 +1293,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1879.767 units (will add 100 for safety) +Estimated gas: 1001.788 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1441,22 +1306,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000515 - Expected counter: 34 - Gas limit: 1980 + Fee to the baker: ꜩ0.000375 + Expected counter: 33 + Gas limit: 1102 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000515 - payload fees(the block proposer) ....... +ꜩ0.000515 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000375 + payload fees(the block proposer) ....... +ꜩ0.000375 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1879.767 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 36 + Consumed gas: 1001.788 + Resulting inbox state: { level = 35 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 40 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 540 message_counter = 4 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1472,9 +1334,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1880.363 units (will add 100 for safety) +Estimated gas: 1002.384 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1485,22 +1347,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000528 - Expected counter: 35 - Gas limit: 1981 + Fee to the baker: ꜩ0.000387 + Expected counter: 34 + Gas limit: 1103 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000528 - payload fees(the block proposer) ....... +ꜩ0.000528 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000387 + payload fees(the block proposer) ....... +ꜩ0.000387 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1880.363 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 37 + Consumed gas: 1002.384 + Resulting inbox state: { level = 36 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 45 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 546 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1516,9 +1375,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1880.959 units (will add 100 for safety) +Estimated gas: 1002.980 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1529,22 +1388,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00054 - Expected counter: 36 - Gas limit: 1981 + Fee to the baker: ꜩ0.000399 + Expected counter: 35 + Gas limit: 1103 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00054 - payload fees(the block proposer) ....... +ꜩ0.00054 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000399 + payload fees(the block proposer) ....... +ꜩ0.000399 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1880.959 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 38 + Consumed gas: 1002.980 + Resulting inbox state: { level = 37 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 51 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 553 message_counter = 6 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1560,9 +1416,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1881.555 units (will add 100 for safety) +Estimated gas: 1003.576 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1573,22 +1429,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000552 - Expected counter: 37 - Gas limit: 1982 + Fee to the baker: ꜩ0.000411 + Expected counter: 36 + Gas limit: 1104 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000552 - payload fees(the block proposer) ....... +ꜩ0.000552 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000411 + payload fees(the block proposer) ....... +ꜩ0.000411 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1881.555 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 39 + Consumed gas: 1003.576 + Resulting inbox state: { level = 38 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 58 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 561 message_counter = 7 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1604,9 +1457,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1882.151 units (will add 100 for safety) +Estimated gas: 1004.172 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1617,22 +1470,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000564 - Expected counter: 38 - Gas limit: 1983 + Fee to the baker: ꜩ0.000423 + Expected counter: 37 + Gas limit: 1105 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000564 - payload fees(the block proposer) ....... +ꜩ0.000564 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000423 + payload fees(the block proposer) ....... +ꜩ0.000423 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1882.151 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 40 + Consumed gas: 1004.172 + Resulting inbox state: { level = 39 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 66 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 570 message_counter = 8 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1648,9 +1498,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1882.747 units (will add 100 for safety) +Estimated gas: 1004.768 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1661,22 +1511,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000576 - Expected counter: 39 - Gas limit: 1983 + Fee to the baker: ꜩ0.000435 + Expected counter: 38 + Gas limit: 1105 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000576 - payload fees(the block proposer) ....... +ꜩ0.000576 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000435 + payload fees(the block proposer) ....... +ꜩ0.000435 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1882.747 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 41 + Consumed gas: 1004.768 + Resulting inbox state: { level = 40 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 75 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 580 message_counter = 9 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1692,9 +1539,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1883.343 units (will add 100 for safety) +Estimated gas: 1005.364 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1705,22 +1552,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000588 - Expected counter: 40 - Gas limit: 1984 + Fee to the baker: ꜩ0.000447 + Expected counter: 39 + Gas limit: 1106 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000588 - payload fees(the block proposer) ....... +ꜩ0.000588 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000447 + payload fees(the block proposer) ....... +ꜩ0.000447 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1883.343 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 42 + Consumed gas: 1005.364 + Resulting inbox state: { level = 41 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 85 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 591 message_counter = 10 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1736,9 +1580,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1883.939 units (will add 100 for safety) +Estimated gas: 1005.960 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1749,22 +1593,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.0006 - Expected counter: 41 - Gas limit: 1984 + Fee to the baker: ꜩ0.000459 + Expected counter: 40 + Gas limit: 1106 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.0006 - payload fees(the block proposer) ....... +ꜩ0.0006 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000459 + payload fees(the block proposer) ....... +ꜩ0.000459 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1883.939 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 43 + Consumed gas: 1005.960 + Resulting inbox state: { level = 42 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 96 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 603 message_counter = 11 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1780,9 +1621,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1884.535 units (will add 100 for safety) +Estimated gas: 1006.556 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1793,22 +1634,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000612 - Expected counter: 42 - Gas limit: 1985 + Fee to the baker: ꜩ0.000471 + Expected counter: 41 + Gas limit: 1107 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000612 - payload fees(the block proposer) ....... +ꜩ0.000612 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000471 + payload fees(the block proposer) ....... +ꜩ0.000471 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1884.535 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 44 + Consumed gas: 1006.556 + Resulting inbox state: { level = 43 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 108 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 616 message_counter = 12 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1824,9 +1662,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1885.131 units (will add 100 for safety) +Estimated gas: 1007.152 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1837,22 +1675,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000624 - Expected counter: 43 - Gas limit: 1986 + Fee to the baker: ꜩ0.000483 + Expected counter: 42 + Gas limit: 1108 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000624 - payload fees(the block proposer) ....... +ꜩ0.000624 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000483 + payload fees(the block proposer) ....... +ꜩ0.000483 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1885.131 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 45 + Consumed gas: 1007.152 + Resulting inbox state: { level = 44 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 121 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 630 message_counter = 13 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1868,9 +1703,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1885.727 units (will add 100 for safety) +Estimated gas: 1007.748 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1881,22 +1716,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000636 - Expected counter: 44 - Gas limit: 1986 + Fee to the baker: ꜩ0.000495 + Expected counter: 43 + Gas limit: 1108 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000636 - payload fees(the block proposer) ....... +ꜩ0.000636 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000495 + payload fees(the block proposer) ....... +ꜩ0.000495 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1885.727 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 46 + Consumed gas: 1007.748 + Resulting inbox state: { level = 45 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 135 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 645 message_counter = 14 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1912,9 +1744,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1886.323 units (will add 100 for safety) +Estimated gas: 1008.344 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1925,22 +1757,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000648 - Expected counter: 45 - Gas limit: 1987 + Fee to the baker: ꜩ0.000507 + Expected counter: 44 + Gas limit: 1109 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000648 - payload fees(the block proposer) ....... +ꜩ0.000648 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000507 + payload fees(the block proposer) ....... +ꜩ0.000507 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1886.323 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 47 + Consumed gas: 1008.344 + Resulting inbox state: { level = 46 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 150 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 661 message_counter = 15 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1956,9 +1785,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1886.919 units (will add 100 for safety) +Estimated gas: 1008.940 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1969,22 +1798,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00066 - Expected counter: 46 - Gas limit: 1987 + Fee to the baker: ꜩ0.000519 + Expected counter: 45 + Gas limit: 1109 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00066 - payload fees(the block proposer) ....... +ꜩ0.00066 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000519 + payload fees(the block proposer) ....... +ꜩ0.000519 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1886.919 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 48 + Consumed gas: 1008.940 + Resulting inbox state: { level = 47 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 166 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 678 message_counter = 16 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2000,9 +1826,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1887.515 units (will add 100 for safety) +Estimated gas: 1009.536 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2013,22 +1839,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000672 - Expected counter: 47 - Gas limit: 1988 + Fee to the baker: ꜩ0.000531 + Expected counter: 46 + Gas limit: 1110 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000672 - payload fees(the block proposer) ....... +ꜩ0.000672 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000531 + payload fees(the block proposer) ....... +ꜩ0.000531 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1887.515 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 49 + Consumed gas: 1009.536 + Resulting inbox state: { level = 48 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 183 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 696 message_counter = 17 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2044,9 +1867,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1888.111 units (will add 100 for safety) +Estimated gas: 1010.132 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2057,22 +1880,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000684 - Expected counter: 48 - Gas limit: 1989 + Fee to the baker: ꜩ0.000544 + Expected counter: 47 + Gas limit: 1111 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000684 - payload fees(the block proposer) ....... +ꜩ0.000684 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000544 + payload fees(the block proposer) ....... +ꜩ0.000544 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1888.111 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 50 + Consumed gas: 1010.132 + Resulting inbox state: { level = 49 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 201 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 715 message_counter = 18 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2088,9 +1908,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1888.707 units (will add 100 for safety) +Estimated gas: 1010.728 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2101,22 +1921,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000696 - Expected counter: 49 - Gas limit: 1989 + Fee to the baker: ꜩ0.000556 + Expected counter: 48 + Gas limit: 1111 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000696 - payload fees(the block proposer) ....... +ꜩ0.000696 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000556 + payload fees(the block proposer) ....... +ꜩ0.000556 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1888.707 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 51 + Consumed gas: 1010.728 + Resulting inbox state: { level = 50 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 220 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 735 message_counter = 19 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2132,9 +1949,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1889.303 units (will add 100 for safety) +Estimated gas: 1011.324 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2145,22 +1962,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000708 - Expected counter: 50 - Gas limit: 1990 + Fee to the baker: ꜩ0.000568 + Expected counter: 49 + Gas limit: 1112 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000708 - payload fees(the block proposer) ....... +ꜩ0.000708 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000568 + payload fees(the block proposer) ....... +ꜩ0.000568 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1889.303 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 52 + Consumed gas: 1011.324 + Resulting inbox state: { level = 51 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 240 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 756 message_counter = 20 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2176,9 +1990,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1889.899 units (will add 100 for safety) +Estimated gas: 1011.920 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2189,22 +2003,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00072 - Expected counter: 51 - Gas limit: 1990 + Fee to the baker: ꜩ0.00058 + Expected counter: 50 + Gas limit: 1112 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00072 - payload fees(the block proposer) ....... +ꜩ0.00072 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.00058 + payload fees(the block proposer) ....... +ꜩ0.00058 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1889.899 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 53 + Consumed gas: 1011.920 + Resulting inbox state: { level = 52 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 261 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 778 message_counter = 21 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2220,9 +2031,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1890.495 units (will add 100 for safety) +Estimated gas: 1012.516 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2233,22 +2044,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000733 - Expected counter: 52 - Gas limit: 1991 + Fee to the baker: ꜩ0.000592 + Expected counter: 51 + Gas limit: 1113 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000733 - payload fees(the block proposer) ....... +ꜩ0.000733 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000592 + payload fees(the block proposer) ....... +ꜩ0.000592 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1890.495 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 54 + Consumed gas: 1012.516 + Resulting inbox state: { level = 53 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 283 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 801 message_counter = 22 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2264,9 +2072,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1891.091 units (will add 100 for safety) +Estimated gas: 1013.112 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2277,22 +2085,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000745 - Expected counter: 53 - Gas limit: 1992 + Fee to the baker: ꜩ0.000604 + Expected counter: 52 + Gas limit: 1114 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000745 - payload fees(the block proposer) ....... +ꜩ0.000745 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000604 + payload fees(the block proposer) ....... +ꜩ0.000604 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1891.091 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 55 + Consumed gas: 1013.112 + Resulting inbox state: { level = 54 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 306 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 825 message_counter = 23 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2308,9 +2113,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1891.687 units (will add 100 for safety) +Estimated gas: 1013.708 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2321,22 +2126,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000757 - Expected counter: 54 - Gas limit: 1992 + Fee to the baker: ꜩ0.000616 + Expected counter: 53 + Gas limit: 1114 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000757 - payload fees(the block proposer) ....... +ꜩ0.000757 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000616 + payload fees(the block proposer) ....... +ꜩ0.000616 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1891.687 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 56 + Consumed gas: 1013.708 + Resulting inbox state: { level = 55 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 330 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 850 message_counter = 24 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2352,9 +2154,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1892.283 units (will add 100 for safety) +Estimated gas: 1014.304 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2365,22 +2167,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000769 - Expected counter: 55 - Gas limit: 1993 + Fee to the baker: ꜩ0.000628 + Expected counter: 54 + Gas limit: 1115 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000769 - payload fees(the block proposer) ....... +ꜩ0.000769 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000628 + payload fees(the block proposer) ....... +ꜩ0.000628 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1892.283 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 57 + Consumed gas: 1014.304 + Resulting inbox state: { level = 56 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 355 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 876 message_counter = 25 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2396,9 +2195,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1892.879 units (will add 100 for safety) +Estimated gas: 1014.900 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2409,22 +2208,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000781 - Expected counter: 56 - Gas limit: 1993 + Fee to the baker: ꜩ0.00064 + Expected counter: 55 + Gas limit: 1115 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000781 - payload fees(the block proposer) ....... +ꜩ0.000781 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.00064 + payload fees(the block proposer) ....... +ꜩ0.00064 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1892.879 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 58 + Consumed gas: 1014.900 + Resulting inbox state: { level = 57 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 381 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 903 message_counter = 26 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2440,9 +2236,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1893.475 units (will add 100 for safety) +Estimated gas: 1015.496 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2453,22 +2249,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000793 - Expected counter: 57 - Gas limit: 1994 + Fee to the baker: ꜩ0.000652 + Expected counter: 56 + Gas limit: 1116 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000793 - payload fees(the block proposer) ....... +ꜩ0.000793 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000652 + payload fees(the block proposer) ....... +ꜩ0.000652 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1893.475 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 59 + Consumed gas: 1015.496 + Resulting inbox state: { level = 58 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 408 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 931 message_counter = 27 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2484,9 +2277,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1894.071 units (will add 100 for safety) +Estimated gas: 1016.092 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2497,22 +2290,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000805 - Expected counter: 58 - Gas limit: 1995 + Fee to the baker: ꜩ0.000664 + Expected counter: 57 + Gas limit: 1117 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000805 - payload fees(the block proposer) ....... +ꜩ0.000805 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000664 + payload fees(the block proposer) ....... +ꜩ0.000664 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1894.071 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 60 + Consumed gas: 1016.092 + Resulting inbox state: { level = 59 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 436 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 960 message_counter = 28 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2528,9 +2318,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1894.667 units (will add 100 for safety) +Estimated gas: 1016.688 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2541,22 +2331,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000817 - Expected counter: 59 - Gas limit: 1995 + Fee to the baker: ꜩ0.000676 + Expected counter: 58 + Gas limit: 1117 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000817 - payload fees(the block proposer) ....... +ꜩ0.000817 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000676 + payload fees(the block proposer) ....... +ꜩ0.000676 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1894.667 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 61 + Consumed gas: 1016.688 + Resulting inbox state: { level = 60 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 465 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 990 message_counter = 29 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2572,9 +2359,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1895.263 units (will add 100 for safety) +Estimated gas: 1017.284 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2585,22 +2372,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000829 - Expected counter: 60 - Gas limit: 1996 + Fee to the baker: ꜩ0.000688 + Expected counter: 59 + Gas limit: 1118 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000829 - payload fees(the block proposer) ....... +ꜩ0.000829 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000688 + payload fees(the block proposer) ....... +ꜩ0.000688 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1895.263 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 62 + Consumed gas: 1017.284 + Resulting inbox state: { level = 61 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 30 - starting_level_of_current_commitment_period = 62 + nb_messages_in_commitment_period = 1021 message_counter = 30 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2616,13 +2400,54 @@ This sequence of operations was run: } +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 +Node is bootstrapped. +Estimated gas: 1017.880 units (will add 100 for safety) +Estimated storage: no bytes added +Operation successfully injected in the node. +Operation hash is '[OPERATION_HASH]' +NOT waiting for the operation to be included. +Use command + octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] +and/or an external block explorer to make sure that it has been included. +This sequence of operations was run: + Manager signed operations: + From: [PUBLIC_KEY_HASH] + Fee to the baker: ꜩ0.0007 + Expected counter: 60 + Gas limit: 1118 + Storage limit: 0 bytes + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ0.0007 + payload fees(the block proposer) ....... +ꜩ0.0007 + Smart contract rollup messages submission + This smart contract rollup messages submission was successfully applied + Consumed gas: 1017.880 + Resulting inbox state: { level = 62 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 1053 + message_counter = 31 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 61 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + ./octez-sc-rollup-client-alpha rpc get /local/last_published_commitment { "commitment": { "compressed_state": "[SC_ROLLUP_PVM_STATE_HASH]", "inbox_level": 32, "predecessor": "[SC_ROLLUP_COMMITMENT_HASH]", - "number_of_ticks": "466" }, + "number_of_ticks": "526" }, "hash": "[SC_ROLLUP_COMMITMENT_HASH]", "published_at_level": 35 } @@ -2632,6 +2457,6 @@ This sequence of operations was run: "[SC_ROLLUP_PVM_STATE_HASH]", "inbox_level": 32, "predecessor": "[SC_ROLLUP_COMMITMENT_HASH]", - "number_of_ticks": "466" }, + "number_of_ticks": "526" }, "hash": "[SC_ROLLUP_COMMITMENT_HASH]", "published_at_level": 35 } diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (messages_rese.out b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (messages_rese.out index bea372a37c9a..107aec656eef 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (messages_rese.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (messages_rese.out @@ -1,8 +1,8 @@ ./octez-client --wait none originate sc rollup from bootstrap1 of kind wasm_2_0_0 of type string booting with 010fa03030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303000d5024ff4c33df62141bd485af4154641aa9220c5dede9aed006eb5d3c88bff3b --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3126.593 units (will add 100 for safety) -Estimated storage: 10691 bytes added (will add 20 for safety) +Estimated gas: 2926.069 units (will add 100 for safety) +Estimated storage: 10560 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,34 +12,34 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.004713 + Fee to the baker: ꜩ0.004693 Expected counter: 1 - Gas limit: 3227 - Storage limit: 10711 bytes + Gas limit: 3027 + Storage limit: 10580 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004713 - payload fees(the block proposer) ....... +ꜩ0.004713 + [PUBLIC_KEY_HASH] ... -ꜩ0.004693 + payload fees(the block proposer) ....... +ꜩ0.004693 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string Boot sector Blake2B hash: '789431137a40057a39867cbc5cd7f984139360559c655c0508821b9be8047a02' This smart contract rollup origination was successfully applied - Consumed gas: 3126.593 - Storage size: 10691 bytes + Consumed gas: 2926.069 + Storage size: 10560 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ2.67275 - storage fees ........................... +ꜩ2.67275 + [PUBLIC_KEY_HASH] ... -ꜩ2.64 + storage fees ........................... +ꜩ2.64 ./octez-client rpc get '/chains/main/blocks/head/context/sc_rollup/[SC_ROLLUP_HASH]/genesis_info' { "level": 2, "commitment_hash": "[SC_ROLLUP_COMMITMENT_HASH]" } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1876.722 units (will add 100 for safety) +Estimated gas: 1000.596 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -50,61 +50,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000479 + Fee to the baker: ꜩ0.000351 Expected counter: 1 - Gas limit: 1977 + Gas limit: 1101 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000479 - payload fees(the block proposer) ....... +ꜩ0.000479 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] - This smart contract rollup messages submission was successfully applied - Consumed gas: 1876.850 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 3 - current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 1 - starting_level_of_current_commitment_period = 2 - message_counter = 1 - old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] - - content = [SC_ROLLUP_INBOX_HASH] - index = 1 - back_pointers = [SC_ROLLUP_INBOX_HASH] - - } - - -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' -Node is bootstrapped. -Estimated gas: 1877.540 units (will add 100 for safety) -Estimated storage: no bytes added -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000491 - Expected counter: 2 - Gas limit: 1978 - Storage limit: 0 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000491 - payload fees(the block proposer) ....... +ꜩ0.000491 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000351 + payload fees(the block proposer) ....... +ꜩ0.000351 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1877.668 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 4 + Consumed gas: 1000.596 + Resulting inbox state: { level = 3 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 3 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 6 message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -116,9 +74,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1878.343 units (will add 100 for safety) +Estimated gas: 1001.192 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -129,22 +87,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000503 - Expected counter: 3 - Gas limit: 1979 + Fee to the baker: ꜩ0.000363 + Expected counter: 2 + Gas limit: 1102 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000503 - payload fees(the block proposer) ....... +ꜩ0.000503 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000363 + payload fees(the block proposer) ....... +ꜩ0.000363 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1878.343 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 5 + Consumed gas: 1001.192 + Resulting inbox state: { level = 4 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 6 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 10 message_counter = 3 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -156,9 +111,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1878.939 units (will add 100 for safety) +Estimated gas: 1001.788 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -169,22 +124,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000515 - Expected counter: 4 - Gas limit: 1979 + Fee to the baker: ꜩ0.000375 + Expected counter: 3 + Gas limit: 1102 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000515 - payload fees(the block proposer) ....... +ꜩ0.000515 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000375 + payload fees(the block proposer) ....... +ꜩ0.000375 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1879.067 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 6 + Consumed gas: 1001.788 + Resulting inbox state: { level = 5 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 10 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 15 message_counter = 4 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -197,9 +149,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1879.742 units (will add 100 for safety) +Estimated gas: 1002.384 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -210,22 +162,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000527 - Expected counter: 5 - Gas limit: 1980 + Fee to the baker: ꜩ0.000387 + Expected counter: 4 + Gas limit: 1103 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000527 - payload fees(the block proposer) ....... +ꜩ0.000527 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000387 + payload fees(the block proposer) ....... +ꜩ0.000387 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1879.742 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 7 + Consumed gas: 1002.384 + Resulting inbox state: { level = 6 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 15 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 21 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -238,9 +187,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1880.338 units (will add 100 for safety) +Estimated gas: 1002.980 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -251,22 +200,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00054 - Expected counter: 6 - Gas limit: 1981 + Fee to the baker: ꜩ0.000399 + Expected counter: 5 + Gas limit: 1103 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00054 - payload fees(the block proposer) ....... +ꜩ0.00054 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000399 + payload fees(the block proposer) ....... +ꜩ0.000399 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1880.338 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 8 + Consumed gas: 1002.980 + Resulting inbox state: { level = 7 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 21 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 28 message_counter = 6 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -279,9 +225,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1880.934 units (will add 100 for safety) +Estimated gas: 1003.576 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -292,22 +238,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000552 - Expected counter: 7 - Gas limit: 1981 + Fee to the baker: ꜩ0.000411 + Expected counter: 6 + Gas limit: 1104 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000552 - payload fees(the block proposer) ....... +ꜩ0.000552 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000411 + payload fees(the block proposer) ....... +ꜩ0.000411 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1880.934 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 9 + Consumed gas: 1003.576 + Resulting inbox state: { level = 8 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 28 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 36 message_counter = 7 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -320,9 +263,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1881.530 units (will add 100 for safety) +Estimated gas: 1004.172 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -333,22 +276,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000564 - Expected counter: 8 - Gas limit: 1982 + Fee to the baker: ꜩ0.000423 + Expected counter: 7 + Gas limit: 1105 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000564 - payload fees(the block proposer) ....... +ꜩ0.000564 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000423 + payload fees(the block proposer) ....... +ꜩ0.000423 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1881.658 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 10 + Consumed gas: 1004.172 + Resulting inbox state: { level = 9 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 36 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 45 message_counter = 8 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -362,9 +302,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1882.333 units (will add 100 for safety) +Estimated gas: 1004.768 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -375,22 +315,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000576 - Expected counter: 9 - Gas limit: 1983 + Fee to the baker: ꜩ0.000435 + Expected counter: 8 + Gas limit: 1105 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000576 - payload fees(the block proposer) ....... +ꜩ0.000576 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000435 + payload fees(the block proposer) ....... +ꜩ0.000435 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1882.333 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 11 + Consumed gas: 1004.768 + Resulting inbox state: { level = 10 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 45 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 55 message_counter = 9 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -404,9 +341,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1882.929 units (will add 100 for safety) +Estimated gas: 1005.364 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -417,22 +354,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000588 - Expected counter: 10 - Gas limit: 1983 + Fee to the baker: ꜩ0.000447 + Expected counter: 9 + Gas limit: 1106 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000588 - payload fees(the block proposer) ....... +ꜩ0.000588 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000447 + payload fees(the block proposer) ....... +ꜩ0.000447 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1882.929 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 12 + Consumed gas: 1005.364 + Resulting inbox state: { level = 11 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 55 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 66 message_counter = 10 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -446,9 +380,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1883.525 units (will add 100 for safety) +Estimated gas: 1005.960 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -459,22 +393,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.0006 - Expected counter: 11 - Gas limit: 1984 + Fee to the baker: ꜩ0.000459 + Expected counter: 10 + Gas limit: 1106 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.0006 - payload fees(the block proposer) ....... +ꜩ0.0006 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000459 + payload fees(the block proposer) ....... +ꜩ0.000459 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1883.525 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 13 + Consumed gas: 1005.960 + Resulting inbox state: { level = 12 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 66 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 78 message_counter = 11 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -488,9 +419,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1884.121 units (will add 100 for safety) +Estimated gas: 1006.556 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -501,22 +432,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000612 - Expected counter: 12 - Gas limit: 1985 + Fee to the baker: ꜩ0.000471 + Expected counter: 11 + Gas limit: 1107 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000612 - payload fees(the block proposer) ....... +ꜩ0.000612 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000471 + payload fees(the block proposer) ....... +ꜩ0.000471 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1884.121 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 14 + Consumed gas: 1006.556 + Resulting inbox state: { level = 13 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 78 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 91 message_counter = 12 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -530,9 +458,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1884.717 units (will add 100 for safety) +Estimated gas: 1007.152 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -543,22 +471,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000624 - Expected counter: 13 - Gas limit: 1985 + Fee to the baker: ꜩ0.000483 + Expected counter: 12 + Gas limit: 1108 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000624 - payload fees(the block proposer) ....... +ꜩ0.000624 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000483 + payload fees(the block proposer) ....... +ꜩ0.000483 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1884.717 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 15 + Consumed gas: 1007.152 + Resulting inbox state: { level = 14 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 91 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 105 message_counter = 13 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -572,9 +497,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1885.313 units (will add 100 for safety) +Estimated gas: 1007.748 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -585,22 +510,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000636 - Expected counter: 14 - Gas limit: 1986 + Fee to the baker: ꜩ0.000495 + Expected counter: 13 + Gas limit: 1108 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000636 - payload fees(the block proposer) ....... +ꜩ0.000636 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000495 + payload fees(the block proposer) ....... +ꜩ0.000495 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1885.313 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 16 + Consumed gas: 1007.748 + Resulting inbox state: { level = 15 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 105 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 120 message_counter = 14 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -614,9 +536,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1885.909 units (will add 100 for safety) +Estimated gas: 1008.344 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -627,22 +549,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000648 - Expected counter: 15 - Gas limit: 1986 + Fee to the baker: ꜩ0.000507 + Expected counter: 14 + Gas limit: 1109 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000648 - payload fees(the block proposer) ....... +ꜩ0.000648 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000507 + payload fees(the block proposer) ....... +ꜩ0.000507 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1885.909 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 17 + Consumed gas: 1008.344 + Resulting inbox state: { level = 16 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 120 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 136 message_counter = 15 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -656,9 +575,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1886.505 units (will add 100 for safety) +Estimated gas: 1008.940 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -669,22 +588,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00066 - Expected counter: 16 - Gas limit: 1987 + Fee to the baker: ꜩ0.000519 + Expected counter: 15 + Gas limit: 1109 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00066 - payload fees(the block proposer) ....... +ꜩ0.00066 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000519 + payload fees(the block proposer) ....... +ꜩ0.000519 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1886.633 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 18 + Consumed gas: 1008.940 + Resulting inbox state: { level = 17 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 136 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 153 message_counter = 16 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -699,9 +615,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1887.308 units (will add 100 for safety) +Estimated gas: 1009.536 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -712,22 +628,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000672 - Expected counter: 17 - Gas limit: 1988 + Fee to the baker: ꜩ0.000531 + Expected counter: 16 + Gas limit: 1110 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000672 - payload fees(the block proposer) ....... +ꜩ0.000672 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000531 + payload fees(the block proposer) ....... +ꜩ0.000531 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1887.308 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 19 + Consumed gas: 1009.536 + Resulting inbox state: { level = 18 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 153 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 171 message_counter = 17 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -742,9 +655,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1887.904 units (will add 100 for safety) +Estimated gas: 1010.132 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -755,22 +668,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000684 - Expected counter: 18 - Gas limit: 1988 + Fee to the baker: ꜩ0.000544 + Expected counter: 17 + Gas limit: 1111 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000684 - payload fees(the block proposer) ....... +ꜩ0.000684 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000544 + payload fees(the block proposer) ....... +ꜩ0.000544 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1887.904 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 20 + Consumed gas: 1010.132 + Resulting inbox state: { level = 19 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 171 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 190 message_counter = 18 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -785,9 +695,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1888.500 units (will add 100 for safety) +Estimated gas: 1010.728 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -798,22 +708,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000696 - Expected counter: 19 - Gas limit: 1989 + Fee to the baker: ꜩ0.000556 + Expected counter: 18 + Gas limit: 1111 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000696 - payload fees(the block proposer) ....... +ꜩ0.000696 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000556 + payload fees(the block proposer) ....... +ꜩ0.000556 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1888.500 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 21 + Consumed gas: 1010.728 + Resulting inbox state: { level = 20 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 190 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 210 message_counter = 19 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -828,9 +735,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1889.096 units (will add 100 for safety) +Estimated gas: 1011.324 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -841,22 +748,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000708 - Expected counter: 20 - Gas limit: 1990 + Fee to the baker: ꜩ0.000568 + Expected counter: 19 + Gas limit: 1112 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000708 - payload fees(the block proposer) ....... +ꜩ0.000708 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000568 + payload fees(the block proposer) ....... +ꜩ0.000568 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1889.096 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 22 + Consumed gas: 1011.324 + Resulting inbox state: { level = 21 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 210 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 231 message_counter = 20 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -871,9 +775,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1889.692 units (will add 100 for safety) +Estimated gas: 1011.920 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -884,22 +788,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00072 - Expected counter: 21 - Gas limit: 1990 + Fee to the baker: ꜩ0.00058 + Expected counter: 20 + Gas limit: 1112 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00072 - payload fees(the block proposer) ....... +ꜩ0.00072 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.00058 + payload fees(the block proposer) ....... +ꜩ0.00058 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1889.692 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 23 + Consumed gas: 1011.920 + Resulting inbox state: { level = 22 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 231 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 253 message_counter = 21 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -914,9 +815,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1890.288 units (will add 100 for safety) +Estimated gas: 1012.516 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -927,22 +828,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000733 - Expected counter: 22 - Gas limit: 1991 + Fee to the baker: ꜩ0.000592 + Expected counter: 21 + Gas limit: 1113 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000733 - payload fees(the block proposer) ....... +ꜩ0.000733 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000592 + payload fees(the block proposer) ....... +ꜩ0.000592 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1890.288 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 24 + Consumed gas: 1012.516 + Resulting inbox state: { level = 23 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 253 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 276 message_counter = 22 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -957,9 +855,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1890.884 units (will add 100 for safety) +Estimated gas: 1013.112 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -970,22 +868,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000745 - Expected counter: 23 - Gas limit: 1991 + Fee to the baker: ꜩ0.000604 + Expected counter: 22 + Gas limit: 1114 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000745 - payload fees(the block proposer) ....... +ꜩ0.000745 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000604 + payload fees(the block proposer) ....... +ꜩ0.000604 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1890.884 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 25 + Consumed gas: 1013.112 + Resulting inbox state: { level = 24 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 276 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 300 message_counter = 23 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1000,9 +895,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1891.480 units (will add 100 for safety) +Estimated gas: 1013.708 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1013,22 +908,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000757 - Expected counter: 24 - Gas limit: 1992 + Fee to the baker: ꜩ0.000616 + Expected counter: 23 + Gas limit: 1114 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000757 - payload fees(the block proposer) ....... +ꜩ0.000757 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000616 + payload fees(the block proposer) ....... +ꜩ0.000616 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1891.480 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 26 + Consumed gas: 1013.708 + Resulting inbox state: { level = 25 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 300 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 325 message_counter = 24 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1043,9 +935,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1892.076 units (will add 100 for safety) +Estimated gas: 1014.304 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1056,22 +948,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000769 - Expected counter: 25 - Gas limit: 1993 + Fee to the baker: ꜩ0.000628 + Expected counter: 24 + Gas limit: 1115 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000769 - payload fees(the block proposer) ....... +ꜩ0.000769 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000628 + payload fees(the block proposer) ....... +ꜩ0.000628 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1892.076 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 27 + Consumed gas: 1014.304 + Resulting inbox state: { level = 26 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 325 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 351 message_counter = 25 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1086,9 +975,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1892.672 units (will add 100 for safety) +Estimated gas: 1014.900 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1099,22 +988,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000781 - Expected counter: 26 - Gas limit: 1993 + Fee to the baker: ꜩ0.00064 + Expected counter: 25 + Gas limit: 1115 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000781 - payload fees(the block proposer) ....... +ꜩ0.000781 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.00064 + payload fees(the block proposer) ....... +ꜩ0.00064 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1892.672 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 28 + Consumed gas: 1014.900 + Resulting inbox state: { level = 27 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 351 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 378 message_counter = 26 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1129,9 +1015,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1893.268 units (will add 100 for safety) +Estimated gas: 1015.496 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1142,22 +1028,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000793 - Expected counter: 27 - Gas limit: 1994 + Fee to the baker: ꜩ0.000652 + Expected counter: 26 + Gas limit: 1116 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000793 - payload fees(the block proposer) ....... +ꜩ0.000793 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000652 + payload fees(the block proposer) ....... +ꜩ0.000652 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1893.268 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 29 + Consumed gas: 1015.496 + Resulting inbox state: { level = 28 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 378 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 406 message_counter = 27 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1172,9 +1055,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1893.864 units (will add 100 for safety) +Estimated gas: 1016.092 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1185,22 +1068,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000805 - Expected counter: 28 - Gas limit: 1994 + Fee to the baker: ꜩ0.000664 + Expected counter: 27 + Gas limit: 1117 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000805 - payload fees(the block proposer) ....... +ꜩ0.000805 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000664 + payload fees(the block proposer) ....... +ꜩ0.000664 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1893.864 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 30 + Consumed gas: 1016.092 + Resulting inbox state: { level = 29 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 406 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 435 message_counter = 28 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1215,9 +1095,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1894.460 units (will add 100 for safety) +Estimated gas: 1016.688 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1228,22 +1108,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000817 - Expected counter: 29 - Gas limit: 1995 + Fee to the baker: ꜩ0.000676 + Expected counter: 28 + Gas limit: 1117 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000817 - payload fees(the block proposer) ....... +ꜩ0.000817 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000676 + payload fees(the block proposer) ....... +ꜩ0.000676 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1894.460 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 31 + Consumed gas: 1016.688 + Resulting inbox state: { level = 30 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 435 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 465 message_counter = 29 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1258,9 +1135,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1895.056 units (will add 100 for safety) +Estimated gas: 1017.284 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1271,22 +1148,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000829 - Expected counter: 30 - Gas limit: 1996 + Fee to the baker: ꜩ0.000688 + Expected counter: 29 + Gas limit: 1118 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000829 - payload fees(the block proposer) ....... +ꜩ0.000829 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000688 + payload fees(the block proposer) ....... +ꜩ0.000688 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1895.056 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 32 + Consumed gas: 1017.284 + Resulting inbox state: { level = 31 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 30 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 496 message_counter = 30 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1301,13 +1175,53 @@ This sequence of operations was run: } +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 +Node is bootstrapped. +Estimated gas: 1017.880 units (will add 100 for safety) +Estimated storage: no bytes added +Operation successfully injected in the node. +Operation hash is '[OPERATION_HASH]' +NOT waiting for the operation to be included. +Use command + octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] +and/or an external block explorer to make sure that it has been included. +This sequence of operations was run: + Manager signed operations: + From: [PUBLIC_KEY_HASH] + Fee to the baker: ꜩ0.0007 + Expected counter: 30 + Gas limit: 1118 + Storage limit: 0 bytes + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ0.0007 + payload fees(the block proposer) ....... +ꜩ0.0007 + Smart contract rollup messages submission + This smart contract rollup messages submission was successfully applied + Consumed gas: 1017.880 + Resulting inbox state: { level = 32 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 528 + message_counter = 31 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 31 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + ./octez-sc-rollup-client-alpha rpc get /global/last_stored_commitment { "commitment": { "compressed_state": "[SC_ROLLUP_PVM_STATE_HASH]", "inbox_level": 62, "predecessor": "[SC_ROLLUP_COMMITMENT_HASH]", - "number_of_ticks": "0" }, + "number_of_ticks": "60" }, "hash": "[SC_ROLLUP_COMMITMENT_HASH]" } ./octez-sc-rollup-client-alpha rpc get /local/last_published_commitment @@ -1316,5 +1230,5 @@ This sequence of operations was run: "[SC_ROLLUP_PVM_STATE_HASH]", "inbox_level": 62, "predecessor": "[SC_ROLLUP_COMMITMENT_HASH]", - "number_of_ticks": "0" }, + "number_of_ticks": "60" }, "hash": "[SC_ROLLUP_COMMITMENT_HASH]" } diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (no_commitment.out b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (no_commitment.out index 324aaa88c3cc..b062a267a34e 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (no_commitment.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (no_commitment.out @@ -1,8 +1,8 @@ ./octez-client --wait none originate sc rollup from bootstrap1 of kind wasm_2_0_0 of type string booting with 010fa03030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303000d5024ff4c33df62141bd485af4154641aa9220c5dede9aed006eb5d3c88bff3b --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3126.593 units (will add 100 for safety) -Estimated storage: 10691 bytes added (will add 20 for safety) +Estimated gas: 2926.069 units (will add 100 for safety) +Estimated storage: 10560 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,25 +12,25 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.004713 + Fee to the baker: ꜩ0.004693 Expected counter: 1 - Gas limit: 3227 - Storage limit: 10711 bytes + Gas limit: 3027 + Storage limit: 10580 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004713 - payload fees(the block proposer) ....... +ꜩ0.004713 + [PUBLIC_KEY_HASH] ... -ꜩ0.004693 + payload fees(the block proposer) ....... +ꜩ0.004693 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string Boot sector Blake2B hash: '789431137a40057a39867cbc5cd7f984139360559c655c0508821b9be8047a02' This smart contract rollup origination was successfully applied - Consumed gas: 3126.593 - Storage size: 10691 bytes + Consumed gas: 2926.069 + Storage size: 10560 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ2.67275 - storage fees ........................... +ꜩ2.67275 + [PUBLIC_KEY_HASH] ... -ꜩ2.64 + storage fees ........................... +ꜩ2.64 ./octez-client rpc get '/chains/main/blocks/head/context/sc_rollup/[SC_ROLLUP_HASH]/genesis_info' @@ -43,7 +43,7 @@ This sequence of operations was run: "[SC_ROLLUP_PVM_STATE_HASH]", "inbox_level": 32, "predecessor": "[SC_ROLLUP_COMMITMENT_HASH]", - "number_of_ticks": "0" }, + "number_of_ticks": "61" }, "hash": "[SC_ROLLUP_COMMITMENT_HASH]" } ./octez-sc-rollup-client-alpha rpc get /local/last_published_commitment @@ -52,7 +52,7 @@ This sequence of operations was run: "[SC_ROLLUP_PVM_STATE_HASH]", "inbox_level": 32, "predecessor": "[SC_ROLLUP_COMMITMENT_HASH]", - "number_of_ticks": "0" }, + "number_of_ticks": "61" }, "hash": "[SC_ROLLUP_COMMITMENT_HASH]" } ./octez-client rpc get /chains/main/blocks/head/context/constants @@ -266,7 +266,7 @@ null "[SC_ROLLUP_PVM_STATE_HASH]", "inbox_level": 32, "predecessor": "[SC_ROLLUP_COMMITMENT_HASH]", - "number_of_ticks": "0" }, + "number_of_ticks": "61" }, "hash": "[SC_ROLLUP_COMMITMENT_HASH]" } ./octez-sc-rollup-client-alpha rpc get /local/last_published_commitment @@ -275,6 +275,6 @@ null "[SC_ROLLUP_PVM_STATE_HASH]", "inbox_level": 62, "predecessor": "[SC_ROLLUP_COMMITMENT_HASH]", - "number_of_ticks": "0" }, + "number_of_ticks": "60" }, "hash": "[SC_ROLLUP_COMMITMENT_HASH]", "published_at_level": 65 } diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (node_use_prot.out b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (node_use_prot.out index 6672b2668a0f..8ba00d8131fb 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (node_use_prot.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (node_use_prot.out @@ -1,8 +1,8 @@ ./octez-client --wait none originate sc rollup from bootstrap1 of kind wasm_2_0_0 of type string booting with 010fa03030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303000d5024ff4c33df62141bd485af4154641aa9220c5dede9aed006eb5d3c88bff3b --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3126.593 units (will add 100 for safety) -Estimated storage: 10691 bytes added (will add 20 for safety) +Estimated gas: 2926.069 units (will add 100 for safety) +Estimated storage: 10560 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,34 +12,34 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.004713 + Fee to the baker: ꜩ0.004693 Expected counter: 1 - Gas limit: 3227 - Storage limit: 10711 bytes + Gas limit: 3027 + Storage limit: 10580 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004713 - payload fees(the block proposer) ....... +ꜩ0.004713 + [PUBLIC_KEY_HASH] ... -ꜩ0.004693 + payload fees(the block proposer) ....... +ꜩ0.004693 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string Boot sector Blake2B hash: '789431137a40057a39867cbc5cd7f984139360559c655c0508821b9be8047a02' This smart contract rollup origination was successfully applied - Consumed gas: 3126.593 - Storage size: 10691 bytes + Consumed gas: 2926.069 + Storage size: 10560 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ2.67275 - storage fees ........................... +ꜩ2.67275 + [PUBLIC_KEY_HASH] ... -ꜩ2.64 + storage fees ........................... +ꜩ2.64 ./octez-client rpc get '/chains/main/blocks/head/context/sc_rollup/[SC_ROLLUP_HASH]/genesis_info' { "level": 2, "commitment_hash": "[SC_ROLLUP_COMMITMENT_HASH]" } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1876.722 units (will add 100 for safety) +Estimated gas: 1000.596 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -50,35 +50,33 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000479 + Fee to the baker: ꜩ0.000351 Expected counter: 1 - Gas limit: 1977 + Gas limit: 1101 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000479 - payload fees(the block proposer) ....... +ꜩ0.000479 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000351 + payload fees(the block proposer) ....... +ꜩ0.000351 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1876.850 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 3 + Consumed gas: 1000.596 + Resulting inbox state: { level = 3 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 1 - starting_level_of_current_commitment_period = 2 - message_counter = 1 + nb_messages_in_commitment_period = 6 + message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 1 + index = 2 back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1877.540 units (will add 100 for safety) +Estimated gas: 1001.192 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -89,36 +87,33 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000491 + Fee to the baker: ꜩ0.000363 Expected counter: 2 - Gas limit: 1978 + Gas limit: 1102 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000491 - payload fees(the block proposer) ....... +ꜩ0.000491 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000363 + payload fees(the block proposer) ....... +ꜩ0.000363 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1877.668 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 4 + Consumed gas: 1001.192 + Resulting inbox state: { level = 4 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 3 - starting_level_of_current_commitment_period = 2 - message_counter = 2 + nb_messages_in_commitment_period = 10 + message_counter = 3 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 2 + index = 3 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1878.343 units (will add 100 for safety) +Estimated gas: 1001.788 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -129,36 +124,34 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000503 + Fee to the baker: ꜩ0.000375 Expected counter: 3 - Gas limit: 1979 + Gas limit: 1102 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000503 - payload fees(the block proposer) ....... +ꜩ0.000503 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000375 + payload fees(the block proposer) ....... +ꜩ0.000375 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1878.343 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 5 + Consumed gas: 1001.788 + Resulting inbox state: { level = 5 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 6 - starting_level_of_current_commitment_period = 2 - message_counter = 3 + nb_messages_in_commitment_period = 15 + message_counter = 4 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 3 + index = 4 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1878.939 units (will add 100 for safety) +Estimated gas: 1002.384 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -169,27 +162,24 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000515 + Fee to the baker: ꜩ0.000387 Expected counter: 4 - Gas limit: 1979 + Gas limit: 1103 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000515 - payload fees(the block proposer) ....... +ꜩ0.000515 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000387 + payload fees(the block proposer) ....... +ꜩ0.000387 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1879.067 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 6 + Consumed gas: 1002.384 + Resulting inbox state: { level = 6 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 10 - starting_level_of_current_commitment_period = 2 - message_counter = 4 + nb_messages_in_commitment_period = 21 + message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 4 + index = 5 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] @@ -197,9 +187,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1879.742 units (will add 100 for safety) +Estimated gas: 1002.980 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -210,27 +200,24 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000527 + Fee to the baker: ꜩ0.000399 Expected counter: 5 - Gas limit: 1980 + Gas limit: 1103 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000527 - payload fees(the block proposer) ....... +ꜩ0.000527 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000399 + payload fees(the block proposer) ....... +ꜩ0.000399 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1879.742 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 7 + Consumed gas: 1002.980 + Resulting inbox state: { level = 7 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 15 - starting_level_of_current_commitment_period = 2 - message_counter = 5 + nb_messages_in_commitment_period = 28 + message_counter = 6 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 5 + index = 6 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] @@ -238,9 +225,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1880.338 units (will add 100 for safety) +Estimated gas: 1003.576 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -251,27 +238,24 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00054 + Fee to the baker: ꜩ0.000411 Expected counter: 6 - Gas limit: 1981 + Gas limit: 1104 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00054 - payload fees(the block proposer) ....... +ꜩ0.00054 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000411 + payload fees(the block proposer) ....... +ꜩ0.000411 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1880.338 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 8 + Consumed gas: 1003.576 + Resulting inbox state: { level = 8 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 21 - starting_level_of_current_commitment_period = 2 - message_counter = 6 + nb_messages_in_commitment_period = 36 + message_counter = 7 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 6 + index = 7 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] @@ -279,9 +263,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1880.934 units (will add 100 for safety) +Estimated gas: 1004.172 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -292,37 +276,35 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000552 + Fee to the baker: ꜩ0.000423 Expected counter: 7 - Gas limit: 1981 + Gas limit: 1105 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000552 - payload fees(the block proposer) ....... +ꜩ0.000552 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000423 + payload fees(the block proposer) ....... +ꜩ0.000423 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1880.934 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 9 + Consumed gas: 1004.172 + Resulting inbox state: { level = 9 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 28 - starting_level_of_current_commitment_period = 2 - message_counter = 7 + nb_messages_in_commitment_period = 45 + message_counter = 8 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 7 + index = 8 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1881.530 units (will add 100 for safety) +Estimated gas: 1004.768 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -333,27 +315,24 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000564 + Fee to the baker: ꜩ0.000435 Expected counter: 8 - Gas limit: 1982 + Gas limit: 1105 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000564 - payload fees(the block proposer) ....... +ꜩ0.000564 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000435 + payload fees(the block proposer) ....... +ꜩ0.000435 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1881.658 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 10 + Consumed gas: 1004.768 + Resulting inbox state: { level = 10 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 36 - starting_level_of_current_commitment_period = 2 - message_counter = 8 + nb_messages_in_commitment_period = 55 + message_counter = 9 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 8 + index = 9 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] @@ -362,9 +341,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1882.333 units (will add 100 for safety) +Estimated gas: 1005.364 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -375,27 +354,24 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000576 + Fee to the baker: ꜩ0.000447 Expected counter: 9 - Gas limit: 1983 + Gas limit: 1106 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000576 - payload fees(the block proposer) ....... +ꜩ0.000576 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000447 + payload fees(the block proposer) ....... +ꜩ0.000447 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1882.333 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 11 + Consumed gas: 1005.364 + Resulting inbox state: { level = 11 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 45 - starting_level_of_current_commitment_period = 2 - message_counter = 9 + nb_messages_in_commitment_period = 66 + message_counter = 10 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 9 + index = 10 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] @@ -404,9 +380,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1882.929 units (will add 100 for safety) +Estimated gas: 1005.960 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -417,27 +393,24 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000588 + Fee to the baker: ꜩ0.000459 Expected counter: 10 - Gas limit: 1983 + Gas limit: 1106 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000588 - payload fees(the block proposer) ....... +ꜩ0.000588 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000459 + payload fees(the block proposer) ....... +ꜩ0.000459 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1882.929 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 12 + Consumed gas: 1005.960 + Resulting inbox state: { level = 12 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 55 - starting_level_of_current_commitment_period = 2 - message_counter = 10 + nb_messages_in_commitment_period = 78 + message_counter = 11 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 10 + index = 11 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] @@ -446,9 +419,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1883.525 units (will add 100 for safety) +Estimated gas: 1006.556 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -459,27 +432,24 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.0006 + Fee to the baker: ꜩ0.000471 Expected counter: 11 - Gas limit: 1984 + Gas limit: 1107 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.0006 - payload fees(the block proposer) ....... +ꜩ0.0006 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000471 + payload fees(the block proposer) ....... +ꜩ0.000471 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1883.525 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 13 + Consumed gas: 1006.556 + Resulting inbox state: { level = 13 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 66 - starting_level_of_current_commitment_period = 2 - message_counter = 11 + nb_messages_in_commitment_period = 91 + message_counter = 12 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 11 + index = 12 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] @@ -488,9 +458,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1884.121 units (will add 100 for safety) +Estimated gas: 1007.152 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -501,27 +471,24 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000612 + Fee to the baker: ꜩ0.000483 Expected counter: 12 - Gas limit: 1985 + Gas limit: 1108 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000612 - payload fees(the block proposer) ....... +ꜩ0.000612 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000483 + payload fees(the block proposer) ....... +ꜩ0.000483 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1884.121 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 14 + Consumed gas: 1007.152 + Resulting inbox state: { level = 14 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 78 - starting_level_of_current_commitment_period = 2 - message_counter = 12 + nb_messages_in_commitment_period = 105 + message_counter = 13 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 12 + index = 13 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] @@ -530,9 +497,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1884.717 units (will add 100 for safety) +Estimated gas: 1007.748 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -543,27 +510,24 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000624 + Fee to the baker: ꜩ0.000495 Expected counter: 13 - Gas limit: 1985 + Gas limit: 1108 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000624 - payload fees(the block proposer) ....... +ꜩ0.000624 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000495 + payload fees(the block proposer) ....... +ꜩ0.000495 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1884.717 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 15 + Consumed gas: 1007.748 + Resulting inbox state: { level = 15 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 91 - starting_level_of_current_commitment_period = 2 - message_counter = 13 + nb_messages_in_commitment_period = 120 + message_counter = 14 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 13 + index = 14 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] @@ -572,9 +536,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1885.313 units (will add 100 for safety) +Estimated gas: 1008.344 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -585,27 +549,24 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000636 + Fee to the baker: ꜩ0.000507 Expected counter: 14 - Gas limit: 1986 + Gas limit: 1109 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000636 - payload fees(the block proposer) ....... +ꜩ0.000636 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000507 + payload fees(the block proposer) ....... +ꜩ0.000507 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1885.313 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 16 + Consumed gas: 1008.344 + Resulting inbox state: { level = 16 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 105 - starting_level_of_current_commitment_period = 2 - message_counter = 14 + nb_messages_in_commitment_period = 136 + message_counter = 15 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 14 + index = 15 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] @@ -614,9 +575,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1885.909 units (will add 100 for safety) +Estimated gas: 1008.940 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -627,31 +588,29 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000648 + Fee to the baker: ꜩ0.000519 Expected counter: 15 - Gas limit: 1986 + Gas limit: 1109 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000648 - payload fees(the block proposer) ....... +ꜩ0.000648 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000519 + payload fees(the block proposer) ....... +ꜩ0.000519 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1885.909 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 17 + Consumed gas: 1008.940 + Resulting inbox state: { level = 17 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 15 - starting_level_of_current_commitment_period = 17 - message_counter = 15 + nb_messages_in_commitment_period = 153 + message_counter = 16 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 15 + index = 16 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] } @@ -662,7 +621,7 @@ This sequence of operations was run: "[SC_ROLLUP_PVM_STATE_HASH]", "inbox_level": 17, "predecessor": "[SC_ROLLUP_COMMITMENT_HASH]", - "number_of_ticks": "121" }, + "number_of_ticks": "151" }, "hash": "[SC_ROLLUP_COMMITMENT_HASH]" } ./octez-sc-rollup-client-alpha rpc get /local/last_published_commitment @@ -671,6 +630,6 @@ This sequence of operations was run: "[SC_ROLLUP_PVM_STATE_HASH]", "inbox_level": 17, "predecessor": "[SC_ROLLUP_COMMITMENT_HASH]", - "number_of_ticks": "121" }, + "number_of_ticks": "151" }, "hash": "[SC_ROLLUP_COMMITMENT_HASH]", "published_at_level": 20 } diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (non_final_lev.out b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (non_final_lev.out index 2e002fe62cc1..5d27499a7b37 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (non_final_lev.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (non_final_lev.out @@ -1,8 +1,8 @@ ./octez-client --wait none originate sc rollup from bootstrap1 of kind wasm_2_0_0 of type string booting with 010fa03030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303000d5024ff4c33df62141bd485af4154641aa9220c5dede9aed006eb5d3c88bff3b --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3126.593 units (will add 100 for safety) -Estimated storage: 10691 bytes added (will add 20 for safety) +Estimated gas: 2926.069 units (will add 100 for safety) +Estimated storage: 10560 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,34 +12,34 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.004713 + Fee to the baker: ꜩ0.004693 Expected counter: 1 - Gas limit: 3227 - Storage limit: 10711 bytes + Gas limit: 3027 + Storage limit: 10580 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004713 - payload fees(the block proposer) ....... +ꜩ0.004713 + [PUBLIC_KEY_HASH] ... -ꜩ0.004693 + payload fees(the block proposer) ....... +ꜩ0.004693 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string Boot sector Blake2B hash: '789431137a40057a39867cbc5cd7f984139360559c655c0508821b9be8047a02' This smart contract rollup origination was successfully applied - Consumed gas: 3126.593 - Storage size: 10691 bytes + Consumed gas: 2926.069 + Storage size: 10560 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ2.67275 - storage fees ........................... +ꜩ2.67275 + [PUBLIC_KEY_HASH] ... -ꜩ2.64 + storage fees ........................... +ꜩ2.64 ./octez-client rpc get '/chains/main/blocks/head/context/sc_rollup/[SC_ROLLUP_HASH]/genesis_info' { "level": 2, "commitment_hash": "[SC_ROLLUP_COMMITMENT_HASH]" } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1876.722 units (will add 100 for safety) +Estimated gas: 1000.596 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -50,61 +50,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000479 + Fee to the baker: ꜩ0.000351 Expected counter: 1 - Gas limit: 1977 + Gas limit: 1101 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000479 - payload fees(the block proposer) ....... +ꜩ0.000479 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] - This smart contract rollup messages submission was successfully applied - Consumed gas: 1876.850 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 3 - current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 1 - starting_level_of_current_commitment_period = 2 - message_counter = 1 - old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] - - content = [SC_ROLLUP_INBOX_HASH] - index = 1 - back_pointers = [SC_ROLLUP_INBOX_HASH] - - } - - -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' -Node is bootstrapped. -Estimated gas: 1877.540 units (will add 100 for safety) -Estimated storage: no bytes added -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000491 - Expected counter: 2 - Gas limit: 1978 - Storage limit: 0 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000491 - payload fees(the block proposer) ....... +ꜩ0.000491 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000351 + payload fees(the block proposer) ....... +ꜩ0.000351 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1877.668 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 4 + Consumed gas: 1000.596 + Resulting inbox state: { level = 3 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 3 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 6 message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -116,9 +74,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1878.343 units (will add 100 for safety) +Estimated gas: 1001.192 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -129,22 +87,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000503 - Expected counter: 3 - Gas limit: 1979 + Fee to the baker: ꜩ0.000363 + Expected counter: 2 + Gas limit: 1102 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000503 - payload fees(the block proposer) ....... +ꜩ0.000503 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000363 + payload fees(the block proposer) ....... +ꜩ0.000363 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1878.343 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 5 + Consumed gas: 1001.192 + Resulting inbox state: { level = 4 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 6 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 10 message_counter = 3 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -156,9 +111,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1878.939 units (will add 100 for safety) +Estimated gas: 1001.788 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -169,22 +124,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000515 - Expected counter: 4 - Gas limit: 1979 + Fee to the baker: ꜩ0.000375 + Expected counter: 3 + Gas limit: 1102 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000515 - payload fees(the block proposer) ....... +ꜩ0.000515 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000375 + payload fees(the block proposer) ....... +ꜩ0.000375 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1879.067 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 6 + Consumed gas: 1001.788 + Resulting inbox state: { level = 5 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 10 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 15 message_counter = 4 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -197,9 +149,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1879.742 units (will add 100 for safety) +Estimated gas: 1002.384 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -210,22 +162,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000527 - Expected counter: 5 - Gas limit: 1980 + Fee to the baker: ꜩ0.000387 + Expected counter: 4 + Gas limit: 1103 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000527 - payload fees(the block proposer) ....... +ꜩ0.000527 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000387 + payload fees(the block proposer) ....... +ꜩ0.000387 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1879.742 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 7 + Consumed gas: 1002.384 + Resulting inbox state: { level = 6 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 15 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 21 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -238,9 +187,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1880.338 units (will add 100 for safety) +Estimated gas: 1002.980 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -251,22 +200,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00054 - Expected counter: 6 - Gas limit: 1981 + Fee to the baker: ꜩ0.000399 + Expected counter: 5 + Gas limit: 1103 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00054 - payload fees(the block proposer) ....... +ꜩ0.00054 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000399 + payload fees(the block proposer) ....... +ꜩ0.000399 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1880.338 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 8 + Consumed gas: 1002.980 + Resulting inbox state: { level = 7 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 21 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 28 message_counter = 6 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -279,9 +225,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1880.934 units (will add 100 for safety) +Estimated gas: 1003.576 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -292,22 +238,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000552 - Expected counter: 7 - Gas limit: 1981 + Fee to the baker: ꜩ0.000411 + Expected counter: 6 + Gas limit: 1104 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000552 - payload fees(the block proposer) ....... +ꜩ0.000552 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000411 + payload fees(the block proposer) ....... +ꜩ0.000411 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1880.934 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 9 + Consumed gas: 1003.576 + Resulting inbox state: { level = 8 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 28 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 36 message_counter = 7 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -320,9 +263,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1881.530 units (will add 100 for safety) +Estimated gas: 1004.172 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -333,22 +276,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000564 - Expected counter: 8 - Gas limit: 1982 + Fee to the baker: ꜩ0.000423 + Expected counter: 7 + Gas limit: 1105 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000564 - payload fees(the block proposer) ....... +ꜩ0.000564 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000423 + payload fees(the block proposer) ....... +ꜩ0.000423 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1881.658 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 10 + Consumed gas: 1004.172 + Resulting inbox state: { level = 9 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 36 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 45 message_counter = 8 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -362,9 +302,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1882.333 units (will add 100 for safety) +Estimated gas: 1004.768 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -375,22 +315,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000576 - Expected counter: 9 - Gas limit: 1983 + Fee to the baker: ꜩ0.000435 + Expected counter: 8 + Gas limit: 1105 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000576 - payload fees(the block proposer) ....... +ꜩ0.000576 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000435 + payload fees(the block proposer) ....... +ꜩ0.000435 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1882.333 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 11 + Consumed gas: 1004.768 + Resulting inbox state: { level = 10 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 45 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 55 message_counter = 9 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -404,9 +341,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1882.929 units (will add 100 for safety) +Estimated gas: 1005.364 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -417,22 +354,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000588 - Expected counter: 10 - Gas limit: 1983 + Fee to the baker: ꜩ0.000447 + Expected counter: 9 + Gas limit: 1106 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000588 - payload fees(the block proposer) ....... +ꜩ0.000588 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000447 + payload fees(the block proposer) ....... +ꜩ0.000447 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1882.929 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 12 + Consumed gas: 1005.364 + Resulting inbox state: { level = 11 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 55 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 66 message_counter = 10 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -446,9 +380,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1883.525 units (will add 100 for safety) +Estimated gas: 1005.960 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -459,22 +393,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.0006 - Expected counter: 11 - Gas limit: 1984 + Fee to the baker: ꜩ0.000459 + Expected counter: 10 + Gas limit: 1106 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.0006 - payload fees(the block proposer) ....... +ꜩ0.0006 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000459 + payload fees(the block proposer) ....... +ꜩ0.000459 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1883.525 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 13 + Consumed gas: 1005.960 + Resulting inbox state: { level = 12 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 66 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 78 message_counter = 11 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -488,9 +419,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1884.121 units (will add 100 for safety) +Estimated gas: 1006.556 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -501,22 +432,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000612 - Expected counter: 12 - Gas limit: 1985 + Fee to the baker: ꜩ0.000471 + Expected counter: 11 + Gas limit: 1107 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000612 - payload fees(the block proposer) ....... +ꜩ0.000612 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000471 + payload fees(the block proposer) ....... +ꜩ0.000471 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1884.121 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 14 + Consumed gas: 1006.556 + Resulting inbox state: { level = 13 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 78 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 91 message_counter = 12 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -530,9 +458,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1884.717 units (will add 100 for safety) +Estimated gas: 1007.152 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -543,22 +471,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000624 - Expected counter: 13 - Gas limit: 1985 + Fee to the baker: ꜩ0.000483 + Expected counter: 12 + Gas limit: 1108 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000624 - payload fees(the block proposer) ....... +ꜩ0.000624 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000483 + payload fees(the block proposer) ....... +ꜩ0.000483 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1884.717 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 15 + Consumed gas: 1007.152 + Resulting inbox state: { level = 14 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 91 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 105 message_counter = 13 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -572,9 +497,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1885.313 units (will add 100 for safety) +Estimated gas: 1007.748 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -585,22 +510,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000636 - Expected counter: 14 - Gas limit: 1986 + Fee to the baker: ꜩ0.000495 + Expected counter: 13 + Gas limit: 1108 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000636 - payload fees(the block proposer) ....... +ꜩ0.000636 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000495 + payload fees(the block proposer) ....... +ꜩ0.000495 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1885.313 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 16 + Consumed gas: 1007.748 + Resulting inbox state: { level = 15 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 105 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 120 message_counter = 14 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -614,9 +536,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1885.909 units (will add 100 for safety) +Estimated gas: 1008.344 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -627,22 +549,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000648 - Expected counter: 15 - Gas limit: 1986 + Fee to the baker: ꜩ0.000507 + Expected counter: 14 + Gas limit: 1109 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000648 - payload fees(the block proposer) ....... +ꜩ0.000648 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000507 + payload fees(the block proposer) ....... +ꜩ0.000507 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1885.909 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 17 + Consumed gas: 1008.344 + Resulting inbox state: { level = 16 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 120 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 136 message_counter = 15 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -656,9 +575,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1886.505 units (will add 100 for safety) +Estimated gas: 1008.940 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -669,22 +588,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00066 - Expected counter: 16 - Gas limit: 1987 + Fee to the baker: ꜩ0.000519 + Expected counter: 15 + Gas limit: 1109 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00066 - payload fees(the block proposer) ....... +ꜩ0.00066 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000519 + payload fees(the block proposer) ....... +ꜩ0.000519 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1886.633 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 18 + Consumed gas: 1008.940 + Resulting inbox state: { level = 17 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 136 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 153 message_counter = 16 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -699,9 +615,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1887.308 units (will add 100 for safety) +Estimated gas: 1009.536 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -712,22 +628,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000672 - Expected counter: 17 - Gas limit: 1988 + Fee to the baker: ꜩ0.000531 + Expected counter: 16 + Gas limit: 1110 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000672 - payload fees(the block proposer) ....... +ꜩ0.000672 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000531 + payload fees(the block proposer) ....... +ꜩ0.000531 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1887.308 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 19 + Consumed gas: 1009.536 + Resulting inbox state: { level = 18 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 153 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 171 message_counter = 17 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -742,9 +655,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1887.904 units (will add 100 for safety) +Estimated gas: 1010.132 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -755,22 +668,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000684 - Expected counter: 18 - Gas limit: 1988 + Fee to the baker: ꜩ0.000544 + Expected counter: 17 + Gas limit: 1111 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000684 - payload fees(the block proposer) ....... +ꜩ0.000684 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000544 + payload fees(the block proposer) ....... +ꜩ0.000544 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1887.904 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 20 + Consumed gas: 1010.132 + Resulting inbox state: { level = 19 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 171 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 190 message_counter = 18 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -785,9 +695,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1888.500 units (will add 100 for safety) +Estimated gas: 1010.728 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -798,22 +708,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000696 - Expected counter: 19 - Gas limit: 1989 + Fee to the baker: ꜩ0.000556 + Expected counter: 18 + Gas limit: 1111 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000696 - payload fees(the block proposer) ....... +ꜩ0.000696 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000556 + payload fees(the block proposer) ....... +ꜩ0.000556 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1888.500 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 21 + Consumed gas: 1010.728 + Resulting inbox state: { level = 20 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 190 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 210 message_counter = 19 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -828,9 +735,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1889.096 units (will add 100 for safety) +Estimated gas: 1011.324 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -841,22 +748,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000708 - Expected counter: 20 - Gas limit: 1990 + Fee to the baker: ꜩ0.000568 + Expected counter: 19 + Gas limit: 1112 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000708 - payload fees(the block proposer) ....... +ꜩ0.000708 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000568 + payload fees(the block proposer) ....... +ꜩ0.000568 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1889.096 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 22 + Consumed gas: 1011.324 + Resulting inbox state: { level = 21 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 210 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 231 message_counter = 20 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -871,9 +775,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1889.692 units (will add 100 for safety) +Estimated gas: 1011.920 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -884,22 +788,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00072 - Expected counter: 21 - Gas limit: 1990 + Fee to the baker: ꜩ0.00058 + Expected counter: 20 + Gas limit: 1112 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00072 - payload fees(the block proposer) ....... +ꜩ0.00072 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.00058 + payload fees(the block proposer) ....... +ꜩ0.00058 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1889.692 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 23 + Consumed gas: 1011.920 + Resulting inbox state: { level = 22 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 231 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 253 message_counter = 21 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -914,9 +815,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1890.288 units (will add 100 for safety) +Estimated gas: 1012.516 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -927,22 +828,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000733 - Expected counter: 22 - Gas limit: 1991 + Fee to the baker: ꜩ0.000592 + Expected counter: 21 + Gas limit: 1113 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000733 - payload fees(the block proposer) ....... +ꜩ0.000733 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000592 + payload fees(the block proposer) ....... +ꜩ0.000592 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1890.288 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 24 + Consumed gas: 1012.516 + Resulting inbox state: { level = 23 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 253 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 276 message_counter = 22 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -957,9 +855,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1890.884 units (will add 100 for safety) +Estimated gas: 1013.112 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -970,22 +868,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000745 - Expected counter: 23 - Gas limit: 1991 + Fee to the baker: ꜩ0.000604 + Expected counter: 22 + Gas limit: 1114 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000745 - payload fees(the block proposer) ....... +ꜩ0.000745 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000604 + payload fees(the block proposer) ....... +ꜩ0.000604 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1890.884 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 25 + Consumed gas: 1013.112 + Resulting inbox state: { level = 24 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 276 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 300 message_counter = 23 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1000,9 +895,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1891.480 units (will add 100 for safety) +Estimated gas: 1013.708 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1013,22 +908,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000757 - Expected counter: 24 - Gas limit: 1992 + Fee to the baker: ꜩ0.000616 + Expected counter: 23 + Gas limit: 1114 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000757 - payload fees(the block proposer) ....... +ꜩ0.000757 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000616 + payload fees(the block proposer) ....... +ꜩ0.000616 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1891.480 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 26 + Consumed gas: 1013.708 + Resulting inbox state: { level = 25 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 300 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 325 message_counter = 24 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1043,9 +935,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1892.076 units (will add 100 for safety) +Estimated gas: 1014.304 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1056,22 +948,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000769 - Expected counter: 25 - Gas limit: 1993 + Fee to the baker: ꜩ0.000628 + Expected counter: 24 + Gas limit: 1115 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000769 - payload fees(the block proposer) ....... +ꜩ0.000769 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000628 + payload fees(the block proposer) ....... +ꜩ0.000628 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1892.076 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 27 + Consumed gas: 1014.304 + Resulting inbox state: { level = 26 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 325 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 351 message_counter = 25 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1086,9 +975,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1892.672 units (will add 100 for safety) +Estimated gas: 1014.900 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1099,22 +988,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000781 - Expected counter: 26 - Gas limit: 1993 + Fee to the baker: ꜩ0.00064 + Expected counter: 25 + Gas limit: 1115 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000781 - payload fees(the block proposer) ....... +ꜩ0.000781 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.00064 + payload fees(the block proposer) ....... +ꜩ0.00064 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1892.672 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 28 + Consumed gas: 1014.900 + Resulting inbox state: { level = 27 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 351 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 378 message_counter = 26 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1129,9 +1015,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1893.268 units (will add 100 for safety) +Estimated gas: 1015.496 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1142,22 +1028,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000793 - Expected counter: 27 - Gas limit: 1994 + Fee to the baker: ꜩ0.000652 + Expected counter: 26 + Gas limit: 1116 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000793 - payload fees(the block proposer) ....... +ꜩ0.000793 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000652 + payload fees(the block proposer) ....... +ꜩ0.000652 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1893.268 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 29 + Consumed gas: 1015.496 + Resulting inbox state: { level = 28 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 378 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 406 message_counter = 27 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1172,9 +1055,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1893.864 units (will add 100 for safety) +Estimated gas: 1016.092 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1185,22 +1068,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000805 - Expected counter: 28 - Gas limit: 1994 + Fee to the baker: ꜩ0.000664 + Expected counter: 27 + Gas limit: 1117 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000805 - payload fees(the block proposer) ....... +ꜩ0.000805 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000664 + payload fees(the block proposer) ....... +ꜩ0.000664 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1893.864 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 30 + Consumed gas: 1016.092 + Resulting inbox state: { level = 29 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 406 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 435 message_counter = 28 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1215,9 +1095,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1894.460 units (will add 100 for safety) +Estimated gas: 1016.688 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1228,22 +1108,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000817 - Expected counter: 29 - Gas limit: 1995 + Fee to the baker: ꜩ0.000676 + Expected counter: 28 + Gas limit: 1117 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000817 - payload fees(the block proposer) ....... +ꜩ0.000817 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000676 + payload fees(the block proposer) ....... +ꜩ0.000676 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1894.460 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 31 + Consumed gas: 1016.688 + Resulting inbox state: { level = 30 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 435 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 465 message_counter = 29 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1258,9 +1135,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1895.056 units (will add 100 for safety) +Estimated gas: 1017.284 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1271,22 +1148,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000829 - Expected counter: 30 - Gas limit: 1996 + Fee to the baker: ꜩ0.000688 + Expected counter: 29 + Gas limit: 1118 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000829 - payload fees(the block proposer) ....... +ꜩ0.000829 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000688 + payload fees(the block proposer) ....... +ꜩ0.000688 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1895.056 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 32 + Consumed gas: 1017.284 + Resulting inbox state: { level = 31 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 30 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 496 message_counter = 30 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1301,6 +1175,46 @@ This sequence of operations was run: } +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 +Node is bootstrapped. +Estimated gas: 1017.880 units (will add 100 for safety) +Estimated storage: no bytes added +Operation successfully injected in the node. +Operation hash is '[OPERATION_HASH]' +NOT waiting for the operation to be included. +Use command + octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] +and/or an external block explorer to make sure that it has been included. +This sequence of operations was run: + Manager signed operations: + From: [PUBLIC_KEY_HASH] + Fee to the baker: ꜩ0.0007 + Expected counter: 30 + Gas limit: 1118 + Storage limit: 0 bytes + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ0.0007 + payload fees(the block proposer) ....... +ꜩ0.0007 + Smart contract rollup messages submission + This smart contract rollup messages submission was successfully applied + Consumed gas: 1017.880 + Resulting inbox state: { level = 32 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 528 + message_counter = 31 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 31 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + ./octez-sc-rollup-client-alpha rpc get /global/last_stored_commitment null diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (observer_does.out b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (observer_does.out index 12c229c5f1ef..b5e0cb5819b4 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (observer_does.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (observer_does.out @@ -1,8 +1,8 @@ ./octez-client --wait none originate sc rollup from bootstrap1 of kind wasm_2_0_0 of type string booting with 010fa03030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303000d5024ff4c33df62141bd485af4154641aa9220c5dede9aed006eb5d3c88bff3b --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3126.593 units (will add 100 for safety) -Estimated storage: 10691 bytes added (will add 20 for safety) +Estimated gas: 2926.069 units (will add 100 for safety) +Estimated storage: 10560 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,30 +12,30 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.004713 + Fee to the baker: ꜩ0.004693 Expected counter: 1 - Gas limit: 3227 - Storage limit: 10711 bytes + Gas limit: 3027 + Storage limit: 10580 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004713 - payload fees(the block proposer) ....... +ꜩ0.004713 + [PUBLIC_KEY_HASH] ... -ꜩ0.004693 + payload fees(the block proposer) ....... +ꜩ0.004693 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string Boot sector Blake2B hash: '789431137a40057a39867cbc5cd7f984139360559c655c0508821b9be8047a02' This smart contract rollup origination was successfully applied - Consumed gas: 3126.593 - Storage size: 10691 bytes + Consumed gas: 2926.069 + Storage size: 10560 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ2.67275 - storage fees ........................... +ꜩ2.67275 + [PUBLIC_KEY_HASH] ... -ꜩ2.64 + storage fees ........................... +ꜩ2.64 -./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1876.722 units (will add 100 for safety) +Estimated gas: 1000.596 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -46,61 +46,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000479 + Fee to the baker: ꜩ0.000351 Expected counter: 1 - Gas limit: 1977 + Gas limit: 1101 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000479 - payload fees(the block proposer) ....... +ꜩ0.000479 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] - This smart contract rollup messages submission was successfully applied - Consumed gas: 1876.850 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 3 - current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 1 - starting_level_of_current_commitment_period = 2 - message_counter = 1 - old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] - - content = [SC_ROLLUP_INBOX_HASH] - index = 1 - back_pointers = [SC_ROLLUP_INBOX_HASH] - - } - - -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' -Node is bootstrapped. -Estimated gas: 1877.540 units (will add 100 for safety) -Estimated storage: no bytes added -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000491 - Expected counter: 2 - Gas limit: 1978 - Storage limit: 0 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000491 - payload fees(the block proposer) ....... +ꜩ0.000491 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000351 + payload fees(the block proposer) ....... +ꜩ0.000351 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1877.668 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 4 + Consumed gas: 1000.596 + Resulting inbox state: { level = 3 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 3 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 6 message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -112,9 +70,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1878.343 units (will add 100 for safety) +Estimated gas: 1001.192 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -125,22 +83,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000503 - Expected counter: 3 - Gas limit: 1979 + Fee to the baker: ꜩ0.000363 + Expected counter: 2 + Gas limit: 1102 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000503 - payload fees(the block proposer) ....... +ꜩ0.000503 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000363 + payload fees(the block proposer) ....... +ꜩ0.000363 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1878.343 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 5 + Consumed gas: 1001.192 + Resulting inbox state: { level = 4 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 6 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 10 message_counter = 3 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -152,9 +107,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1878.939 units (will add 100 for safety) +Estimated gas: 1001.788 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -165,22 +120,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000515 - Expected counter: 4 - Gas limit: 1979 + Fee to the baker: ꜩ0.000375 + Expected counter: 3 + Gas limit: 1102 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000515 - payload fees(the block proposer) ....... +ꜩ0.000515 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000375 + payload fees(the block proposer) ....... +ꜩ0.000375 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1879.067 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 6 + Consumed gas: 1001.788 + Resulting inbox state: { level = 5 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 10 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 15 message_counter = 4 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -193,9 +145,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1879.742 units (will add 100 for safety) +Estimated gas: 1002.384 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -206,22 +158,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000527 - Expected counter: 5 - Gas limit: 1980 + Fee to the baker: ꜩ0.000387 + Expected counter: 4 + Gas limit: 1103 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000527 - payload fees(the block proposer) ....... +ꜩ0.000527 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000387 + payload fees(the block proposer) ....... +ꜩ0.000387 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1879.742 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 7 + Consumed gas: 1002.384 + Resulting inbox state: { level = 6 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 15 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 21 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -234,9 +183,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1880.338 units (will add 100 for safety) +Estimated gas: 1002.980 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -247,22 +196,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00054 - Expected counter: 6 - Gas limit: 1981 + Fee to the baker: ꜩ0.000399 + Expected counter: 5 + Gas limit: 1103 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00054 - payload fees(the block proposer) ....... +ꜩ0.00054 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000399 + payload fees(the block proposer) ....... +ꜩ0.000399 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1880.338 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 8 + Consumed gas: 1002.980 + Resulting inbox state: { level = 7 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 21 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 28 message_counter = 6 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -275,9 +221,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1880.934 units (will add 100 for safety) +Estimated gas: 1003.576 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -288,22 +234,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000552 - Expected counter: 7 - Gas limit: 1981 + Fee to the baker: ꜩ0.000411 + Expected counter: 6 + Gas limit: 1104 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000552 - payload fees(the block proposer) ....... +ꜩ0.000552 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000411 + payload fees(the block proposer) ....... +ꜩ0.000411 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1880.934 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 9 + Consumed gas: 1003.576 + Resulting inbox state: { level = 8 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 28 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 36 message_counter = 7 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -316,9 +259,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1881.530 units (will add 100 for safety) +Estimated gas: 1004.172 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -329,22 +272,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000564 - Expected counter: 8 - Gas limit: 1982 + Fee to the baker: ꜩ0.000423 + Expected counter: 7 + Gas limit: 1105 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000564 - payload fees(the block proposer) ....... +ꜩ0.000564 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000423 + payload fees(the block proposer) ....... +ꜩ0.000423 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1881.658 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 10 + Consumed gas: 1004.172 + Resulting inbox state: { level = 9 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 36 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 45 message_counter = 8 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -358,9 +298,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1882.333 units (will add 100 for safety) +Estimated gas: 1004.768 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -371,22 +311,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000576 - Expected counter: 9 - Gas limit: 1983 + Fee to the baker: ꜩ0.000435 + Expected counter: 8 + Gas limit: 1105 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000576 - payload fees(the block proposer) ....... +ꜩ0.000576 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000435 + payload fees(the block proposer) ....... +ꜩ0.000435 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1882.333 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 11 + Consumed gas: 1004.768 + Resulting inbox state: { level = 10 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 45 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 55 message_counter = 9 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -400,9 +337,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1882.929 units (will add 100 for safety) +Estimated gas: 1005.364 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -413,22 +350,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000588 - Expected counter: 10 - Gas limit: 1983 + Fee to the baker: ꜩ0.000447 + Expected counter: 9 + Gas limit: 1106 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000588 - payload fees(the block proposer) ....... +ꜩ0.000588 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000447 + payload fees(the block proposer) ....... +ꜩ0.000447 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1882.929 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 12 + Consumed gas: 1005.364 + Resulting inbox state: { level = 11 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 55 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 66 message_counter = 10 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -442,9 +376,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1883.525 units (will add 100 for safety) +Estimated gas: 1005.960 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -455,22 +389,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.0006 - Expected counter: 11 - Gas limit: 1984 + Fee to the baker: ꜩ0.000459 + Expected counter: 10 + Gas limit: 1106 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.0006 - payload fees(the block proposer) ....... +ꜩ0.0006 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000459 + payload fees(the block proposer) ....... +ꜩ0.000459 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1883.525 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 13 + Consumed gas: 1005.960 + Resulting inbox state: { level = 12 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 66 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 78 message_counter = 11 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -484,9 +415,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1884.121 units (will add 100 for safety) +Estimated gas: 1006.556 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -497,22 +428,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000612 - Expected counter: 12 - Gas limit: 1985 + Fee to the baker: ꜩ0.000471 + Expected counter: 11 + Gas limit: 1107 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000612 - payload fees(the block proposer) ....... +ꜩ0.000612 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000471 + payload fees(the block proposer) ....... +ꜩ0.000471 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1884.121 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 14 + Consumed gas: 1006.556 + Resulting inbox state: { level = 13 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 78 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 91 message_counter = 12 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -526,9 +454,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1884.717 units (will add 100 for safety) +Estimated gas: 1007.152 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -539,22 +467,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000624 - Expected counter: 13 - Gas limit: 1985 + Fee to the baker: ꜩ0.000483 + Expected counter: 12 + Gas limit: 1108 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000624 - payload fees(the block proposer) ....... +ꜩ0.000624 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000483 + payload fees(the block proposer) ....... +ꜩ0.000483 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1884.717 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 15 + Consumed gas: 1007.152 + Resulting inbox state: { level = 14 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 91 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 105 message_counter = 13 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -568,9 +493,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1885.313 units (will add 100 for safety) +Estimated gas: 1007.748 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -581,22 +506,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000636 - Expected counter: 14 - Gas limit: 1986 + Fee to the baker: ꜩ0.000495 + Expected counter: 13 + Gas limit: 1108 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000636 - payload fees(the block proposer) ....... +ꜩ0.000636 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000495 + payload fees(the block proposer) ....... +ꜩ0.000495 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1885.313 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 16 + Consumed gas: 1007.748 + Resulting inbox state: { level = 15 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 105 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 120 message_counter = 14 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -610,9 +532,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1885.909 units (will add 100 for safety) +Estimated gas: 1008.344 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -623,22 +545,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000648 - Expected counter: 15 - Gas limit: 1986 + Fee to the baker: ꜩ0.000507 + Expected counter: 14 + Gas limit: 1109 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000648 - payload fees(the block proposer) ....... +ꜩ0.000648 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000507 + payload fees(the block proposer) ....... +ꜩ0.000507 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1885.909 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 17 + Consumed gas: 1008.344 + Resulting inbox state: { level = 16 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 120 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 136 message_counter = 15 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -652,9 +571,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1886.505 units (will add 100 for safety) +Estimated gas: 1008.940 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -665,22 +584,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00066 - Expected counter: 16 - Gas limit: 1987 + Fee to the baker: ꜩ0.000519 + Expected counter: 15 + Gas limit: 1109 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00066 - payload fees(the block proposer) ....... +ꜩ0.00066 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000519 + payload fees(the block proposer) ....... +ꜩ0.000519 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1886.633 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 18 + Consumed gas: 1008.940 + Resulting inbox state: { level = 17 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 136 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 153 message_counter = 16 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -695,9 +611,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1887.308 units (will add 100 for safety) +Estimated gas: 1009.536 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -708,22 +624,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000672 - Expected counter: 17 - Gas limit: 1988 + Fee to the baker: ꜩ0.000531 + Expected counter: 16 + Gas limit: 1110 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000672 - payload fees(the block proposer) ....... +ꜩ0.000672 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000531 + payload fees(the block proposer) ....... +ꜩ0.000531 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1887.308 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 19 + Consumed gas: 1009.536 + Resulting inbox state: { level = 18 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 153 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 171 message_counter = 17 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -738,9 +651,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1887.904 units (will add 100 for safety) +Estimated gas: 1010.132 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -751,22 +664,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000684 - Expected counter: 18 - Gas limit: 1988 + Fee to the baker: ꜩ0.000544 + Expected counter: 17 + Gas limit: 1111 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000684 - payload fees(the block proposer) ....... +ꜩ0.000684 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000544 + payload fees(the block proposer) ....... +ꜩ0.000544 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1887.904 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 20 + Consumed gas: 1010.132 + Resulting inbox state: { level = 19 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 171 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 190 message_counter = 18 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -781,9 +691,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1888.500 units (will add 100 for safety) +Estimated gas: 1010.728 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -794,22 +704,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000696 - Expected counter: 19 - Gas limit: 1989 + Fee to the baker: ꜩ0.000556 + Expected counter: 18 + Gas limit: 1111 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000696 - payload fees(the block proposer) ....... +ꜩ0.000696 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000556 + payload fees(the block proposer) ....... +ꜩ0.000556 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1888.500 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 21 + Consumed gas: 1010.728 + Resulting inbox state: { level = 20 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 190 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 210 message_counter = 19 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -824,9 +731,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1889.096 units (will add 100 for safety) +Estimated gas: 1011.324 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -837,22 +744,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000708 - Expected counter: 20 - Gas limit: 1990 + Fee to the baker: ꜩ0.000568 + Expected counter: 19 + Gas limit: 1112 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000708 - payload fees(the block proposer) ....... +ꜩ0.000708 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000568 + payload fees(the block proposer) ....... +ꜩ0.000568 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1889.096 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 22 + Consumed gas: 1011.324 + Resulting inbox state: { level = 21 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 210 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 231 message_counter = 20 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -867,9 +771,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1889.692 units (will add 100 for safety) +Estimated gas: 1011.920 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -880,22 +784,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00072 - Expected counter: 21 - Gas limit: 1990 + Fee to the baker: ꜩ0.00058 + Expected counter: 20 + Gas limit: 1112 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00072 - payload fees(the block proposer) ....... +ꜩ0.00072 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.00058 + payload fees(the block proposer) ....... +ꜩ0.00058 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1889.692 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 23 + Consumed gas: 1011.920 + Resulting inbox state: { level = 22 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 231 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 253 message_counter = 21 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -910,9 +811,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1890.288 units (will add 100 for safety) +Estimated gas: 1012.516 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -923,22 +824,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000733 - Expected counter: 22 - Gas limit: 1991 + Fee to the baker: ꜩ0.000592 + Expected counter: 21 + Gas limit: 1113 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000733 - payload fees(the block proposer) ....... +ꜩ0.000733 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000592 + payload fees(the block proposer) ....... +ꜩ0.000592 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1890.288 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 24 + Consumed gas: 1012.516 + Resulting inbox state: { level = 23 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 253 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 276 message_counter = 22 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -953,9 +851,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1890.884 units (will add 100 for safety) +Estimated gas: 1013.112 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -966,22 +864,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000745 - Expected counter: 23 - Gas limit: 1991 + Fee to the baker: ꜩ0.000604 + Expected counter: 22 + Gas limit: 1114 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000745 - payload fees(the block proposer) ....... +ꜩ0.000745 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000604 + payload fees(the block proposer) ....... +ꜩ0.000604 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1890.884 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 25 + Consumed gas: 1013.112 + Resulting inbox state: { level = 24 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 276 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 300 message_counter = 23 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -996,9 +891,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1891.480 units (will add 100 for safety) +Estimated gas: 1013.708 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1009,22 +904,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000757 - Expected counter: 24 - Gas limit: 1992 + Fee to the baker: ꜩ0.000616 + Expected counter: 23 + Gas limit: 1114 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000757 - payload fees(the block proposer) ....... +ꜩ0.000757 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000616 + payload fees(the block proposer) ....... +ꜩ0.000616 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1891.480 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 26 + Consumed gas: 1013.708 + Resulting inbox state: { level = 25 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 300 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 325 message_counter = 24 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1039,9 +931,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1892.076 units (will add 100 for safety) +Estimated gas: 1014.304 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1052,22 +944,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000769 - Expected counter: 25 - Gas limit: 1993 + Fee to the baker: ꜩ0.000628 + Expected counter: 24 + Gas limit: 1115 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000769 - payload fees(the block proposer) ....... +ꜩ0.000769 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000628 + payload fees(the block proposer) ....... +ꜩ0.000628 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1892.076 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 27 + Consumed gas: 1014.304 + Resulting inbox state: { level = 26 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 325 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 351 message_counter = 25 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1082,9 +971,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1892.672 units (will add 100 for safety) +Estimated gas: 1014.900 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1095,22 +984,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000781 - Expected counter: 26 - Gas limit: 1993 + Fee to the baker: ꜩ0.00064 + Expected counter: 25 + Gas limit: 1115 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000781 - payload fees(the block proposer) ....... +ꜩ0.000781 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.00064 + payload fees(the block proposer) ....... +ꜩ0.00064 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1892.672 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 28 + Consumed gas: 1014.900 + Resulting inbox state: { level = 27 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 351 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 378 message_counter = 26 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1125,9 +1011,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1893.268 units (will add 100 for safety) +Estimated gas: 1015.496 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1138,22 +1024,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000793 - Expected counter: 27 - Gas limit: 1994 + Fee to the baker: ꜩ0.000652 + Expected counter: 26 + Gas limit: 1116 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000793 - payload fees(the block proposer) ....... +ꜩ0.000793 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000652 + payload fees(the block proposer) ....... +ꜩ0.000652 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1893.268 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 29 + Consumed gas: 1015.496 + Resulting inbox state: { level = 28 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 378 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 406 message_counter = 27 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1168,9 +1051,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1893.864 units (will add 100 for safety) +Estimated gas: 1016.092 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1181,22 +1064,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000805 - Expected counter: 28 - Gas limit: 1994 + Fee to the baker: ꜩ0.000664 + Expected counter: 27 + Gas limit: 1117 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000805 - payload fees(the block proposer) ....... +ꜩ0.000805 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000664 + payload fees(the block proposer) ....... +ꜩ0.000664 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1893.864 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 30 + Consumed gas: 1016.092 + Resulting inbox state: { level = 29 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 406 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 435 message_counter = 28 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1211,9 +1091,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1894.460 units (will add 100 for safety) +Estimated gas: 1016.688 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1224,22 +1104,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000817 - Expected counter: 29 - Gas limit: 1995 + Fee to the baker: ꜩ0.000676 + Expected counter: 28 + Gas limit: 1117 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000817 - payload fees(the block proposer) ....... +ꜩ0.000817 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000676 + payload fees(the block proposer) ....... +ꜩ0.000676 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1894.460 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 31 + Consumed gas: 1016.688 + Resulting inbox state: { level = 30 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 435 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 465 message_counter = 29 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1254,9 +1131,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1895.056 units (will add 100 for safety) +Estimated gas: 1017.284 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1267,22 +1144,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000829 - Expected counter: 30 - Gas limit: 1996 + Fee to the baker: ꜩ0.000688 + Expected counter: 29 + Gas limit: 1118 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000829 - payload fees(the block proposer) ....... +ꜩ0.000829 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000688 + payload fees(the block proposer) ....... +ꜩ0.000688 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1895.056 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 32 + Consumed gas: 1017.284 + Resulting inbox state: { level = 31 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 30 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 496 message_counter = 30 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1297,9 +1171,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1877.772 units (will add 100 for safety) +Estimated gas: 1017.880 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1310,23 +1184,20 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000479 - Expected counter: 31 - Gas limit: 1978 + Fee to the baker: ꜩ0.0007 + Expected counter: 30 + Gas limit: 1118 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000479 - payload fees(the block proposer) ....... +ꜩ0.000479 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.0007 + payload fees(the block proposer) ....... +ꜩ0.0007 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1877.772 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 33 + Consumed gas: 1017.880 + Resulting inbox state: { level = 32 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 31 - starting_level_of_current_commitment_period = 32 - message_counter = 1 + nb_messages_in_commitment_period = 528 + message_counter = 31 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] @@ -1340,9 +1211,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1878.368 units (will add 100 for safety) +Estimated gas: 1000.596 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1353,22 +1224,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000491 - Expected counter: 32 - Gas limit: 1979 + Fee to the baker: ꜩ0.000351 + Expected counter: 31 + Gas limit: 1101 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000491 - payload fees(the block proposer) ....... +ꜩ0.000491 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000351 + payload fees(the block proposer) ....... +ꜩ0.000351 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1878.496 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 34 + Consumed gas: 1000.596 + Resulting inbox state: { level = 33 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 33 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 531 message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1384,9 +1252,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1879.171 units (will add 100 for safety) +Estimated gas: 1001.192 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1397,22 +1265,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000503 - Expected counter: 33 - Gas limit: 1980 + Fee to the baker: ꜩ0.000363 + Expected counter: 32 + Gas limit: 1102 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000503 - payload fees(the block proposer) ....... +ꜩ0.000503 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000363 + payload fees(the block proposer) ....... +ꜩ0.000363 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1879.171 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 35 + Consumed gas: 1001.192 + Resulting inbox state: { level = 34 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 36 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 535 message_counter = 3 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1428,9 +1293,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1879.767 units (will add 100 for safety) +Estimated gas: 1001.788 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1441,22 +1306,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000515 - Expected counter: 34 - Gas limit: 1980 + Fee to the baker: ꜩ0.000375 + Expected counter: 33 + Gas limit: 1102 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000515 - payload fees(the block proposer) ....... +ꜩ0.000515 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000375 + payload fees(the block proposer) ....... +ꜩ0.000375 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1879.767 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 36 + Consumed gas: 1001.788 + Resulting inbox state: { level = 35 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 40 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 540 message_counter = 4 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1472,9 +1334,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1880.363 units (will add 100 for safety) +Estimated gas: 1002.384 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1485,22 +1347,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000528 - Expected counter: 35 - Gas limit: 1981 + Fee to the baker: ꜩ0.000387 + Expected counter: 34 + Gas limit: 1103 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000528 - payload fees(the block proposer) ....... +ꜩ0.000528 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000387 + payload fees(the block proposer) ....... +ꜩ0.000387 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1880.363 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 37 + Consumed gas: 1002.384 + Resulting inbox state: { level = 36 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 45 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 546 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1516,9 +1375,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1880.959 units (will add 100 for safety) +Estimated gas: 1002.980 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1529,22 +1388,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00054 - Expected counter: 36 - Gas limit: 1981 + Fee to the baker: ꜩ0.000399 + Expected counter: 35 + Gas limit: 1103 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00054 - payload fees(the block proposer) ....... +ꜩ0.00054 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000399 + payload fees(the block proposer) ....... +ꜩ0.000399 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1880.959 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 38 + Consumed gas: 1002.980 + Resulting inbox state: { level = 37 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 51 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 553 message_counter = 6 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1560,9 +1416,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1881.555 units (will add 100 for safety) +Estimated gas: 1003.576 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1573,22 +1429,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000552 - Expected counter: 37 - Gas limit: 1982 + Fee to the baker: ꜩ0.000411 + Expected counter: 36 + Gas limit: 1104 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000552 - payload fees(the block proposer) ....... +ꜩ0.000552 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000411 + payload fees(the block proposer) ....... +ꜩ0.000411 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1881.555 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 39 + Consumed gas: 1003.576 + Resulting inbox state: { level = 38 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 58 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 561 message_counter = 7 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1604,9 +1457,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1882.151 units (will add 100 for safety) +Estimated gas: 1004.172 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1617,22 +1470,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000564 - Expected counter: 38 - Gas limit: 1983 + Fee to the baker: ꜩ0.000423 + Expected counter: 37 + Gas limit: 1105 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000564 - payload fees(the block proposer) ....... +ꜩ0.000564 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000423 + payload fees(the block proposer) ....... +ꜩ0.000423 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1882.151 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 40 + Consumed gas: 1004.172 + Resulting inbox state: { level = 39 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 66 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 570 message_counter = 8 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1648,9 +1498,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1882.747 units (will add 100 for safety) +Estimated gas: 1004.768 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1661,22 +1511,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000576 - Expected counter: 39 - Gas limit: 1983 + Fee to the baker: ꜩ0.000435 + Expected counter: 38 + Gas limit: 1105 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000576 - payload fees(the block proposer) ....... +ꜩ0.000576 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000435 + payload fees(the block proposer) ....... +ꜩ0.000435 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1882.747 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 41 + Consumed gas: 1004.768 + Resulting inbox state: { level = 40 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 75 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 580 message_counter = 9 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1692,9 +1539,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1883.343 units (will add 100 for safety) +Estimated gas: 1005.364 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1705,22 +1552,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000588 - Expected counter: 40 - Gas limit: 1984 + Fee to the baker: ꜩ0.000447 + Expected counter: 39 + Gas limit: 1106 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000588 - payload fees(the block proposer) ....... +ꜩ0.000588 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000447 + payload fees(the block proposer) ....... +ꜩ0.000447 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1883.343 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 42 + Consumed gas: 1005.364 + Resulting inbox state: { level = 41 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 85 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 591 message_counter = 10 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1736,9 +1580,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1883.939 units (will add 100 for safety) +Estimated gas: 1005.960 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1749,22 +1593,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.0006 - Expected counter: 41 - Gas limit: 1984 + Fee to the baker: ꜩ0.000459 + Expected counter: 40 + Gas limit: 1106 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.0006 - payload fees(the block proposer) ....... +ꜩ0.0006 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000459 + payload fees(the block proposer) ....... +ꜩ0.000459 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1883.939 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 43 + Consumed gas: 1005.960 + Resulting inbox state: { level = 42 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 96 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 603 message_counter = 11 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1780,9 +1621,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1884.535 units (will add 100 for safety) +Estimated gas: 1006.556 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1793,22 +1634,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000612 - Expected counter: 42 - Gas limit: 1985 + Fee to the baker: ꜩ0.000471 + Expected counter: 41 + Gas limit: 1107 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000612 - payload fees(the block proposer) ....... +ꜩ0.000612 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000471 + payload fees(the block proposer) ....... +ꜩ0.000471 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1884.535 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 44 + Consumed gas: 1006.556 + Resulting inbox state: { level = 43 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 108 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 616 message_counter = 12 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1824,9 +1662,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1885.131 units (will add 100 for safety) +Estimated gas: 1007.152 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1837,22 +1675,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000624 - Expected counter: 43 - Gas limit: 1986 + Fee to the baker: ꜩ0.000483 + Expected counter: 42 + Gas limit: 1108 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000624 - payload fees(the block proposer) ....... +ꜩ0.000624 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000483 + payload fees(the block proposer) ....... +ꜩ0.000483 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1885.131 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 45 + Consumed gas: 1007.152 + Resulting inbox state: { level = 44 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 121 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 630 message_counter = 13 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1868,9 +1703,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1885.727 units (will add 100 for safety) +Estimated gas: 1007.748 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1881,22 +1716,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000636 - Expected counter: 44 - Gas limit: 1986 + Fee to the baker: ꜩ0.000495 + Expected counter: 43 + Gas limit: 1108 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000636 - payload fees(the block proposer) ....... +ꜩ0.000636 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000495 + payload fees(the block proposer) ....... +ꜩ0.000495 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1885.727 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 46 + Consumed gas: 1007.748 + Resulting inbox state: { level = 45 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 135 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 645 message_counter = 14 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1912,9 +1744,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1886.323 units (will add 100 for safety) +Estimated gas: 1008.344 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1925,22 +1757,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000648 - Expected counter: 45 - Gas limit: 1987 + Fee to the baker: ꜩ0.000507 + Expected counter: 44 + Gas limit: 1109 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000648 - payload fees(the block proposer) ....... +ꜩ0.000648 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000507 + payload fees(the block proposer) ....... +ꜩ0.000507 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1886.323 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 47 + Consumed gas: 1008.344 + Resulting inbox state: { level = 46 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 150 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 661 message_counter = 15 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1956,9 +1785,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1886.919 units (will add 100 for safety) +Estimated gas: 1008.940 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1969,22 +1798,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00066 - Expected counter: 46 - Gas limit: 1987 + Fee to the baker: ꜩ0.000519 + Expected counter: 45 + Gas limit: 1109 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00066 - payload fees(the block proposer) ....... +ꜩ0.00066 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000519 + payload fees(the block proposer) ....... +ꜩ0.000519 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1886.919 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 48 + Consumed gas: 1008.940 + Resulting inbox state: { level = 47 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 166 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 678 message_counter = 16 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2000,9 +1826,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1887.515 units (will add 100 for safety) +Estimated gas: 1009.536 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2013,22 +1839,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000672 - Expected counter: 47 - Gas limit: 1988 + Fee to the baker: ꜩ0.000531 + Expected counter: 46 + Gas limit: 1110 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000672 - payload fees(the block proposer) ....... +ꜩ0.000672 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000531 + payload fees(the block proposer) ....... +ꜩ0.000531 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1887.515 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 49 + Consumed gas: 1009.536 + Resulting inbox state: { level = 48 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 183 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 696 message_counter = 17 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2044,9 +1867,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1888.111 units (will add 100 for safety) +Estimated gas: 1010.132 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2057,22 +1880,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000684 - Expected counter: 48 - Gas limit: 1989 + Fee to the baker: ꜩ0.000544 + Expected counter: 47 + Gas limit: 1111 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000684 - payload fees(the block proposer) ....... +ꜩ0.000684 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000544 + payload fees(the block proposer) ....... +ꜩ0.000544 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1888.111 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 50 + Consumed gas: 1010.132 + Resulting inbox state: { level = 49 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 201 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 715 message_counter = 18 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2088,9 +1908,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1888.707 units (will add 100 for safety) +Estimated gas: 1010.728 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2101,22 +1921,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000696 - Expected counter: 49 - Gas limit: 1989 + Fee to the baker: ꜩ0.000556 + Expected counter: 48 + Gas limit: 1111 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000696 - payload fees(the block proposer) ....... +ꜩ0.000696 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000556 + payload fees(the block proposer) ....... +ꜩ0.000556 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1888.707 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 51 + Consumed gas: 1010.728 + Resulting inbox state: { level = 50 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 220 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 735 message_counter = 19 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2132,9 +1949,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1889.303 units (will add 100 for safety) +Estimated gas: 1011.324 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2145,22 +1962,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000708 - Expected counter: 50 - Gas limit: 1990 + Fee to the baker: ꜩ0.000568 + Expected counter: 49 + Gas limit: 1112 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000708 - payload fees(the block proposer) ....... +ꜩ0.000708 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000568 + payload fees(the block proposer) ....... +ꜩ0.000568 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1889.303 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 52 + Consumed gas: 1011.324 + Resulting inbox state: { level = 51 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 240 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 756 message_counter = 20 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2176,9 +1990,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1889.899 units (will add 100 for safety) +Estimated gas: 1011.920 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2189,22 +2003,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00072 - Expected counter: 51 - Gas limit: 1990 + Fee to the baker: ꜩ0.00058 + Expected counter: 50 + Gas limit: 1112 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00072 - payload fees(the block proposer) ....... +ꜩ0.00072 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.00058 + payload fees(the block proposer) ....... +ꜩ0.00058 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1889.899 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 53 + Consumed gas: 1011.920 + Resulting inbox state: { level = 52 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 261 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 778 message_counter = 21 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2220,9 +2031,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1890.495 units (will add 100 for safety) +Estimated gas: 1012.516 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2233,22 +2044,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000733 - Expected counter: 52 - Gas limit: 1991 + Fee to the baker: ꜩ0.000592 + Expected counter: 51 + Gas limit: 1113 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000733 - payload fees(the block proposer) ....... +ꜩ0.000733 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000592 + payload fees(the block proposer) ....... +ꜩ0.000592 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1890.495 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 54 + Consumed gas: 1012.516 + Resulting inbox state: { level = 53 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 283 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 801 message_counter = 22 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2264,9 +2072,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1891.091 units (will add 100 for safety) +Estimated gas: 1013.112 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2277,22 +2085,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000745 - Expected counter: 53 - Gas limit: 1992 + Fee to the baker: ꜩ0.000604 + Expected counter: 52 + Gas limit: 1114 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000745 - payload fees(the block proposer) ....... +ꜩ0.000745 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000604 + payload fees(the block proposer) ....... +ꜩ0.000604 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1891.091 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 55 + Consumed gas: 1013.112 + Resulting inbox state: { level = 54 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 306 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 825 message_counter = 23 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2308,9 +2113,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1891.687 units (will add 100 for safety) +Estimated gas: 1013.708 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2321,22 +2126,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000757 - Expected counter: 54 - Gas limit: 1992 + Fee to the baker: ꜩ0.000616 + Expected counter: 53 + Gas limit: 1114 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000757 - payload fees(the block proposer) ....... +ꜩ0.000757 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000616 + payload fees(the block proposer) ....... +ꜩ0.000616 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1891.687 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 56 + Consumed gas: 1013.708 + Resulting inbox state: { level = 55 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 330 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 850 message_counter = 24 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2352,9 +2154,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1892.283 units (will add 100 for safety) +Estimated gas: 1014.304 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2365,22 +2167,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000769 - Expected counter: 55 - Gas limit: 1993 + Fee to the baker: ꜩ0.000628 + Expected counter: 54 + Gas limit: 1115 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000769 - payload fees(the block proposer) ....... +ꜩ0.000769 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000628 + payload fees(the block proposer) ....... +ꜩ0.000628 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1892.283 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 57 + Consumed gas: 1014.304 + Resulting inbox state: { level = 56 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 355 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 876 message_counter = 25 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2396,9 +2195,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1892.879 units (will add 100 for safety) +Estimated gas: 1014.900 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2409,22 +2208,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000781 - Expected counter: 56 - Gas limit: 1993 + Fee to the baker: ꜩ0.00064 + Expected counter: 55 + Gas limit: 1115 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000781 - payload fees(the block proposer) ....... +ꜩ0.000781 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.00064 + payload fees(the block proposer) ....... +ꜩ0.00064 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1892.879 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 58 + Consumed gas: 1014.900 + Resulting inbox state: { level = 57 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 381 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 903 message_counter = 26 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2440,9 +2236,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1893.475 units (will add 100 for safety) +Estimated gas: 1015.496 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2453,22 +2249,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000793 - Expected counter: 57 - Gas limit: 1994 + Fee to the baker: ꜩ0.000652 + Expected counter: 56 + Gas limit: 1116 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000793 - payload fees(the block proposer) ....... +ꜩ0.000793 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000652 + payload fees(the block proposer) ....... +ꜩ0.000652 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1893.475 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 59 + Consumed gas: 1015.496 + Resulting inbox state: { level = 58 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 408 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 931 message_counter = 27 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2484,9 +2277,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1894.071 units (will add 100 for safety) +Estimated gas: 1016.092 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2497,22 +2290,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000805 - Expected counter: 58 - Gas limit: 1995 + Fee to the baker: ꜩ0.000664 + Expected counter: 57 + Gas limit: 1117 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000805 - payload fees(the block proposer) ....... +ꜩ0.000805 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000664 + payload fees(the block proposer) ....... +ꜩ0.000664 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1894.071 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 60 + Consumed gas: 1016.092 + Resulting inbox state: { level = 59 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 436 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 960 message_counter = 28 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2528,9 +2318,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1894.667 units (will add 100 for safety) +Estimated gas: 1016.688 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2541,22 +2331,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000817 - Expected counter: 59 - Gas limit: 1995 + Fee to the baker: ꜩ0.000676 + Expected counter: 58 + Gas limit: 1117 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000817 - payload fees(the block proposer) ....... +ꜩ0.000817 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000676 + payload fees(the block proposer) ....... +ꜩ0.000676 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1894.667 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 61 + Consumed gas: 1016.688 + Resulting inbox state: { level = 60 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 465 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 990 message_counter = 29 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2572,9 +2359,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1895.263 units (will add 100 for safety) +Estimated gas: 1017.284 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2585,22 +2372,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000829 - Expected counter: 60 - Gas limit: 1996 + Fee to the baker: ꜩ0.000688 + Expected counter: 59 + Gas limit: 1118 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000829 - payload fees(the block proposer) ....... +ꜩ0.000829 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000688 + payload fees(the block proposer) ....... +ꜩ0.000688 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1895.263 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 62 + Consumed gas: 1017.284 + Resulting inbox state: { level = 61 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 30 - starting_level_of_current_commitment_period = 62 + nb_messages_in_commitment_period = 1021 message_counter = 30 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2616,13 +2400,54 @@ This sequence of operations was run: } +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 +Node is bootstrapped. +Estimated gas: 1017.880 units (will add 100 for safety) +Estimated storage: no bytes added +Operation successfully injected in the node. +Operation hash is '[OPERATION_HASH]' +NOT waiting for the operation to be included. +Use command + octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] +and/or an external block explorer to make sure that it has been included. +This sequence of operations was run: + Manager signed operations: + From: [PUBLIC_KEY_HASH] + Fee to the baker: ꜩ0.0007 + Expected counter: 60 + Gas limit: 1118 + Storage limit: 0 bytes + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ0.0007 + payload fees(the block proposer) ....... +ꜩ0.0007 + Smart contract rollup messages submission + This smart contract rollup messages submission was successfully applied + Consumed gas: 1017.880 + Resulting inbox state: { level = 62 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 1053 + message_counter = 31 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 61 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + ./octez-sc-rollup-client-alpha rpc get /local/last_published_commitment { "commitment": { "compressed_state": "[SC_ROLLUP_PVM_STATE_HASH]", "inbox_level": 32, "predecessor": "[SC_ROLLUP_COMMITMENT_HASH]", - "number_of_ticks": "466" }, + "number_of_ticks": "526" }, "hash": "[SC_ROLLUP_COMMITMENT_HASH]", "published_at_level": 35 } diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (operator_publ.out b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (operator_publ.out index 4a87b98481f3..60376128efba 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (operator_publ.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (operator_publ.out @@ -1,8 +1,8 @@ ./octez-client --wait none originate sc rollup from bootstrap1 of kind wasm_2_0_0 of type string booting with 010fa03030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303000d5024ff4c33df62141bd485af4154641aa9220c5dede9aed006eb5d3c88bff3b --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3126.593 units (will add 100 for safety) -Estimated storage: 10691 bytes added (will add 20 for safety) +Estimated gas: 2926.069 units (will add 100 for safety) +Estimated storage: 10560 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,30 +12,30 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.004713 + Fee to the baker: ꜩ0.004693 Expected counter: 1 - Gas limit: 3227 - Storage limit: 10711 bytes + Gas limit: 3027 + Storage limit: 10580 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004713 - payload fees(the block proposer) ....... +ꜩ0.004713 + [PUBLIC_KEY_HASH] ... -ꜩ0.004693 + payload fees(the block proposer) ....... +ꜩ0.004693 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string Boot sector Blake2B hash: '789431137a40057a39867cbc5cd7f984139360559c655c0508821b9be8047a02' This smart contract rollup origination was successfully applied - Consumed gas: 3126.593 - Storage size: 10691 bytes + Consumed gas: 2926.069 + Storage size: 10560 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ2.67275 - storage fees ........................... +ꜩ2.67275 + [PUBLIC_KEY_HASH] ... -ꜩ2.64 + storage fees ........................... +ꜩ2.64 -./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1876.722 units (will add 100 for safety) +Estimated gas: 1000.596 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -46,61 +46,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000479 + Fee to the baker: ꜩ0.000351 Expected counter: 1 - Gas limit: 1977 + Gas limit: 1101 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000479 - payload fees(the block proposer) ....... +ꜩ0.000479 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] - This smart contract rollup messages submission was successfully applied - Consumed gas: 1876.850 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 3 - current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 1 - starting_level_of_current_commitment_period = 2 - message_counter = 1 - old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] - - content = [SC_ROLLUP_INBOX_HASH] - index = 1 - back_pointers = [SC_ROLLUP_INBOX_HASH] - - } - - -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' -Node is bootstrapped. -Estimated gas: 1877.540 units (will add 100 for safety) -Estimated storage: no bytes added -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000491 - Expected counter: 2 - Gas limit: 1978 - Storage limit: 0 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000491 - payload fees(the block proposer) ....... +ꜩ0.000491 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000351 + payload fees(the block proposer) ....... +ꜩ0.000351 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1877.668 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 4 + Consumed gas: 1000.596 + Resulting inbox state: { level = 3 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 3 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 6 message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -112,9 +70,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1878.343 units (will add 100 for safety) +Estimated gas: 1001.192 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -125,22 +83,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000503 - Expected counter: 3 - Gas limit: 1979 + Fee to the baker: ꜩ0.000363 + Expected counter: 2 + Gas limit: 1102 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000503 - payload fees(the block proposer) ....... +ꜩ0.000503 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000363 + payload fees(the block proposer) ....... +ꜩ0.000363 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1878.343 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 5 + Consumed gas: 1001.192 + Resulting inbox state: { level = 4 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 6 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 10 message_counter = 3 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -152,9 +107,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1878.939 units (will add 100 for safety) +Estimated gas: 1001.788 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -165,22 +120,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000515 - Expected counter: 4 - Gas limit: 1979 + Fee to the baker: ꜩ0.000375 + Expected counter: 3 + Gas limit: 1102 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000515 - payload fees(the block proposer) ....... +ꜩ0.000515 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000375 + payload fees(the block proposer) ....... +ꜩ0.000375 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1879.067 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 6 + Consumed gas: 1001.788 + Resulting inbox state: { level = 5 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 10 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 15 message_counter = 4 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -193,9 +145,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1879.742 units (will add 100 for safety) +Estimated gas: 1002.384 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -206,22 +158,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000527 - Expected counter: 5 - Gas limit: 1980 + Fee to the baker: ꜩ0.000387 + Expected counter: 4 + Gas limit: 1103 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000527 - payload fees(the block proposer) ....... +ꜩ0.000527 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000387 + payload fees(the block proposer) ....... +ꜩ0.000387 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1879.742 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 7 + Consumed gas: 1002.384 + Resulting inbox state: { level = 6 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 15 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 21 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -234,9 +183,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1880.338 units (will add 100 for safety) +Estimated gas: 1002.980 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -247,22 +196,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00054 - Expected counter: 6 - Gas limit: 1981 + Fee to the baker: ꜩ0.000399 + Expected counter: 5 + Gas limit: 1103 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00054 - payload fees(the block proposer) ....... +ꜩ0.00054 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000399 + payload fees(the block proposer) ....... +ꜩ0.000399 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1880.338 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 8 + Consumed gas: 1002.980 + Resulting inbox state: { level = 7 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 21 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 28 message_counter = 6 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -275,9 +221,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1880.934 units (will add 100 for safety) +Estimated gas: 1003.576 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -288,22 +234,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000552 - Expected counter: 7 - Gas limit: 1981 + Fee to the baker: ꜩ0.000411 + Expected counter: 6 + Gas limit: 1104 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000552 - payload fees(the block proposer) ....... +ꜩ0.000552 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000411 + payload fees(the block proposer) ....... +ꜩ0.000411 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1880.934 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 9 + Consumed gas: 1003.576 + Resulting inbox state: { level = 8 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 28 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 36 message_counter = 7 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -316,9 +259,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1881.530 units (will add 100 for safety) +Estimated gas: 1004.172 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -329,22 +272,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000564 - Expected counter: 8 - Gas limit: 1982 + Fee to the baker: ꜩ0.000423 + Expected counter: 7 + Gas limit: 1105 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000564 - payload fees(the block proposer) ....... +ꜩ0.000564 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000423 + payload fees(the block proposer) ....... +ꜩ0.000423 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1881.658 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 10 + Consumed gas: 1004.172 + Resulting inbox state: { level = 9 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 36 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 45 message_counter = 8 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -358,9 +298,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1882.333 units (will add 100 for safety) +Estimated gas: 1004.768 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -371,22 +311,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000576 - Expected counter: 9 - Gas limit: 1983 + Fee to the baker: ꜩ0.000435 + Expected counter: 8 + Gas limit: 1105 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000576 - payload fees(the block proposer) ....... +ꜩ0.000576 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000435 + payload fees(the block proposer) ....... +ꜩ0.000435 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1882.333 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 11 + Consumed gas: 1004.768 + Resulting inbox state: { level = 10 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 45 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 55 message_counter = 9 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -400,9 +337,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1882.929 units (will add 100 for safety) +Estimated gas: 1005.364 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -413,22 +350,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000588 - Expected counter: 10 - Gas limit: 1983 + Fee to the baker: ꜩ0.000447 + Expected counter: 9 + Gas limit: 1106 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000588 - payload fees(the block proposer) ....... +ꜩ0.000588 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000447 + payload fees(the block proposer) ....... +ꜩ0.000447 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1882.929 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 12 + Consumed gas: 1005.364 + Resulting inbox state: { level = 11 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 55 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 66 message_counter = 10 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -442,9 +376,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1883.525 units (will add 100 for safety) +Estimated gas: 1005.960 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -455,22 +389,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.0006 - Expected counter: 11 - Gas limit: 1984 + Fee to the baker: ꜩ0.000459 + Expected counter: 10 + Gas limit: 1106 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.0006 - payload fees(the block proposer) ....... +ꜩ0.0006 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000459 + payload fees(the block proposer) ....... +ꜩ0.000459 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1883.525 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 13 + Consumed gas: 1005.960 + Resulting inbox state: { level = 12 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 66 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 78 message_counter = 11 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -484,9 +415,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1884.121 units (will add 100 for safety) +Estimated gas: 1006.556 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -497,22 +428,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000612 - Expected counter: 12 - Gas limit: 1985 + Fee to the baker: ꜩ0.000471 + Expected counter: 11 + Gas limit: 1107 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000612 - payload fees(the block proposer) ....... +ꜩ0.000612 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000471 + payload fees(the block proposer) ....... +ꜩ0.000471 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1884.121 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 14 + Consumed gas: 1006.556 + Resulting inbox state: { level = 13 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 78 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 91 message_counter = 12 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -526,9 +454,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1884.717 units (will add 100 for safety) +Estimated gas: 1007.152 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -539,22 +467,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000624 - Expected counter: 13 - Gas limit: 1985 + Fee to the baker: ꜩ0.000483 + Expected counter: 12 + Gas limit: 1108 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000624 - payload fees(the block proposer) ....... +ꜩ0.000624 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000483 + payload fees(the block proposer) ....... +ꜩ0.000483 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1884.717 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 15 + Consumed gas: 1007.152 + Resulting inbox state: { level = 14 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 91 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 105 message_counter = 13 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -568,9 +493,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1885.313 units (will add 100 for safety) +Estimated gas: 1007.748 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -581,22 +506,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000636 - Expected counter: 14 - Gas limit: 1986 + Fee to the baker: ꜩ0.000495 + Expected counter: 13 + Gas limit: 1108 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000636 - payload fees(the block proposer) ....... +ꜩ0.000636 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000495 + payload fees(the block proposer) ....... +ꜩ0.000495 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1885.313 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 16 + Consumed gas: 1007.748 + Resulting inbox state: { level = 15 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 105 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 120 message_counter = 14 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -610,9 +532,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1885.909 units (will add 100 for safety) +Estimated gas: 1008.344 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -623,22 +545,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000648 - Expected counter: 15 - Gas limit: 1986 + Fee to the baker: ꜩ0.000507 + Expected counter: 14 + Gas limit: 1109 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000648 - payload fees(the block proposer) ....... +ꜩ0.000648 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000507 + payload fees(the block proposer) ....... +ꜩ0.000507 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1885.909 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 17 + Consumed gas: 1008.344 + Resulting inbox state: { level = 16 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 120 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 136 message_counter = 15 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -652,9 +571,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1886.505 units (will add 100 for safety) +Estimated gas: 1008.940 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -665,22 +584,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00066 - Expected counter: 16 - Gas limit: 1987 + Fee to the baker: ꜩ0.000519 + Expected counter: 15 + Gas limit: 1109 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00066 - payload fees(the block proposer) ....... +ꜩ0.00066 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000519 + payload fees(the block proposer) ....... +ꜩ0.000519 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1886.633 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 18 + Consumed gas: 1008.940 + Resulting inbox state: { level = 17 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 136 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 153 message_counter = 16 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -695,9 +611,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1887.308 units (will add 100 for safety) +Estimated gas: 1009.536 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -708,22 +624,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000672 - Expected counter: 17 - Gas limit: 1988 + Fee to the baker: ꜩ0.000531 + Expected counter: 16 + Gas limit: 1110 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000672 - payload fees(the block proposer) ....... +ꜩ0.000672 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000531 + payload fees(the block proposer) ....... +ꜩ0.000531 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1887.308 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 19 + Consumed gas: 1009.536 + Resulting inbox state: { level = 18 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 153 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 171 message_counter = 17 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -738,9 +651,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1887.904 units (will add 100 for safety) +Estimated gas: 1010.132 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -751,22 +664,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000684 - Expected counter: 18 - Gas limit: 1988 + Fee to the baker: ꜩ0.000544 + Expected counter: 17 + Gas limit: 1111 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000684 - payload fees(the block proposer) ....... +ꜩ0.000684 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000544 + payload fees(the block proposer) ....... +ꜩ0.000544 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1887.904 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 20 + Consumed gas: 1010.132 + Resulting inbox state: { level = 19 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 171 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 190 message_counter = 18 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -781,9 +691,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1888.500 units (will add 100 for safety) +Estimated gas: 1010.728 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -794,22 +704,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000696 - Expected counter: 19 - Gas limit: 1989 + Fee to the baker: ꜩ0.000556 + Expected counter: 18 + Gas limit: 1111 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000696 - payload fees(the block proposer) ....... +ꜩ0.000696 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000556 + payload fees(the block proposer) ....... +ꜩ0.000556 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1888.500 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 21 + Consumed gas: 1010.728 + Resulting inbox state: { level = 20 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 190 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 210 message_counter = 19 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -824,9 +731,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1889.096 units (will add 100 for safety) +Estimated gas: 1011.324 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -837,22 +744,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000708 - Expected counter: 20 - Gas limit: 1990 + Fee to the baker: ꜩ0.000568 + Expected counter: 19 + Gas limit: 1112 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000708 - payload fees(the block proposer) ....... +ꜩ0.000708 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000568 + payload fees(the block proposer) ....... +ꜩ0.000568 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1889.096 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 22 + Consumed gas: 1011.324 + Resulting inbox state: { level = 21 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 210 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 231 message_counter = 20 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -867,9 +771,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1889.692 units (will add 100 for safety) +Estimated gas: 1011.920 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -880,22 +784,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00072 - Expected counter: 21 - Gas limit: 1990 + Fee to the baker: ꜩ0.00058 + Expected counter: 20 + Gas limit: 1112 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00072 - payload fees(the block proposer) ....... +ꜩ0.00072 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.00058 + payload fees(the block proposer) ....... +ꜩ0.00058 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1889.692 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 23 + Consumed gas: 1011.920 + Resulting inbox state: { level = 22 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 231 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 253 message_counter = 21 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -910,9 +811,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1890.288 units (will add 100 for safety) +Estimated gas: 1012.516 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -923,22 +824,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000733 - Expected counter: 22 - Gas limit: 1991 + Fee to the baker: ꜩ0.000592 + Expected counter: 21 + Gas limit: 1113 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000733 - payload fees(the block proposer) ....... +ꜩ0.000733 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000592 + payload fees(the block proposer) ....... +ꜩ0.000592 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1890.288 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 24 + Consumed gas: 1012.516 + Resulting inbox state: { level = 23 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 253 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 276 message_counter = 22 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -953,9 +851,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1890.884 units (will add 100 for safety) +Estimated gas: 1013.112 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -966,22 +864,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000745 - Expected counter: 23 - Gas limit: 1991 + Fee to the baker: ꜩ0.000604 + Expected counter: 22 + Gas limit: 1114 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000745 - payload fees(the block proposer) ....... +ꜩ0.000745 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000604 + payload fees(the block proposer) ....... +ꜩ0.000604 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1890.884 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 25 + Consumed gas: 1013.112 + Resulting inbox state: { level = 24 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 276 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 300 message_counter = 23 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -996,9 +891,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1891.480 units (will add 100 for safety) +Estimated gas: 1013.708 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1009,22 +904,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000757 - Expected counter: 24 - Gas limit: 1992 + Fee to the baker: ꜩ0.000616 + Expected counter: 23 + Gas limit: 1114 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000757 - payload fees(the block proposer) ....... +ꜩ0.000757 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000616 + payload fees(the block proposer) ....... +ꜩ0.000616 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1891.480 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 26 + Consumed gas: 1013.708 + Resulting inbox state: { level = 25 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 300 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 325 message_counter = 24 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1039,9 +931,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1892.076 units (will add 100 for safety) +Estimated gas: 1014.304 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1052,22 +944,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000769 - Expected counter: 25 - Gas limit: 1993 + Fee to the baker: ꜩ0.000628 + Expected counter: 24 + Gas limit: 1115 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000769 - payload fees(the block proposer) ....... +ꜩ0.000769 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000628 + payload fees(the block proposer) ....... +ꜩ0.000628 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1892.076 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 27 + Consumed gas: 1014.304 + Resulting inbox state: { level = 26 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 325 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 351 message_counter = 25 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1082,9 +971,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1892.672 units (will add 100 for safety) +Estimated gas: 1014.900 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1095,22 +984,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000781 - Expected counter: 26 - Gas limit: 1993 + Fee to the baker: ꜩ0.00064 + Expected counter: 25 + Gas limit: 1115 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000781 - payload fees(the block proposer) ....... +ꜩ0.000781 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.00064 + payload fees(the block proposer) ....... +ꜩ0.00064 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1892.672 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 28 + Consumed gas: 1014.900 + Resulting inbox state: { level = 27 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 351 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 378 message_counter = 26 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1125,9 +1011,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1893.268 units (will add 100 for safety) +Estimated gas: 1015.496 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1138,22 +1024,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000793 - Expected counter: 27 - Gas limit: 1994 + Fee to the baker: ꜩ0.000652 + Expected counter: 26 + Gas limit: 1116 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000793 - payload fees(the block proposer) ....... +ꜩ0.000793 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000652 + payload fees(the block proposer) ....... +ꜩ0.000652 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1893.268 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 29 + Consumed gas: 1015.496 + Resulting inbox state: { level = 28 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 378 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 406 message_counter = 27 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1168,9 +1051,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1893.864 units (will add 100 for safety) +Estimated gas: 1016.092 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1181,22 +1064,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000805 - Expected counter: 28 - Gas limit: 1994 + Fee to the baker: ꜩ0.000664 + Expected counter: 27 + Gas limit: 1117 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000805 - payload fees(the block proposer) ....... +ꜩ0.000805 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000664 + payload fees(the block proposer) ....... +ꜩ0.000664 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1893.864 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 30 + Consumed gas: 1016.092 + Resulting inbox state: { level = 29 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 406 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 435 message_counter = 28 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1211,9 +1091,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1894.460 units (will add 100 for safety) +Estimated gas: 1016.688 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1224,22 +1104,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000817 - Expected counter: 29 - Gas limit: 1995 + Fee to the baker: ꜩ0.000676 + Expected counter: 28 + Gas limit: 1117 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000817 - payload fees(the block proposer) ....... +ꜩ0.000817 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000676 + payload fees(the block proposer) ....... +ꜩ0.000676 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1894.460 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 31 + Consumed gas: 1016.688 + Resulting inbox state: { level = 30 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 435 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 465 message_counter = 29 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1254,9 +1131,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1895.056 units (will add 100 for safety) +Estimated gas: 1017.284 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1267,22 +1144,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000829 - Expected counter: 30 - Gas limit: 1996 + Fee to the baker: ꜩ0.000688 + Expected counter: 29 + Gas limit: 1118 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000829 - payload fees(the block proposer) ....... +ꜩ0.000829 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000688 + payload fees(the block proposer) ....... +ꜩ0.000688 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1895.056 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 32 + Consumed gas: 1017.284 + Resulting inbox state: { level = 31 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 30 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 496 message_counter = 30 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1297,9 +1171,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1877.772 units (will add 100 for safety) +Estimated gas: 1017.880 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1310,23 +1184,20 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000479 - Expected counter: 31 - Gas limit: 1978 + Fee to the baker: ꜩ0.0007 + Expected counter: 30 + Gas limit: 1118 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000479 - payload fees(the block proposer) ....... +ꜩ0.000479 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.0007 + payload fees(the block proposer) ....... +ꜩ0.0007 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1877.772 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 33 + Consumed gas: 1017.880 + Resulting inbox state: { level = 32 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 31 - starting_level_of_current_commitment_period = 32 - message_counter = 1 + nb_messages_in_commitment_period = 528 + message_counter = 31 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] @@ -1340,9 +1211,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1878.368 units (will add 100 for safety) +Estimated gas: 1000.596 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1353,22 +1224,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000491 - Expected counter: 32 - Gas limit: 1979 + Fee to the baker: ꜩ0.000351 + Expected counter: 31 + Gas limit: 1101 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000491 - payload fees(the block proposer) ....... +ꜩ0.000491 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000351 + payload fees(the block proposer) ....... +ꜩ0.000351 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1878.496 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 34 + Consumed gas: 1000.596 + Resulting inbox state: { level = 33 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 33 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 531 message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1384,9 +1252,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1879.171 units (will add 100 for safety) +Estimated gas: 1001.192 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1397,22 +1265,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000503 - Expected counter: 33 - Gas limit: 1980 + Fee to the baker: ꜩ0.000363 + Expected counter: 32 + Gas limit: 1102 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000503 - payload fees(the block proposer) ....... +ꜩ0.000503 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000363 + payload fees(the block proposer) ....... +ꜩ0.000363 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1879.171 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 35 + Consumed gas: 1001.192 + Resulting inbox state: { level = 34 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 36 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 535 message_counter = 3 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1428,9 +1293,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1879.767 units (will add 100 for safety) +Estimated gas: 1001.788 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1441,22 +1306,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000515 - Expected counter: 34 - Gas limit: 1980 + Fee to the baker: ꜩ0.000375 + Expected counter: 33 + Gas limit: 1102 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000515 - payload fees(the block proposer) ....... +ꜩ0.000515 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000375 + payload fees(the block proposer) ....... +ꜩ0.000375 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1879.767 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 36 + Consumed gas: 1001.788 + Resulting inbox state: { level = 35 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 40 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 540 message_counter = 4 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1472,9 +1334,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1880.363 units (will add 100 for safety) +Estimated gas: 1002.384 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1485,22 +1347,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000528 - Expected counter: 35 - Gas limit: 1981 + Fee to the baker: ꜩ0.000387 + Expected counter: 34 + Gas limit: 1103 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000528 - payload fees(the block proposer) ....... +ꜩ0.000528 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000387 + payload fees(the block proposer) ....... +ꜩ0.000387 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1880.363 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 37 + Consumed gas: 1002.384 + Resulting inbox state: { level = 36 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 45 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 546 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1516,9 +1375,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1880.959 units (will add 100 for safety) +Estimated gas: 1002.980 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1529,22 +1388,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00054 - Expected counter: 36 - Gas limit: 1981 + Fee to the baker: ꜩ0.000399 + Expected counter: 35 + Gas limit: 1103 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00054 - payload fees(the block proposer) ....... +ꜩ0.00054 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000399 + payload fees(the block proposer) ....... +ꜩ0.000399 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1880.959 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 38 + Consumed gas: 1002.980 + Resulting inbox state: { level = 37 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 51 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 553 message_counter = 6 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1560,9 +1416,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1881.555 units (will add 100 for safety) +Estimated gas: 1003.576 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1573,22 +1429,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000552 - Expected counter: 37 - Gas limit: 1982 + Fee to the baker: ꜩ0.000411 + Expected counter: 36 + Gas limit: 1104 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000552 - payload fees(the block proposer) ....... +ꜩ0.000552 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000411 + payload fees(the block proposer) ....... +ꜩ0.000411 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1881.555 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 39 + Consumed gas: 1003.576 + Resulting inbox state: { level = 38 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 58 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 561 message_counter = 7 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1604,9 +1457,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1882.151 units (will add 100 for safety) +Estimated gas: 1004.172 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1617,22 +1470,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000564 - Expected counter: 38 - Gas limit: 1983 + Fee to the baker: ꜩ0.000423 + Expected counter: 37 + Gas limit: 1105 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000564 - payload fees(the block proposer) ....... +ꜩ0.000564 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000423 + payload fees(the block proposer) ....... +ꜩ0.000423 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1882.151 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 40 + Consumed gas: 1004.172 + Resulting inbox state: { level = 39 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 66 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 570 message_counter = 8 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1648,9 +1498,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1882.747 units (will add 100 for safety) +Estimated gas: 1004.768 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1661,22 +1511,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000576 - Expected counter: 39 - Gas limit: 1983 + Fee to the baker: ꜩ0.000435 + Expected counter: 38 + Gas limit: 1105 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000576 - payload fees(the block proposer) ....... +ꜩ0.000576 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000435 + payload fees(the block proposer) ....... +ꜩ0.000435 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1882.747 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 41 + Consumed gas: 1004.768 + Resulting inbox state: { level = 40 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 75 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 580 message_counter = 9 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1692,9 +1539,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1883.343 units (will add 100 for safety) +Estimated gas: 1005.364 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1705,22 +1552,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000588 - Expected counter: 40 - Gas limit: 1984 + Fee to the baker: ꜩ0.000447 + Expected counter: 39 + Gas limit: 1106 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000588 - payload fees(the block proposer) ....... +ꜩ0.000588 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000447 + payload fees(the block proposer) ....... +ꜩ0.000447 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1883.343 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 42 + Consumed gas: 1005.364 + Resulting inbox state: { level = 41 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 85 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 591 message_counter = 10 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1736,9 +1580,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1883.939 units (will add 100 for safety) +Estimated gas: 1005.960 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1749,22 +1593,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.0006 - Expected counter: 41 - Gas limit: 1984 + Fee to the baker: ꜩ0.000459 + Expected counter: 40 + Gas limit: 1106 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.0006 - payload fees(the block proposer) ....... +ꜩ0.0006 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000459 + payload fees(the block proposer) ....... +ꜩ0.000459 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1883.939 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 43 + Consumed gas: 1005.960 + Resulting inbox state: { level = 42 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 96 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 603 message_counter = 11 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1780,9 +1621,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1884.535 units (will add 100 for safety) +Estimated gas: 1006.556 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1793,22 +1634,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000612 - Expected counter: 42 - Gas limit: 1985 + Fee to the baker: ꜩ0.000471 + Expected counter: 41 + Gas limit: 1107 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000612 - payload fees(the block proposer) ....... +ꜩ0.000612 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000471 + payload fees(the block proposer) ....... +ꜩ0.000471 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1884.535 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 44 + Consumed gas: 1006.556 + Resulting inbox state: { level = 43 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 108 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 616 message_counter = 12 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1824,9 +1662,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1885.131 units (will add 100 for safety) +Estimated gas: 1007.152 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1837,22 +1675,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000624 - Expected counter: 43 - Gas limit: 1986 + Fee to the baker: ꜩ0.000483 + Expected counter: 42 + Gas limit: 1108 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000624 - payload fees(the block proposer) ....... +ꜩ0.000624 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000483 + payload fees(the block proposer) ....... +ꜩ0.000483 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1885.131 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 45 + Consumed gas: 1007.152 + Resulting inbox state: { level = 44 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 121 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 630 message_counter = 13 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1868,9 +1703,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1885.727 units (will add 100 for safety) +Estimated gas: 1007.748 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1881,22 +1716,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000636 - Expected counter: 44 - Gas limit: 1986 + Fee to the baker: ꜩ0.000495 + Expected counter: 43 + Gas limit: 1108 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000636 - payload fees(the block proposer) ....... +ꜩ0.000636 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000495 + payload fees(the block proposer) ....... +ꜩ0.000495 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1885.727 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 46 + Consumed gas: 1007.748 + Resulting inbox state: { level = 45 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 135 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 645 message_counter = 14 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1912,9 +1744,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1886.323 units (will add 100 for safety) +Estimated gas: 1008.344 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1925,22 +1757,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000648 - Expected counter: 45 - Gas limit: 1987 + Fee to the baker: ꜩ0.000507 + Expected counter: 44 + Gas limit: 1109 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000648 - payload fees(the block proposer) ....... +ꜩ0.000648 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000507 + payload fees(the block proposer) ....... +ꜩ0.000507 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1886.323 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 47 + Consumed gas: 1008.344 + Resulting inbox state: { level = 46 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 150 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 661 message_counter = 15 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1956,9 +1785,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1886.919 units (will add 100 for safety) +Estimated gas: 1008.940 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1969,22 +1798,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00066 - Expected counter: 46 - Gas limit: 1987 + Fee to the baker: ꜩ0.000519 + Expected counter: 45 + Gas limit: 1109 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00066 - payload fees(the block proposer) ....... +ꜩ0.00066 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000519 + payload fees(the block proposer) ....... +ꜩ0.000519 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1886.919 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 48 + Consumed gas: 1008.940 + Resulting inbox state: { level = 47 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 166 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 678 message_counter = 16 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2000,9 +1826,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1887.515 units (will add 100 for safety) +Estimated gas: 1009.536 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2013,22 +1839,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000672 - Expected counter: 47 - Gas limit: 1988 + Fee to the baker: ꜩ0.000531 + Expected counter: 46 + Gas limit: 1110 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000672 - payload fees(the block proposer) ....... +ꜩ0.000672 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000531 + payload fees(the block proposer) ....... +ꜩ0.000531 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1887.515 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 49 + Consumed gas: 1009.536 + Resulting inbox state: { level = 48 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 183 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 696 message_counter = 17 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2044,9 +1867,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1888.111 units (will add 100 for safety) +Estimated gas: 1010.132 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2057,22 +1880,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000684 - Expected counter: 48 - Gas limit: 1989 + Fee to the baker: ꜩ0.000544 + Expected counter: 47 + Gas limit: 1111 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000684 - payload fees(the block proposer) ....... +ꜩ0.000684 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000544 + payload fees(the block proposer) ....... +ꜩ0.000544 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1888.111 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 50 + Consumed gas: 1010.132 + Resulting inbox state: { level = 49 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 201 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 715 message_counter = 18 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2088,9 +1908,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1888.707 units (will add 100 for safety) +Estimated gas: 1010.728 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2101,22 +1921,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000696 - Expected counter: 49 - Gas limit: 1989 + Fee to the baker: ꜩ0.000556 + Expected counter: 48 + Gas limit: 1111 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000696 - payload fees(the block proposer) ....... +ꜩ0.000696 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000556 + payload fees(the block proposer) ....... +ꜩ0.000556 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1888.707 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 51 + Consumed gas: 1010.728 + Resulting inbox state: { level = 50 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 220 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 735 message_counter = 19 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2132,9 +1949,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1889.303 units (will add 100 for safety) +Estimated gas: 1011.324 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2145,22 +1962,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000708 - Expected counter: 50 - Gas limit: 1990 + Fee to the baker: ꜩ0.000568 + Expected counter: 49 + Gas limit: 1112 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000708 - payload fees(the block proposer) ....... +ꜩ0.000708 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000568 + payload fees(the block proposer) ....... +ꜩ0.000568 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1889.303 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 52 + Consumed gas: 1011.324 + Resulting inbox state: { level = 51 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 240 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 756 message_counter = 20 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2176,9 +1990,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1889.899 units (will add 100 for safety) +Estimated gas: 1011.920 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2189,22 +2003,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00072 - Expected counter: 51 - Gas limit: 1990 + Fee to the baker: ꜩ0.00058 + Expected counter: 50 + Gas limit: 1112 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00072 - payload fees(the block proposer) ....... +ꜩ0.00072 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.00058 + payload fees(the block proposer) ....... +ꜩ0.00058 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1889.899 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 53 + Consumed gas: 1011.920 + Resulting inbox state: { level = 52 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 261 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 778 message_counter = 21 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2220,9 +2031,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1890.495 units (will add 100 for safety) +Estimated gas: 1012.516 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2233,22 +2044,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000733 - Expected counter: 52 - Gas limit: 1991 + Fee to the baker: ꜩ0.000592 + Expected counter: 51 + Gas limit: 1113 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000733 - payload fees(the block proposer) ....... +ꜩ0.000733 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000592 + payload fees(the block proposer) ....... +ꜩ0.000592 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1890.495 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 54 + Consumed gas: 1012.516 + Resulting inbox state: { level = 53 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 283 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 801 message_counter = 22 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2264,9 +2072,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1891.091 units (will add 100 for safety) +Estimated gas: 1013.112 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2277,22 +2085,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000745 - Expected counter: 53 - Gas limit: 1992 + Fee to the baker: ꜩ0.000604 + Expected counter: 52 + Gas limit: 1114 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000745 - payload fees(the block proposer) ....... +ꜩ0.000745 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000604 + payload fees(the block proposer) ....... +ꜩ0.000604 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1891.091 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 55 + Consumed gas: 1013.112 + Resulting inbox state: { level = 54 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 306 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 825 message_counter = 23 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2308,9 +2113,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1891.687 units (will add 100 for safety) +Estimated gas: 1013.708 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2321,22 +2126,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000757 - Expected counter: 54 - Gas limit: 1992 + Fee to the baker: ꜩ0.000616 + Expected counter: 53 + Gas limit: 1114 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000757 - payload fees(the block proposer) ....... +ꜩ0.000757 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000616 + payload fees(the block proposer) ....... +ꜩ0.000616 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1891.687 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 56 + Consumed gas: 1013.708 + Resulting inbox state: { level = 55 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 330 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 850 message_counter = 24 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2352,9 +2154,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1892.283 units (will add 100 for safety) +Estimated gas: 1014.304 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2365,22 +2167,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000769 - Expected counter: 55 - Gas limit: 1993 + Fee to the baker: ꜩ0.000628 + Expected counter: 54 + Gas limit: 1115 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000769 - payload fees(the block proposer) ....... +ꜩ0.000769 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000628 + payload fees(the block proposer) ....... +ꜩ0.000628 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1892.283 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 57 + Consumed gas: 1014.304 + Resulting inbox state: { level = 56 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 355 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 876 message_counter = 25 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2396,9 +2195,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1892.879 units (will add 100 for safety) +Estimated gas: 1014.900 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2409,22 +2208,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000781 - Expected counter: 56 - Gas limit: 1993 + Fee to the baker: ꜩ0.00064 + Expected counter: 55 + Gas limit: 1115 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000781 - payload fees(the block proposer) ....... +ꜩ0.000781 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.00064 + payload fees(the block proposer) ....... +ꜩ0.00064 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1892.879 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 58 + Consumed gas: 1014.900 + Resulting inbox state: { level = 57 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 381 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 903 message_counter = 26 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2440,9 +2236,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1893.475 units (will add 100 for safety) +Estimated gas: 1015.496 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2453,22 +2249,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000793 - Expected counter: 57 - Gas limit: 1994 + Fee to the baker: ꜩ0.000652 + Expected counter: 56 + Gas limit: 1116 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000793 - payload fees(the block proposer) ....... +ꜩ0.000793 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000652 + payload fees(the block proposer) ....... +ꜩ0.000652 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1893.475 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 59 + Consumed gas: 1015.496 + Resulting inbox state: { level = 58 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 408 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 931 message_counter = 27 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2484,9 +2277,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1894.071 units (will add 100 for safety) +Estimated gas: 1016.092 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2497,22 +2290,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000805 - Expected counter: 58 - Gas limit: 1995 + Fee to the baker: ꜩ0.000664 + Expected counter: 57 + Gas limit: 1117 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000805 - payload fees(the block proposer) ....... +ꜩ0.000805 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000664 + payload fees(the block proposer) ....... +ꜩ0.000664 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1894.071 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 60 + Consumed gas: 1016.092 + Resulting inbox state: { level = 59 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 436 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 960 message_counter = 28 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2528,9 +2318,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1894.667 units (will add 100 for safety) +Estimated gas: 1016.688 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2541,22 +2331,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000817 - Expected counter: 59 - Gas limit: 1995 + Fee to the baker: ꜩ0.000676 + Expected counter: 58 + Gas limit: 1117 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000817 - payload fees(the block proposer) ....... +ꜩ0.000817 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000676 + payload fees(the block proposer) ....... +ꜩ0.000676 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1894.667 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 61 + Consumed gas: 1016.688 + Resulting inbox state: { level = 60 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 465 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 990 message_counter = 29 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2572,9 +2359,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1895.263 units (will add 100 for safety) +Estimated gas: 1017.284 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -2585,22 +2372,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000829 - Expected counter: 60 - Gas limit: 1996 + Fee to the baker: ꜩ0.000688 + Expected counter: 59 + Gas limit: 1118 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000829 - payload fees(the block proposer) ....... +ꜩ0.000829 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000688 + payload fees(the block proposer) ....... +ꜩ0.000688 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1895.263 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 62 + Consumed gas: 1017.284 + Resulting inbox state: { level = 61 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 30 - starting_level_of_current_commitment_period = 62 + nb_messages_in_commitment_period = 1021 message_counter = 30 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -2616,13 +2400,54 @@ This sequence of operations was run: } +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 +Node is bootstrapped. +Estimated gas: 1017.880 units (will add 100 for safety) +Estimated storage: no bytes added +Operation successfully injected in the node. +Operation hash is '[OPERATION_HASH]' +NOT waiting for the operation to be included. +Use command + octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] +and/or an external block explorer to make sure that it has been included. +This sequence of operations was run: + Manager signed operations: + From: [PUBLIC_KEY_HASH] + Fee to the baker: ꜩ0.0007 + Expected counter: 60 + Gas limit: 1118 + Storage limit: 0 bytes + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ0.0007 + payload fees(the block proposer) ....... +ꜩ0.0007 + Smart contract rollup messages submission + This smart contract rollup messages submission was successfully applied + Consumed gas: 1017.880 + Resulting inbox state: { level = 62 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 1053 + message_counter = 31 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 61 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + ./octez-sc-rollup-client-alpha rpc get /local/last_published_commitment { "commitment": { "compressed_state": "[SC_ROLLUP_PVM_STATE_HASH]", "inbox_level": 32, "predecessor": "[SC_ROLLUP_COMMITMENT_HASH]", - "number_of_ticks": "466" }, + "number_of_ticks": "526" }, "hash": "[SC_ROLLUP_COMMITMENT_HASH]", "published_at_level": 35 } @@ -2632,6 +2457,6 @@ This sequence of operations was run: "[SC_ROLLUP_PVM_STATE_HASH]", "inbox_level": 32, "predecessor": "[SC_ROLLUP_COMMITMENT_HASH]", - "number_of_ticks": "466" }, + "number_of_ticks": "526" }, "hash": "[SC_ROLLUP_COMMITMENT_HASH]", "published_at_level": 35 } diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (robust_to_fai.out b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (robust_to_fai.out index 098de009b526..b0014e859929 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (robust_to_fai.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (robust_to_fai.out @@ -1,8 +1,8 @@ ./octez-client --wait none originate sc rollup from bootstrap1 of kind wasm_2_0_0 of type string booting with 010fa03030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303000d5024ff4c33df62141bd485af4154641aa9220c5dede9aed006eb5d3c88bff3b --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3126.593 units (will add 100 for safety) -Estimated storage: 10691 bytes added (will add 20 for safety) +Estimated gas: 2926.069 units (will add 100 for safety) +Estimated storage: 10560 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,34 +12,34 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.004713 + Fee to the baker: ꜩ0.004693 Expected counter: 1 - Gas limit: 3227 - Storage limit: 10711 bytes + Gas limit: 3027 + Storage limit: 10580 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004713 - payload fees(the block proposer) ....... +ꜩ0.004713 + [PUBLIC_KEY_HASH] ... -ꜩ0.004693 + payload fees(the block proposer) ....... +ꜩ0.004693 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string Boot sector Blake2B hash: '789431137a40057a39867cbc5cd7f984139360559c655c0508821b9be8047a02' This smart contract rollup origination was successfully applied - Consumed gas: 3126.593 - Storage size: 10691 bytes + Consumed gas: 2926.069 + Storage size: 10560 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ2.67275 - storage fees ........................... +ꜩ2.67275 + [PUBLIC_KEY_HASH] ... -ꜩ2.64 + storage fees ........................... +ꜩ2.64 ./octez-client rpc get '/chains/main/blocks/head/context/sc_rollup/[SC_ROLLUP_HASH]/genesis_info' { "level": 2, "commitment_hash": "[SC_ROLLUP_COMMITMENT_HASH]" } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1876.722 units (will add 100 for safety) +Estimated gas: 1000.596 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -50,61 +50,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000479 + Fee to the baker: ꜩ0.000351 Expected counter: 1 - Gas limit: 1977 + Gas limit: 1101 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000479 - payload fees(the block proposer) ....... +ꜩ0.000479 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] - This smart contract rollup messages submission was successfully applied - Consumed gas: 1876.850 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 3 - current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 1 - starting_level_of_current_commitment_period = 2 - message_counter = 1 - old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] - - content = [SC_ROLLUP_INBOX_HASH] - index = 1 - back_pointers = [SC_ROLLUP_INBOX_HASH] - - } - - -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' -Node is bootstrapped. -Estimated gas: 1877.540 units (will add 100 for safety) -Estimated storage: no bytes added -Operation successfully injected in the node. -Operation hash is '[OPERATION_HASH]' -NOT waiting for the operation to be included. -Use command - octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] -and/or an external block explorer to make sure that it has been included. -This sequence of operations was run: - Manager signed operations: - From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000491 - Expected counter: 2 - Gas limit: 1978 - Storage limit: 0 bytes - Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000491 - payload fees(the block proposer) ....... +ꜩ0.000491 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000351 + payload fees(the block proposer) ....... +ꜩ0.000351 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1877.668 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 4 + Consumed gas: 1000.596 + Resulting inbox state: { level = 3 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 3 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 6 message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -116,9 +74,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1878.343 units (will add 100 for safety) +Estimated gas: 1001.192 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -129,22 +87,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000503 - Expected counter: 3 - Gas limit: 1979 + Fee to the baker: ꜩ0.000363 + Expected counter: 2 + Gas limit: 1102 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000503 - payload fees(the block proposer) ....... +ꜩ0.000503 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000363 + payload fees(the block proposer) ....... +ꜩ0.000363 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1878.343 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 5 + Consumed gas: 1001.192 + Resulting inbox state: { level = 4 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 6 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 10 message_counter = 3 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -156,9 +111,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1878.939 units (will add 100 for safety) +Estimated gas: 1001.788 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -169,22 +124,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000515 - Expected counter: 4 - Gas limit: 1979 + Fee to the baker: ꜩ0.000375 + Expected counter: 3 + Gas limit: 1102 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000515 - payload fees(the block proposer) ....... +ꜩ0.000515 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000375 + payload fees(the block proposer) ....... +ꜩ0.000375 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1879.067 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 6 + Consumed gas: 1001.788 + Resulting inbox state: { level = 5 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 10 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 15 message_counter = 4 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -197,9 +149,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1879.742 units (will add 100 for safety) +Estimated gas: 1002.384 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -210,22 +162,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000527 - Expected counter: 5 - Gas limit: 1980 + Fee to the baker: ꜩ0.000387 + Expected counter: 4 + Gas limit: 1103 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000527 - payload fees(the block proposer) ....... +ꜩ0.000527 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000387 + payload fees(the block proposer) ....... +ꜩ0.000387 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1879.742 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 7 + Consumed gas: 1002.384 + Resulting inbox state: { level = 6 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 15 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 21 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -238,9 +187,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1880.338 units (will add 100 for safety) +Estimated gas: 1002.980 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -251,22 +200,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00054 - Expected counter: 6 - Gas limit: 1981 + Fee to the baker: ꜩ0.000399 + Expected counter: 5 + Gas limit: 1103 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00054 - payload fees(the block proposer) ....... +ꜩ0.00054 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000399 + payload fees(the block proposer) ....... +ꜩ0.000399 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1880.338 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 8 + Consumed gas: 1002.980 + Resulting inbox state: { level = 7 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 21 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 28 message_counter = 6 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -279,9 +225,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1880.934 units (will add 100 for safety) +Estimated gas: 1003.576 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -292,22 +238,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000552 - Expected counter: 7 - Gas limit: 1981 + Fee to the baker: ꜩ0.000411 + Expected counter: 6 + Gas limit: 1104 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000552 - payload fees(the block proposer) ....... +ꜩ0.000552 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000411 + payload fees(the block proposer) ....... +ꜩ0.000411 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1880.934 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 9 + Consumed gas: 1003.576 + Resulting inbox state: { level = 8 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 28 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 36 message_counter = 7 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -320,9 +263,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1881.530 units (will add 100 for safety) +Estimated gas: 1004.172 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -333,22 +276,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000564 - Expected counter: 8 - Gas limit: 1982 + Fee to the baker: ꜩ0.000423 + Expected counter: 7 + Gas limit: 1105 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000564 - payload fees(the block proposer) ....... +ꜩ0.000564 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000423 + payload fees(the block proposer) ....... +ꜩ0.000423 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1881.658 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 10 + Consumed gas: 1004.172 + Resulting inbox state: { level = 9 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 36 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 45 message_counter = 8 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -362,9 +302,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1882.333 units (will add 100 for safety) +Estimated gas: 1004.768 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -375,22 +315,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000576 - Expected counter: 9 - Gas limit: 1983 + Fee to the baker: ꜩ0.000435 + Expected counter: 8 + Gas limit: 1105 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000576 - payload fees(the block proposer) ....... +ꜩ0.000576 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000435 + payload fees(the block proposer) ....... +ꜩ0.000435 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1882.333 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 11 + Consumed gas: 1004.768 + Resulting inbox state: { level = 10 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 45 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 55 message_counter = 9 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -404,9 +341,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1882.929 units (will add 100 for safety) +Estimated gas: 1005.364 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -417,22 +354,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000588 - Expected counter: 10 - Gas limit: 1983 + Fee to the baker: ꜩ0.000447 + Expected counter: 9 + Gas limit: 1106 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000588 - payload fees(the block proposer) ....... +ꜩ0.000588 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000447 + payload fees(the block proposer) ....... +ꜩ0.000447 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1882.929 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 12 + Consumed gas: 1005.364 + Resulting inbox state: { level = 11 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 55 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 66 message_counter = 10 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -446,9 +380,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1883.525 units (will add 100 for safety) +Estimated gas: 1005.960 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -459,22 +393,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.0006 - Expected counter: 11 - Gas limit: 1984 + Fee to the baker: ꜩ0.000459 + Expected counter: 10 + Gas limit: 1106 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.0006 - payload fees(the block proposer) ....... +ꜩ0.0006 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000459 + payload fees(the block proposer) ....... +ꜩ0.000459 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1883.525 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 13 + Consumed gas: 1005.960 + Resulting inbox state: { level = 12 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 66 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 78 message_counter = 11 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -488,9 +419,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1884.121 units (will add 100 for safety) +Estimated gas: 1006.556 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -501,22 +432,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000612 - Expected counter: 12 - Gas limit: 1985 + Fee to the baker: ꜩ0.000471 + Expected counter: 11 + Gas limit: 1107 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000612 - payload fees(the block proposer) ....... +ꜩ0.000612 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000471 + payload fees(the block proposer) ....... +ꜩ0.000471 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1884.121 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 14 + Consumed gas: 1006.556 + Resulting inbox state: { level = 13 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 78 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 91 message_counter = 12 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -530,9 +458,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1884.717 units (will add 100 for safety) +Estimated gas: 1007.152 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -543,22 +471,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000624 - Expected counter: 13 - Gas limit: 1985 + Fee to the baker: ꜩ0.000483 + Expected counter: 12 + Gas limit: 1108 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000624 - payload fees(the block proposer) ....... +ꜩ0.000624 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000483 + payload fees(the block proposer) ....... +ꜩ0.000483 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1884.717 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 15 + Consumed gas: 1007.152 + Resulting inbox state: { level = 14 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 91 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 105 message_counter = 13 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -572,9 +497,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1885.313 units (will add 100 for safety) +Estimated gas: 1007.748 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -585,22 +510,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000636 - Expected counter: 14 - Gas limit: 1986 + Fee to the baker: ꜩ0.000495 + Expected counter: 13 + Gas limit: 1108 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000636 - payload fees(the block proposer) ....... +ꜩ0.000636 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000495 + payload fees(the block proposer) ....... +ꜩ0.000495 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1885.313 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 16 + Consumed gas: 1007.748 + Resulting inbox state: { level = 15 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 105 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 120 message_counter = 14 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -614,9 +536,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1885.909 units (will add 100 for safety) +Estimated gas: 1008.344 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -627,22 +549,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000648 - Expected counter: 15 - Gas limit: 1986 + Fee to the baker: ꜩ0.000507 + Expected counter: 14 + Gas limit: 1109 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000648 - payload fees(the block proposer) ....... +ꜩ0.000648 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000507 + payload fees(the block proposer) ....... +ꜩ0.000507 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1885.909 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 17 + Consumed gas: 1008.344 + Resulting inbox state: { level = 16 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 120 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 136 message_counter = 15 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -656,9 +575,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1886.505 units (will add 100 for safety) +Estimated gas: 1008.940 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -669,22 +588,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00066 - Expected counter: 16 - Gas limit: 1987 + Fee to the baker: ꜩ0.000519 + Expected counter: 15 + Gas limit: 1109 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00066 - payload fees(the block proposer) ....... +ꜩ0.00066 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000519 + payload fees(the block proposer) ....... +ꜩ0.000519 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1886.633 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 18 + Consumed gas: 1008.940 + Resulting inbox state: { level = 17 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 136 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 153 message_counter = 16 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -699,9 +615,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1887.308 units (will add 100 for safety) +Estimated gas: 1009.536 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -712,22 +628,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000672 - Expected counter: 17 - Gas limit: 1988 + Fee to the baker: ꜩ0.000531 + Expected counter: 16 + Gas limit: 1110 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000672 - payload fees(the block proposer) ....... +ꜩ0.000672 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000531 + payload fees(the block proposer) ....... +ꜩ0.000531 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1887.308 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 19 + Consumed gas: 1009.536 + Resulting inbox state: { level = 18 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 153 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 171 message_counter = 17 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -742,9 +655,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1887.904 units (will add 100 for safety) +Estimated gas: 1010.132 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -755,22 +668,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000684 - Expected counter: 18 - Gas limit: 1988 + Fee to the baker: ꜩ0.000544 + Expected counter: 17 + Gas limit: 1111 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000684 - payload fees(the block proposer) ....... +ꜩ0.000684 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000544 + payload fees(the block proposer) ....... +ꜩ0.000544 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1887.904 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 20 + Consumed gas: 1010.132 + Resulting inbox state: { level = 19 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 171 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 190 message_counter = 18 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -785,9 +695,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1888.500 units (will add 100 for safety) +Estimated gas: 1010.728 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -798,22 +708,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000696 - Expected counter: 19 - Gas limit: 1989 + Fee to the baker: ꜩ0.000556 + Expected counter: 18 + Gas limit: 1111 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000696 - payload fees(the block proposer) ....... +ꜩ0.000696 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000556 + payload fees(the block proposer) ....... +ꜩ0.000556 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1888.500 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 21 + Consumed gas: 1010.728 + Resulting inbox state: { level = 20 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 190 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 210 message_counter = 19 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -828,9 +735,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1889.096 units (will add 100 for safety) +Estimated gas: 1011.324 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -841,22 +748,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000708 - Expected counter: 20 - Gas limit: 1990 + Fee to the baker: ꜩ0.000568 + Expected counter: 19 + Gas limit: 1112 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000708 - payload fees(the block proposer) ....... +ꜩ0.000708 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000568 + payload fees(the block proposer) ....... +ꜩ0.000568 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1889.096 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 22 + Consumed gas: 1011.324 + Resulting inbox state: { level = 21 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 210 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 231 message_counter = 20 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -871,9 +775,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1889.692 units (will add 100 for safety) +Estimated gas: 1011.920 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -884,22 +788,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00072 - Expected counter: 21 - Gas limit: 1990 + Fee to the baker: ꜩ0.00058 + Expected counter: 20 + Gas limit: 1112 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00072 - payload fees(the block proposer) ....... +ꜩ0.00072 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.00058 + payload fees(the block proposer) ....... +ꜩ0.00058 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1889.692 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 23 + Consumed gas: 1011.920 + Resulting inbox state: { level = 22 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 231 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 253 message_counter = 21 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -914,9 +815,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1890.288 units (will add 100 for safety) +Estimated gas: 1012.516 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -927,22 +828,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000733 - Expected counter: 22 - Gas limit: 1991 + Fee to the baker: ꜩ0.000592 + Expected counter: 21 + Gas limit: 1113 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000733 - payload fees(the block proposer) ....... +ꜩ0.000733 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000592 + payload fees(the block proposer) ....... +ꜩ0.000592 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1890.288 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 24 + Consumed gas: 1012.516 + Resulting inbox state: { level = 23 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 253 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 276 message_counter = 22 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -957,9 +855,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1890.884 units (will add 100 for safety) +Estimated gas: 1013.112 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -970,22 +868,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000745 - Expected counter: 23 - Gas limit: 1991 + Fee to the baker: ꜩ0.000604 + Expected counter: 22 + Gas limit: 1114 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000745 - payload fees(the block proposer) ....... +ꜩ0.000745 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000604 + payload fees(the block proposer) ....... +ꜩ0.000604 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1890.884 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 25 + Consumed gas: 1013.112 + Resulting inbox state: { level = 24 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 276 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 300 message_counter = 23 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1000,9 +895,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1891.480 units (will add 100 for safety) +Estimated gas: 1013.708 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1013,22 +908,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000757 - Expected counter: 24 - Gas limit: 1992 + Fee to the baker: ꜩ0.000616 + Expected counter: 23 + Gas limit: 1114 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000757 - payload fees(the block proposer) ....... +ꜩ0.000757 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000616 + payload fees(the block proposer) ....... +ꜩ0.000616 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1891.480 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 26 + Consumed gas: 1013.708 + Resulting inbox state: { level = 25 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 300 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 325 message_counter = 24 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1043,9 +935,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1892.076 units (will add 100 for safety) +Estimated gas: 1014.304 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1056,22 +948,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000769 - Expected counter: 25 - Gas limit: 1993 + Fee to the baker: ꜩ0.000628 + Expected counter: 24 + Gas limit: 1115 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000769 - payload fees(the block proposer) ....... +ꜩ0.000769 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000628 + payload fees(the block proposer) ....... +ꜩ0.000628 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1892.076 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 27 + Consumed gas: 1014.304 + Resulting inbox state: { level = 26 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 325 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 351 message_counter = 25 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1086,9 +975,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1892.672 units (will add 100 for safety) +Estimated gas: 1014.900 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1099,22 +988,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000781 - Expected counter: 26 - Gas limit: 1993 + Fee to the baker: ꜩ0.00064 + Expected counter: 25 + Gas limit: 1115 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000781 - payload fees(the block proposer) ....... +ꜩ0.000781 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.00064 + payload fees(the block proposer) ....... +ꜩ0.00064 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1892.672 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 28 + Consumed gas: 1014.900 + Resulting inbox state: { level = 27 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 351 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 378 message_counter = 26 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1129,9 +1015,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1893.268 units (will add 100 for safety) +Estimated gas: 1015.496 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1142,22 +1028,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000793 - Expected counter: 27 - Gas limit: 1994 + Fee to the baker: ꜩ0.000652 + Expected counter: 26 + Gas limit: 1116 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000793 - payload fees(the block proposer) ....... +ꜩ0.000793 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000652 + payload fees(the block proposer) ....... +ꜩ0.000652 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1893.268 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 29 + Consumed gas: 1015.496 + Resulting inbox state: { level = 28 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 378 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 406 message_counter = 27 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1172,9 +1055,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1893.864 units (will add 100 for safety) +Estimated gas: 1016.092 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1185,22 +1068,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000805 - Expected counter: 28 - Gas limit: 1994 + Fee to the baker: ꜩ0.000664 + Expected counter: 27 + Gas limit: 1117 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000805 - payload fees(the block proposer) ....... +ꜩ0.000805 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000664 + payload fees(the block proposer) ....... +ꜩ0.000664 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1893.864 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 30 + Consumed gas: 1016.092 + Resulting inbox state: { level = 29 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 406 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 435 message_counter = 28 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1215,9 +1095,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1894.460 units (will add 100 for safety) +Estimated gas: 1016.688 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1228,22 +1108,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000817 - Expected counter: 29 - Gas limit: 1995 + Fee to the baker: ꜩ0.000676 + Expected counter: 28 + Gas limit: 1117 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000817 - payload fees(the block proposer) ....... +ꜩ0.000817 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000676 + payload fees(the block proposer) ....... +ꜩ0.000676 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1894.460 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 31 + Consumed gas: 1016.688 + Resulting inbox state: { level = 30 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 435 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 465 message_counter = 29 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1258,9 +1135,9 @@ This sequence of operations was run: } -./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1895.056 units (will add 100 for safety) +Estimated gas: 1017.284 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1271,22 +1148,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000829 - Expected counter: 30 - Gas limit: 1996 + Fee to the baker: ꜩ0.000688 + Expected counter: 29 + Gas limit: 1118 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000829 - payload fees(the block proposer) ....... +ꜩ0.000829 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000688 + payload fees(the block proposer) ....... +ꜩ0.000688 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1895.056 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 32 + Consumed gas: 1017.284 + Resulting inbox state: { level = 31 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 30 - starting_level_of_current_commitment_period = 32 + nb_messages_in_commitment_period = 496 message_counter = 30 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -1301,13 +1175,53 @@ This sequence of operations was run: } +./octez-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 +Node is bootstrapped. +Estimated gas: 1017.880 units (will add 100 for safety) +Estimated storage: no bytes added +Operation successfully injected in the node. +Operation hash is '[OPERATION_HASH]' +NOT waiting for the operation to be included. +Use command + octez-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] +and/or an external block explorer to make sure that it has been included. +This sequence of operations was run: + Manager signed operations: + From: [PUBLIC_KEY_HASH] + Fee to the baker: ꜩ0.0007 + Expected counter: 30 + Gas limit: 1118 + Storage limit: 0 bytes + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ0.0007 + payload fees(the block proposer) ....... +ꜩ0.0007 + Smart contract rollup messages submission + This smart contract rollup messages submission was successfully applied + Consumed gas: 1017.880 + Resulting inbox state: { level = 32 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 528 + message_counter = 31 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 31 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + ./octez-sc-rollup-client-alpha rpc get /global/last_stored_commitment { "commitment": { "compressed_state": "[SC_ROLLUP_PVM_STATE_HASH]", "inbox_level": 32, "predecessor": "[SC_ROLLUP_COMMITMENT_HASH]", - "number_of_ticks": "466" }, + "number_of_ticks": "526" }, "hash": "[SC_ROLLUP_COMMITMENT_HASH]" } ./octez-sc-rollup-client-alpha rpc get /global/last_stored_commitment @@ -1316,5 +1230,5 @@ This sequence of operations was run: "[SC_ROLLUP_PVM_STATE_HASH]", "inbox_level": 32, "predecessor": "[SC_ROLLUP_COMMITMENT_HASH]", - "number_of_ticks": "466" }, + "number_of_ticks": "526" }, "hash": "[SC_ROLLUP_COMMITMENT_HASH]" } diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - runs with kernel - no_parse_bad_fingerprint.out b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - runs with kernel - no_parse_bad_fingerprint.out index ed05deb07164..42d5bac630d9 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - runs with kernel - no_parse_bad_fingerprint.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - runs with kernel - no_parse_bad_fingerprint.out @@ -1,8 +1,8 @@ ./octez-client --wait none originate sc rollup from bootstrap1 of kind wasm_2_0_0 of type string booting with 0061206d01000000014a0c60027f7f017f60027f7f0060037f7f7f017f60000060017f0060037f7f7f0060047f7f7f7f017f60047f7f7f7f0060017f017f60057f7f7f7f7f017f60017f017e60057f7f7f7f7f00034746030400050601000506040700080902070407000803080404040507010a0a0004050008010104010101010b010200000101010301010004020501020a0000080808000b00020204050170011d1d05030100110619037f01418080c0000b7f0041948cc0000b7f0041a08cc0000b073304066d656d6f727902000b6b65726e656c5f6e65787400000a5f5f646174615f656e6403010b5f5f686561705f6261736503020922010041010b1c013c090a0b0c1112131023171c161d18262728292c2d2e35413d363b0afa4646860201057f23808080800041106b22002480808080001094808080000240024041002802e083c080000d004100417f3602e083c080000240024041002802e483c080002201450d00200128020041016a210241002802ec83c08000210341002802e883c0800021040c010b410441041082808080002201450d0241002104410020013602e483c080002001410036020041012102410121030b20012002360200410020033602e883c080004100200420036a3602ec83c08000410041002802e083c0800041016a3602e083c08000200041106a2480808080000f0b41b480c080004110200041086a41c480c0800041a480c0800010c280808000000b4104410410b180808000000b02000b1301017f20002001108680808000210220020f0b0f002000200120021087808080000f0b1701017f2000200120022003108880808000210420040f0b0d002000200110b4808080000f0b120041f083c0800020002001108e808080000b140041f083c08000200020012002108f808080000b4501017f024041f083c0800020032002108e808080002204450d002004200020032001200120034b1b10c5808080001a41f083c08000200020012002108f808080000b20040b02000b7701017f02400240200241027422022003410374418080016a2203200220034b1b418780046a220441107640002203417f470d0041012102410021030c010b20034110742203420037030041002102200341003602082003200320044180807c716a4102723602000b20002003360204200020023602000b05004180040b040041010bef0401087f024020022802002205450d002001417f6a210620004102742107410020016b21080340200541086a2109024002402005280208220a4101710d00200521010c010b03402009200a417e71360200024002402005280204220a417c7122090d00410021010c010b4100200920092d00004101711b21010b02402005280200220b417c71220c450d004100200c200b4102711b220b450d00200b200b2802044103712009723602042005280204220a417c7121090b02402009450d00200920092802004103712005280200417c71723602002005280204210a0b2005200a41037136020420052005280200220941037136020002402009410271450d00200120012802004102723602000b20022001360200200141086a2109200121052001280208220a4101710d000b0b02402001280200417c71220a200141086a22056b2007490d00024002402005200320002004280210118080808000004102746a41086a200a20076b200871220a4d0d0020062005710d0220022009280200417c7136020020012001280200410172360200200121050c010b200a4100360200200a41786a2205420037020020052001280200417c7136020002402001280200220a417c71220b450d004100200b200a4102711b220a450d00200a200a2802044103712005723602040b2005200528020441037120017236020420092009280200417e71360200200120012802002209410371200572220a3602000240024020094102710d00200528020021010c010b2001200a417d713602002005200528020041027222013602000b200520014101723602000b200541086a0f0b20022001280208220536020020050d000b0b41000bac0301037f23808080800041106b22032480808080000240024020010d00200221010c010b200141036a220441027621050240200241054f0d002005417f6a220141ff014b0d00200320003602082003200020014102746a41046a41002001418002491b220028020036020c0240200520022003410c6a200341086a41ec80c08000108d8080800022010d002003200341086a200520021091808080004100210120032802000d0020032802042201200328020c3602082003200136020c200520022003410c6a200341086a41ec80c08000108d8080800021010b2000200328020c3602000c010b2003200028020036020c0240200520022003410c6a41d480c0800041d480c08000108d8080800022010d0002402004417c7122012002410374418080016a2204200120044b1b418780046a220441107640002201417f470d00410021010c010b20014110742201200328020c360208200141003602042001200120044180807c716a4102723602002003200136020c200520022003410c6a41d480c0800041d480c08000108d8080800021010b2000200328020c3602000b200341106a24808080800020010be60501067f23808080800041106b220424808080800002402001450d002002450d000240200341054f0d00200241036a410276417f6a220341ff014b0d0020014100360200200141786a22022002280200417e713602002004200036020c200020034102746a41046a22002802002103024002402004410c6a109380808000450d00024002402001417c6a2205280200417c712206450d00200628020022074101710d0002400240024020022802002208417c7122010d00200621090c010b200621094100200120084102711b2208450d002008200828020441037120067236020420052802002201417c712209450d012002280200417c712101200928020021070b20092001200741037172360200200528020021010b200520014103713602002002200228020022014103713602002001410271450d01200620062802004102723602000c010b20022802002206417c712205450d014100200520064102711b2206450d0120062d00004101710d0120012006280208417c71360200200620024101723602080b200321020c010b200120033602000b200020023602000c010b20014100360200200141786a220220022802002203417e71360200200028020021050240024002402001417c6a2207280200417c712206450d00200628020022094101710d000240024002402003417c7122010d00200621080c010b200621084100200120034102711b2203450d002003200328020441037120067236020420072802002201417c712208450d012002280200417c712101200828020021090b20082001200941037172360200200728020021010b200720014103713602002002200228020022014103713602002001410271450d01200620062802004102723602000c010b2003417c712206450d014100200620034102711b2203450d0120032d00004101710d0120012003280208417c71360200200320024101723602080b200020053602000c010b20012005360200200020023602000b200441106a2480808080000b02000b960201027f23808080800041106b220424808080800020042001280200220528020036020c024002400240200241026a220220026c220241801020024180104b1b220141042004410c6a418481c08000418481c08000108d808080002202450d002005200428020c3602000c010b2004418481c0800020014104108a80808000024002402004280200450d002005200428020c3602000c010b20042802042202200428020c3602082004200236020c200141042004410c6a418481c08000418481c08000108d8080800021022005200428020c36020020020d010b410121010c010b200242003702042002200220014102746a410272360200410021010b2000200236020420002001360200200441106a2480808080000b040020010b040041000b02000b040000000b02000b2a01017f0240200041046a2802002201450d0020002802002200450d002000200141011083808080000b0b2a01017f024020002802042201450d00200041086a2802002200450d002001200041011083808080000b0bdb0101027f23808080800041206b22032480808080000240200120026a22022001490d00200041046a280200220441017422012002200120024b1b22014108200141084b1b2101024002402004450d00200341106a41086a410136020020032004360214200320002802003602100c010b200341003602100b200320014101200341106a109a8080800002402003280200450d00200341086a2802002200450d012003280204200010b180808000000b20032802042102200041046a200136020020002002360200200341206a2480808080000f0b10b280808000000bb50101027f0240024002400240024002400240024002402002450d004101210420014100480d0120032802002205450d02200328020422030d0520010d03200221030c040b20002001360204410121040b410021010c060b20010d00200221030c010b2001200210828080800021030b2003450d010c020b200520032002200110848080800022030d010b20002001360204200221010c010b20002003360204410021040b20002004360200200041086a20013602000bdb0101037f23808080800041206b22022480808080000240200141016a22032001490d00200041046a280200220441017422012003200120034b1b22014108200141084b1b2101024002402004450d00200241106a41086a410136020020022004360214200220002802003602100c010b200241003602100b200220014101200241106a109a8080800002402002280200450d00200241086a2802002200450d012002280204200010b180808000000b20022802042103200041046a200136020020002003360200200241206a2480808080000f0b10b280808000000b0c0042f6e2f8b1f2e1afe7050b0d0042d1ae98c49983b2f7847f0bf70201037f23808080800041106b220224808080800002400240024002402001418001490d002002410036020c20014180104f0d0120022001413f71418001723a000d2002200141067641c001723a000c410221010c020b024020002802082203200041046a280200470d0020002003109b80808000200028020821030b2000200341016a360208200028020020036a20013a00000c020b0240200141808004490d0020022001413f71418001723a000f2002200141127641f001723a000c20022001410676413f71418001723a000e20022001410c76413f71418001723a000d410421010c010b20022001413f71418001723a000e20022001410c7641e001723a000c20022001410676413f71418001723a000d410321010b0240200041046a280200200041086a220428020022036b20014f0d00200020032001109980808000200428020021030b200028020020036a2002410c6a200110c5808080001a2004200320016a3602000b200241106a24808080800041000b180020002802002000280204200028020810a080808000000bbf0101027f23808080800041106b2203248080808000200041146a28020021040240024002400240200041046a2802000e020001030b20040d02419c81c080002100410021040c010b20040d01200028020022002802042104200028020021000b2003200436020420032000360200200341b882c08000200110be808080002002200110c08080800010aa80808000000b2003410036020420032000360200200341a482c08000200110be808080002002200110c08080800010aa80808000000b1c00024020000d00419c81c08000412b200110b880808000000b20000b2000024020000d00419c81c08000412b41f481c0800010b880808000000b20000b02000b2501017f2000200141002802f48bc080002202418b8080800020021b1181808080000000000b5901037f23808080800041106b2201248080808000200010bf8080800041e481c0800010a1808080002102200010be8080800010a28080800021032001200236020820012000360204200120033602002001109f80808000000bb10202047f017e23808080800041306b2202248080808000200141046a2103024020012802040d0020012802002104200241086a41086a22054100360200200242013703082002200241086a360214200241186a41106a200441106a290200370300200241186a41086a200441086a29020037030020022004290200370318200241146a41cc82c08000200241186a10ba808080001a200341086a2005280200360200200320022903083702000b200241186a41086a2204200341086a2802003602002001410c6a41003602002003290200210620014201370204200220063703180240410c410410828080800022010d00410c410410b180808000000b20012002290318370200200141086a20042802003602002000418482c0800036020420002001360200200241306a2480808080000bc80101037f23808080800041306b2202248080808000200141046a2103024020012802040d0020012802002101200241086a41086a22044100360200200242013703082002200241086a360214200241186a41106a200141106a290200370300200241186a41086a200141086a29020037030020022001290200370318200241146a41cc82c08000200241186a10ba808080001a200341086a2004280200360200200320022903083702000b2000418482c0800036020420002003360200200241306a2480808080000b4e01027f200128020421022001280200210302404108410410828080800022010d004108410410b180808000000b20012002360204200120033602002000419482c08000360204200020013602000b14002000419482c08000360204200020013602000bab0201037f23808080800041206b220524808080800041012106410041002802848cc08000220741016a3602848cc080000240024041002d00888cc08000450d0041002802908cc0800041016a21060c010b410041013a00888cc080000b410020063602908cc080000240024020074100480d00200641024b0d00200520043a0018200520033602142005200236021041002802f88bc080002207417f4c0d004100200741016a22073602f88bc08000024041002802808cc080002202450d0041002802fc8bc08000210720052000200128021011818080800000200520052903003703082007200541086a20022802141181808080000041002802f88bc0800021070b41002007417f6a3602f88bc08000200641014b0d0020040d010b00000b2000200110ab80808000000b3101017f23808080800041106b22022480808080002002200136020c20022000360208200241086a1095808080001a00000b5801027f02402000280200220341046a280200200341086a220428020022006b20024f0d00200320002002109980808000200428020021000b200328020020006a2001200210c5808080001a2004200020026a36020041000b120020002802002001109e808080001a41000b7401017f23808080800041206b220224808080800020022000280200360204200241086a41106a200141106a290200370300200241086a41086a200141086a29020037030020022001290200370308200241046a41cc82c08000200241086a10ba808080002101200241206a24808080800020010b0d002000200110b080808000000b0d0020002001108580808000000b0d002000200110b380808000000b4e01017f23808080800041206b22002480808080002000411c6a41003602002000418083c080003602182000420137020c2000419483c08000360208200041086a419c83c0800010b980808000000b0d002000200110af80808000000b0d002000200110a480808000000b0d0020002802001a037f0c000b0b02000bd80701067f20002802102103024002400240024002400240200028020822044101460d0020034101470d010b20034101470d03200120026a2105200041146a28020022060d0141002107200121080c020b2000280218200120022000411c6a28020028020c1182808080000021030c030b41002107200121080340200822032005460d020240024020032c00002208417f4c0d00200341016a21080c010b0240200841604f0d00200341026a21080c010b0240200841704f0d00200341036a21080c010b20032d0002413f7141067420032d0001413f71410c747220032d0003413f7172200841ff0171411274418080f0007172418080c400460d03200341046a21080b200720036b20086a21072006417f6a22060d000b0b20082005460d00024020082c00002203417f4a0d0020034160490d0020034170490d0020082d0002413f7141067420082d0001413f71410c747220082d0003413f7172200341ff0171411274418080f0007172418080c400460d010b02400240024020070d00410021080c010b024020072002490d00410021032002210820072002460d010c020b4100210320072108200120076a2c00004140480d010b20082107200121030b2007200220031b21022003200120031b21010b024020040d002000280218200120022000411c6a28020028020c118280808000000f0b2000410c6a28020021050240024020024110490d002001200210c38080800021080c010b024020020d00410021080c010b20024103712107024002402002417f6a41034f0d0041002108200121030c010b2002417c71210641002108200121030340200820032c000041bf7f4a6a200341016a2c000041bf7f4a6a200341026a2c000041bf7f4a6a200341036a2c000041bf7f4a6a2108200341046a21032006417c6a22060d000b0b2007450d000340200820032c000041bf7f4a6a2108200341016a21032007417f6a22070d000b0b0240200520084d0d0041002103200520086b22072106024002400240410020002d0020220820084103461b4103710e03020001020b41002106200721030c010b20074101762103200741016a41017621060b200341016a21032000411c6a28020021072000280204210820002802182100024003402003417f6a2203450d0120002008200728021011808080800000450d000b41010f0b410121032008418080c400460d01200020012002200728020c118280808000000d01410021030340024020062003470d0020062006490f0b200341016a210320002008200728021011808080800000450d000b2003417f6a2006490f0b2000280218200120022000411c6a28020028020c118280808000000f0b20030b5401017f23808080800041206b2203248080808000200341146a4100360200200341ac83c08000360210200342013702042003200136021c200320003602182003200341186a3602002003200210b980808000000b4c01017f23808080800041206b2202248080808000200241013a00182002200136021420022000360210200241bc83c0800036020c200241ac83c08000360208200241086a10a580808000000bbd05010a7f23808080800041306b2203248080808000200341246a2001360200200341033a0028200342808080808004370308200320003602204100210420034100360218200341003602100240024002400240200228020822050d00200241146a2802002206450d0120022802002101200228021021002006417f6a41ffffffff017141016a2204210603400240200141046a2802002207450d00200328022020012802002007200328022428020c118280808000000d040b2000280200200341086a200041046a280200118080808000000d03200041086a2100200141086a21012006417f6a22060d000c020b0b2002410c6a2802002200450d00200041057421082000417f6a41ffffff3f7141016a2104200228020021014100210603400240200141046a2802002200450d00200328022020012802002000200328022428020c118280808000000d030b2003200520066a2200411c6a2d00003a00282003200041046a290200422089370308200041186a28020021092002280210210a4100210b41002107024002400240200041146a2802000e03010002010b2009410374210c41002107200a200c6a220c280204419880808000470d01200c28020028020021090b410121070b2003200936021420032007360210200041106a28020021070240024002402000410c6a2802000e03010002010b20074103742109200a20096a2209280204419880808000470d01200928020028020021070b4101210b0b2003200736021c2003200b360218200a20002802004103746a2200280200200341086a2000280204118080808000000d02200141086a21012008200641206a2206470d000b0b4100210020042002280204492201450d012003280220200228020020044103746a410020011b22012802002001280204200328022428020c11828080800000450d010b410121000b200341306a24808080800020000b0c004281b8aa93f5f3e5ec140b2100200128021841ac83c08000410e2001411c6a28020028020c118280808000000b140020012000280200200028020410b7808080000b070020002802080b0700200028020c0b070020002d00100b180020002802002001200028020428020c118080808000000b930101017f23808080800041c0006b22052480808080002005200136020c2005200036020820052003360214200520023602102005412c6a41023602002005413c6a4199808080003602002005420237021c200541d083c080003602182005419a808080003602342005200541306a3602282005200541106a3602382005200541086a360230200541186a200410b980808000000ba30801097f02400240200041036a417c71220220006b220320014b0d00200341044b0d00200120036b22044104490d0020044103712105410021064100210102402003450d00200341037121070240024020022000417f736a41034f0d0041002101200021020c010b2003417c71210841002101200021020340200120022c000041bf7f4a6a200241016a2c000041bf7f4a6a200241026a2c000041bf7f4a6a200241036a2c000041bf7f4a6a2101200241046a21022008417c6a22080d000b0b2007450d000340200120022c000041bf7f4a6a2101200241016a21022007417f6a22070d000b0b200020036a210002402005450d0020002004417c716a22022c000041bf7f4a210620054101460d00200620022c000141bf7f4a6a210620054102460d00200620022c000241bf7f4a6a21060b20044102762103200620016a21080340200021062003450d02200341c001200341c001491b220441037121052004410274210902400240200441fc0171220a41027422000d00410021020c010b200620006a2107410021022006210003402000410c6a2802002201417f73410776200141067672418182840871200041086a2802002201417f73410776200141067672418182840871200041046a2802002201417f7341077620014106767241818284087120002802002201417f7341077620014106767241818284087120026a6a6a6a2102200041106a22002007470d000b0b200620096a2100200320046b2103200241087641ff81fc0771200241ff81fc07716a418180046c41107620086a21082005450d000b2006200a4102746a2100200541ffffffff036a220441ffffffff0371220241016a2201410371210302400240200241034f0d00410021020c010b200141fcffffff077121014100210203402000410c6a2802002207417f73410776200741067672418182840871200041086a2802002207417f73410776200741067672418182840871200041046a2802002207417f7341077620074106767241818284087120002802002207417f7341077620074106767241818284087120026a6a6a6a2102200041106a21002001417c6a22010d000b0b02402003450d00200441818080807c6a2101034020002802002207417f7341077620074106767241818284087120026a2102200041046a21002001417f6a22010d000b0b200241087641ff81fc0771200241ff81fc07716a418180046c41107620086a0f0b024020010d0041000f0b20014103712102024002402001417f6a41034f0d00410021080c010b2001417c712101410021080340200820002c000041bf7f4a6a200041016a2c000041bf7f4a6a200041026a2c000041bf7f4a6a200041036a2c000041bf7f4a6a2108200041046a21002001417c6a22010d000b0b2002450d000340200820002c000041bf7f4a6a2108200041016a21002002417f6a22020d000b0b20080bc10201087f024002402002410f4b0d00200021030c010b2000410020006b41037122046a210502402004450d0020002103200121060340200320062d00003a0000200641016a2106200341016a22032005490d000b0b2005200220046b2207417c7122086a210302400240200120046a2209410371450d0020084101480d012009410374220641187121022009417c71220a41046a2101410020066b4118712104200a28020021060340200520062002762001280200220620047472360200200141046a2101200541046a22052003490d000c020b0b20084101480d0020092101034020052001280200360200200141046a2101200541046a22052003490d000b0b20074103712102200920086a21010b02402002450d00200320026a21050340200320012d00003a0000200141016a2101200341016a22032005490d000b0b20000b0e0020002001200210c4808080000b0bea030100418080c0000be0032f7573722f7372632f6b65726e656c5f656e7472792f7372632f63616368652e7273000000001000220000001300000020000000616c726561647920626f72726f776564010000000000000001000000020000000300000000000000010000000400000005000000060000000300000004000000040000000700000008000000090000000a000000000000000100000004000000050000000600000063616c6c656420604f7074696f6e3a3a756e77726170282960206f6e206120604e6f6e65602076616c75656c6962726172792f7374642f7372632f70616e69636b696e672e727300c70010001c000000460200001f000000c70010001c000000470200001e0000000c0000000c000000040000000d0000000e00000008000000040000000f00000010000000100000000400000011000000120000000e000000080000000400000013000000140000000e00000004000000040000001500000016000000170000006c6962726172792f616c6c6f632f7372632f7261775f7665632e72736361706163697479206f766572666c6f770000008001100011000000640110001c0000000602000005000000426f72726f774d75744572726f7200001b00000000000000010000001c0000003a200000ac01100000000000cc01100002000000 --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3149.901 units (will add 100 for safety) -Estimated storage: 16518 bytes added (will add 20 for safety) +Estimated gas: 2949.377 units (will add 100 for safety) +Estimated storage: 16387 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,25 +12,25 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.010543 + Fee to the baker: ꜩ0.010523 Expected counter: 1 - Gas limit: 3250 - Storage limit: 16538 bytes + Gas limit: 3050 + Storage limit: 16407 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.010543 - payload fees(the block proposer) ....... +ꜩ0.010543 + [PUBLIC_KEY_HASH] ... -ꜩ0.010523 + payload fees(the block proposer) ....... +ꜩ0.010523 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string Boot sector Blake2B hash: '635f85c032f98c9a9bd7d58a0669213131dd23152eeb7d9d8ae2c354e140d9af' This smart contract rollup origination was successfully applied - Consumed gas: 3149.901 - Storage size: 16518 bytes + Consumed gas: 2949.377 + Storage size: 16387 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ4.1295 - storage fees ........................... +ꜩ4.1295 + [PUBLIC_KEY_HASH] ... -ꜩ4.09675 + storage fees ........................... +ꜩ4.09675 ./octez-client rpc get '/chains/main/blocks/head/context/sc_rollup/[SC_ROLLUP_HASH]/genesis_info' @@ -43,9 +43,9 @@ This sequence of operations was run: ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks "0" -./octez-client --wait none send sc rollup message '["1 6 + value"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message '["1 6 + value"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1876.773 units (will add 100 for safety) +Estimated gas: 1000.647 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -56,28 +56,26 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000482 + Fee to the baker: ꜩ0.000354 Expected counter: 1 - Gas limit: 1977 + Gas limit: 1101 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000482 - payload fees(the block proposer) ....... +ꜩ0.000482 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000354 + payload fees(the block proposer) ....... +ꜩ0.000354 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1876.901 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 3 + Consumed gas: 1000.647 + Resulting inbox state: { level = 3 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 1 - starting_level_of_current_commitment_period = 2 - message_counter = 1 + nb_messages_in_commitment_period = 6 + message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 1 + index = 2 back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] } @@ -86,17 +84,17 @@ This sequence of operations was run: "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"2" +"4" ./octez-sc-rollup-client-alpha rpc get /global/block/head/state_hash "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"2" +"4" -./octez-client --wait none send sc rollup message '["2 8 + value"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message '["2 8 + value"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1876.995 units (will add 100 for safety) +Estimated gas: 1000.647 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -107,27 +105,24 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000482 + Fee to the baker: ꜩ0.000354 Expected counter: 2 - Gas limit: 1977 + Gas limit: 1101 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000482 - payload fees(the block proposer) ....... +ꜩ0.000482 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000354 + payload fees(the block proposer) ....... +ꜩ0.000354 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1877.123 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 4 + Consumed gas: 1000.647 + Resulting inbox state: { level = 4 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 2 - starting_level_of_current_commitment_period = 2 - message_counter = 1 + nb_messages_in_commitment_period = 9 + message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 2 + index = 3 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] @@ -138,17 +133,17 @@ This sequence of operations was run: "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"3" +"7" ./octez-sc-rollup-client-alpha rpc get /global/block/head/state_hash "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"3" +"7" -./octez-client --wait none send sc rollup message '["3 10 + value"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message '["3 10 + value"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1877.219 units (will add 100 for safety) +Estimated gas: 1000.664 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -159,29 +154,27 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000483 + Fee to the baker: ꜩ0.000355 Expected counter: 3 - Gas limit: 1978 + Gas limit: 1101 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000483 - payload fees(the block proposer) ....... +ꜩ0.000483 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000355 + payload fees(the block proposer) ....... +ꜩ0.000355 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1877.219 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 5 + Consumed gas: 1000.664 + Resulting inbox state: { level = 5 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 3 - starting_level_of_current_commitment_period = 2 - message_counter = 1 + nb_messages_in_commitment_period = 12 + message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 3 + index = 4 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] } @@ -190,17 +183,17 @@ This sequence of operations was run: "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"4" +"10" ./octez-sc-rollup-client-alpha rpc get /global/block/head/state_hash "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"4" +"10" -./octez-client --wait none send sc rollup message '["4 12 + value"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message '["4 12 + value"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1877.219 units (will add 100 for safety) +Estimated gas: 1000.664 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -211,27 +204,24 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000483 + Fee to the baker: ꜩ0.000355 Expected counter: 4 - Gas limit: 1978 + Gas limit: 1101 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000483 - payload fees(the block proposer) ....... +ꜩ0.000483 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000355 + payload fees(the block proposer) ....... +ꜩ0.000355 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1877.347 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 6 + Consumed gas: 1000.664 + Resulting inbox state: { level = 6 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 4 - starting_level_of_current_commitment_period = 2 - message_counter = 1 + nb_messages_in_commitment_period = 15 + message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 4 + index = 5 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] @@ -243,17 +233,17 @@ This sequence of operations was run: "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"5" +"13" ./octez-sc-rollup-client-alpha rpc get /global/block/head/state_hash "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"5" +"13" -./octez-client --wait none send sc rollup message '["5 14 + value"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message '["5 14 + value"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1877.426 units (will add 100 for safety) +Estimated gas: 1000.664 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -264,27 +254,24 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000483 + Fee to the baker: ꜩ0.000355 Expected counter: 5 - Gas limit: 1978 + Gas limit: 1101 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000483 - payload fees(the block proposer) ....... +ꜩ0.000483 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000355 + payload fees(the block proposer) ....... +ꜩ0.000355 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1877.426 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 7 + Consumed gas: 1000.664 + Resulting inbox state: { level = 7 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 5 - starting_level_of_current_commitment_period = 2 - message_counter = 1 + nb_messages_in_commitment_period = 18 + message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 5 + index = 6 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] @@ -296,17 +283,17 @@ This sequence of operations was run: "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"6" +"16" ./octez-sc-rollup-client-alpha rpc get /global/block/head/state_hash "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"6" +"16" -./octez-client --wait none send sc rollup message '["6 16 + value"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message '["6 16 + value"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1877.426 units (will add 100 for safety) +Estimated gas: 1000.664 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -317,27 +304,24 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000483 + Fee to the baker: ꜩ0.000355 Expected counter: 6 - Gas limit: 1978 + Gas limit: 1101 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000483 - payload fees(the block proposer) ....... +ꜩ0.000483 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000355 + payload fees(the block proposer) ....... +ꜩ0.000355 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1877.426 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 8 + Consumed gas: 1000.664 + Resulting inbox state: { level = 8 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 6 - starting_level_of_current_commitment_period = 2 - message_counter = 1 + nb_messages_in_commitment_period = 21 + message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 6 + index = 7 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] @@ -349,17 +333,17 @@ This sequence of operations was run: "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"7" +"19" ./octez-sc-rollup-client-alpha rpc get /global/block/head/state_hash "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"7" +"19" -./octez-client --wait none send sc rollup message '["7 18 + value"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message '["7 18 + value"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1877.426 units (will add 100 for safety) +Estimated gas: 1000.664 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -370,30 +354,28 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000483 + Fee to the baker: ꜩ0.000355 Expected counter: 7 - Gas limit: 1978 + Gas limit: 1101 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000483 - payload fees(the block proposer) ....... +ꜩ0.000483 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000355 + payload fees(the block proposer) ....... +ꜩ0.000355 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1877.426 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 9 + Consumed gas: 1000.664 + Resulting inbox state: { level = 9 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 7 - starting_level_of_current_commitment_period = 2 - message_counter = 1 + nb_messages_in_commitment_period = 24 + message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 7 + index = 8 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] } @@ -402,17 +384,17 @@ This sequence of operations was run: "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"8" +"22" ./octez-sc-rollup-client-alpha rpc get /global/block/head/state_hash "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"8" +"22" -./octez-client --wait none send sc rollup message '["8 20 + value"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message '["8 20 + value"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1877.426 units (will add 100 for safety) +Estimated gas: 1000.664 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -423,27 +405,24 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000483 + Fee to the baker: ꜩ0.000355 Expected counter: 8 - Gas limit: 1978 + Gas limit: 1101 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000483 - payload fees(the block proposer) ....... +ꜩ0.000483 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000355 + payload fees(the block proposer) ....... +ꜩ0.000355 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1877.554 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 10 + Consumed gas: 1000.664 + Resulting inbox state: { level = 10 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 8 - starting_level_of_current_commitment_period = 2 - message_counter = 1 + nb_messages_in_commitment_period = 27 + message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 8 + index = 9 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] @@ -456,17 +435,17 @@ This sequence of operations was run: "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"9" +"25" ./octez-sc-rollup-client-alpha rpc get /global/block/head/state_hash "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"9" +"25" -./octez-client --wait none send sc rollup message '["9 22 + value"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message '["9 22 + value"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1877.633 units (will add 100 for safety) +Estimated gas: 1000.664 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -477,27 +456,24 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000483 + Fee to the baker: ꜩ0.000355 Expected counter: 9 - Gas limit: 1978 + Gas limit: 1101 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000483 - payload fees(the block proposer) ....... +ꜩ0.000483 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000355 + payload fees(the block proposer) ....... +ꜩ0.000355 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1877.633 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 11 + Consumed gas: 1000.664 + Resulting inbox state: { level = 11 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 9 - starting_level_of_current_commitment_period = 2 - message_counter = 1 + nb_messages_in_commitment_period = 30 + message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 9 + index = 10 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] @@ -510,17 +486,17 @@ This sequence of operations was run: "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"10" +"28" ./octez-sc-rollup-client-alpha rpc get /global/block/head/state_hash "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"10" +"28" -./octez-client --wait none send sc rollup message '["10 24 + value"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message '["10 24 + value"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1877.650 units (will add 100 for safety) +Estimated gas: 1000.681 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -531,27 +507,24 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000484 + Fee to the baker: ꜩ0.000356 Expected counter: 10 - Gas limit: 1978 + Gas limit: 1101 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000484 - payload fees(the block proposer) ....... +ꜩ0.000484 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000356 + payload fees(the block proposer) ....... +ꜩ0.000356 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1877.650 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 12 + Consumed gas: 1000.681 + Resulting inbox state: { level = 12 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 10 - starting_level_of_current_commitment_period = 2 - message_counter = 1 + nb_messages_in_commitment_period = 33 + message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 10 + index = 11 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] @@ -564,4 +537,4 @@ This sequence of operations was run: "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"11" +"31" diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - runs with kernel - no_parse_random.out b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - runs with kernel - no_parse_random.out index 6fec830b313f..8a7887f0cb7d 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - runs with kernel - no_parse_random.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - runs with kernel - no_parse_random.out @@ -1,8 +1,8 @@ ./octez-client --wait none originate sc rollup from bootstrap1 of kind wasm_2_0_0 of type string booting with b9a332ba40d043f6cfaf28686153801e5069e1c839abfb20aa1907672634 --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.569 units (will add 100 for safety) -Estimated storage: 6685 bytes added (will add 20 for safety) +Estimated gas: 2910.045 units (will add 100 for safety) +Estimated storage: 6554 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,25 +12,25 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000706 + Fee to the baker: ꜩ0.000686 Expected counter: 1 - Gas limit: 3211 - Storage limit: 6705 bytes + Gas limit: 3011 + Storage limit: 6574 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000706 - payload fees(the block proposer) ....... +ꜩ0.000706 + [PUBLIC_KEY_HASH] ... -ꜩ0.000686 + payload fees(the block proposer) ....... +ꜩ0.000686 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string Boot sector Blake2B hash: 'b491e02fbca4128384e6a38f7e3fef6b534b4cdfa63cc1d8d7964399d165a030' This smart contract rollup origination was successfully applied - Consumed gas: 3110.569 - Storage size: 6685 bytes + Consumed gas: 2910.045 + Storage size: 6554 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.67125 - storage fees ........................... +ꜩ1.67125 + [PUBLIC_KEY_HASH] ... -ꜩ1.6385 + storage fees ........................... +ꜩ1.6385 ./octez-client rpc get '/chains/main/blocks/head/context/sc_rollup/[SC_ROLLUP_HASH]/genesis_info' @@ -43,9 +43,9 @@ This sequence of operations was run: ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks "0" -./octez-client --wait none send sc rollup message '["1 6 + value"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message '["1 6 + value"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1876.773 units (will add 100 for safety) +Estimated gas: 1000.647 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -56,28 +56,26 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000482 + Fee to the baker: ꜩ0.000354 Expected counter: 1 - Gas limit: 1977 + Gas limit: 1101 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000482 - payload fees(the block proposer) ....... +ꜩ0.000482 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000354 + payload fees(the block proposer) ....... +ꜩ0.000354 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1876.901 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 3 + Consumed gas: 1000.647 + Resulting inbox state: { level = 3 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 1 - starting_level_of_current_commitment_period = 2 - message_counter = 1 + nb_messages_in_commitment_period = 6 + message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 1 + index = 2 back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] } @@ -86,17 +84,17 @@ This sequence of operations was run: "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"2" +"4" ./octez-sc-rollup-client-alpha rpc get /global/block/head/state_hash "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"2" +"4" -./octez-client --wait none send sc rollup message '["2 8 + value"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message '["2 8 + value"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1876.995 units (will add 100 for safety) +Estimated gas: 1000.647 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -107,27 +105,24 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000482 + Fee to the baker: ꜩ0.000354 Expected counter: 2 - Gas limit: 1977 + Gas limit: 1101 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000482 - payload fees(the block proposer) ....... +ꜩ0.000482 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000354 + payload fees(the block proposer) ....... +ꜩ0.000354 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1877.123 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 4 + Consumed gas: 1000.647 + Resulting inbox state: { level = 4 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 2 - starting_level_of_current_commitment_period = 2 - message_counter = 1 + nb_messages_in_commitment_period = 9 + message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 2 + index = 3 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] @@ -138,17 +133,17 @@ This sequence of operations was run: "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"3" +"7" ./octez-sc-rollup-client-alpha rpc get /global/block/head/state_hash "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"3" +"7" -./octez-client --wait none send sc rollup message '["3 10 + value"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message '["3 10 + value"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1877.219 units (will add 100 for safety) +Estimated gas: 1000.664 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -159,29 +154,27 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000483 + Fee to the baker: ꜩ0.000355 Expected counter: 3 - Gas limit: 1978 + Gas limit: 1101 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000483 - payload fees(the block proposer) ....... +ꜩ0.000483 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000355 + payload fees(the block proposer) ....... +ꜩ0.000355 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1877.219 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 5 + Consumed gas: 1000.664 + Resulting inbox state: { level = 5 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 3 - starting_level_of_current_commitment_period = 2 - message_counter = 1 + nb_messages_in_commitment_period = 12 + message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 3 + index = 4 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] } @@ -190,17 +183,17 @@ This sequence of operations was run: "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"4" +"10" ./octez-sc-rollup-client-alpha rpc get /global/block/head/state_hash "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"4" +"10" -./octez-client --wait none send sc rollup message '["4 12 + value"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message '["4 12 + value"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1877.219 units (will add 100 for safety) +Estimated gas: 1000.664 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -211,27 +204,24 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000483 + Fee to the baker: ꜩ0.000355 Expected counter: 4 - Gas limit: 1978 + Gas limit: 1101 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000483 - payload fees(the block proposer) ....... +ꜩ0.000483 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000355 + payload fees(the block proposer) ....... +ꜩ0.000355 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1877.347 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 6 + Consumed gas: 1000.664 + Resulting inbox state: { level = 6 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 4 - starting_level_of_current_commitment_period = 2 - message_counter = 1 + nb_messages_in_commitment_period = 15 + message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 4 + index = 5 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] @@ -243,17 +233,17 @@ This sequence of operations was run: "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"5" +"13" ./octez-sc-rollup-client-alpha rpc get /global/block/head/state_hash "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"5" +"13" -./octez-client --wait none send sc rollup message '["5 14 + value"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message '["5 14 + value"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1877.426 units (will add 100 for safety) +Estimated gas: 1000.664 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -264,27 +254,24 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000483 + Fee to the baker: ꜩ0.000355 Expected counter: 5 - Gas limit: 1978 + Gas limit: 1101 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000483 - payload fees(the block proposer) ....... +ꜩ0.000483 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000355 + payload fees(the block proposer) ....... +ꜩ0.000355 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1877.426 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 7 + Consumed gas: 1000.664 + Resulting inbox state: { level = 7 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 5 - starting_level_of_current_commitment_period = 2 - message_counter = 1 + nb_messages_in_commitment_period = 18 + message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 5 + index = 6 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] @@ -296,17 +283,17 @@ This sequence of operations was run: "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"6" +"16" ./octez-sc-rollup-client-alpha rpc get /global/block/head/state_hash "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"6" +"16" -./octez-client --wait none send sc rollup message '["6 16 + value"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message '["6 16 + value"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1877.426 units (will add 100 for safety) +Estimated gas: 1000.664 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -317,27 +304,24 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000483 + Fee to the baker: ꜩ0.000355 Expected counter: 6 - Gas limit: 1978 + Gas limit: 1101 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000483 - payload fees(the block proposer) ....... +ꜩ0.000483 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000355 + payload fees(the block proposer) ....... +ꜩ0.000355 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1877.426 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 8 + Consumed gas: 1000.664 + Resulting inbox state: { level = 8 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 6 - starting_level_of_current_commitment_period = 2 - message_counter = 1 + nb_messages_in_commitment_period = 21 + message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 6 + index = 7 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] @@ -349,17 +333,17 @@ This sequence of operations was run: "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"7" +"19" ./octez-sc-rollup-client-alpha rpc get /global/block/head/state_hash "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"7" +"19" -./octez-client --wait none send sc rollup message '["7 18 + value"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message '["7 18 + value"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1877.426 units (will add 100 for safety) +Estimated gas: 1000.664 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -370,30 +354,28 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000483 + Fee to the baker: ꜩ0.000355 Expected counter: 7 - Gas limit: 1978 + Gas limit: 1101 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000483 - payload fees(the block proposer) ....... +ꜩ0.000483 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000355 + payload fees(the block proposer) ....... +ꜩ0.000355 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1877.426 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 9 + Consumed gas: 1000.664 + Resulting inbox state: { level = 9 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 7 - starting_level_of_current_commitment_period = 2 - message_counter = 1 + nb_messages_in_commitment_period = 24 + message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 7 + index = 8 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] } @@ -402,17 +384,17 @@ This sequence of operations was run: "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"8" +"22" ./octez-sc-rollup-client-alpha rpc get /global/block/head/state_hash "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"8" +"22" -./octez-client --wait none send sc rollup message '["8 20 + value"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message '["8 20 + value"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1877.426 units (will add 100 for safety) +Estimated gas: 1000.664 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -423,27 +405,24 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000483 + Fee to the baker: ꜩ0.000355 Expected counter: 8 - Gas limit: 1978 + Gas limit: 1101 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000483 - payload fees(the block proposer) ....... +ꜩ0.000483 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000355 + payload fees(the block proposer) ....... +ꜩ0.000355 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1877.554 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 10 + Consumed gas: 1000.664 + Resulting inbox state: { level = 10 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 8 - starting_level_of_current_commitment_period = 2 - message_counter = 1 + nb_messages_in_commitment_period = 27 + message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 8 + index = 9 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] @@ -456,17 +435,17 @@ This sequence of operations was run: "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"9" +"25" ./octez-sc-rollup-client-alpha rpc get /global/block/head/state_hash "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"9" +"25" -./octez-client --wait none send sc rollup message '["9 22 + value"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message '["9 22 + value"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1877.633 units (will add 100 for safety) +Estimated gas: 1000.664 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -477,27 +456,24 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000483 + Fee to the baker: ꜩ0.000355 Expected counter: 9 - Gas limit: 1978 + Gas limit: 1101 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000483 - payload fees(the block proposer) ....... +ꜩ0.000483 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000355 + payload fees(the block proposer) ....... +ꜩ0.000355 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1877.633 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 11 + Consumed gas: 1000.664 + Resulting inbox state: { level = 11 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 9 - starting_level_of_current_commitment_period = 2 - message_counter = 1 + nb_messages_in_commitment_period = 30 + message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 9 + index = 10 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] @@ -510,17 +486,17 @@ This sequence of operations was run: "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"10" +"28" ./octez-sc-rollup-client-alpha rpc get /global/block/head/state_hash "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"10" +"28" -./octez-client --wait none send sc rollup message '["10 24 + value"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./octez-client --wait none send sc rollup message '["10 24 + value"]' from bootstrap2 Node is bootstrapped. -Estimated gas: 1877.650 units (will add 100 for safety) +Estimated gas: 1000.681 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -531,27 +507,24 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000484 + Fee to the baker: ꜩ0.000356 Expected counter: 10 - Gas limit: 1978 + Gas limit: 1101 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000484 - payload fees(the block proposer) ....... +ꜩ0.000484 - Smart contract rollup messages submission: - Address: [SC_ROLLUP_HASH] + [PUBLIC_KEY_HASH] ... -ꜩ0.000356 + payload fees(the block proposer) ....... +ꜩ0.000356 + Smart contract rollup messages submission This smart contract rollup messages submission was successfully applied - Consumed gas: 1877.650 - Resulting inbox state: { rollup = [SC_ROLLUP_HASH] - level = 12 + Consumed gas: 1000.681 + Resulting inbox state: { level = 12 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 10 - starting_level_of_current_commitment_period = 2 - message_counter = 1 + nb_messages_in_commitment_period = 33 + message_counter = 2 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] content = [SC_ROLLUP_INBOX_HASH] - index = 10 + index = 11 back_pointers = [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] [SC_ROLLUP_INBOX_HASH] @@ -564,4 +537,4 @@ This sequence of operations was run: "[SC_ROLLUP_PVM_STATE_HASH]" ./octez-sc-rollup-client-alpha rpc get /global/block/head/total_ticks -"11" +"31" diff --git a/tezt/tests/expected/tickets.ml/Alpha- Send tickets in bigmap.out b/tezt/tests/expected/tickets.ml/Alpha- Send tickets in bigmap.out index 889c5e34e426..aba7fd1f2404 100644 --- a/tezt/tests/expected/tickets.ml/Alpha- Send tickets in bigmap.out +++ b/tezt/tests/expected/tickets.ml/Alpha- Send tickets in bigmap.out @@ -137,7 +137,7 @@ Contract memorized as send_tickets_in_big_map.tz. ./octez-client --mode mockup --wait none transfer 0 from bootstrap2 to '[CONTRACT_HASH]' --burn-cap 30 --storage-limit 1000000 --arg '"[CONTRACT_HASH]"' Node is bootstrapped. -Estimated gas: 100554.831 units (will add 100 for safety) +Estimated gas: 100555.299 units (will add 100 for safety) Estimated storage: 10767 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -150,7 +150,7 @@ This sequence of operations was run: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.010362 Expected counter: 1 - Gas limit: 100655 + Gas limit: 100656 Storage limit: 10787 bytes Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.010362 @@ -266,7 +266,7 @@ This sequence of operations was run: Set temp(1)[40] to (Pair 0x01e09c4d537373c6c8ca48684433c792ceb69c9dd200 (Pair "BLUE" 1)) Storage size: 320 bytes Paid storage size diff: 67 bytes - Consumed gas: 50736.408 + Consumed gas: 50736.525 Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.01675 storage fees ........................... +ꜩ0.01675 @@ -283,7 +283,7 @@ This sequence of operations was run: Copy temp(1) to map(5) Storage size: 10783 bytes Paid storage size diff: 10700 bytes - Consumed gas: 49819.455 + Consumed gas: 49819.806 Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ2.675 storage fees ........................... +ꜩ2.675 -- GitLab From c008a61ead5171ff3550f948725c302813f78ca8 Mon Sep 17 00:00:00 2001 From: Yann Regis-Gianas Date: Fri, 21 Oct 2022 09:20:12 +0200 Subject: [PATCH 35/36] Proto,SCORU: Cosmetics Signed-off-by: Yann Regis-Gianas --- src/proto_alpha/lib_protocol/sc_rollup_inbox_repr.ml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/proto_alpha/lib_protocol/sc_rollup_inbox_repr.ml b/src/proto_alpha/lib_protocol/sc_rollup_inbox_repr.ml index 04e7fd93bb8c..6b04c51b18fb 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_inbox_repr.ml +++ b/src/proto_alpha/lib_protocol/sc_rollup_inbox_repr.ml @@ -32,11 +32,11 @@ This module is designed to: 1. provide a space-efficient representation for proofs of inbox - inclusions (only for inboxes obtained at the end of block - validation) ; + inclusions (only for inboxes obtained at the end of block + validation) ; 2. offer an efficient function to add a new batch of messages in the - inbox at the current level. + inbox at the current level. To solve (1), we use a proof tree H which is implemented by a merkelized skip list allowing for compact inclusion proofs (See {!skip_list_repr.ml}). -- GitLab From 1a7e3af0afb3ab90803d716b09a9d702dbb2a54d Mon Sep 17 00:00:00 2001 From: Valentin Chaboche Date: Fri, 21 Oct 2022 10:27:01 +0200 Subject: [PATCH 36/36] Scoru,Proto: add [SOL/EOL] in the first inbox --- .../lib_protocol/sc_rollup_inbox_storage.ml | 15 +++++++++------ .../test/integration/operations/test_sc_rollup.ml | 4 +++- 2 files changed, 12 insertions(+), 7 deletions(-) diff --git a/src/proto_alpha/lib_protocol/sc_rollup_inbox_storage.ml b/src/proto_alpha/lib_protocol/sc_rollup_inbox_storage.ml index 6d44e0f0f455..8b75514d1b38 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_inbox_storage.ml +++ b/src/proto_alpha/lib_protocol/sc_rollup_inbox_storage.ml @@ -162,14 +162,17 @@ module Internal_for_tests = struct let update_num_and_size_of_messages = update_num_and_size_of_messages end -let init ctxt = - let open Lwt_result_syntax in - let ({level; _} : Level_repr.t) = Raw_context.current_level ctxt in - let*! inbox = Sc_rollup_inbox_repr.empty (Raw_context.recover ctxt) level in - Store.Inbox.init ctxt inbox - let add_start_of_level ctxt = add_internal_message ctxt Sc_rollup_inbox_message_repr.Start_of_level let add_end_of_level ctxt = add_internal_message ctxt Sc_rollup_inbox_message_repr.End_of_level + +let init ctxt = + let open Lwt_result_syntax in + let ({level; _} : Level_repr.t) = Raw_context.current_level ctxt in + let*! inbox = Sc_rollup_inbox_repr.empty (Raw_context.recover ctxt) level in + let* ctxt = Store.Inbox.init ctxt inbox in + let* _inbox, _diff, ctxt = add_start_of_level ctxt in + let* _inbox, _diff, ctxt = add_end_of_level ctxt in + return ctxt diff --git a/src/proto_alpha/lib_protocol/test/integration/operations/test_sc_rollup.ml b/src/proto_alpha/lib_protocol/test/integration/operations/test_sc_rollup.ml index 8b69412f9f57..e1e47a72031c 100644 --- a/src/proto_alpha/lib_protocol/test/integration/operations/test_sc_rollup.ml +++ b/src/proto_alpha/lib_protocol/test/integration/operations/test_sc_rollup.ml @@ -2020,11 +2020,13 @@ let test_refute_invalid_metadata () = even if no messages are added to the inbox. *) let test_sol_and_eol () = let* block, account = context_init Context.T1 in + + (* SOL and EOL are added in the first inbox. *) let* first_inbox = Context.Sc_rollup.inbox (B block) in let messages_first_inbox = Sc_rollup.Inbox.Internal_for_tests.inbox_message_counter first_inbox in - let* () = Assert.equal_int ~loc:__LOC__ 0 (Z.to_int messages_first_inbox) in + let* () = Assert.equal_int ~loc:__LOC__ 2 (Z.to_int messages_first_inbox) in (* SOL and EOL are added when no messages are added. *) let* block = Block.bake block in -- GitLab