From db54be6a89ac6ad4a0cd54a732e99cd25a999e1e Mon Sep 17 00:00:00 2001 From: Alain Mebsout Date: Mon, 25 Jul 2022 11:27:31 +0200 Subject: [PATCH 01/13] SCORU,Node: remove dependency of errors on store --- .../bin_sc_rollup_node/sc_rollup_node_errors.ml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/src/proto_alpha/bin_sc_rollup_node/sc_rollup_node_errors.ml b/src/proto_alpha/bin_sc_rollup_node/sc_rollup_node_errors.ml index 34191689a88b..be89cbcd15ab 100644 --- a/src/proto_alpha/bin_sc_rollup_node/sc_rollup_node_errors.ml +++ b/src/proto_alpha/bin_sc_rollup_node/sc_rollup_node_errors.ml @@ -32,7 +32,8 @@ type error += Commitment_predecessor_should_be_LCC of Sc_rollup.Commitment.t type error += Unreliable_tezos_node_returning_inconsistent_game type error += - | Cannot_produce_proof of Store.Inbox.t * Store.Inbox.history * Raw_level.t + | Cannot_produce_proof of + Sc_rollup.Inbox.t * Sc_rollup.Inbox.history * Raw_level.t let () = register_error_kind @@ -91,16 +92,16 @@ let () = Format.fprintf ppf "cannot produce proof for inbox %a of level %a with history %a" - Store.Inbox.pp + Sc_rollup.Inbox.pp inbox Raw_level.pp level - Store.Inbox.pp_history + Sc_rollup.Inbox.pp_history history) Data_encoding.( obj3 - (req "inbox" Store.Inbox.encoding) - (req "history" Store.Inbox.history_encoding) + (req "inbox" Sc_rollup.Inbox.encoding) + (req "history" Sc_rollup.Inbox.history_encoding) (req "level" Raw_level.encoding)) (function | Cannot_produce_proof (inbox, history, level) -> -- GitLab From 539ac34e32c88f73a368a6fcb4248ddb2dca5953 Mon Sep 17 00:00:00 2001 From: Alain Mebsout Date: Wed, 6 Jul 2022 11:43:51 +0200 Subject: [PATCH 02/13] SCORU,Node: multiple and optional operators --- .../bin_sc_rollup_node/commitment.ml | 156 ++++++++++-------- .../bin_sc_rollup_node/configuration.ml | 98 ++++++++++- .../bin_sc_rollup_node/configuration.mli | 18 +- src/proto_alpha/bin_sc_rollup_node/daemon.ml | 12 +- .../main_sc_rollup_node_alpha.ml | 49 +++++- .../bin_sc_rollup_node/node_context.ml | 15 +- .../bin_sc_rollup_node/node_context.mli | 10 +- .../bin_sc_rollup_node/refutation_game.ml | 75 +++++---- 8 files changed, 296 insertions(+), 137 deletions(-) diff --git a/src/proto_alpha/bin_sc_rollup_node/commitment.ml b/src/proto_alpha/bin_sc_rollup_node/commitment.ml index 661e27db64ac..c265e771cef0 100644 --- a/src/proto_alpha/bin_sc_rollup_node/commitment.ml +++ b/src/proto_alpha/bin_sc_rollup_node/commitment.ml @@ -297,45 +297,50 @@ module Make (PVM : Pvm.S) : Commitment_sig.S with module PVM = PVM = struct commitment) else return_unit in - let* source, src_pk, src_sk = Node_context.get_operator_keys node_ctxt in - let* _, _, Manager_operation_result {operation_result; _} = - Client_proto_context.sc_rollup_publish - cctxt - ~chain:cctxt#chain - ~block:cctxt#block - ~commitment - ~source - ~rollup:rollup_address - ~src_pk - ~src_sk - ~fee_parameter:Configuration.default_fee_parameter - () - in - let open Apply_results in - let*! () = - match operation_result with - | Applied (Sc_rollup_publish_result {published_at_level; _}) -> - let open Lwt_syntax in - let* () = - Store.Last_published_commitment_level.set - store - commitment.inbox_level - in - let* () = - Store.Commitments_published_at_level.add - store - commitment_hash - published_at_level - in - Commitment_event.publish_commitment_injected commitment - | Failed (Sc_rollup_publish_manager_kind, _errors) -> - Commitment_event.publish_commitment_failed commitment - | Backtracked (Sc_rollup_publish_result _, _errors) -> - Commitment_event.publish_commitment_backtracked commitment - | Skipped Sc_rollup_publish_manager_kind -> - Commitment_event.publish_commitment_skipped commitment - in - return_unit + let* operator = Node_context.get_operator_keys node_ctxt Publish in + match operator with + | None -> + (* Configured to not publish commitments *) + return_unit + | Some (source, src_pk, src_sk) -> + let* _, _, Manager_operation_result {operation_result; _} = + Client_proto_context.sc_rollup_publish + cctxt + ~chain:cctxt#chain + ~block:cctxt#block + ~commitment + ~source + ~rollup:rollup_address + ~src_pk + ~src_sk + ~fee_parameter:Configuration.default_fee_parameter + () + in + let open Apply_results in + let*! () = + match operation_result with + | Applied (Sc_rollup_publish_result {published_at_level; _}) -> + let open Lwt_syntax in + let* () = + Store.Last_published_commitment_level.set + store + commitment.inbox_level + in + let* () = + Store.Commitments_published_at_level.add + store + commitment_hash + published_at_level + in + Commitment_event.publish_commitment_injected commitment + | Failed (Sc_rollup_publish_manager_kind, _errors) -> + Commitment_event.publish_commitment_failed commitment + | Backtracked (Sc_rollup_publish_result _, _errors) -> + Commitment_event.publish_commitment_backtracked commitment + | Skipped Sc_rollup_publish_manager_kind -> + Commitment_event.publish_commitment_skipped commitment + in + return_unit else return_unit (* TODO: https://gitlab.com/tezos/tezos/-/issues/2869 @@ -406,40 +411,45 @@ module Make (PVM : Pvm.S) : Commitment_sig.S with module PVM = PVM = struct ({Sc_rollup.Commitment.inbox_level; _} as commitment) commitment_hash store = let open Lwt_result_syntax in - let* source, src_pk, src_sk = Node_context.get_operator_keys node_ctxt in - let* _, _, Manager_operation_result {operation_result; _} = - Client_proto_context.sc_rollup_cement - cctxt - ~chain:cctxt#chain - ~block:cctxt#block - ~commitment:commitment_hash - ~source - ~rollup:rollup_address - ~src_pk - ~src_sk - ~fee_parameter:Configuration.default_fee_parameter - () - in - let open Apply_results in - let*! () = - match operation_result with - | Applied (Sc_rollup_cement_result _) -> - let open Lwt_syntax in - let* () = - Store.Last_cemented_commitment_level.set store inbox_level - in - let* () = - Store.Last_cemented_commitment_hash.set store commitment_hash - in - Commitment_event.cement_commitment_injected commitment - | Failed (Sc_rollup_cement_manager_kind, _errors) -> - Commitment_event.cement_commitment_failed commitment - | Backtracked (Sc_rollup_cement_result _, _errors) -> - Commitment_event.cement_commitment_backtracked commitment - | Skipped Sc_rollup_cement_manager_kind -> - Commitment_event.cement_commitment_skipped commitment - in - return_unit + let* operator = Node_context.get_operator_keys node_ctxt Cement in + match operator with + | None -> + (* Configured to not cement commitments *) + return_unit + | Some (source, src_pk, src_sk) -> + let* _, _, Manager_operation_result {operation_result; _} = + Client_proto_context.sc_rollup_cement + cctxt + ~chain:cctxt#chain + ~block:cctxt#block + ~commitment:commitment_hash + ~source + ~rollup:rollup_address + ~src_pk + ~src_sk + ~fee_parameter:Configuration.default_fee_parameter + () + in + let open Apply_results in + let*! () = + match operation_result with + | Applied (Sc_rollup_cement_result _) -> + let open Lwt_syntax in + let* () = + Store.Last_cemented_commitment_level.set store inbox_level + in + let* () = + Store.Last_cemented_commitment_hash.set store commitment_hash + in + Commitment_event.cement_commitment_injected commitment + | Failed (Sc_rollup_cement_manager_kind, _errors) -> + Commitment_event.cement_commitment_failed commitment + | Backtracked (Sc_rollup_cement_result _, _errors) -> + Commitment_event.cement_commitment_backtracked commitment + | Skipped Sc_rollup_cement_manager_kind -> + Commitment_event.cement_commitment_skipped commitment + in + return_unit (* TODO: https://gitlab.com/tezos/tezos/-/issues/3008 Use the injector to cement commitments. *) diff --git a/src/proto_alpha/bin_sc_rollup_node/configuration.ml b/src/proto_alpha/bin_sc_rollup_node/configuration.ml index 77fe8aa4f209..f21371608fbe 100644 --- a/src/proto_alpha/bin_sc_rollup_node/configuration.ml +++ b/src/proto_alpha/bin_sc_rollup_node/configuration.ml @@ -26,10 +26,22 @@ open Protocol.Alpha_context +type purpose = Publish | Add_messages | Cement | Refute + +let purposes = [Publish; Add_messages; Cement; Refute] + +module Operator_purpose_map = Map.Make (struct + type t = purpose + + let compare = Stdlib.compare +end) + +type operators = Signature.Public_key_hash.t Operator_purpose_map.t + type t = { data_dir : string; sc_rollup_address : Sc_rollup.t; - sc_rollup_node_operator : Signature.Public_key_hash.t; + sc_rollup_node_operators : operators; rpc_addr : string; rpc_port : int; fee_parameter : Injection.fee_parameter; @@ -82,6 +94,77 @@ let default_fee_parameter = burn_cap = default_burn_cap; } +let string_of_purpose = function + | Publish -> "publish" + | Add_messages -> "add_messages" + | Cement -> "cement" + | Refute -> "refute" + +let purpose_of_string = function + | "publish" -> Publish + | "add_messages" -> Add_messages + | "cement" -> Cement + | "refute" -> Refute + | s -> invalid_arg ("purpose_of_string " ^ s) + +let make_purpose_map ~default bindings = + let map = Operator_purpose_map.of_seq @@ List.to_seq bindings in + match default with + | None -> map + | Some default -> + List.fold_left + (fun map purpose -> + if Operator_purpose_map.mem purpose map then map + else Operator_purpose_map.add purpose default map) + map + purposes + +let operator_purpose_map_encoding encoding = + let open Data_encoding in + let schema = + let open Json_schema in + let v_schema = Data_encoding.Json.schema encoding in + let v_schema_r = root v_schema in + let kind = + Object + { + properties = + List.map + (fun purpose -> + (string_of_purpose purpose, v_schema_r, false, None)) + purposes; + pattern_properties = []; + additional_properties = None; + min_properties = 0; + max_properties = None; + schema_dependencies = []; + property_dependencies = []; + } + in + update (element kind) v_schema + in + conv + ~schema + (fun map -> + let fields = + Operator_purpose_map.bindings map + |> List.map (fun (p, v) -> + (string_of_purpose p, Data_encoding.Json.construct encoding v)) + in + `O fields) + (function + | `O fields -> + List.map + (fun (p, v) -> + (purpose_of_string p, Data_encoding.Json.destruct encoding v)) + fields + |> List.to_seq |> Operator_purpose_map.of_seq + | _ -> assert false) + Data_encoding.Json.encoding + +let operators_encoding = + operator_purpose_map_encoding Signature.Public_key_hash.encoding + let fee_parameter_encoding = let open Data_encoding in conv @@ -148,7 +231,7 @@ let encoding : t Data_encoding.t = (fun { data_dir; sc_rollup_address; - sc_rollup_node_operator; + sc_rollup_node_operators; rpc_addr; rpc_port; fee_parameter; @@ -156,14 +239,14 @@ let encoding : t Data_encoding.t = } -> ( data_dir, sc_rollup_address, - sc_rollup_node_operator, + sc_rollup_node_operators, rpc_addr, rpc_port, fee_parameter, loser_mode )) (fun ( data_dir, sc_rollup_address, - sc_rollup_node_operator, + sc_rollup_node_operators, rpc_addr, rpc_port, fee_parameter, @@ -171,7 +254,7 @@ let encoding : t Data_encoding.t = { data_dir; sc_rollup_address; - sc_rollup_node_operator; + sc_rollup_node_operators; rpc_addr; rpc_port; fee_parameter; @@ -190,8 +273,9 @@ let encoding : t Data_encoding.t = (req "sc-rollup-node-operator" ~description: - "Public key hash of the Smart contract rollup node operator" - Signature.Public_key_hash.encoding) + "Operators that sign operations of the smart contract rollup, by \ + purpose" + operators_encoding) (dft "rpc-addr" ~description:"RPC address" string default_rpc_addr) (dft "rpc-port" ~description:"RPC port" int16 default_rpc_port) (dft diff --git a/src/proto_alpha/bin_sc_rollup_node/configuration.mli b/src/proto_alpha/bin_sc_rollup_node/configuration.mli index 1a4844ac09d5..04d2fb726c3b 100644 --- a/src/proto_alpha/bin_sc_rollup_node/configuration.mli +++ b/src/proto_alpha/bin_sc_rollup_node/configuration.mli @@ -24,16 +24,32 @@ (* *) (*****************************************************************************) +(** Purposes for operators, indicating the kind of operations that they sign. *) +type purpose = Publish | Add_messages | Cement | Refute + +module Operator_purpose_map : Map.S with type key = purpose + +type operators = Signature.Public_key_hash.t Operator_purpose_map.t + type t = { data_dir : string; sc_rollup_address : Protocol.Alpha_context.Sc_rollup.t; - sc_rollup_node_operator : Signature.Public_key_hash.t; + sc_rollup_node_operators : operators; rpc_addr : string; rpc_port : int; fee_parameter : Injection.fee_parameter; loser_mode : Loser_mode.t; } +(** [make_purpose_map ~default purposes] constructs a purpose map from a list of + bindings [purposes], with a potential [default] value. *) +val make_purpose_map : + default:'a option -> (purpose * 'a) trace -> 'a Operator_purpose_map.t + +(** Parses a purpose. + @raise Invalid_argument if not a valid purpose *) +val purpose_of_string : string -> purpose + (** [default_data_dir] is the default value for [data_dir]. *) val default_data_dir : string diff --git a/src/proto_alpha/bin_sc_rollup_node/daemon.ml b/src/proto_alpha/bin_sc_rollup_node/daemon.ml index f458513d74b7..caa3c559622d 100644 --- a/src/proto_alpha/bin_sc_rollup_node/daemon.ml +++ b/src/proto_alpha/bin_sc_rollup_node/daemon.ml @@ -236,6 +236,14 @@ let run ~data_dir (cctxt : Protocol_client_context.full) = let*! () = Event.starting_node () in let* configuration = Configuration.load ~data_dir in let open Configuration in + let* () = + (* Check that the operators are valid keys. *) + Operator_purpose_map.iter_es + (fun _purpose operator -> + let+ _pkh, _pk, _skh = Client_keys.get_key cctxt operator in + ()) + configuration.sc_rollup_node_operators + in let*! store = Store.load configuration in let* l1_ctxt, genesis_info, kind = Layer1.start configuration cctxt store in let* node_ctxt = @@ -245,11 +253,9 @@ let run ~data_dir (cctxt : Protocol_client_context.full) = configuration.sc_rollup_address genesis_info kind - configuration.sc_rollup_node_operator + configuration.sc_rollup_node_operators configuration.fee_parameter ~loser_mode:configuration.loser_mode in - let* _pkh, _pk, _skh = Node_context.get_operator_keys node_ctxt in - (* Check that the public key hash is valid. *) let module Daemon = Make ((val Components.pvm_of_kind node_ctxt.kind)) in Daemon.run node_ctxt configuration store diff --git a/src/proto_alpha/bin_sc_rollup_node/main_sc_rollup_node_alpha.ml b/src/proto_alpha/bin_sc_rollup_node/main_sc_rollup_node_alpha.ml index 1267e674af4f..c9982620707e 100644 --- a/src/proto_alpha/bin_sc_rollup_node/main_sc_rollup_node_alpha.ml +++ b/src/proto_alpha/bin_sc_rollup_node/main_sc_rollup_node_alpha.ml @@ -38,11 +38,24 @@ let sc_rollup_node_operator_param = Clic.param ~name:"node-operator" ~desc:"Public key hash of the the smart-contract rollup node operator" - (Clic.parameter (fun _ s -> - match Signature.Public_key_hash.of_b58check_opt s with - | None -> - failwith "Could not read public key hash for rollup node operator" - | Some pkh -> return pkh)) + @@ Clic.parameter + @@ fun _ s -> + let pkh_of_string s = + match Signature.Public_key_hash.of_b58check_opt s with + | None -> failwith "Could not read public key hash for rollup node operator" + | Some pkh -> return pkh + in + match String.split ~limit:1 ':' s with + | [_] -> + let+ pkh = pkh_of_string s in + `Default pkh + | [purpose; s] -> + let purpose = Configuration.purpose_of_string purpose in + let+ pkh = pkh_of_string s in + `Purpose (purpose, pkh) + | _ -> + (* cannot happen due to String.split's implementation. *) + assert false let rpc_addr_arg = let default = Configuration.default_rpc_addr in @@ -200,8 +213,8 @@ let config_init_command = loser_mode) (prefixes ["config"; "init"; "on"] @@ sc_rollup_address_param - @@ prefixes ["with"; "operator"] - @@ sc_rollup_node_operator_param stop) + @@ prefixes ["with"; "operators"] + @@ seq_of_param @@ sc_rollup_node_operator_param) (fun ( data_dir, rpc_addr, rpc_port, @@ -213,14 +226,32 @@ let config_init_command = burn_cap, loser_mode ) sc_rollup_address - sc_rollup_node_operator + sc_rollup_node_operators cctxt -> let open Configuration in + let purposed_operators, default_operators = + List.partition_map + (function + | `Purpose p_operator -> Left p_operator + | `Default operator -> Right operator) + sc_rollup_node_operators + in + let default_operator = + match default_operators with + | [] -> None + | [default_operator] -> Some default_operator + | _ -> Stdlib.failwith "Multiple default operators" + in + let sc_rollup_node_operators = + Configuration.make_purpose_map + purposed_operators + ~default:default_operator + in let config = { data_dir; sc_rollup_address; - sc_rollup_node_operator; + sc_rollup_node_operators; rpc_addr; rpc_port; fee_parameter = diff --git a/src/proto_alpha/bin_sc_rollup_node/node_context.ml b/src/proto_alpha/bin_sc_rollup_node/node_context.ml index e5a7fabd88f0..1398fe9c23b1 100644 --- a/src/proto_alpha/bin_sc_rollup_node/node_context.ml +++ b/src/proto_alpha/bin_sc_rollup_node/node_context.ml @@ -30,7 +30,7 @@ type t = { cctxt : Protocol_client_context.full; l1_ctxt : Layer1.t; rollup_address : Sc_rollup.t; - operator : Signature.Public_key_hash.t; + operators : Configuration.operators; genesis_info : Sc_rollup.Commitment.genesis_info; block_finality_time : int; kind : Sc_rollup.Kind.t; @@ -39,10 +39,13 @@ type t = { loser_mode : Loser_mode.t; } -let get_operator_keys node_ctxt = +let get_operator_keys node_ctxt purpose = let open Lwt_result_syntax in - let+ _, pk, sk = Client_keys.get_key node_ctxt.cctxt node_ctxt.operator in - (node_ctxt.operator, pk, sk) + match Configuration.Operator_purpose_map.find purpose node_ctxt.operators with + | None -> return_none + | Some operator -> + let+ _, pk, sk = Client_keys.get_key node_ctxt.cctxt operator in + Some (operator, pk, sk) (* TODO: https://gitlab.com/tezos/tezos/-/issues/2901 The constants are retrieved from the latest tezos block. These constants can @@ -54,14 +57,14 @@ let retrieve_constants cctxt = Protocol.Constants_services.all cctxt (cctxt#chain, cctxt#block) let init (cctxt : Protocol_client_context.full) l1_ctxt rollup_address - genesis_info kind operator fee_parameter ~loser_mode = + genesis_info kind operators fee_parameter ~loser_mode = let open Lwt_result_syntax in let+ protocol_constants = retrieve_constants cctxt in { cctxt; l1_ctxt; rollup_address; - operator; + operators; genesis_info; kind; block_finality_time = 2; diff --git a/src/proto_alpha/bin_sc_rollup_node/node_context.mli b/src/proto_alpha/bin_sc_rollup_node/node_context.mli index dfb7616bf435..f5a76d31173e 100644 --- a/src/proto_alpha/bin_sc_rollup_node/node_context.mli +++ b/src/proto_alpha/bin_sc_rollup_node/node_context.mli @@ -35,8 +35,8 @@ type t = { (** Layer 1 context to fetch blocks and monitor heads, etc.*) rollup_address : Sc_rollup.t; (** Smart contract rollup tracked by the rollup node. *) - operator : Signature.Public_key_hash.t; - (** Address of the rollup node operator. *) + operators : Configuration.operators; + (** Addresses of the rollup node operators by purposes. *) genesis_info : Sc_rollup.Commitment.genesis_info; (** Origination information of the smart contract rollup. *) block_finality_time : int; @@ -56,11 +56,13 @@ type t = { *) val get_operator_keys : t -> + Configuration.purpose -> (Signature.Public_key_hash.t * Signature.Public_key.t * Client_keys.sk_uri) + option tzresult Lwt.t -(** [init cctxt l1_ctxt sc_rollup operator_pkh] initialises the rollup +(** [init cctxt l1_ctxt sc_rollup operators_pkh] initialises the rollup representation. The rollup origination level and kind are fetched via an RPC call to the layer1 node that [cctxt] uses for RPC requests. *) @@ -70,7 +72,7 @@ val init : Sc_rollup.t -> Protocol.Alpha_context.Sc_rollup.Commitment.genesis_info -> Protocol.Alpha_context.Sc_rollup.Kind.t -> - Signature.Public_key_hash.t -> + Configuration.operators -> Injection.fee_parameter -> loser_mode:Loser_mode.t -> t tzresult Lwt.t diff --git a/src/proto_alpha/bin_sc_rollup_node/refutation_game.ml b/src/proto_alpha/bin_sc_rollup_node/refutation_game.ml index d9149c42bfb6..380db2d237b3 100644 --- a/src/proto_alpha/bin_sc_rollup_node/refutation_game.ml +++ b/src/proto_alpha/bin_sc_rollup_node/refutation_game.ml @@ -58,8 +58,7 @@ module Make (PVM : Pvm.S) : S with module PVM = PVM = struct module Interpreter = Interpreter.Make (PVM) open Sc_rollup.Game - let node_role node_ctxt Sc_rollup.Game.Index.{alice; bob} = - let self = node_ctxt.Node_context.operator in + let node_role ~self Sc_rollup.Game.Index.{alice; bob} = if Sc_rollup.Staker.equal alice self then Alice else if Sc_rollup.Staker.equal bob self then Bob else (* By validity of [ongoing_game] RPC. *) @@ -67,21 +66,21 @@ module Make (PVM : Pvm.S) : S with module PVM = PVM = struct type role = Our_turn of {opponent : public_key_hash} | Their_turn - let turn node_ctxt game players = + let turn ~self game players = let Sc_rollup.Game.Index.{alice; bob} = players in - match (node_role node_ctxt players, game.turn) with + match (node_role ~self players, game.turn) with | Alice, Alice -> Our_turn {opponent = bob} | Bob, Bob -> Our_turn {opponent = alice} | Alice, Bob -> Their_turn | Bob, Alice -> Their_turn - (** [inject_next_move node_ctxt move] submits an L1 operation to - issue the next move in the refutation game. [node_ctxt] provides - the connection to the Tezos node. *) - let inject_next_move node_ctxt ~refutation ~opponent = + (** [inject_next_move node_ctxt signer ~refuation ~opponent] submits an L1 + operation (signed by [signer]) to issue the next move in the refutation + game. [node_ctxt] provides the connection to the Tezos node. *) + let inject_next_move node_ctxt (source, src_pk, src_sk) ~refutation ~opponent + = let open Node_context in let open Lwt_result_syntax in - let* source, src_pk, src_sk = Node_context.get_operator_keys node_ctxt in let {rollup_address; cctxt; _} = node_ctxt in let* _, _, Manager_operation_result {operation_result; _} = Client_proto_context.sc_rollup_refute @@ -268,7 +267,7 @@ module Make (PVM : Pvm.S) : S with module PVM = PVM = struct let*! _res = f () in return_unit - let play_next_move node_ctxt store game opponent = + let play_next_move node_ctxt store game signer opponent = let open Lwt_result_syntax in let* refutation = next_move node_ctxt store game in (* FIXME: #3008 @@ -279,13 +278,12 @@ module Make (PVM : Pvm.S) : S with module PVM = PVM = struct the injector to enter the scene. *) try_ @@ fun () -> - inject_next_move node_ctxt ~refutation:(Some refutation) ~opponent + inject_next_move node_ctxt signer ~refutation:(Some refutation) ~opponent - let play_timeout node_ctxt players = + let play_timeout node_ctxt (source, src_pk, src_sk) players = let Sc_rollup.Game.Index.{alice; bob} = players in let open Node_context in let open Lwt_result_syntax in - let* source, src_pk, src_sk = Node_context.get_operator_keys node_ctxt in let {rollup_address; cctxt; _} = node_ctxt in let* _, _, Manager_operation_result {operation_result; _} = Client_proto_context.sc_rollup_timeout @@ -315,7 +313,7 @@ module Make (PVM : Pvm.S) : S with module PVM = PVM = struct in return_unit - let timeout_reached head_block node_ctxt players = + let timeout_reached ~self head_block node_ctxt players = let open Lwt_result_syntax in let Node_context.{rollup_address; cctxt; _} = node_ctxt in let* res = @@ -328,51 +326,54 @@ module Make (PVM : Pvm.S) : S with module PVM = PVM = struct in let open Sc_rollup.Game in let index = Index.make (fst players) (snd players) in - let node_player = node_role node_ctxt index in + let node_player = node_role ~self index in match res with | Some player when not (player_equal node_player player) -> return_true | None -> return_false | Some _myself -> return_false - let play head_block node_ctxt store game staker1 staker2 = + let play head_block node_ctxt store ((self, _, _) as signer) game staker1 + staker2 = let open Lwt_result_syntax in let players = (staker1, staker2) in let index = Sc_rollup.Game.Index.make staker1 staker2 in - match turn node_ctxt game index with - | Our_turn {opponent} -> play_next_move node_ctxt store game opponent + match turn ~self game index with + | Our_turn {opponent} -> play_next_move node_ctxt store game signer opponent | Their_turn -> - let* timeout_reached = timeout_reached head_block node_ctxt players in + let* timeout_reached = + timeout_reached ~self head_block node_ctxt players + in unless timeout_reached @@ fun () -> - try_ @@ fun () -> play_timeout node_ctxt index + try_ @@ fun () -> play_timeout node_ctxt signer index - let ongoing_game head_block node_ctxt = - let Node_context.{rollup_address; cctxt; operator; _} = node_ctxt in + let ongoing_game head_block node_ctxt self = + let Node_context.{rollup_address; cctxt; _} = node_ctxt in Plugin.RPC.Sc_rollup.ongoing_refutation_game cctxt (cctxt#chain, head_block) rollup_address - operator + self () - let play_opening_move node_ctxt conflict = + let play_opening_move node_ctxt signer conflict = let open Lwt_syntax in let open Sc_rollup.Refutation_storage in let* () = Refutation_game_event.conflict_detected conflict in - inject_next_move node_ctxt ~refutation:None ~opponent:conflict.other + inject_next_move node_ctxt signer ~refutation:None ~opponent:conflict.other - let start_game_if_conflict head_block node_ctxt = + let start_game_if_conflict head_block node_ctxt ((self, _, _) as signer) = let open Lwt_result_syntax in - let Node_context.{rollup_address; cctxt; operator; _} = node_ctxt in + let Node_context.{rollup_address; cctxt; _} = node_ctxt in let* conflicts = Plugin.RPC.Sc_rollup.conflicts cctxt (cctxt#chain, head_block) rollup_address - operator + self () in let*! res = - Option.iter_es (play_opening_move node_ctxt) (List.hd conflicts) + Option.iter_es (play_opening_move node_ctxt signer) (List.hd conflicts) in match res with | Ok r -> return r @@ -389,9 +390,15 @@ module Make (PVM : Pvm.S) : S with module PVM = PVM = struct let process (Layer1.Head {hash; _}) node_ctxt store = let head_block = `Hash (hash, 0) in let open Lwt_result_syntax in - let* res = ongoing_game head_block node_ctxt in - match res with - | Some (game, staker1, staker2) -> - play head_block node_ctxt store game staker1 staker2 - | None -> start_game_if_conflict head_block node_ctxt + let* signer = Node_context.get_operator_keys node_ctxt Refute in + match signer with + | None -> + (* Not injecting refutations, don't play refutation games *) + return_unit + | Some ((self, _, _) as signer) -> ( + let* res = ongoing_game head_block node_ctxt self in + match res with + | Some (game, staker1, staker2) -> + play head_block node_ctxt store signer game staker1 staker2 + | None -> start_game_if_conflict head_block node_ctxt signer) end -- GitLab From 0cbf48794ece2be0ad559fc6884437881abd8498 Mon Sep 17 00:00:00 2001 From: Alain Mebsout Date: Wed, 6 Jul 2022 14:07:13 +0200 Subject: [PATCH 03/13] Test/Tezt: fix rollup node calls --- tezt/lib_tezos/sc_rollup_node.ml | 52 +++++++++++++++++-------------- tezt/lib_tezos/sc_rollup_node.mli | 6 ++-- tezt/tests/dal.ml | 5 ++- tezt/tests/sc_rollup.ml | 14 ++++++--- 4 files changed, 45 insertions(+), 32 deletions(-) diff --git a/tezt/lib_tezos/sc_rollup_node.ml b/tezt/lib_tezos/sc_rollup_node.ml index 6fc4628295b4..d1701f1c4529 100644 --- a/tezt/lib_tezos/sc_rollup_node.ml +++ b/tezt/lib_tezos/sc_rollup_node.ml @@ -28,7 +28,8 @@ type 'a known = Unknown | Known of 'a module Parameters = struct type persistent_state = { data_dir : string; - operator_pkh : string; + operators : (string * string) list; + default_operator : string option; rpc_host : string; rpc_port : int; client : Client.t; @@ -77,7 +78,17 @@ let data_dir sc_node = sc_node.persistent_state.data_dir let base_dir sc_node = Client.base_dir sc_node.persistent_state.client -let operator_pkh sc_node = sc_node.persistent_state.operator_pkh +let operators_params sc_node = + let acc = + match sc_node.persistent_state.default_operator with + | None -> [] + | Some operator -> [operator] + in + List.fold_left + (fun acc (purpose, operator) -> + String.concat ":" [purpose; operator] :: acc) + acc + sc_node.persistent_state.operators let layer1_addr sc_node = Node.rpc_host sc_node.persistent_state.node @@ -87,24 +98,18 @@ let spawn_command sc_node = Process.spawn ~name:sc_node.name ~color:sc_node.color sc_node.path let spawn_config_init sc_node ?loser_mode rollup_address = - spawn_command - sc_node - ([ - "config"; - "init"; - "on"; - rollup_address; - "with"; - "operator"; - operator_pkh sc_node; - "--data-dir"; - data_dir sc_node; - "--rpc-addr"; - rpc_host sc_node; - "--rpc-port"; - string_of_int @@ rpc_port sc_node; - ] - @ match loser_mode with None -> [] | Some mode -> ["--loser-mode"; mode]) + spawn_command sc_node + @@ ["config"; "init"; "on"; rollup_address; "with"; "operators"] + @ operators_params sc_node + @ [ + "--data-dir"; + data_dir sc_node; + "--rpc-addr"; + rpc_host sc_node; + "--rpc-port"; + string_of_int @@ rpc_port sc_node; + ] + @ match loser_mode with None -> [] | Some mode -> ["--loser-mode"; mode] let config_init sc_node ?loser_mode rollup_address = let process = spawn_config_init sc_node ?loser_mode rollup_address in @@ -209,8 +214,8 @@ let handle_event sc_node {name; value} = | _ -> () let create ?(path = Constant.sc_rollup_node) ?name ?color ?data_dir ?event_pipe - ?(rpc_host = "127.0.0.1") ?rpc_port ~operator_pkh (node : Node.t) - (client : Client.t) = + ?(rpc_host = "127.0.0.1") ?rpc_port ?(operators = []) ?default_operator + (node : Node.t) (client : Client.t) = let name = match name with None -> fresh_name () | Some name -> name in let data_dir = match data_dir with None -> Temp.dir name | Some dir -> dir @@ -228,7 +233,8 @@ let create ?(path = Constant.sc_rollup_node) ?name ?color ?data_dir ?event_pipe data_dir; rpc_host; rpc_port; - operator_pkh; + operators; + default_operator; node; client; pending_ready = []; diff --git a/tezt/lib_tezos/sc_rollup_node.mli b/tezt/lib_tezos/sc_rollup_node.mli index 1a27ab14e559..1a66be208d67 100644 --- a/tezt/lib_tezos/sc_rollup_node.mli +++ b/tezt/lib_tezos/sc_rollup_node.mli @@ -62,7 +62,8 @@ val create : ?event_pipe:string -> ?rpc_host:string -> ?rpc_port:int -> - operator_pkh:string -> + ?operators:(string * string) list -> + ?default_operator:string -> Node.t -> Client.t -> t @@ -85,9 +86,6 @@ val data_dir : t -> string (** Get the base-dir of an sc node *) val base_dir : t -> string -(** Get the public key hash of the sc node oeprator *) -val operator_pkh : t -> string - (** Wait until an sc node terminates and check its status. If the sc node is not running, diff --git a/tezt/tests/dal.ml b/tezt/tests/dal.ml index 321c8a449af6..0a104a2c876d 100644 --- a/tezt/tests/dal.ml +++ b/tezt/tests/dal.ml @@ -92,7 +92,10 @@ let with_fresh_rollup f tezos_node tezos_client bootstrap1_key = tezos_client in let sc_rollup_node = - Sc_rollup_node.create tezos_node tezos_client ~operator_pkh:bootstrap1_key + Sc_rollup_node.create + tezos_node + tezos_client + ~default_operator:bootstrap1_key in let* configuration_filename = Sc_rollup_node.config_init sc_rollup_node rollup_address diff --git a/tezt/tests/sc_rollup.ml b/tezt/tests/sc_rollup.ml index 4a1182856a72..4f4ec862f7e0 100644 --- a/tezt/tests/sc_rollup.ml +++ b/tezt/tests/sc_rollup.ml @@ -162,7 +162,10 @@ let originate_sc_rollup ?(hooks = hooks) ?(burn_cap = Tez.(of_int 9999999)) let with_fresh_rollup f tezos_node tezos_client bootstrap1_key = let* sc_rollup = originate_sc_rollup ~src:bootstrap1_key tezos_client in let sc_rollup_node = - Sc_rollup_node.create tezos_node tezos_client ~operator_pkh:bootstrap1_key + Sc_rollup_node.create + tezos_node + tezos_client + ~default_operator:bootstrap1_key in let* configuration_filename = Sc_rollup_node.config_init sc_rollup_node sc_rollup @@ -280,7 +283,10 @@ let with_fresh_rollup ?boot_sector f tezos_node tezos_client bootstrap1_key = originate_sc_rollup ~src:bootstrap1_key ?boot_sector tezos_client in let sc_rollup_node = - Sc_rollup_node.create tezos_node tezos_client ~operator_pkh:bootstrap1_key + Sc_rollup_node.create + tezos_node + tezos_client + ~default_operator:bootstrap1_key in let* configuration_filename = Sc_rollup_node.config_init sc_rollup_node sc_rollup @@ -1648,7 +1654,7 @@ let commitment_before_lcc_not_published _protocol sc_rollup_node sc_rollup node let bootstrap2_key = Constant.bootstrap2.public_key_hash in let* client' = Client.init ?endpoint:(Some (Node node)) () in let sc_rollup_node' = - Sc_rollup_node.create node client' ~operator_pkh:bootstrap2_key + Sc_rollup_node.create node client' ~default_operator:bootstrap2_key in let sc_rollup_client' = Sc_rollup_client.create sc_rollup_node' in let* _configuration_filename = @@ -1778,7 +1784,7 @@ let first_published_level_is_global _protocol sc_rollup_node sc_rollup node let bootstrap2_key = Constant.bootstrap2.public_key_hash in let* client' = Client.init ?endpoint:(Some (Node node)) () in let sc_rollup_node' = - Sc_rollup_node.create node client' ~operator_pkh:bootstrap2_key + Sc_rollup_node.create node client' ~default_operator:bootstrap2_key in let sc_rollup_client' = Sc_rollup_client.create sc_rollup_node' in let* _configuration_filename = -- GitLab From 2d77f51442ad047b2aa42bda0c121cd238ccc155 Mon Sep 17 00:00:00 2001 From: Alain Mebsout Date: Wed, 6 Jul 2022 15:19:30 +0200 Subject: [PATCH 04/13] Tezt: avoid to read user's private keys --- tezt/lib_tezos/sc_rollup_node.ml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tezt/lib_tezos/sc_rollup_node.ml b/tezt/lib_tezos/sc_rollup_node.ml index d1701f1c4529..889993a907e8 100644 --- a/tezt/lib_tezos/sc_rollup_node.ml +++ b/tezt/lib_tezos/sc_rollup_node.ml @@ -94,8 +94,10 @@ let layer1_addr sc_node = Node.rpc_host sc_node.persistent_state.node let layer1_port sc_node = Node.rpc_port sc_node.persistent_state.node -let spawn_command sc_node = +let spawn_command sc_node args = Process.spawn ~name:sc_node.name ~color:sc_node.color sc_node.path + @@ ["--base-dir"; base_dir sc_node] + @ args let spawn_config_init sc_node ?loser_mode rollup_address = spawn_command sc_node -- GitLab From a00763e7f63cbd4a84382edfba2a653ddf48c51d Mon Sep 17 00:00:00 2001 From: Alain Mebsout Date: Wed, 6 Jul 2022 15:22:22 +0200 Subject: [PATCH 05/13] SCORU,Node: allow aliases for operators --- .../bin_sc_rollup_node/configuration.ml | 17 +++++--- .../bin_sc_rollup_node/configuration.mli | 11 +++-- .../main_sc_rollup_node_alpha.ml | 42 +++++++++++++------ 3 files changed, 49 insertions(+), 21 deletions(-) diff --git a/src/proto_alpha/bin_sc_rollup_node/configuration.ml b/src/proto_alpha/bin_sc_rollup_node/configuration.ml index f21371608fbe..207b129253e0 100644 --- a/src/proto_alpha/bin_sc_rollup_node/configuration.ml +++ b/src/proto_alpha/bin_sc_rollup_node/configuration.ml @@ -101,11 +101,16 @@ let string_of_purpose = function | Refute -> "refute" let purpose_of_string = function - | "publish" -> Publish - | "add_messages" -> Add_messages - | "cement" -> Cement - | "refute" -> Refute - | s -> invalid_arg ("purpose_of_string " ^ s) + | "publish" -> Some Publish + | "add_messages" -> Some Add_messages + | "cement" -> Some Cement + | "refute" -> Some Refute + | _ -> None + +let purpose_of_string_exn s = + match purpose_of_string s with + | Some p -> p + | None -> invalid_arg ("purpose_of_string " ^ s) let make_purpose_map ~default bindings = let map = Operator_purpose_map.of_seq @@ List.to_seq bindings in @@ -156,7 +161,7 @@ let operator_purpose_map_encoding encoding = | `O fields -> List.map (fun (p, v) -> - (purpose_of_string p, Data_encoding.Json.destruct encoding v)) + (purpose_of_string_exn p, Data_encoding.Json.destruct encoding v)) fields |> List.to_seq |> Operator_purpose_map.of_seq | _ -> assert false) diff --git a/src/proto_alpha/bin_sc_rollup_node/configuration.mli b/src/proto_alpha/bin_sc_rollup_node/configuration.mli index 04d2fb726c3b..1c4ea9935938 100644 --- a/src/proto_alpha/bin_sc_rollup_node/configuration.mli +++ b/src/proto_alpha/bin_sc_rollup_node/configuration.mli @@ -46,9 +46,14 @@ type t = { val make_purpose_map : default:'a option -> (purpose * 'a) trace -> 'a Operator_purpose_map.t -(** Parses a purpose. - @raise Invalid_argument if not a valid purpose *) -val purpose_of_string : string -> purpose +(** [purpose_of_string s] parses a purpose from the given string [s]. *) +val purpose_of_string : string -> purpose option + +(** [string_of_purpose p] returns a string representation of purpose [p]. *) +val string_of_purpose : purpose -> string + +(** List of possible purposes for operator specialization. *) +val purposes : purpose list (** [default_data_dir] is the default value for [data_dir]. *) val default_data_dir : string diff --git a/src/proto_alpha/bin_sc_rollup_node/main_sc_rollup_node_alpha.ml b/src/proto_alpha/bin_sc_rollup_node/main_sc_rollup_node_alpha.ml index c9982620707e..76c303847306 100644 --- a/src/proto_alpha/bin_sc_rollup_node/main_sc_rollup_node_alpha.ml +++ b/src/proto_alpha/bin_sc_rollup_node/main_sc_rollup_node_alpha.ml @@ -36,23 +36,41 @@ let sc_rollup_address_param = let sc_rollup_node_operator_param = let open Lwt_result_syntax in Clic.param - ~name:"node-operator" - ~desc:"Public key hash of the the smart-contract rollup node operator" + ~name:"operator" + ~desc: + (Printf.sprintf + "Public key hash, or alias, of a smart-contract rollup node operator. \ + An operator can be specialized to a particular purpose by prefixing \ + its key or alias by said purpose, e.g. publish:alias_of_my_operator. \ + The possible purposes are: %s." + (String.concat ", " + @@ Configuration.(List.map string_of_purpose purposes))) @@ Clic.parameter - @@ fun _ s -> - let pkh_of_string s = - match Signature.Public_key_hash.of_b58check_opt s with - | None -> failwith "Could not read public key hash for rollup node operator" - | Some pkh -> return pkh + @@ fun cctxt s -> + let parse_pkh s = + let from_alias s = Client_keys.Public_key_hash.find cctxt s in + let from_key s = + match Signature.Public_key_hash.of_b58check_opt s with + | None -> + failwith "Could not read public key hash for rollup node operator" + | Some pkh -> return pkh + in + Client_aliases.parse_alternatives + [("alias", from_alias); ("key", from_key)] + s in match String.split ~limit:1 ':' s with | [_] -> - let+ pkh = pkh_of_string s in + let+ pkh = parse_pkh s in `Default pkh - | [purpose; s] -> - let purpose = Configuration.purpose_of_string purpose in - let+ pkh = pkh_of_string s in - `Purpose (purpose, pkh) + | [purpose; operator_s] -> ( + match Configuration.purpose_of_string purpose with + | Some purpose -> + let+ pkh = parse_pkh operator_s in + `Purpose (purpose, pkh) + | None -> + let+ pkh = parse_pkh s in + `Default pkh) | _ -> (* cannot happen due to String.split's implementation. *) assert false -- GitLab From 1175bc48838a392be722e3815ecf639157463e5b Mon Sep 17 00:00:00 2001 From: Alain Mebsout Date: Wed, 6 Jul 2022 15:22:39 +0200 Subject: [PATCH 06/13] Test/Tezt: use aliases for rollup node operators --- tezt/tests/sc_rollup.ml | 68 ++++++++++++++++------------------------- 1 file changed, 26 insertions(+), 42 deletions(-) diff --git a/tezt/tests/sc_rollup.ml b/tezt/tests/sc_rollup.ml index 4f4ec862f7e0..d510f29fc315 100644 --- a/tezt/tests/sc_rollup.ml +++ b/tezt/tests/sc_rollup.ml @@ -126,8 +126,8 @@ let setup ?commitment_period ?challenge_window ?timeout f ~protocol = let* node, client = Client.init_with_protocol ~parameter_file `Client ~protocol ~nodes_args () in - let bootstrap1_key = Constant.bootstrap1.public_key_hash in - f node client bootstrap1_key + let operator = Constant.bootstrap1.alias in + f node client operator let get_sc_rollup_commitment_period_in_blocks client = let* constants = get_sc_rollup_constants client in @@ -159,19 +159,35 @@ let originate_sc_rollup ?(hooks = hooks) ?(burn_cap = Tez.(of_int 9999999)) let* () = Client.bake_for_and_wait client in return sc_rollup -let with_fresh_rollup f tezos_node tezos_client bootstrap1_key = - let* sc_rollup = originate_sc_rollup ~src:bootstrap1_key tezos_client in +(* Configuration of a rollup node + ------------------------------ + + A rollup node has a configuration file that must be initialized. +*) +let with_fresh_rollup ?boot_sector f tezos_node tezos_client operator = + let* sc_rollup = + originate_sc_rollup ?boot_sector ~src:operator tezos_client + in let sc_rollup_node = - Sc_rollup_node.create - tezos_node - tezos_client - ~default_operator:bootstrap1_key + Sc_rollup_node.create tezos_node tezos_client ~default_operator:operator in let* configuration_filename = Sc_rollup_node.config_init sc_rollup_node sc_rollup in f sc_rollup sc_rollup_node configuration_filename +let with_fresh_rollups n f node client operator = + let rec go n addrs k = + if n < 1 then k addrs + else + with_fresh_rollup + (fun addr _ _ -> go (n - 1) (String_set.add addr addrs) k) + node + client + operator + in + go n String_set.empty f + (* TODO: https://gitlab.com/tezos/tezos/-/issues/2933 Many tests can be refactored using test_scenario. *) let test_scenario ?commitment_period ?challenge_window ?timeout @@ -273,38 +289,6 @@ let test_origination = let* _sc_rollup = originate_sc_rollup ~src:bootstrap1_key client in unit) -(* Configuration of a rollup node - ------------------------------ - - A rollup node has a configuration file that must be initialized. -*) -let with_fresh_rollup ?boot_sector f tezos_node tezos_client bootstrap1_key = - let* sc_rollup = - originate_sc_rollup ~src:bootstrap1_key ?boot_sector tezos_client - in - let sc_rollup_node = - Sc_rollup_node.create - tezos_node - tezos_client - ~default_operator:bootstrap1_key - in - let* configuration_filename = - Sc_rollup_node.config_init sc_rollup_node sc_rollup - in - f sc_rollup sc_rollup_node configuration_filename - -let with_fresh_rollups n f node client bootstrap1 = - let rec go n addrs k = - if n < 1 then k addrs - else - with_fresh_rollup - (fun addr _ _ -> go (n - 1) (String_set.add addr addrs) k) - node - client - bootstrap1 - in - go n String_set.empty f - let test_rollup_node_configuration = regression_test ~__FILE__ @@ -1337,7 +1321,7 @@ let commitment_stored_robust_to_failures _protocol sc_rollup_node sc_rollup node let bootstrap2_key = Constant.bootstrap2.public_key_hash in let* client' = Client.init ?endpoint:(Some (Node node)) () in let sc_rollup_node' = - Sc_rollup_node.create node client' ~operator_pkh:bootstrap2_key + Sc_rollup_node.create Operator node client' ~default_operator:bootstrap2_key in let* _configuration_filename = Sc_rollup_node.config_init sc_rollup_node' sc_rollup @@ -2092,7 +2076,7 @@ let test_refutation_scenario ?commitment_period ?challenge_window variant let bootstrap2_key = Constant.bootstrap2.public_key_hash in let sc_rollup_node2 = - Sc_rollup_node.create node client ~operator_pkh:bootstrap2_key + Sc_rollup_node.create Operator node client ~default_operator:bootstrap2_key in let* _configuration_filename = Sc_rollup_node.config_init ~loser_mode sc_rollup_node2 sc_rollup_address -- GitLab From 13c88a32b6bc9514339bea1911a85f464cf00459 Mon Sep 17 00:00:00 2001 From: Alain Mebsout Date: Wed, 6 Jul 2022 15:30:53 +0200 Subject: [PATCH 07/13] Test/Tezt: reset regressions for aliases --- ... smart contract optimistic rollup node.out | 2 +- .../Alpha- consecutive commitments.out | 2 +- .../Alpha- ensure boot sector is used.out | 4 ++-- ...Alpha- get genesis info of a sc rollup.out | 2 +- ...nt hash and inbox level of a sc rollup.out | 2 +- ...ract rollup address through the client.out | 2 +- .../Alpha- list originated rollups.out | 20 +++++++++---------- ...ances PVM state with internal messages.out | 2 +- ... node advances PVM state with messages.out | 2 +- ...pha- node boots into the initial state.out | 2 +- ...ommitments in the rollup node (commitm.out | 2 +- ...ommitments in the rollup node (first_p.out | 2 +- ...ommitments in the rollup node (handles.out | 2 +- ...ommitments in the rollup node (message.out | 2 +- ...ommitments in the rollup node (no_comm.out | 2 +- ...ommitments in the rollup node (node_us.out | 2 +- ...ommitments in the rollup node (non_fin.out | 2 +- ...ce of inbox in the rollup node (basic).out | 2 +- ...f inbox in the rollup node (handles_ch.out | 2 +- ...ce of inbox in the rollup node (stops).out | 2 +- .../Alpha- originate with boot sector.out | 2 +- ...tion of a SCORU executes without error.out | 2 +- ...ssages in the inbox - check inbox size.out | 2 +- ...s in the inbox - current messages hash.out | 2 +- 24 files changed, 34 insertions(+), 34 deletions(-) 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 b724e1d642fc..57b53fd90abb 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,5 +1,5 @@ -./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 +./tezos-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.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- consecutive commitments.out b/tezt/tests/expected/sc_rollup.ml/Alpha- consecutive commitments.out index ebdd3d87973c..05d20cd0590f 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- consecutive commitments.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- consecutive commitments.out @@ -1,5 +1,5 @@ -./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 +./tezos-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.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- ensure boot sector is used.out b/tezt/tests/expected/sc_rollup.ml/Alpha- ensure boot sector is used.out index 5e05f2a3b52e..f5bfa93396c6 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- ensure boot sector is used.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- ensure boot sector is used.out @@ -1,5 +1,5 @@ -./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with '10 10 10 + +' --burn-cap 9999999 +./tezos-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.481 units (will add 100 for safety) Estimated storage: 6664 bytes added (will add 20 for safety) @@ -79,7 +79,7 @@ This sequence of operations was run: ./tezos-sc-rollup-client-alpha rpc get /global/state_hash "scs1371W53YVrt8USjs6PafacnNV6ZoFr4VjvyKP9UYszqdg5v4ZC7" -./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with 31 --burn-cap 9999999 +./tezos-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.441 units (will add 100 for safety) Estimated storage: 6654 bytes added (will add 20 for safety) diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- get genesis info of a sc rollup.out b/tezt/tests/expected/sc_rollup.ml/Alpha- get genesis info of a sc rollup.out index b724e1d642fc..57b53fd90abb 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- get genesis info of a sc rollup.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- get genesis info of a sc rollup.out @@ -1,5 +1,5 @@ -./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 +./tezos-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.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- get last cemented commitment hash and inbox level of a sc rollup.out b/tezt/tests/expected/sc_rollup.ml/Alpha- get last cemented commitment hash and inbox level of a sc rollup.out index b724e1d642fc..57b53fd90abb 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- get last cemented commitment hash and inbox level of a sc rollup.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- get last cemented commitment hash and inbox level of a sc rollup.out @@ -1,5 +1,5 @@ -./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 +./tezos-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.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) 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 b724e1d642fc..57b53fd90abb 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,5 +1,5 @@ -./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 +./tezos-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.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) 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 bbed38e21952..1816b7098d02 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,5 +1,5 @@ -./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 +./tezos-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.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) @@ -33,7 +33,7 @@ This sequence of operations was run: storage fees ........................... +ꜩ1.663 -./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 +./tezos-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.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) @@ -67,7 +67,7 @@ This sequence of operations was run: storage fees ........................... +ꜩ1.663 -./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 +./tezos-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.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) @@ -101,7 +101,7 @@ This sequence of operations was run: storage fees ........................... +ꜩ1.663 -./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 +./tezos-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.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) @@ -135,7 +135,7 @@ This sequence of operations was run: storage fees ........................... +ꜩ1.663 -./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 +./tezos-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.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) @@ -169,7 +169,7 @@ This sequence of operations was run: storage fees ........................... +ꜩ1.663 -./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 +./tezos-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.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) @@ -203,7 +203,7 @@ This sequence of operations was run: storage fees ........................... +ꜩ1.663 -./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 +./tezos-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.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) @@ -237,7 +237,7 @@ This sequence of operations was run: storage fees ........................... +ꜩ1.663 -./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 +./tezos-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.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) @@ -271,7 +271,7 @@ This sequence of operations was run: storage fees ........................... +ꜩ1.663 -./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 +./tezos-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.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) @@ -305,7 +305,7 @@ This sequence of operations was run: storage fees ........................... +ꜩ1.663 -./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 +./tezos-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.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- node advances PVM state with internal messages.out b/tezt/tests/expected/sc_rollup.ml/Alpha- node advances PVM state with internal messages.out index 08590ead7418..3fa88ae33158 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- node advances PVM state with internal messages.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- node advances PVM state with internal messages.out @@ -1,5 +1,5 @@ -./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 +./tezos-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.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- node advances PVM state with messages.out b/tezt/tests/expected/sc_rollup.ml/Alpha- node advances PVM state with messages.out index 8e6a76a47ca3..769e7b127497 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- node advances PVM state with messages.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- node advances PVM state with messages.out @@ -1,5 +1,5 @@ -./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 +./tezos-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.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- node boots into the initial state.out b/tezt/tests/expected/sc_rollup.ml/Alpha- node boots into the initial state.out index db59c6eefa37..149954abb58b 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- node boots into the initial state.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- node boots into the initial state.out @@ -1,5 +1,5 @@ -./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 +./tezos-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.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (commitm.out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (commitm.out index 25b3189d7902..00a1c612b160 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (commitm.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (commitm.out @@ -1,5 +1,5 @@ -./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 +./tezos-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.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (first_p.out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (first_p.out index 40a955bce5d0..2964701ea701 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (first_p.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (first_p.out @@ -1,5 +1,5 @@ -./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 +./tezos-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.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (handles.out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (handles.out index 83c21f2b2beb..2f3edda8b63b 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (handles.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (handles.out @@ -1,5 +1,5 @@ -./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 +./tezos-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.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (message.out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (message.out index 7d6e55760bc8..43d315c696ef 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (message.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (message.out @@ -1,5 +1,5 @@ -./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 +./tezos-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.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (no_comm.out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (no_comm.out index 1163e04b7d79..3af1dce97708 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (no_comm.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (no_comm.out @@ -1,5 +1,5 @@ -./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 +./tezos-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.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (node_us.out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (node_us.out index bb58653f42a0..fd786205a7f4 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (node_us.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (node_us.out @@ -1,5 +1,5 @@ -./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 +./tezos-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.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (non_fin.out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (non_fin.out index e584dd916842..92fac4de49dd 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (non_fin.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (non_fin.out @@ -1,5 +1,5 @@ -./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 +./tezos-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.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct maintenance of inbox in the rollup node (basic).out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct maintenance of inbox in the rollup node (basic).out index ee3b8fe79811..04c570d2fece 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct maintenance of inbox in the rollup node (basic).out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct maintenance of inbox in the rollup node (basic).out @@ -1,5 +1,5 @@ -./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 +./tezos-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.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct maintenance of inbox in the rollup node (handles_ch.out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct maintenance of inbox in the rollup node (handles_ch.out index a7b9d7ac615d..f36d7dca0ab0 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct maintenance of inbox in the rollup node (handles_ch.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct maintenance of inbox in the rollup node (handles_ch.out @@ -1,5 +1,5 @@ -./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 +./tezos-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.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct maintenance of inbox in the rollup node (stops).out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct maintenance of inbox in the rollup node (stops).out index ffeaeffc8aba..dc866ff81259 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct maintenance of inbox in the rollup node (stops).out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct maintenance of inbox in the rollup node (stops).out @@ -1,5 +1,5 @@ -./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 +./tezos-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.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- originate with boot sector.out b/tezt/tests/expected/sc_rollup.ml/Alpha- originate with boot sector.out index 35bc9265095f..6932914bc0f6 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- originate with boot sector.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- originate with boot sector.out @@ -1,5 +1,5 @@ -./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with '10 10 10 + +' --burn-cap 9999999 +./tezos-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.481 units (will add 100 for safety) Estimated storage: 6664 bytes added (will add 20 for safety) diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- origination of a SCORU executes without error.out b/tezt/tests/expected/sc_rollup.ml/Alpha- origination of a SCORU executes without error.out index b724e1d642fc..57b53fd90abb 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- origination of a SCORU executes without error.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- origination of a SCORU executes without error.out @@ -1,5 +1,5 @@ -./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 +./tezos-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.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- pushing messages in the inbox - check inbox size.out b/tezt/tests/expected/sc_rollup.ml/Alpha- pushing messages in the inbox - check inbox size.out index 23921f9a9c2f..d0b484b66afa 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- pushing messages in the inbox - check inbox size.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- pushing messages in the inbox - check inbox size.out @@ -1,5 +1,5 @@ -./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 +./tezos-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.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- pushing messages in the inbox - current messages hash.out b/tezt/tests/expected/sc_rollup.ml/Alpha- pushing messages in the inbox - current messages hash.out index 03a5279fa7f7..d7c7e23158a0 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- pushing messages in the inbox - current messages hash.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- pushing messages in the inbox - current messages hash.out @@ -1,5 +1,5 @@ -./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 +./tezos-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.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) -- GitLab From 8ebe404bccdfffe93404add27bf574a4e4fb54b7 Mon Sep 17 00:00:00 2001 From: Alain Mebsout Date: Wed, 6 Jul 2022 16:12:08 +0200 Subject: [PATCH 08/13] SCORU,Node: rollup node mode (controls operators) --- .../bin_sc_rollup_node/configuration.ml | 69 ++++++++++++++++++- .../bin_sc_rollup_node/configuration.mli | 24 +++++++ .../main_sc_rollup_node_alpha.ml | 23 ++++++- .../sc_rollup_node_errors.ml | 28 +++++++- 4 files changed, 141 insertions(+), 3 deletions(-) diff --git a/src/proto_alpha/bin_sc_rollup_node/configuration.ml b/src/proto_alpha/bin_sc_rollup_node/configuration.ml index 207b129253e0..58e4117bb86f 100644 --- a/src/proto_alpha/bin_sc_rollup_node/configuration.ml +++ b/src/proto_alpha/bin_sc_rollup_node/configuration.ml @@ -26,6 +26,8 @@ open Protocol.Alpha_context +type mode = Observer | Batcher | Maintenance | Operator | Custom + type purpose = Publish | Add_messages | Cement | Refute let purposes = [Publish; Add_messages; Cement; Refute] @@ -45,6 +47,7 @@ type t = { rpc_addr : string; rpc_port : int; fee_parameter : Injection.fee_parameter; + mode : mode; loser_mode : Loser_mode.t; } @@ -230,6 +233,33 @@ let fee_parameter_encoding = Tez.encoding default_burn_cap)) +let modes = [Observer; Batcher; Maintenance; Operator; Custom] + +let string_of_mode = function + | Observer -> "observer" + | Batcher -> "batcher" + | Maintenance -> "maintenance" + | Operator -> "operator" + | Custom -> "custom" + +let mode_of_string = function + | "observer" -> Ok Observer + | "batcher" -> Ok Batcher + | "maintenance" -> Ok Maintenance + | "operator" -> Ok Operator + | "custom" -> Ok Custom + | _ -> Error [Exn (Failure "Invalid mode")] + +let mode_encoding = + Data_encoding.string_enum + [ + ("observer", Observer); + ("batcher", Batcher); + ("maintenance", Maintenance); + ("operator", Operator); + ("custom", Custom); + ] + let encoding : t Data_encoding.t = let open Data_encoding in conv @@ -240,6 +270,7 @@ let encoding : t Data_encoding.t = rpc_addr; rpc_port; fee_parameter; + mode; loser_mode; } -> ( data_dir, @@ -248,6 +279,7 @@ let encoding : t Data_encoding.t = rpc_addr, rpc_port, fee_parameter, + mode, loser_mode )) (fun ( data_dir, sc_rollup_address, @@ -255,6 +287,7 @@ let encoding : t Data_encoding.t = rpc_addr, rpc_port, fee_parameter, + mode, loser_mode ) -> { data_dir; @@ -263,9 +296,10 @@ let encoding : t Data_encoding.t = rpc_addr; rpc_port; fee_parameter; + mode; loser_mode; }) - (obj7 + (obj8 (dft "data-dir" ~description:"Location of the data dir" @@ -288,6 +322,7 @@ let encoding : t Data_encoding.t = ~description:"The fee parameter used when injecting operations in L1" fee_parameter_encoding default_fee_parameter) + (req ~description:"The mode for this rollup node" "mode" mode_encoding) (dft "loser-mode" ~description: @@ -296,6 +331,38 @@ let encoding : t Data_encoding.t = Loser_mode.encoding Loser_mode.no_failures)) +let check_mode config = + let open Result_syntax in + let check_purposes purposes = + let missing_operators = + List.filter + (fun p -> + not (Operator_purpose_map.mem p config.sc_rollup_node_operators)) + purposes + in + if missing_operators <> [] then + let mode = string_of_mode config.mode in + let missing_operators = List.map string_of_purpose missing_operators in + tzfail + (Sc_rollup_node_errors.Missing_mode_operators {mode; missing_operators}) + else return_unit + in + let narrow_purposes purposes = + let+ () = check_purposes purposes in + let sc_rollup_node_operators = + Operator_purpose_map.filter + (fun op_purpose _ -> List.mem ~equal:Stdlib.( = ) op_purpose purposes) + config.sc_rollup_node_operators + in + {config with sc_rollup_node_operators} + in + match config.mode with + | Observer -> narrow_purposes [] + | Batcher -> narrow_purposes [Add_messages] + | Maintenance -> narrow_purposes [Publish; Cement; Refute] + | Operator -> narrow_purposes [Publish; Cement; Add_messages; Refute] + | Custom -> return config + let loser_warning_message config = if config.loser_mode <> Loser_mode.no_failures then Format.printf diff --git a/src/proto_alpha/bin_sc_rollup_node/configuration.mli b/src/proto_alpha/bin_sc_rollup_node/configuration.mli index 1c4ea9935938..f8b8b1b2cafd 100644 --- a/src/proto_alpha/bin_sc_rollup_node/configuration.mli +++ b/src/proto_alpha/bin_sc_rollup_node/configuration.mli @@ -24,6 +24,16 @@ (* *) (*****************************************************************************) +(** Mode for the rollup node *) +type mode = + | Observer (** Only follows the chain and reconstructs inboxes *) + | Batcher (** Accept transactions in its queue and batches them on the L1 *) + | Maintenance (** Follows the chain and publishes commitments *) + | Operator (** Equivalent to maintenance + batcher *) + | Custom + (** This mode allows to tweak which operations are injected by selecting + the signers *) + (** Purposes for operators, indicating the kind of operations that they sign. *) type purpose = Publish | Add_messages | Cement | Refute @@ -38,6 +48,7 @@ type t = { rpc_addr : string; rpc_port : int; fee_parameter : Injection.fee_parameter; + mode : mode; loser_mode : Loser_mode.t; } @@ -71,9 +82,22 @@ val default_rpc_port : int (** [default_fee_parameter] is the default value for [fee_parameter] *) val default_fee_parameter : Injection.fee_parameter +(** This is the list of available modes. *) +val modes : mode list + +(** [string_of_mode mode] returns a string representation of the mode [mode]. *) +val string_of_mode : mode -> string + +(** [mode_of_string s] returns the mode represented by string [s] if it exists. *) +val mode_of_string : string -> mode tzresult + (** [filename configuration] returns the [configuration] filename. *) val filename : t -> string +(** [check_mode config] ensures the operators correspond to the chosen mode and + removes the extra ones. *) +val check_mode : t -> t tzresult + (** [save configuration] overwrites [configuration] file. *) val save : t -> unit tzresult Lwt.t diff --git a/src/proto_alpha/bin_sc_rollup_node/main_sc_rollup_node_alpha.ml b/src/proto_alpha/bin_sc_rollup_node/main_sc_rollup_node_alpha.ml index 76c303847306..822517760e0e 100644 --- a/src/proto_alpha/bin_sc_rollup_node/main_sc_rollup_node_alpha.ml +++ b/src/proto_alpha/bin_sc_rollup_node/main_sc_rollup_node_alpha.ml @@ -75,6 +75,22 @@ let sc_rollup_node_operator_param = (* cannot happen due to String.split's implementation. *) assert false +let possible_modes = List.map Configuration.string_of_mode Configuration.modes + +let mode_parameter = + Clic.parameter + ~autocomplete:(fun _ -> return possible_modes) + (fun _ m -> Lwt.return (Configuration.mode_of_string m)) + +let mode_param = + Clic.param + ~name:"mode" + ~desc: + (Printf.sprintf + "The mode for the rollup node (%s)" + (String.concat ", " possible_modes)) + mode_parameter + let rpc_addr_arg = let default = Configuration.default_rpc_addr in Clic.default_arg @@ -214,6 +230,7 @@ let group = } let config_init_command = + let open Lwt_result_syntax in let open Clic in command ~group @@ -229,7 +246,8 @@ let config_init_command = fee_cap_arg burn_cap_arg loser_mode) - (prefixes ["config"; "init"; "on"] + (prefix "init" @@ mode_param + @@ prefixes ["config"; "for"] @@ sc_rollup_address_param @@ prefixes ["with"; "operators"] @@ seq_of_param @@ sc_rollup_node_operator_param) @@ -243,6 +261,7 @@ let config_init_command = fee_cap, burn_cap, loser_mode ) + mode sc_rollup_address sc_rollup_node_operators cctxt -> @@ -281,9 +300,11 @@ let config_init_command = fee_cap; burn_cap; }; + mode; loser_mode; } in + let*? config = check_mode config in save config >>=? fun () -> cctxt#message "Smart-contract rollup node configuration written in %s" diff --git a/src/proto_alpha/bin_sc_rollup_node/sc_rollup_node_errors.ml b/src/proto_alpha/bin_sc_rollup_node/sc_rollup_node_errors.ml index be89cbcd15ab..845b2e39b312 100644 --- a/src/proto_alpha/bin_sc_rollup_node/sc_rollup_node_errors.ml +++ b/src/proto_alpha/bin_sc_rollup_node/sc_rollup_node_errors.ml @@ -35,6 +35,9 @@ type error += | Cannot_produce_proof of Sc_rollup.Inbox.t * Sc_rollup.Inbox.history * Raw_level.t +type error += + | Missing_mode_operators of {mode : string; missing_operators : string list} + let () = register_error_kind `Permanent @@ -108,4 +111,27 @@ let () = Some (inbox, history, level) | _ -> None) (fun (inbox, history, level) -> - Cannot_produce_proof (inbox, history, level)) + Cannot_produce_proof (inbox, history, level)) ; + + register_error_kind + ~id:"sc_rollup.node.missing_mode_operators" + ~title:"Missing operators for the chosen mode" + ~description:"Missing operators for the chosen mode." + ~pp:(fun ppf (mode, missing_operators) -> + Format.fprintf + ppf + "@[Missing operators %a for mode %s.@]" + (Format.pp_print_list + ~pp_sep:(fun ppf () -> Format.fprintf ppf ",@ ") + Format.pp_print_string) + missing_operators + mode) + `Permanent + Data_encoding.( + obj2 (req "mode" string) (req "missing_operators" (list string))) + (function + | Missing_mode_operators {mode; missing_operators} -> + Some (mode, missing_operators) + | _ -> None) + (fun (mode, missing_operators) -> + Missing_mode_operators {mode; missing_operators}) -- GitLab From 4e0d4f65370bc34c7bd132f33b0c14913ba6bc03 Mon Sep 17 00:00:00 2001 From: Alain Mebsout Date: Wed, 6 Jul 2022 16:12:51 +0200 Subject: [PATCH 09/13] Test/Tezt: adapt tests to new CLI --- tezt/lib_tezos/sc_rollup_node.ml | 23 +++++++++++++++++++++-- tezt/lib_tezos/sc_rollup_node.mli | 3 +++ tezt/tests/dal.ml | 1 + tezt/tests/sc_rollup.ml | 10 +++++++--- 4 files changed, 32 insertions(+), 5 deletions(-) diff --git a/tezt/lib_tezos/sc_rollup_node.ml b/tezt/lib_tezos/sc_rollup_node.ml index 889993a907e8..b0d75888222e 100644 --- a/tezt/lib_tezos/sc_rollup_node.ml +++ b/tezt/lib_tezos/sc_rollup_node.ml @@ -25,6 +25,8 @@ type 'a known = Unknown | Known of 'a +type mode = Batcher | Custom | Maintenance | Observer | Operator + module Parameters = struct type persistent_state = { data_dir : string; @@ -32,6 +34,7 @@ module Parameters = struct default_operator : string option; rpc_host : string; rpc_port : int; + mode : mode; client : Client.t; node : Node.t; mutable pending_ready : unit option Lwt.u list; @@ -48,6 +51,13 @@ end open Parameters include Daemon.Make (Parameters) +let string_of_mode = function + | Observer -> "observer" + | Batcher -> "batcher" + | Maintenance -> "maintenance" + | Operator -> "operator" + | Custom -> "custom" + let check_error ?exit_code ?msg sc_node = match sc_node.status with | Not_running -> @@ -101,7 +111,15 @@ let spawn_command sc_node args = let spawn_config_init sc_node ?loser_mode rollup_address = spawn_command sc_node - @@ ["config"; "init"; "on"; rollup_address; "with"; "operators"] + @@ [ + "init"; + string_of_mode sc_node.persistent_state.mode; + "config"; + "for"; + rollup_address; + "with"; + "operators"; + ] @ operators_params sc_node @ [ "--data-dir"; @@ -216,7 +234,7 @@ let handle_event sc_node {name; value} = | _ -> () let create ?(path = Constant.sc_rollup_node) ?name ?color ?data_dir ?event_pipe - ?(rpc_host = "127.0.0.1") ?rpc_port ?(operators = []) ?default_operator + ?(rpc_host = "127.0.0.1") ?rpc_port ?(operators = []) ?default_operator mode (node : Node.t) (client : Client.t) = let name = match name with None -> fresh_name () | Some name -> name in let data_dir = @@ -237,6 +255,7 @@ let create ?(path = Constant.sc_rollup_node) ?name ?color ?data_dir ?event_pipe rpc_port; operators; default_operator; + mode; node; client; pending_ready = []; diff --git a/tezt/lib_tezos/sc_rollup_node.mli b/tezt/lib_tezos/sc_rollup_node.mli index 1a66be208d67..3e2992d28064 100644 --- a/tezt/lib_tezos/sc_rollup_node.mli +++ b/tezt/lib_tezos/sc_rollup_node.mli @@ -31,6 +31,8 @@ (** Smart contract rollup node states. *) type t +type mode = Batcher | Custom | Maintenance | Observer | Operator + (** Create a smart contract rollup node. A smart contract rollup node is associated to a tezos node @@ -64,6 +66,7 @@ val create : ?rpc_port:int -> ?operators:(string * string) list -> ?default_operator:string -> + mode -> Node.t -> Client.t -> t diff --git a/tezt/tests/dal.ml b/tezt/tests/dal.ml index 0a104a2c876d..f1be5cefcdc9 100644 --- a/tezt/tests/dal.ml +++ b/tezt/tests/dal.ml @@ -93,6 +93,7 @@ let with_fresh_rollup f tezos_node tezos_client bootstrap1_key = in let sc_rollup_node = Sc_rollup_node.create + Operator tezos_node tezos_client ~default_operator:bootstrap1_key diff --git a/tezt/tests/sc_rollup.ml b/tezt/tests/sc_rollup.ml index d510f29fc315..3a7afcd21aad 100644 --- a/tezt/tests/sc_rollup.ml +++ b/tezt/tests/sc_rollup.ml @@ -169,7 +169,11 @@ let with_fresh_rollup ?boot_sector f tezos_node tezos_client operator = originate_sc_rollup ?boot_sector ~src:operator tezos_client in let sc_rollup_node = - Sc_rollup_node.create tezos_node tezos_client ~default_operator:operator + Sc_rollup_node.create + Operator + tezos_node + tezos_client + ~default_operator:operator in let* configuration_filename = Sc_rollup_node.config_init sc_rollup_node sc_rollup @@ -1638,7 +1642,7 @@ let commitment_before_lcc_not_published _protocol sc_rollup_node sc_rollup node let bootstrap2_key = Constant.bootstrap2.public_key_hash in let* client' = Client.init ?endpoint:(Some (Node node)) () in let sc_rollup_node' = - Sc_rollup_node.create node client' ~default_operator:bootstrap2_key + Sc_rollup_node.create Operator node client' ~default_operator:bootstrap2_key in let sc_rollup_client' = Sc_rollup_client.create sc_rollup_node' in let* _configuration_filename = @@ -1768,7 +1772,7 @@ let first_published_level_is_global _protocol sc_rollup_node sc_rollup node let bootstrap2_key = Constant.bootstrap2.public_key_hash in let* client' = Client.init ?endpoint:(Some (Node node)) () in let sc_rollup_node' = - Sc_rollup_node.create node client' ~default_operator:bootstrap2_key + Sc_rollup_node.create Operator node client' ~default_operator:bootstrap2_key in let sc_rollup_client' = Sc_rollup_client.create sc_rollup_node' in let* _configuration_filename = -- GitLab From 903ae29552166f1700f6a2bee9d2202f774fa07d Mon Sep 17 00:00:00 2001 From: Alain Mebsout Date: Wed, 13 Jul 2022 17:04:51 +0200 Subject: [PATCH 10/13] Test/Tezt: use bootstrap 2 for sending messages to avoid conflicts --- tezt/tests/sc_rollup.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tezt/tests/sc_rollup.ml b/tezt/tests/sc_rollup.ml index 3a7afcd21aad..a707d90c4035 100644 --- a/tezt/tests/sc_rollup.ml +++ b/tezt/tests/sc_rollup.ml @@ -469,7 +469,7 @@ let send_message client sc_rollup msg = let* () = Client.Sc_rollup.send_message ~hooks - ~src:"bootstrap1" + ~src:Constant.bootstrap2.alias ~dst:sc_rollup ~msg client -- GitLab From f8d4084ea517dd2eada1b91e63369e4560048de3 Mon Sep 17 00:00:00 2001 From: Alain Mebsout Date: Wed, 13 Jul 2022 17:05:32 +0200 Subject: [PATCH 11/13] Test/Tezt: check that mode narrows operators and operations on L1 --- ...ommitments in the rollup node (batcher.out | 2630 ++++++++++++++++ ...ommitments in the rollup node (mainten.out | 2637 +++++++++++++++++ ...ommitments in the rollup node (observe.out | 2630 ++++++++++++++++ ...ommitments in the rollup node (operato.out | 2637 +++++++++++++++++ tezt/tests/sc_rollup.ml | 91 +- 5 files changed, 10623 insertions(+), 2 deletions(-) create mode 100644 tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (batcher.out create mode 100644 tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (mainten.out create mode 100644 tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (observe.out create mode 100644 tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (operato.out diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (batcher.out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (batcher.out new file mode 100644 index 000000000000..97414af42721 --- /dev/null +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (batcher.out @@ -0,0 +1,2630 @@ + +./tezos-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.433 units (will add 100 for safety) +Estimated storage: 6652 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 + tezos-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.000675 + Expected counter: 1 + Gas limit: 3211 + Storage limit: 6672 bytes + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 + Smart contract rollup origination: + Kind: arith + Parameter type: string + Boot sector: '' + This smart contract rollup origination was successfully applied + Consumed gas: 3110.433 + Storage size: 6652 bytes + Address: [SC_ROLLUP_HASH] + Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ1.663 + storage fees ........................... +ꜩ1.663 + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1876.722 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 + tezos-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.000479 + Expected counter: 1 + Gas limit: 1977 + 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] + + } + + +./tezos-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 + tezos-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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1877.668 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + 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 + 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] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1878.343 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 + tezos-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.000503 + Expected counter: 3 + Gas limit: 1979 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1878.343 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + 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 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 3 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1878.939 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 + tezos-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.000515 + Expected counter: 4 + Gas limit: 1979 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1879.067 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + 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 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 4 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1879.742 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 + tezos-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.000527 + Expected counter: 5 + Gas limit: 1980 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1879.742 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + 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 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 5 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1880.338 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 + tezos-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.00054 + Expected counter: 6 + Gas limit: 1981 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1880.338 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + 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 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 6 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1880.934 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 + tezos-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.000552 + Expected counter: 7 + Gas limit: 1981 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1880.934 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + 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 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 7 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1881.530 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 + tezos-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.000564 + Expected counter: 8 + Gas limit: 1982 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1881.658 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + 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 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 8 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1882.333 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 + tezos-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.000576 + Expected counter: 9 + Gas limit: 1983 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1882.333 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + 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 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 9 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1882.929 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 + tezos-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.000588 + Expected counter: 10 + Gas limit: 1983 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1882.929 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + 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 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 10 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-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]' +Node is bootstrapped. +Estimated gas: 1883.525 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 + tezos-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.0006 + Expected counter: 11 + Gas limit: 1984 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1883.525 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + 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 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 11 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-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]' +Node is bootstrapped. +Estimated gas: 1884.121 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 + tezos-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.000612 + Expected counter: 12 + Gas limit: 1985 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1884.121 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + 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 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 12 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-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]' +Node is bootstrapped. +Estimated gas: 1884.717 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 + tezos-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.000624 + Expected counter: 13 + Gas limit: 1985 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1884.717 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + 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 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 13 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-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]' +Node is bootstrapped. +Estimated gas: 1885.313 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 + tezos-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.000636 + Expected counter: 14 + Gas limit: 1986 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1885.313 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + 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 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 14 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-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]' +Node is bootstrapped. +Estimated gas: 1885.909 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 + tezos-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.000648 + Expected counter: 15 + Gas limit: 1986 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1885.909 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 17 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 120 + starting_level_of_current_commitment_period = 2 + message_counter = 15 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 15 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-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]' +Node is bootstrapped. +Estimated gas: 1886.505 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 + tezos-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.00066 + Expected counter: 16 + Gas limit: 1987 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1886.633 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 18 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 136 + starting_level_of_current_commitment_period = 2 + message_counter = 16 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 16 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --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]' +Node is bootstrapped. +Estimated gas: 1887.308 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 + tezos-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.000672 + Expected counter: 17 + Gas limit: 1988 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1887.308 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 19 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 153 + starting_level_of_current_commitment_period = 2 + message_counter = 17 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 17 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait 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]' +Node is bootstrapped. +Estimated gas: 1887.904 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 + tezos-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.000684 + Expected counter: 18 + Gas limit: 1988 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1887.904 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 20 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 171 + starting_level_of_current_commitment_period = 2 + message_counter = 18 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 18 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none 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]' +Node is bootstrapped. +Estimated gas: 1888.500 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 + tezos-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.000696 + Expected counter: 19 + Gas limit: 1989 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1888.500 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 21 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 190 + starting_level_of_current_commitment_period = 2 + message_counter = 19 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 19 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send 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]' +Node is bootstrapped. +Estimated gas: 1889.096 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 + tezos-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.000708 + Expected counter: 20 + Gas limit: 1990 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1889.096 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 22 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 210 + starting_level_of_current_commitment_period = 2 + message_counter = 20 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 20 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc 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]' +Node is bootstrapped. +Estimated gas: 1889.692 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 + tezos-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.00072 + Expected counter: 21 + Gas limit: 1990 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1889.692 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 23 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 231 + starting_level_of_current_commitment_period = 2 + message_counter = 21 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 21 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup 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]' +Node is bootstrapped. +Estimated gas: 1890.288 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 + tezos-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.000733 + Expected counter: 22 + Gas limit: 1991 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1890.288 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 24 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 253 + starting_level_of_current_commitment_period = 2 + message_counter = 22 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 22 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message '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]' +Node is bootstrapped. +Estimated gas: 1890.884 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 + tezos-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.000745 + Expected counter: 23 + Gas limit: 1991 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1890.884 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 25 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 276 + starting_level_of_current_commitment_period = 2 + message_counter = 23 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 23 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","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]' +Node is bootstrapped. +Estimated gas: 1891.480 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 + tezos-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.000757 + Expected counter: 24 + Gas limit: 1992 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1891.480 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 26 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 300 + starting_level_of_current_commitment_period = 2 + message_counter = 24 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 24 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","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]' +Node is bootstrapped. +Estimated gas: 1892.076 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 + tezos-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.000769 + Expected counter: 25 + Gas limit: 1993 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1892.076 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 27 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 325 + starting_level_of_current_commitment_period = 2 + message_counter = 25 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 25 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","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]' +Node is bootstrapped. +Estimated gas: 1892.672 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 + tezos-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.000781 + Expected counter: 26 + Gas limit: 1993 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1892.672 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 28 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 351 + starting_level_of_current_commitment_period = 2 + message_counter = 26 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 26 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","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]' +Node is bootstrapped. +Estimated gas: 1893.268 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 + tezos-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.000793 + Expected counter: 27 + Gas limit: 1994 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1893.268 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 29 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 378 + starting_level_of_current_commitment_period = 2 + message_counter = 27 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 27 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","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]' +Node is bootstrapped. +Estimated gas: 1893.864 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 + tezos-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.000805 + Expected counter: 28 + Gas limit: 1994 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1893.864 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 30 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 406 + starting_level_of_current_commitment_period = 2 + message_counter = 28 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 28 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","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]' +Node is bootstrapped. +Estimated gas: 1894.460 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 + tezos-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.000817 + Expected counter: 29 + Gas limit: 1995 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1894.460 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 31 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 435 + starting_level_of_current_commitment_period = 2 + message_counter = 29 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 29 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","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]' +Node is bootstrapped. +Estimated gas: 1895.056 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 + tezos-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.000829 + Expected counter: 30 + Gas limit: 1996 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1895.056 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 32 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 30 + starting_level_of_current_commitment_period = 32 + message_counter = 30 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 30 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1877.772 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 + tezos-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.000479 + Expected counter: 31 + Gas limit: 1978 + 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: 1877.772 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 33 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 31 + starting_level_of_current_commitment_period = 32 + message_counter = 1 + 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] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1878.368 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 + tezos-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: 32 + Gas limit: 1979 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1878.496 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 34 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 33 + starting_level_of_current_commitment_period = 32 + message_counter = 2 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 32 + 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] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1879.171 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 + tezos-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.000503 + Expected counter: 33 + Gas limit: 1980 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1879.171 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 35 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 36 + starting_level_of_current_commitment_period = 32 + message_counter = 3 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 33 + 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] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1879.767 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 + tezos-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.000515 + Expected counter: 34 + Gas limit: 1980 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1879.767 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 36 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 40 + starting_level_of_current_commitment_period = 32 + message_counter = 4 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 34 + 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] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1880.363 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 + tezos-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.000528 + Expected counter: 35 + Gas limit: 1981 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1880.363 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 37 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 45 + starting_level_of_current_commitment_period = 32 + message_counter = 5 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 35 + 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] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1880.959 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 + tezos-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.00054 + Expected counter: 36 + Gas limit: 1981 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1880.959 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 38 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 51 + starting_level_of_current_commitment_period = 32 + message_counter = 6 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 36 + 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] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1881.555 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 + tezos-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.000552 + Expected counter: 37 + Gas limit: 1982 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1881.555 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 39 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 58 + starting_level_of_current_commitment_period = 32 + message_counter = 7 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 37 + 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] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1882.151 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 + tezos-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.000564 + Expected counter: 38 + Gas limit: 1983 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1882.151 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 40 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 66 + starting_level_of_current_commitment_period = 32 + message_counter = 8 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 38 + 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] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1882.747 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 + tezos-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.000576 + Expected counter: 39 + Gas limit: 1983 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1882.747 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 41 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 75 + starting_level_of_current_commitment_period = 32 + message_counter = 9 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 39 + 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] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1883.343 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 + tezos-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.000588 + Expected counter: 40 + Gas limit: 1984 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1883.343 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 42 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 85 + starting_level_of_current_commitment_period = 32 + message_counter = 10 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 40 + 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] + + } + + +./tezos-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]' +Node is bootstrapped. +Estimated gas: 1883.939 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 + tezos-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.0006 + Expected counter: 41 + Gas limit: 1984 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1883.939 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 43 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 96 + starting_level_of_current_commitment_period = 32 + message_counter = 11 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 41 + 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] + + } + + +./tezos-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]' +Node is bootstrapped. +Estimated gas: 1884.535 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 + tezos-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.000612 + Expected counter: 42 + Gas limit: 1985 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1884.535 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 44 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 108 + starting_level_of_current_commitment_period = 32 + message_counter = 12 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 42 + 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] + + } + + +./tezos-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]' +Node is bootstrapped. +Estimated gas: 1885.131 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 + tezos-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.000624 + Expected counter: 43 + Gas limit: 1986 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1885.131 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 45 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 121 + starting_level_of_current_commitment_period = 32 + message_counter = 13 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 43 + 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] + + } + + +./tezos-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]' +Node is bootstrapped. +Estimated gas: 1885.727 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 + tezos-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.000636 + Expected counter: 44 + Gas limit: 1986 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1885.727 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 46 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 135 + starting_level_of_current_commitment_period = 32 + message_counter = 14 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 44 + 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] + + } + + +./tezos-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]' +Node is bootstrapped. +Estimated gas: 1886.323 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 + tezos-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.000648 + Expected counter: 45 + Gas limit: 1987 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1886.323 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 47 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 150 + starting_level_of_current_commitment_period = 32 + message_counter = 15 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 45 + 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] + + } + + +./tezos-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]' +Node is bootstrapped. +Estimated gas: 1886.919 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 + tezos-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.00066 + Expected counter: 46 + Gas limit: 1987 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1886.919 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 48 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 166 + starting_level_of_current_commitment_period = 32 + message_counter = 16 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 46 + 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] + + } + + +./tezos-client --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]' +Node is bootstrapped. +Estimated gas: 1887.515 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 + tezos-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.000672 + Expected counter: 47 + Gas limit: 1988 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1887.515 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 49 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 183 + starting_level_of_current_commitment_period = 32 + message_counter = 17 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 47 + 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] + + } + + +./tezos-client --wait 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]' +Node is bootstrapped. +Estimated gas: 1888.111 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 + tezos-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.000684 + Expected counter: 48 + Gas limit: 1989 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1888.111 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 50 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 201 + starting_level_of_current_commitment_period = 32 + message_counter = 18 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 48 + 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] + + } + + +./tezos-client --wait none 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]' +Node is bootstrapped. +Estimated gas: 1888.707 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 + tezos-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.000696 + Expected counter: 49 + Gas limit: 1989 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1888.707 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 51 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 220 + starting_level_of_current_commitment_period = 32 + message_counter = 19 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 49 + 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] + + } + + +./tezos-client --wait none send 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]' +Node is bootstrapped. +Estimated gas: 1889.303 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 + tezos-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.000708 + Expected counter: 50 + Gas limit: 1990 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1889.303 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 52 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 240 + starting_level_of_current_commitment_period = 32 + message_counter = 20 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 50 + 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] + + } + + +./tezos-client --wait none send sc 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]' +Node is bootstrapped. +Estimated gas: 1889.899 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 + tezos-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.00072 + Expected counter: 51 + Gas limit: 1990 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1889.899 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 53 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 261 + starting_level_of_current_commitment_period = 32 + message_counter = 21 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 51 + 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] + + } + + +./tezos-client --wait none send sc rollup 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]' +Node is bootstrapped. +Estimated gas: 1890.495 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 + tezos-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.000733 + Expected counter: 52 + Gas limit: 1991 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1890.495 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 54 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 283 + starting_level_of_current_commitment_period = 32 + message_counter = 22 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 52 + 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] + + } + + +./tezos-client --wait none send sc rollup message '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]' +Node is bootstrapped. +Estimated gas: 1891.091 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 + tezos-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.000745 + Expected counter: 53 + Gas limit: 1992 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1891.091 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 55 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 306 + starting_level_of_current_commitment_period = 32 + message_counter = 23 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 53 + 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] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","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]' +Node is bootstrapped. +Estimated gas: 1891.687 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 + tezos-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.000757 + Expected counter: 54 + Gas limit: 1992 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1891.687 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 56 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 330 + starting_level_of_current_commitment_period = 32 + message_counter = 24 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 54 + 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] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","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]' +Node is bootstrapped. +Estimated gas: 1892.283 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 + tezos-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.000769 + Expected counter: 55 + Gas limit: 1993 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1892.283 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 57 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 355 + starting_level_of_current_commitment_period = 32 + message_counter = 25 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 55 + 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] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","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]' +Node is bootstrapped. +Estimated gas: 1892.879 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 + tezos-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.000781 + Expected counter: 56 + Gas limit: 1993 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1892.879 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 58 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 381 + starting_level_of_current_commitment_period = 32 + message_counter = 26 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 56 + 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] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","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]' +Node is bootstrapped. +Estimated gas: 1893.475 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 + tezos-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.000793 + Expected counter: 57 + Gas limit: 1994 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1893.475 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 59 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 408 + starting_level_of_current_commitment_period = 32 + message_counter = 27 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 57 + 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] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","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]' +Node is bootstrapped. +Estimated gas: 1894.071 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 + tezos-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.000805 + Expected counter: 58 + Gas limit: 1995 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1894.071 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 60 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 436 + starting_level_of_current_commitment_period = 32 + message_counter = 28 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 58 + 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] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","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]' +Node is bootstrapped. +Estimated gas: 1894.667 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 + tezos-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.000817 + Expected counter: 59 + Gas limit: 1995 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1894.667 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 61 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 465 + starting_level_of_current_commitment_period = 32 + message_counter = 29 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 59 + 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] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","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]' +Node is bootstrapped. +Estimated gas: 1895.263 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 + tezos-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.000829 + Expected counter: 60 + Gas limit: 1996 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1895.263 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 62 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 30 + starting_level_of_current_commitment_period = 62 + message_counter = 30 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 60 + 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] + + } + + +./tezos-sc-rollup-client-alpha rpc get /local/last_published_commitment +{ "commitment": + { "compressed_state": + "scs12A4jtbi39DFb3fzb3EBcJGB6hcsUxugy62zf11pQyk1eMMqWjP", + "inbox_level": 32, + "predecessor": "[SC_ROLLUP_COMMITMENT_HASH]", + "number_of_ticks": 931 }, + "hash": "[SC_ROLLUP_COMMITMENT_HASH]", + "published_at_level": 35 } + +./tezos-sc-rollup-client-alpha rpc get /local/last_published_commitment +null diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (mainten.out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (mainten.out new file mode 100644 index 000000000000..4b44998e939f --- /dev/null +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (mainten.out @@ -0,0 +1,2637 @@ + +./tezos-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.433 units (will add 100 for safety) +Estimated storage: 6652 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 + tezos-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.000675 + Expected counter: 1 + Gas limit: 3211 + Storage limit: 6672 bytes + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 + Smart contract rollup origination: + Kind: arith + Parameter type: string + Boot sector: '' + This smart contract rollup origination was successfully applied + Consumed gas: 3110.433 + Storage size: 6652 bytes + Address: [SC_ROLLUP_HASH] + Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ1.663 + storage fees ........................... +ꜩ1.663 + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1876.722 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 + tezos-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.000479 + Expected counter: 1 + Gas limit: 1977 + 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] + + } + + +./tezos-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 + tezos-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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1877.668 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + 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 + 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] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1878.343 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 + tezos-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.000503 + Expected counter: 3 + Gas limit: 1979 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1878.343 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + 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 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 3 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1878.939 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 + tezos-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.000515 + Expected counter: 4 + Gas limit: 1979 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1879.067 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + 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 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 4 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1879.742 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 + tezos-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.000527 + Expected counter: 5 + Gas limit: 1980 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1879.742 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + 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 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 5 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1880.338 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 + tezos-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.00054 + Expected counter: 6 + Gas limit: 1981 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1880.338 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + 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 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 6 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1880.934 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 + tezos-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.000552 + Expected counter: 7 + Gas limit: 1981 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1880.934 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + 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 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 7 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1881.530 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 + tezos-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.000564 + Expected counter: 8 + Gas limit: 1982 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1881.658 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + 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 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 8 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1882.333 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 + tezos-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.000576 + Expected counter: 9 + Gas limit: 1983 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1882.333 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + 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 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 9 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1882.929 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 + tezos-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.000588 + Expected counter: 10 + Gas limit: 1983 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1882.929 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + 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 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 10 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-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]' +Node is bootstrapped. +Estimated gas: 1883.525 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 + tezos-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.0006 + Expected counter: 11 + Gas limit: 1984 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1883.525 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + 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 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 11 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-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]' +Node is bootstrapped. +Estimated gas: 1884.121 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 + tezos-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.000612 + Expected counter: 12 + Gas limit: 1985 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1884.121 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + 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 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 12 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-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]' +Node is bootstrapped. +Estimated gas: 1884.717 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 + tezos-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.000624 + Expected counter: 13 + Gas limit: 1985 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1884.717 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + 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 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 13 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-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]' +Node is bootstrapped. +Estimated gas: 1885.313 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 + tezos-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.000636 + Expected counter: 14 + Gas limit: 1986 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1885.313 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + 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 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 14 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-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]' +Node is bootstrapped. +Estimated gas: 1885.909 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 + tezos-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.000648 + Expected counter: 15 + Gas limit: 1986 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1885.909 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 17 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 120 + starting_level_of_current_commitment_period = 2 + message_counter = 15 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 15 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-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]' +Node is bootstrapped. +Estimated gas: 1886.505 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 + tezos-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.00066 + Expected counter: 16 + Gas limit: 1987 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1886.633 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 18 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 136 + starting_level_of_current_commitment_period = 2 + message_counter = 16 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 16 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --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]' +Node is bootstrapped. +Estimated gas: 1887.308 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 + tezos-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.000672 + Expected counter: 17 + Gas limit: 1988 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1887.308 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 19 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 153 + starting_level_of_current_commitment_period = 2 + message_counter = 17 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 17 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait 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]' +Node is bootstrapped. +Estimated gas: 1887.904 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 + tezos-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.000684 + Expected counter: 18 + Gas limit: 1988 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1887.904 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 20 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 171 + starting_level_of_current_commitment_period = 2 + message_counter = 18 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 18 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none 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]' +Node is bootstrapped. +Estimated gas: 1888.500 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 + tezos-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.000696 + Expected counter: 19 + Gas limit: 1989 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1888.500 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 21 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 190 + starting_level_of_current_commitment_period = 2 + message_counter = 19 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 19 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send 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]' +Node is bootstrapped. +Estimated gas: 1889.096 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 + tezos-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.000708 + Expected counter: 20 + Gas limit: 1990 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1889.096 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 22 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 210 + starting_level_of_current_commitment_period = 2 + message_counter = 20 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 20 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc 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]' +Node is bootstrapped. +Estimated gas: 1889.692 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 + tezos-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.00072 + Expected counter: 21 + Gas limit: 1990 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1889.692 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 23 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 231 + starting_level_of_current_commitment_period = 2 + message_counter = 21 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 21 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup 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]' +Node is bootstrapped. +Estimated gas: 1890.288 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 + tezos-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.000733 + Expected counter: 22 + Gas limit: 1991 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1890.288 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 24 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 253 + starting_level_of_current_commitment_period = 2 + message_counter = 22 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 22 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message '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]' +Node is bootstrapped. +Estimated gas: 1890.884 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 + tezos-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.000745 + Expected counter: 23 + Gas limit: 1991 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1890.884 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 25 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 276 + starting_level_of_current_commitment_period = 2 + message_counter = 23 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 23 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","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]' +Node is bootstrapped. +Estimated gas: 1891.480 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 + tezos-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.000757 + Expected counter: 24 + Gas limit: 1992 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1891.480 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 26 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 300 + starting_level_of_current_commitment_period = 2 + message_counter = 24 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 24 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","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]' +Node is bootstrapped. +Estimated gas: 1892.076 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 + tezos-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.000769 + Expected counter: 25 + Gas limit: 1993 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1892.076 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 27 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 325 + starting_level_of_current_commitment_period = 2 + message_counter = 25 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 25 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","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]' +Node is bootstrapped. +Estimated gas: 1892.672 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 + tezos-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.000781 + Expected counter: 26 + Gas limit: 1993 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1892.672 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 28 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 351 + starting_level_of_current_commitment_period = 2 + message_counter = 26 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 26 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","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]' +Node is bootstrapped. +Estimated gas: 1893.268 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 + tezos-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.000793 + Expected counter: 27 + Gas limit: 1994 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1893.268 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 29 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 378 + starting_level_of_current_commitment_period = 2 + message_counter = 27 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 27 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","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]' +Node is bootstrapped. +Estimated gas: 1893.864 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 + tezos-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.000805 + Expected counter: 28 + Gas limit: 1994 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1893.864 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 30 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 406 + starting_level_of_current_commitment_period = 2 + message_counter = 28 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 28 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","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]' +Node is bootstrapped. +Estimated gas: 1894.460 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 + tezos-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.000817 + Expected counter: 29 + Gas limit: 1995 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1894.460 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 31 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 435 + starting_level_of_current_commitment_period = 2 + message_counter = 29 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 29 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","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]' +Node is bootstrapped. +Estimated gas: 1895.056 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 + tezos-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.000829 + Expected counter: 30 + Gas limit: 1996 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1895.056 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 32 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 30 + starting_level_of_current_commitment_period = 32 + message_counter = 30 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 30 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1877.772 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 + tezos-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.000479 + Expected counter: 31 + Gas limit: 1978 + 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: 1877.772 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 33 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 31 + starting_level_of_current_commitment_period = 32 + message_counter = 1 + 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] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1878.368 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 + tezos-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: 32 + Gas limit: 1979 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1878.496 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 34 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 33 + starting_level_of_current_commitment_period = 32 + message_counter = 2 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 32 + 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] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1879.171 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 + tezos-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.000503 + Expected counter: 33 + Gas limit: 1980 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1879.171 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 35 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 36 + starting_level_of_current_commitment_period = 32 + message_counter = 3 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 33 + 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] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1879.767 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 + tezos-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.000515 + Expected counter: 34 + Gas limit: 1980 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1879.767 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 36 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 40 + starting_level_of_current_commitment_period = 32 + message_counter = 4 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 34 + 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] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1880.363 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 + tezos-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.000528 + Expected counter: 35 + Gas limit: 1981 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1880.363 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 37 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 45 + starting_level_of_current_commitment_period = 32 + message_counter = 5 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 35 + 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] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1880.959 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 + tezos-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.00054 + Expected counter: 36 + Gas limit: 1981 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1880.959 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 38 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 51 + starting_level_of_current_commitment_period = 32 + message_counter = 6 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 36 + 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] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1881.555 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 + tezos-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.000552 + Expected counter: 37 + Gas limit: 1982 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1881.555 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 39 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 58 + starting_level_of_current_commitment_period = 32 + message_counter = 7 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 37 + 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] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1882.151 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 + tezos-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.000564 + Expected counter: 38 + Gas limit: 1983 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1882.151 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 40 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 66 + starting_level_of_current_commitment_period = 32 + message_counter = 8 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 38 + 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] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1882.747 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 + tezos-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.000576 + Expected counter: 39 + Gas limit: 1983 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1882.747 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 41 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 75 + starting_level_of_current_commitment_period = 32 + message_counter = 9 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 39 + 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] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1883.343 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 + tezos-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.000588 + Expected counter: 40 + Gas limit: 1984 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1883.343 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 42 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 85 + starting_level_of_current_commitment_period = 32 + message_counter = 10 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 40 + 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] + + } + + +./tezos-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]' +Node is bootstrapped. +Estimated gas: 1883.939 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 + tezos-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.0006 + Expected counter: 41 + Gas limit: 1984 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1883.939 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 43 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 96 + starting_level_of_current_commitment_period = 32 + message_counter = 11 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 41 + 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] + + } + + +./tezos-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]' +Node is bootstrapped. +Estimated gas: 1884.535 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 + tezos-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.000612 + Expected counter: 42 + Gas limit: 1985 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1884.535 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 44 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 108 + starting_level_of_current_commitment_period = 32 + message_counter = 12 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 42 + 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] + + } + + +./tezos-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]' +Node is bootstrapped. +Estimated gas: 1885.131 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 + tezos-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.000624 + Expected counter: 43 + Gas limit: 1986 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1885.131 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 45 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 121 + starting_level_of_current_commitment_period = 32 + message_counter = 13 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 43 + 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] + + } + + +./tezos-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]' +Node is bootstrapped. +Estimated gas: 1885.727 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 + tezos-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.000636 + Expected counter: 44 + Gas limit: 1986 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1885.727 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 46 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 135 + starting_level_of_current_commitment_period = 32 + message_counter = 14 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 44 + 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] + + } + + +./tezos-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]' +Node is bootstrapped. +Estimated gas: 1886.323 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 + tezos-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.000648 + Expected counter: 45 + Gas limit: 1987 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1886.323 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 47 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 150 + starting_level_of_current_commitment_period = 32 + message_counter = 15 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 45 + 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] + + } + + +./tezos-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]' +Node is bootstrapped. +Estimated gas: 1886.919 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 + tezos-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.00066 + Expected counter: 46 + Gas limit: 1987 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1886.919 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 48 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 166 + starting_level_of_current_commitment_period = 32 + message_counter = 16 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 46 + 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] + + } + + +./tezos-client --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]' +Node is bootstrapped. +Estimated gas: 1887.515 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 + tezos-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.000672 + Expected counter: 47 + Gas limit: 1988 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1887.515 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 49 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 183 + starting_level_of_current_commitment_period = 32 + message_counter = 17 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 47 + 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] + + } + + +./tezos-client --wait 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]' +Node is bootstrapped. +Estimated gas: 1888.111 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 + tezos-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.000684 + Expected counter: 48 + Gas limit: 1989 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1888.111 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 50 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 201 + starting_level_of_current_commitment_period = 32 + message_counter = 18 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 48 + 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] + + } + + +./tezos-client --wait none 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]' +Node is bootstrapped. +Estimated gas: 1888.707 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 + tezos-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.000696 + Expected counter: 49 + Gas limit: 1989 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1888.707 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 51 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 220 + starting_level_of_current_commitment_period = 32 + message_counter = 19 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 49 + 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] + + } + + +./tezos-client --wait none send 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]' +Node is bootstrapped. +Estimated gas: 1889.303 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 + tezos-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.000708 + Expected counter: 50 + Gas limit: 1990 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1889.303 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 52 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 240 + starting_level_of_current_commitment_period = 32 + message_counter = 20 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 50 + 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] + + } + + +./tezos-client --wait none send sc 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]' +Node is bootstrapped. +Estimated gas: 1889.899 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 + tezos-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.00072 + Expected counter: 51 + Gas limit: 1990 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1889.899 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 53 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 261 + starting_level_of_current_commitment_period = 32 + message_counter = 21 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 51 + 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] + + } + + +./tezos-client --wait none send sc rollup 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]' +Node is bootstrapped. +Estimated gas: 1890.495 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 + tezos-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.000733 + Expected counter: 52 + Gas limit: 1991 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1890.495 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 54 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 283 + starting_level_of_current_commitment_period = 32 + message_counter = 22 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 52 + 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] + + } + + +./tezos-client --wait none send sc rollup message '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]' +Node is bootstrapped. +Estimated gas: 1891.091 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 + tezos-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.000745 + Expected counter: 53 + Gas limit: 1992 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1891.091 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 55 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 306 + starting_level_of_current_commitment_period = 32 + message_counter = 23 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 53 + 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] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","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]' +Node is bootstrapped. +Estimated gas: 1891.687 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 + tezos-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.000757 + Expected counter: 54 + Gas limit: 1992 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1891.687 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 56 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 330 + starting_level_of_current_commitment_period = 32 + message_counter = 24 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 54 + 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] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","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]' +Node is bootstrapped. +Estimated gas: 1892.283 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 + tezos-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.000769 + Expected counter: 55 + Gas limit: 1993 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1892.283 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 57 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 355 + starting_level_of_current_commitment_period = 32 + message_counter = 25 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 55 + 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] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","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]' +Node is bootstrapped. +Estimated gas: 1892.879 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 + tezos-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.000781 + Expected counter: 56 + Gas limit: 1993 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1892.879 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 58 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 381 + starting_level_of_current_commitment_period = 32 + message_counter = 26 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 56 + 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] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","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]' +Node is bootstrapped. +Estimated gas: 1893.475 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 + tezos-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.000793 + Expected counter: 57 + Gas limit: 1994 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1893.475 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 59 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 408 + starting_level_of_current_commitment_period = 32 + message_counter = 27 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 57 + 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] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","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]' +Node is bootstrapped. +Estimated gas: 1894.071 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 + tezos-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.000805 + Expected counter: 58 + Gas limit: 1995 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1894.071 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 60 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 436 + starting_level_of_current_commitment_period = 32 + message_counter = 28 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 58 + 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] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","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]' +Node is bootstrapped. +Estimated gas: 1894.667 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 + tezos-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.000817 + Expected counter: 59 + Gas limit: 1995 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1894.667 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 61 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 465 + starting_level_of_current_commitment_period = 32 + message_counter = 29 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 59 + 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] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","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]' +Node is bootstrapped. +Estimated gas: 1895.263 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 + tezos-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.000829 + Expected counter: 60 + Gas limit: 1996 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1895.263 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 62 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 30 + starting_level_of_current_commitment_period = 62 + message_counter = 30 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 60 + 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] + + } + + +./tezos-sc-rollup-client-alpha rpc get /local/last_published_commitment +{ "commitment": + { "compressed_state": + "scs12A4jtbi39DFb3fzb3EBcJGB6hcsUxugy62zf11pQyk1eMMqWjP", + "inbox_level": 32, + "predecessor": "[SC_ROLLUP_COMMITMENT_HASH]", + "number_of_ticks": 931 }, + "hash": "[SC_ROLLUP_COMMITMENT_HASH]", + "published_at_level": 35 } + +./tezos-sc-rollup-client-alpha rpc get /local/last_published_commitment +{ "commitment": + { "compressed_state": + "scs12A4jtbi39DFb3fzb3EBcJGB6hcsUxugy62zf11pQyk1eMMqWjP", + "inbox_level": 32, + "predecessor": "[SC_ROLLUP_COMMITMENT_HASH]", + "number_of_ticks": 931 }, + "hash": "[SC_ROLLUP_COMMITMENT_HASH]", + "published_at_level": 35 } diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (observe.out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (observe.out new file mode 100644 index 000000000000..97414af42721 --- /dev/null +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (observe.out @@ -0,0 +1,2630 @@ + +./tezos-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.433 units (will add 100 for safety) +Estimated storage: 6652 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 + tezos-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.000675 + Expected counter: 1 + Gas limit: 3211 + Storage limit: 6672 bytes + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 + Smart contract rollup origination: + Kind: arith + Parameter type: string + Boot sector: '' + This smart contract rollup origination was successfully applied + Consumed gas: 3110.433 + Storage size: 6652 bytes + Address: [SC_ROLLUP_HASH] + Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ1.663 + storage fees ........................... +ꜩ1.663 + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1876.722 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 + tezos-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.000479 + Expected counter: 1 + Gas limit: 1977 + 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] + + } + + +./tezos-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 + tezos-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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1877.668 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + 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 + 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] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1878.343 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 + tezos-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.000503 + Expected counter: 3 + Gas limit: 1979 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1878.343 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + 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 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 3 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1878.939 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 + tezos-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.000515 + Expected counter: 4 + Gas limit: 1979 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1879.067 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + 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 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 4 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1879.742 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 + tezos-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.000527 + Expected counter: 5 + Gas limit: 1980 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1879.742 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + 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 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 5 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1880.338 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 + tezos-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.00054 + Expected counter: 6 + Gas limit: 1981 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1880.338 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + 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 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 6 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1880.934 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 + tezos-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.000552 + Expected counter: 7 + Gas limit: 1981 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1880.934 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + 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 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 7 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1881.530 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 + tezos-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.000564 + Expected counter: 8 + Gas limit: 1982 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1881.658 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + 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 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 8 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1882.333 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 + tezos-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.000576 + Expected counter: 9 + Gas limit: 1983 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1882.333 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + 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 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 9 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1882.929 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 + tezos-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.000588 + Expected counter: 10 + Gas limit: 1983 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1882.929 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + 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 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 10 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-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]' +Node is bootstrapped. +Estimated gas: 1883.525 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 + tezos-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.0006 + Expected counter: 11 + Gas limit: 1984 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1883.525 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + 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 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 11 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-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]' +Node is bootstrapped. +Estimated gas: 1884.121 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 + tezos-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.000612 + Expected counter: 12 + Gas limit: 1985 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1884.121 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + 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 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 12 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-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]' +Node is bootstrapped. +Estimated gas: 1884.717 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 + tezos-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.000624 + Expected counter: 13 + Gas limit: 1985 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1884.717 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + 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 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 13 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-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]' +Node is bootstrapped. +Estimated gas: 1885.313 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 + tezos-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.000636 + Expected counter: 14 + Gas limit: 1986 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1885.313 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + 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 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 14 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-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]' +Node is bootstrapped. +Estimated gas: 1885.909 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 + tezos-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.000648 + Expected counter: 15 + Gas limit: 1986 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1885.909 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 17 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 120 + starting_level_of_current_commitment_period = 2 + message_counter = 15 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 15 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-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]' +Node is bootstrapped. +Estimated gas: 1886.505 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 + tezos-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.00066 + Expected counter: 16 + Gas limit: 1987 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1886.633 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 18 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 136 + starting_level_of_current_commitment_period = 2 + message_counter = 16 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 16 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --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]' +Node is bootstrapped. +Estimated gas: 1887.308 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 + tezos-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.000672 + Expected counter: 17 + Gas limit: 1988 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1887.308 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 19 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 153 + starting_level_of_current_commitment_period = 2 + message_counter = 17 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 17 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait 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]' +Node is bootstrapped. +Estimated gas: 1887.904 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 + tezos-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.000684 + Expected counter: 18 + Gas limit: 1988 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1887.904 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 20 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 171 + starting_level_of_current_commitment_period = 2 + message_counter = 18 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 18 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none 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]' +Node is bootstrapped. +Estimated gas: 1888.500 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 + tezos-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.000696 + Expected counter: 19 + Gas limit: 1989 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1888.500 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 21 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 190 + starting_level_of_current_commitment_period = 2 + message_counter = 19 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 19 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send 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]' +Node is bootstrapped. +Estimated gas: 1889.096 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 + tezos-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.000708 + Expected counter: 20 + Gas limit: 1990 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1889.096 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 22 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 210 + starting_level_of_current_commitment_period = 2 + message_counter = 20 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 20 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc 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]' +Node is bootstrapped. +Estimated gas: 1889.692 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 + tezos-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.00072 + Expected counter: 21 + Gas limit: 1990 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1889.692 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 23 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 231 + starting_level_of_current_commitment_period = 2 + message_counter = 21 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 21 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup 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]' +Node is bootstrapped. +Estimated gas: 1890.288 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 + tezos-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.000733 + Expected counter: 22 + Gas limit: 1991 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1890.288 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 24 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 253 + starting_level_of_current_commitment_period = 2 + message_counter = 22 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 22 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message '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]' +Node is bootstrapped. +Estimated gas: 1890.884 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 + tezos-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.000745 + Expected counter: 23 + Gas limit: 1991 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1890.884 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 25 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 276 + starting_level_of_current_commitment_period = 2 + message_counter = 23 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 23 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","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]' +Node is bootstrapped. +Estimated gas: 1891.480 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 + tezos-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.000757 + Expected counter: 24 + Gas limit: 1992 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1891.480 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 26 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 300 + starting_level_of_current_commitment_period = 2 + message_counter = 24 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 24 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","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]' +Node is bootstrapped. +Estimated gas: 1892.076 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 + tezos-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.000769 + Expected counter: 25 + Gas limit: 1993 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1892.076 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 27 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 325 + starting_level_of_current_commitment_period = 2 + message_counter = 25 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 25 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","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]' +Node is bootstrapped. +Estimated gas: 1892.672 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 + tezos-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.000781 + Expected counter: 26 + Gas limit: 1993 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1892.672 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 28 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 351 + starting_level_of_current_commitment_period = 2 + message_counter = 26 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 26 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","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]' +Node is bootstrapped. +Estimated gas: 1893.268 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 + tezos-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.000793 + Expected counter: 27 + Gas limit: 1994 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1893.268 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 29 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 378 + starting_level_of_current_commitment_period = 2 + message_counter = 27 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 27 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","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]' +Node is bootstrapped. +Estimated gas: 1893.864 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 + tezos-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.000805 + Expected counter: 28 + Gas limit: 1994 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1893.864 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 30 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 406 + starting_level_of_current_commitment_period = 2 + message_counter = 28 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 28 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","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]' +Node is bootstrapped. +Estimated gas: 1894.460 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 + tezos-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.000817 + Expected counter: 29 + Gas limit: 1995 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1894.460 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 31 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 435 + starting_level_of_current_commitment_period = 2 + message_counter = 29 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 29 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","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]' +Node is bootstrapped. +Estimated gas: 1895.056 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 + tezos-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.000829 + Expected counter: 30 + Gas limit: 1996 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1895.056 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 32 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 30 + starting_level_of_current_commitment_period = 32 + message_counter = 30 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 30 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1877.772 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 + tezos-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.000479 + Expected counter: 31 + Gas limit: 1978 + 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: 1877.772 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 33 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 31 + starting_level_of_current_commitment_period = 32 + message_counter = 1 + 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] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1878.368 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 + tezos-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: 32 + Gas limit: 1979 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1878.496 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 34 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 33 + starting_level_of_current_commitment_period = 32 + message_counter = 2 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 32 + 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] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1879.171 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 + tezos-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.000503 + Expected counter: 33 + Gas limit: 1980 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1879.171 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 35 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 36 + starting_level_of_current_commitment_period = 32 + message_counter = 3 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 33 + 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] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1879.767 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 + tezos-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.000515 + Expected counter: 34 + Gas limit: 1980 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1879.767 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 36 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 40 + starting_level_of_current_commitment_period = 32 + message_counter = 4 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 34 + 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] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1880.363 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 + tezos-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.000528 + Expected counter: 35 + Gas limit: 1981 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1880.363 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 37 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 45 + starting_level_of_current_commitment_period = 32 + message_counter = 5 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 35 + 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] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1880.959 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 + tezos-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.00054 + Expected counter: 36 + Gas limit: 1981 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1880.959 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 38 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 51 + starting_level_of_current_commitment_period = 32 + message_counter = 6 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 36 + 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] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1881.555 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 + tezos-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.000552 + Expected counter: 37 + Gas limit: 1982 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1881.555 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 39 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 58 + starting_level_of_current_commitment_period = 32 + message_counter = 7 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 37 + 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] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1882.151 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 + tezos-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.000564 + Expected counter: 38 + Gas limit: 1983 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1882.151 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 40 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 66 + starting_level_of_current_commitment_period = 32 + message_counter = 8 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 38 + 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] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1882.747 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 + tezos-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.000576 + Expected counter: 39 + Gas limit: 1983 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1882.747 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 41 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 75 + starting_level_of_current_commitment_period = 32 + message_counter = 9 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 39 + 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] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1883.343 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 + tezos-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.000588 + Expected counter: 40 + Gas limit: 1984 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1883.343 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 42 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 85 + starting_level_of_current_commitment_period = 32 + message_counter = 10 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 40 + 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] + + } + + +./tezos-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]' +Node is bootstrapped. +Estimated gas: 1883.939 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 + tezos-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.0006 + Expected counter: 41 + Gas limit: 1984 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1883.939 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 43 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 96 + starting_level_of_current_commitment_period = 32 + message_counter = 11 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 41 + 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] + + } + + +./tezos-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]' +Node is bootstrapped. +Estimated gas: 1884.535 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 + tezos-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.000612 + Expected counter: 42 + Gas limit: 1985 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1884.535 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 44 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 108 + starting_level_of_current_commitment_period = 32 + message_counter = 12 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 42 + 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] + + } + + +./tezos-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]' +Node is bootstrapped. +Estimated gas: 1885.131 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 + tezos-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.000624 + Expected counter: 43 + Gas limit: 1986 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1885.131 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 45 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 121 + starting_level_of_current_commitment_period = 32 + message_counter = 13 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 43 + 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] + + } + + +./tezos-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]' +Node is bootstrapped. +Estimated gas: 1885.727 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 + tezos-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.000636 + Expected counter: 44 + Gas limit: 1986 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1885.727 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 46 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 135 + starting_level_of_current_commitment_period = 32 + message_counter = 14 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 44 + 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] + + } + + +./tezos-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]' +Node is bootstrapped. +Estimated gas: 1886.323 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 + tezos-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.000648 + Expected counter: 45 + Gas limit: 1987 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1886.323 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 47 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 150 + starting_level_of_current_commitment_period = 32 + message_counter = 15 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 45 + 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] + + } + + +./tezos-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]' +Node is bootstrapped. +Estimated gas: 1886.919 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 + tezos-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.00066 + Expected counter: 46 + Gas limit: 1987 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1886.919 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 48 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 166 + starting_level_of_current_commitment_period = 32 + message_counter = 16 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 46 + 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] + + } + + +./tezos-client --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]' +Node is bootstrapped. +Estimated gas: 1887.515 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 + tezos-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.000672 + Expected counter: 47 + Gas limit: 1988 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1887.515 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 49 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 183 + starting_level_of_current_commitment_period = 32 + message_counter = 17 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 47 + 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] + + } + + +./tezos-client --wait 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]' +Node is bootstrapped. +Estimated gas: 1888.111 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 + tezos-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.000684 + Expected counter: 48 + Gas limit: 1989 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1888.111 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 50 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 201 + starting_level_of_current_commitment_period = 32 + message_counter = 18 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 48 + 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] + + } + + +./tezos-client --wait none 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]' +Node is bootstrapped. +Estimated gas: 1888.707 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 + tezos-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.000696 + Expected counter: 49 + Gas limit: 1989 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1888.707 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 51 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 220 + starting_level_of_current_commitment_period = 32 + message_counter = 19 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 49 + 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] + + } + + +./tezos-client --wait none send 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]' +Node is bootstrapped. +Estimated gas: 1889.303 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 + tezos-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.000708 + Expected counter: 50 + Gas limit: 1990 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1889.303 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 52 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 240 + starting_level_of_current_commitment_period = 32 + message_counter = 20 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 50 + 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] + + } + + +./tezos-client --wait none send sc 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]' +Node is bootstrapped. +Estimated gas: 1889.899 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 + tezos-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.00072 + Expected counter: 51 + Gas limit: 1990 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1889.899 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 53 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 261 + starting_level_of_current_commitment_period = 32 + message_counter = 21 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 51 + 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] + + } + + +./tezos-client --wait none send sc rollup 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]' +Node is bootstrapped. +Estimated gas: 1890.495 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 + tezos-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.000733 + Expected counter: 52 + Gas limit: 1991 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1890.495 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 54 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 283 + starting_level_of_current_commitment_period = 32 + message_counter = 22 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 52 + 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] + + } + + +./tezos-client --wait none send sc rollup message '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]' +Node is bootstrapped. +Estimated gas: 1891.091 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 + tezos-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.000745 + Expected counter: 53 + Gas limit: 1992 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1891.091 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 55 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 306 + starting_level_of_current_commitment_period = 32 + message_counter = 23 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 53 + 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] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","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]' +Node is bootstrapped. +Estimated gas: 1891.687 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 + tezos-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.000757 + Expected counter: 54 + Gas limit: 1992 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1891.687 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 56 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 330 + starting_level_of_current_commitment_period = 32 + message_counter = 24 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 54 + 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] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","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]' +Node is bootstrapped. +Estimated gas: 1892.283 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 + tezos-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.000769 + Expected counter: 55 + Gas limit: 1993 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1892.283 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 57 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 355 + starting_level_of_current_commitment_period = 32 + message_counter = 25 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 55 + 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] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","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]' +Node is bootstrapped. +Estimated gas: 1892.879 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 + tezos-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.000781 + Expected counter: 56 + Gas limit: 1993 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1892.879 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 58 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 381 + starting_level_of_current_commitment_period = 32 + message_counter = 26 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 56 + 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] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","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]' +Node is bootstrapped. +Estimated gas: 1893.475 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 + tezos-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.000793 + Expected counter: 57 + Gas limit: 1994 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1893.475 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 59 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 408 + starting_level_of_current_commitment_period = 32 + message_counter = 27 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 57 + 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] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","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]' +Node is bootstrapped. +Estimated gas: 1894.071 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 + tezos-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.000805 + Expected counter: 58 + Gas limit: 1995 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1894.071 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 60 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 436 + starting_level_of_current_commitment_period = 32 + message_counter = 28 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 58 + 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] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","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]' +Node is bootstrapped. +Estimated gas: 1894.667 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 + tezos-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.000817 + Expected counter: 59 + Gas limit: 1995 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1894.667 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 61 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 465 + starting_level_of_current_commitment_period = 32 + message_counter = 29 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 59 + 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] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","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]' +Node is bootstrapped. +Estimated gas: 1895.263 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 + tezos-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.000829 + Expected counter: 60 + Gas limit: 1996 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1895.263 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 62 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 30 + starting_level_of_current_commitment_period = 62 + message_counter = 30 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 60 + 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] + + } + + +./tezos-sc-rollup-client-alpha rpc get /local/last_published_commitment +{ "commitment": + { "compressed_state": + "scs12A4jtbi39DFb3fzb3EBcJGB6hcsUxugy62zf11pQyk1eMMqWjP", + "inbox_level": 32, + "predecessor": "[SC_ROLLUP_COMMITMENT_HASH]", + "number_of_ticks": 931 }, + "hash": "[SC_ROLLUP_COMMITMENT_HASH]", + "published_at_level": 35 } + +./tezos-sc-rollup-client-alpha rpc get /local/last_published_commitment +null diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (operato.out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (operato.out new file mode 100644 index 000000000000..4b44998e939f --- /dev/null +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (operato.out @@ -0,0 +1,2637 @@ + +./tezos-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.433 units (will add 100 for safety) +Estimated storage: 6652 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 + tezos-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.000675 + Expected counter: 1 + Gas limit: 3211 + Storage limit: 6672 bytes + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 + Smart contract rollup origination: + Kind: arith + Parameter type: string + Boot sector: '' + This smart contract rollup origination was successfully applied + Consumed gas: 3110.433 + Storage size: 6652 bytes + Address: [SC_ROLLUP_HASH] + Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ1.663 + storage fees ........................... +ꜩ1.663 + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1876.722 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 + tezos-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.000479 + Expected counter: 1 + Gas limit: 1977 + 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] + + } + + +./tezos-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 + tezos-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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1877.668 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + 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 + 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] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1878.343 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 + tezos-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.000503 + Expected counter: 3 + Gas limit: 1979 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1878.343 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + 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 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 3 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1878.939 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 + tezos-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.000515 + Expected counter: 4 + Gas limit: 1979 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1879.067 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + 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 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 4 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1879.742 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 + tezos-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.000527 + Expected counter: 5 + Gas limit: 1980 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1879.742 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + 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 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 5 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1880.338 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 + tezos-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.00054 + Expected counter: 6 + Gas limit: 1981 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1880.338 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + 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 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 6 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1880.934 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 + tezos-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.000552 + Expected counter: 7 + Gas limit: 1981 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1880.934 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + 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 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 7 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1881.530 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 + tezos-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.000564 + Expected counter: 8 + Gas limit: 1982 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1881.658 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + 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 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 8 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1882.333 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 + tezos-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.000576 + Expected counter: 9 + Gas limit: 1983 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1882.333 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + 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 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 9 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1882.929 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 + tezos-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.000588 + Expected counter: 10 + Gas limit: 1983 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1882.929 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + 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 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 10 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-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]' +Node is bootstrapped. +Estimated gas: 1883.525 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 + tezos-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.0006 + Expected counter: 11 + Gas limit: 1984 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1883.525 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + 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 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 11 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-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]' +Node is bootstrapped. +Estimated gas: 1884.121 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 + tezos-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.000612 + Expected counter: 12 + Gas limit: 1985 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1884.121 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + 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 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 12 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-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]' +Node is bootstrapped. +Estimated gas: 1884.717 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 + tezos-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.000624 + Expected counter: 13 + Gas limit: 1985 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1884.717 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + 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 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 13 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-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]' +Node is bootstrapped. +Estimated gas: 1885.313 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 + tezos-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.000636 + Expected counter: 14 + Gas limit: 1986 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1885.313 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + 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 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 14 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-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]' +Node is bootstrapped. +Estimated gas: 1885.909 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 + tezos-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.000648 + Expected counter: 15 + Gas limit: 1986 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1885.909 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 17 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 120 + starting_level_of_current_commitment_period = 2 + message_counter = 15 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 15 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-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]' +Node is bootstrapped. +Estimated gas: 1886.505 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 + tezos-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.00066 + Expected counter: 16 + Gas limit: 1987 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1886.633 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 18 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 136 + starting_level_of_current_commitment_period = 2 + message_counter = 16 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 16 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --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]' +Node is bootstrapped. +Estimated gas: 1887.308 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 + tezos-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.000672 + Expected counter: 17 + Gas limit: 1988 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1887.308 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 19 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 153 + starting_level_of_current_commitment_period = 2 + message_counter = 17 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 17 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait 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]' +Node is bootstrapped. +Estimated gas: 1887.904 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 + tezos-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.000684 + Expected counter: 18 + Gas limit: 1988 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1887.904 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 20 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 171 + starting_level_of_current_commitment_period = 2 + message_counter = 18 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 18 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none 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]' +Node is bootstrapped. +Estimated gas: 1888.500 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 + tezos-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.000696 + Expected counter: 19 + Gas limit: 1989 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1888.500 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 21 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 190 + starting_level_of_current_commitment_period = 2 + message_counter = 19 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 19 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send 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]' +Node is bootstrapped. +Estimated gas: 1889.096 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 + tezos-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.000708 + Expected counter: 20 + Gas limit: 1990 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1889.096 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 22 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 210 + starting_level_of_current_commitment_period = 2 + message_counter = 20 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 20 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc 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]' +Node is bootstrapped. +Estimated gas: 1889.692 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 + tezos-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.00072 + Expected counter: 21 + Gas limit: 1990 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1889.692 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 23 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 231 + starting_level_of_current_commitment_period = 2 + message_counter = 21 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 21 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup 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]' +Node is bootstrapped. +Estimated gas: 1890.288 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 + tezos-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.000733 + Expected counter: 22 + Gas limit: 1991 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1890.288 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 24 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 253 + starting_level_of_current_commitment_period = 2 + message_counter = 22 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 22 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message '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]' +Node is bootstrapped. +Estimated gas: 1890.884 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 + tezos-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.000745 + Expected counter: 23 + Gas limit: 1991 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1890.884 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 25 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 276 + starting_level_of_current_commitment_period = 2 + message_counter = 23 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 23 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","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]' +Node is bootstrapped. +Estimated gas: 1891.480 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 + tezos-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.000757 + Expected counter: 24 + Gas limit: 1992 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1891.480 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 26 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 300 + starting_level_of_current_commitment_period = 2 + message_counter = 24 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 24 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","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]' +Node is bootstrapped. +Estimated gas: 1892.076 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 + tezos-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.000769 + Expected counter: 25 + Gas limit: 1993 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1892.076 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 27 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 325 + starting_level_of_current_commitment_period = 2 + message_counter = 25 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 25 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","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]' +Node is bootstrapped. +Estimated gas: 1892.672 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 + tezos-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.000781 + Expected counter: 26 + Gas limit: 1993 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1892.672 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 28 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 351 + starting_level_of_current_commitment_period = 2 + message_counter = 26 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 26 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","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]' +Node is bootstrapped. +Estimated gas: 1893.268 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 + tezos-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.000793 + Expected counter: 27 + Gas limit: 1994 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1893.268 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 29 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 378 + starting_level_of_current_commitment_period = 2 + message_counter = 27 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 27 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","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]' +Node is bootstrapped. +Estimated gas: 1893.864 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 + tezos-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.000805 + Expected counter: 28 + Gas limit: 1994 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1893.864 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 30 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 406 + starting_level_of_current_commitment_period = 2 + message_counter = 28 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 28 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","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]' +Node is bootstrapped. +Estimated gas: 1894.460 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 + tezos-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.000817 + Expected counter: 29 + Gas limit: 1995 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1894.460 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 31 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 435 + starting_level_of_current_commitment_period = 2 + message_counter = 29 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 29 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","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]' +Node is bootstrapped. +Estimated gas: 1895.056 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 + tezos-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.000829 + Expected counter: 30 + Gas limit: 1996 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1895.056 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 32 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 30 + starting_level_of_current_commitment_period = 32 + message_counter = 30 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 30 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1877.772 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 + tezos-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.000479 + Expected counter: 31 + Gas limit: 1978 + 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: 1877.772 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 33 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 31 + starting_level_of_current_commitment_period = 32 + message_counter = 1 + 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] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1878.368 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 + tezos-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: 32 + Gas limit: 1979 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1878.496 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 34 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 33 + starting_level_of_current_commitment_period = 32 + message_counter = 2 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 32 + 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] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1879.171 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 + tezos-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.000503 + Expected counter: 33 + Gas limit: 1980 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1879.171 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 35 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 36 + starting_level_of_current_commitment_period = 32 + message_counter = 3 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 33 + 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] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1879.767 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 + tezos-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.000515 + Expected counter: 34 + Gas limit: 1980 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1879.767 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 36 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 40 + starting_level_of_current_commitment_period = 32 + message_counter = 4 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 34 + 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] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1880.363 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 + tezos-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.000528 + Expected counter: 35 + Gas limit: 1981 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1880.363 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 37 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 45 + starting_level_of_current_commitment_period = 32 + message_counter = 5 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 35 + 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] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1880.959 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 + tezos-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.00054 + Expected counter: 36 + Gas limit: 1981 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1880.959 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 38 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 51 + starting_level_of_current_commitment_period = 32 + message_counter = 6 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 36 + 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] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1881.555 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 + tezos-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.000552 + Expected counter: 37 + Gas limit: 1982 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1881.555 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 39 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 58 + starting_level_of_current_commitment_period = 32 + message_counter = 7 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 37 + 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] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1882.151 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 + tezos-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.000564 + Expected counter: 38 + Gas limit: 1983 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1882.151 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 40 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 66 + starting_level_of_current_commitment_period = 32 + message_counter = 8 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 38 + 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] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1882.747 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 + tezos-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.000576 + Expected counter: 39 + Gas limit: 1983 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1882.747 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 41 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 75 + starting_level_of_current_commitment_period = 32 + message_counter = 9 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 39 + 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] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1883.343 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 + tezos-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.000588 + Expected counter: 40 + Gas limit: 1984 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1883.343 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 42 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 85 + starting_level_of_current_commitment_period = 32 + message_counter = 10 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 40 + 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] + + } + + +./tezos-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]' +Node is bootstrapped. +Estimated gas: 1883.939 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 + tezos-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.0006 + Expected counter: 41 + Gas limit: 1984 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1883.939 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 43 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 96 + starting_level_of_current_commitment_period = 32 + message_counter = 11 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 41 + 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] + + } + + +./tezos-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]' +Node is bootstrapped. +Estimated gas: 1884.535 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 + tezos-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.000612 + Expected counter: 42 + Gas limit: 1985 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1884.535 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 44 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 108 + starting_level_of_current_commitment_period = 32 + message_counter = 12 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 42 + 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] + + } + + +./tezos-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]' +Node is bootstrapped. +Estimated gas: 1885.131 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 + tezos-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.000624 + Expected counter: 43 + Gas limit: 1986 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1885.131 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 45 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 121 + starting_level_of_current_commitment_period = 32 + message_counter = 13 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 43 + 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] + + } + + +./tezos-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]' +Node is bootstrapped. +Estimated gas: 1885.727 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 + tezos-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.000636 + Expected counter: 44 + Gas limit: 1986 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1885.727 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 46 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 135 + starting_level_of_current_commitment_period = 32 + message_counter = 14 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 44 + 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] + + } + + +./tezos-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]' +Node is bootstrapped. +Estimated gas: 1886.323 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 + tezos-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.000648 + Expected counter: 45 + Gas limit: 1987 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1886.323 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 47 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 150 + starting_level_of_current_commitment_period = 32 + message_counter = 15 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 45 + 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] + + } + + +./tezos-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]' +Node is bootstrapped. +Estimated gas: 1886.919 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 + tezos-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.00066 + Expected counter: 46 + Gas limit: 1987 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1886.919 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 48 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 166 + starting_level_of_current_commitment_period = 32 + message_counter = 16 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 46 + 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] + + } + + +./tezos-client --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]' +Node is bootstrapped. +Estimated gas: 1887.515 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 + tezos-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.000672 + Expected counter: 47 + Gas limit: 1988 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1887.515 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 49 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 183 + starting_level_of_current_commitment_period = 32 + message_counter = 17 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 47 + 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] + + } + + +./tezos-client --wait 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]' +Node is bootstrapped. +Estimated gas: 1888.111 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 + tezos-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.000684 + Expected counter: 48 + Gas limit: 1989 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1888.111 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 50 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 201 + starting_level_of_current_commitment_period = 32 + message_counter = 18 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 48 + 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] + + } + + +./tezos-client --wait none 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]' +Node is bootstrapped. +Estimated gas: 1888.707 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 + tezos-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.000696 + Expected counter: 49 + Gas limit: 1989 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1888.707 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 51 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 220 + starting_level_of_current_commitment_period = 32 + message_counter = 19 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 49 + 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] + + } + + +./tezos-client --wait none send 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]' +Node is bootstrapped. +Estimated gas: 1889.303 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 + tezos-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.000708 + Expected counter: 50 + Gas limit: 1990 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1889.303 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 52 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 240 + starting_level_of_current_commitment_period = 32 + message_counter = 20 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 50 + 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] + + } + + +./tezos-client --wait none send sc 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]' +Node is bootstrapped. +Estimated gas: 1889.899 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 + tezos-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.00072 + Expected counter: 51 + Gas limit: 1990 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1889.899 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 53 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 261 + starting_level_of_current_commitment_period = 32 + message_counter = 21 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 51 + 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] + + } + + +./tezos-client --wait none send sc rollup 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]' +Node is bootstrapped. +Estimated gas: 1890.495 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 + tezos-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.000733 + Expected counter: 52 + Gas limit: 1991 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1890.495 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 54 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 283 + starting_level_of_current_commitment_period = 32 + message_counter = 22 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 52 + 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] + + } + + +./tezos-client --wait none send sc rollup message '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]' +Node is bootstrapped. +Estimated gas: 1891.091 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 + tezos-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.000745 + Expected counter: 53 + Gas limit: 1992 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1891.091 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 55 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 306 + starting_level_of_current_commitment_period = 32 + message_counter = 23 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 53 + 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] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","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]' +Node is bootstrapped. +Estimated gas: 1891.687 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 + tezos-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.000757 + Expected counter: 54 + Gas limit: 1992 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1891.687 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 56 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 330 + starting_level_of_current_commitment_period = 32 + message_counter = 24 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 54 + 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] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","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]' +Node is bootstrapped. +Estimated gas: 1892.283 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 + tezos-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.000769 + Expected counter: 55 + Gas limit: 1993 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1892.283 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 57 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 355 + starting_level_of_current_commitment_period = 32 + message_counter = 25 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 55 + 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] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","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]' +Node is bootstrapped. +Estimated gas: 1892.879 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 + tezos-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.000781 + Expected counter: 56 + Gas limit: 1993 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1892.879 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 58 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 381 + starting_level_of_current_commitment_period = 32 + message_counter = 26 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 56 + 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] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","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]' +Node is bootstrapped. +Estimated gas: 1893.475 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 + tezos-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.000793 + Expected counter: 57 + Gas limit: 1994 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1893.475 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 59 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 408 + starting_level_of_current_commitment_period = 32 + message_counter = 27 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 57 + 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] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","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]' +Node is bootstrapped. +Estimated gas: 1894.071 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 + tezos-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.000805 + Expected counter: 58 + Gas limit: 1995 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1894.071 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 60 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 436 + starting_level_of_current_commitment_period = 32 + message_counter = 28 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 58 + 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] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","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]' +Node is bootstrapped. +Estimated gas: 1894.667 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 + tezos-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.000817 + Expected counter: 59 + Gas limit: 1995 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1894.667 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 61 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 465 + starting_level_of_current_commitment_period = 32 + message_counter = 29 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 59 + 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] + + } + + +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","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]' +Node is bootstrapped. +Estimated gas: 1895.263 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 + tezos-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.000829 + Expected counter: 60 + Gas limit: 1996 + 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] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1895.263 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 62 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 30 + starting_level_of_current_commitment_period = 62 + message_counter = 30 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 60 + 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] + + } + + +./tezos-sc-rollup-client-alpha rpc get /local/last_published_commitment +{ "commitment": + { "compressed_state": + "scs12A4jtbi39DFb3fzb3EBcJGB6hcsUxugy62zf11pQyk1eMMqWjP", + "inbox_level": 32, + "predecessor": "[SC_ROLLUP_COMMITMENT_HASH]", + "number_of_ticks": 931 }, + "hash": "[SC_ROLLUP_COMMITMENT_HASH]", + "published_at_level": 35 } + +./tezos-sc-rollup-client-alpha rpc get /local/last_published_commitment +{ "commitment": + { "compressed_state": + "scs12A4jtbi39DFb3fzb3EBcJGB6hcsUxugy62zf11pQyk1eMMqWjP", + "inbox_level": 32, + "predecessor": "[SC_ROLLUP_COMMITMENT_HASH]", + "number_of_ticks": 931 }, + "hash": "[SC_ROLLUP_COMMITMENT_HASH]", + "published_at_level": 35 } diff --git a/tezt/tests/sc_rollup.ml b/tezt/tests/sc_rollup.ml index a707d90c4035..a7bf8ce7bebf 100644 --- a/tezt/tests/sc_rollup.ml +++ b/tezt/tests/sc_rollup.ml @@ -1104,12 +1104,13 @@ let check_published_commitment_in_l1 ?(force_new_level = true) sc_rollup client Option.map (fun c2 -> (c1, c2)) commitment_in_l1) ; Lwt.return_unit -let test_commitment_scenario ?commitment_period ?challenge_window variant = +let test_commitment_scenario ?commitment_period ?challenge_window + ?(extra_tags = []) variant = test_scenario ?commitment_period ?challenge_window { - tags = ["commitment"; "node"]; + tags = ["commitment"; "node"] @ extra_tags; variant; description = "observing the correct handling of commitments in the rollup node"; @@ -1178,6 +1179,72 @@ let commitment_stored _protocol sc_rollup_node sc_rollup _node client = Option.map (fun (_, c2, _level) -> (c1, c2)) stored_commitment) ; check_published_commitment_in_l1 sc_rollup client published_commitment +let mode_publish mode publishes protocol sc_rollup_node sc_rollup node client = + setup ~protocol @@ fun other_node other_client _ -> + let* () = Client.Admin.trust_address client ~peer:other_node + and* () = Client.Admin.trust_address other_client ~peer:node in + let* () = Client.Admin.connect_address client ~peer:other_node in + let* () = Sc_rollup_node.run sc_rollup_node in + let sc_rollup_client = Sc_rollup_client.create sc_rollup_node in + let level = Node.get_level node in + let* levels_to_commitment = + get_sc_rollup_commitment_period_in_blocks client + in + let* () = send_messages levels_to_commitment sc_rollup client in + let* level = + Sc_rollup_node.wait_for_level sc_rollup_node (level + levels_to_commitment) + in + Log.info "Starting other rollup node." ; + let purposes = ["publish"; "cement"; "add_messages"] in + let operators = + List.mapi + (fun i purpose -> + (purpose, Constant.[|bootstrap3; bootstrap5; bootstrap4|].(i).alias)) + purposes + in + let sc_rollup_other_node = + (* Other rollup node *) + Sc_rollup_node.create + mode + other_node + other_client + ~operators + ~default_operator:Constant.bootstrap3.alias + in + let sc_rollup_other_client = Sc_rollup_client.create sc_rollup_other_node in + let* _configuration_filename = + Sc_rollup_node.config_init sc_rollup_other_node sc_rollup + in + 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* level = + Sc_rollup_node.wait_for_level sc_rollup_node (level + levels_to_commitment) + in + let* _ = Sc_rollup_node.wait_for_level sc_rollup_node level + and* _ = Sc_rollup_node.wait_for_level sc_rollup_other_node level in + Log.info "Both rollup nodes have reached level %d." level ; + let* state_hash = Sc_rollup_client.state_hash sc_rollup_client + and* state_hash_other = Sc_rollup_client.state_hash sc_rollup_other_client in + Check.((state_hash = state_hash_other) string) + ~error_msg: + "State hash of other rollup node is %R but the first rollup node has %L" ; + let* published_commitment = + Sc_rollup_client.last_published_commitment ~hooks sc_rollup_client + in + let* other_published_commitment = + Sc_rollup_client.last_published_commitment ~hooks sc_rollup_other_client + in + if published_commitment = None then + Test.fail "Operator has not published a commitment but should have." ; + if other_published_commitment = None = publishes then + Test.fail + "Other has%s published a commitment but should%s." + (if publishes then " not" else "") + (if publishes then " have" else " never do so") ; + unit + let commitment_not_stored_if_non_final _protocol sc_rollup_node sc_rollup _node client = (* The rollup is originated at level `init_level`, and it requires @@ -2191,6 +2258,26 @@ let register ~protocols = "robust_to_failures" commitment_stored_robust_to_failures protocols ; + test_commitment_scenario + ~extra_tags:["modes"; "observer"] + "observer_does_not_publish" + (mode_publish Observer false) + protocols ; + test_commitment_scenario + ~extra_tags:["modes"; "maintenance"] + "maintenance_publishes" + (mode_publish Maintenance true) + protocols ; + test_commitment_scenario + ~extra_tags:["modes"; "batcher"] + "batcher_does_not_publish" + (mode_publish Batcher false) + protocols ; + test_commitment_scenario + ~extra_tags:["modes"; "operator"] + "operator_publishes" + (mode_publish Operator true) + protocols ; test_commitment_scenario ~commitment_period:15 ~challenge_window:10080 -- GitLab From be0ecc5db5923d35b122fa4e5c0ddf8ad8e8da8c Mon Sep 17 00:00:00 2001 From: Alain Mebsout Date: Mon, 25 Jul 2022 17:41:17 +0200 Subject: [PATCH 12/13] Test/Tezt: reset regressions for sending messages with bootstrap2 --- .../Alpha- ensure boot sector is used.out | 10 +- ... node advances PVM state with messages.out | 40 +++--- ...ommitments in the rollup node (commitm.out | 120 ++++++++--------- ...ommitments in the rollup node (handles.out | 4 +- ...ommitments in the rollup node (message.out | 120 ++++++++--------- ...ommitments in the rollup node (node_us.out | 60 ++++----- ...ommitments in the rollup node (non_fin.out | 120 ++++++++--------- ...ommitments in the rollup node (robust_.out | 122 +++++++++--------- ...ce of inbox in the rollup node (basic).out | 8 +- ...f inbox in the rollup node (handles_ch.out | 16 +-- ...ce of inbox in the rollup node (stops).out | 16 +-- ...tegy of refutation games (inbox_proof).out | 42 +++--- ...efutation games (inbox_proof_at_genesi.out | 42 +++--- ...efutation games (inbox_proof_many_empt.out | 42 +++--- ...efutation games (inbox_proof_one_empty.out | 42 +++--- ...tegy of refutation games (pvm_proof_0).out | 42 +++--- ...tegy of refutation games (pvm_proof_1).out | 42 +++--- ...tegy of refutation games (pvm_proof_2).out | 30 ++--- ...tegy of refutation games (pvm_proof_3).out | 30 ++--- ...efutation games (pvm_proof_at_genesis).out | 42 +++--- ...strategy of refutation games (timeout).out | 42 +++--- ...ssages in the inbox - check inbox size.out | 40 +++--- ...s in the inbox - current messages hash.out | 8 +- 23 files changed, 540 insertions(+), 540 deletions(-) diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- ensure boot sector is used.out b/tezt/tests/expected/sc_rollup.ml/Alpha- ensure boot sector is used.out index f5bfa93396c6..ec4a570b3a03 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- ensure boot sector is used.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- ensure boot sector is used.out @@ -37,7 +37,7 @@ This sequence of operations was run: { "level": 2, "commitment_hash": "[SC_ROLLUP_COMMITMENT_HASH]" } -./tezos-client --wait none send sc rollup message 'text:["10 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["10 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1876.654 units (will add 100 for safety) Estimated storage: no bytes added @@ -51,7 +51,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000475 - Expected counter: 2 + Expected counter: 1 Gas limit: 1977 Storage limit: 0 bytes Balance updates: @@ -93,7 +93,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000677 - Expected counter: 3 + Expected counter: 2 Gas limit: 3211 Storage limit: 6674 bytes Balance updates: @@ -117,7 +117,7 @@ This sequence of operations was run: { "level": 4, "commitment_hash": "[SC_ROLLUP_COMMITMENT_HASH]" } -./tezos-client --wait none send sc rollup message 'text:["10 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["10 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1876.654 units (will add 100 for safety) Estimated storage: no bytes added @@ -131,7 +131,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000475 - Expected counter: 4 + Expected counter: 2 Gas limit: 1977 Storage limit: 0 bytes Balance updates: diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- node advances PVM state with messages.out b/tezt/tests/expected/sc_rollup.ml/Alpha- node advances PVM state with messages.out index 769e7b127497..ad0d0e009d57 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- node advances PVM state with messages.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- node advances PVM state with messages.out @@ -43,7 +43,7 @@ This sequence of operations was run: ./tezos-sc-rollup-client-alpha rpc get /global/total_ticks "0" -./tezos-client --wait none send sc rollup message '["1 6 + value"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message '["1 6 + value"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1876.773 units (will add 100 for safety) Estimated storage: no bytes added @@ -57,7 +57,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000482 - Expected counter: 2 + Expected counter: 1 Gas limit: 1977 Storage limit: 0 bytes Balance updates: @@ -97,7 +97,7 @@ This sequence of operations was run: ./tezos-sc-rollup-client-alpha rpc get /global/total_ticks "18" -./tezos-client --wait none send sc rollup message '["2 8 + value"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message '["2 8 + value"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1876.995 units (will add 100 for safety) Estimated storage: no bytes added @@ -111,7 +111,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000482 - Expected counter: 3 + Expected counter: 2 Gas limit: 1977 Storage limit: 0 bytes Balance updates: @@ -152,7 +152,7 @@ This sequence of operations was run: ./tezos-sc-rollup-client-alpha rpc get /global/total_ticks "35" -./tezos-client --wait none send sc rollup message '["3 10 + value"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message '["3 10 + value"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1877.219 units (will add 100 for safety) Estimated storage: no bytes added @@ -166,7 +166,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000483 - Expected counter: 4 + Expected counter: 3 Gas limit: 1978 Storage limit: 0 bytes Balance updates: @@ -207,7 +207,7 @@ This sequence of operations was run: ./tezos-sc-rollup-client-alpha rpc get /global/total_ticks "53" -./tezos-client --wait none send sc rollup message '["4 12 + value"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message '["4 12 + value"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1877.219 units (will add 100 for safety) Estimated storage: no bytes added @@ -221,7 +221,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000483 - Expected counter: 5 + Expected counter: 4 Gas limit: 1978 Storage limit: 0 bytes Balance updates: @@ -263,7 +263,7 @@ This sequence of operations was run: ./tezos-sc-rollup-client-alpha rpc get /global/total_ticks "71" -./tezos-client --wait none send sc rollup message '["5 14 + value"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message '["5 14 + value"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1877.426 units (will add 100 for safety) Estimated storage: no bytes added @@ -277,7 +277,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000483 - Expected counter: 6 + Expected counter: 5 Gas limit: 1978 Storage limit: 0 bytes Balance updates: @@ -319,7 +319,7 @@ This sequence of operations was run: ./tezos-sc-rollup-client-alpha rpc get /global/total_ticks "89" -./tezos-client --wait none send sc rollup message '["6 16 + value"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message '["6 16 + value"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1877.426 units (will add 100 for safety) Estimated storage: no bytes added @@ -333,7 +333,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000483 - Expected counter: 7 + Expected counter: 6 Gas limit: 1978 Storage limit: 0 bytes Balance updates: @@ -375,7 +375,7 @@ This sequence of operations was run: ./tezos-sc-rollup-client-alpha rpc get /global/total_ticks "107" -./tezos-client --wait none send sc rollup message '["7 18 + value"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message '["7 18 + value"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1877.426 units (will add 100 for safety) Estimated storage: no bytes added @@ -389,7 +389,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000483 - Expected counter: 8 + Expected counter: 7 Gas limit: 1978 Storage limit: 0 bytes Balance updates: @@ -431,7 +431,7 @@ This sequence of operations was run: ./tezos-sc-rollup-client-alpha rpc get /global/total_ticks "125" -./tezos-client --wait none send sc rollup message '["8 20 + value"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message '["8 20 + value"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1877.426 units (will add 100 for safety) Estimated storage: no bytes added @@ -445,7 +445,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000483 - Expected counter: 9 + Expected counter: 8 Gas limit: 1978 Storage limit: 0 bytes Balance updates: @@ -488,7 +488,7 @@ This sequence of operations was run: ./tezos-sc-rollup-client-alpha rpc get /global/total_ticks "143" -./tezos-client --wait none send sc rollup message '["9 22 + value"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message '["9 22 + value"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1877.633 units (will add 100 for safety) Estimated storage: no bytes added @@ -502,7 +502,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000483 - Expected counter: 10 + Expected counter: 9 Gas limit: 1978 Storage limit: 0 bytes Balance updates: @@ -545,7 +545,7 @@ This sequence of operations was run: ./tezos-sc-rollup-client-alpha rpc get /global/total_ticks "161" -./tezos-client --wait none send sc rollup message '["10 24 + value"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message '["10 24 + value"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1877.650 units (will add 100 for safety) Estimated storage: no bytes added @@ -559,7 +559,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000484 - Expected counter: 11 + Expected counter: 10 Gas limit: 1978 Storage limit: 0 bytes Balance updates: diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (commitm.out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (commitm.out index 00a1c612b160..a0d06f12ab17 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (commitm.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (commitm.out @@ -37,7 +37,7 @@ This sequence of operations was run: { "level": 2, "commitment_hash": "[SC_ROLLUP_COMMITMENT_HASH]" } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1876.722 units (will add 100 for safety) Estimated storage: no bytes added @@ -51,7 +51,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000479 - Expected counter: 2 + Expected counter: 1 Gas limit: 1977 Storage limit: 0 bytes Balance updates: @@ -76,7 +76,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-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 @@ -90,7 +90,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000491 - Expected counter: 3 + Expected counter: 2 Gas limit: 1978 Storage limit: 0 bytes Balance updates: @@ -116,7 +116,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1878.343 units (will add 100 for safety) Estimated storage: no bytes added @@ -130,7 +130,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000503 - Expected counter: 4 + Expected counter: 3 Gas limit: 1979 Storage limit: 0 bytes Balance updates: @@ -156,7 +156,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1878.939 units (will add 100 for safety) Estimated storage: no bytes added @@ -170,7 +170,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000515 - Expected counter: 5 + Expected counter: 4 Gas limit: 1979 Storage limit: 0 bytes Balance updates: @@ -197,7 +197,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.742 units (will add 100 for safety) Estimated storage: no bytes added @@ -211,7 +211,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000527 - Expected counter: 6 + Expected counter: 5 Gas limit: 1980 Storage limit: 0 bytes Balance updates: @@ -238,7 +238,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1880.338 units (will add 100 for safety) Estimated storage: no bytes added @@ -252,7 +252,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.00054 - Expected counter: 7 + Expected counter: 6 Gas limit: 1981 Storage limit: 0 bytes Balance updates: @@ -279,7 +279,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1880.934 units (will add 100 for safety) Estimated storage: no bytes added @@ -293,7 +293,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000552 - Expected counter: 8 + Expected counter: 7 Gas limit: 1981 Storage limit: 0 bytes Balance updates: @@ -320,7 +320,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1881.530 units (will add 100 for safety) Estimated storage: no bytes added @@ -334,7 +334,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000564 - Expected counter: 9 + Expected counter: 8 Gas limit: 1982 Storage limit: 0 bytes Balance updates: @@ -362,7 +362,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1882.333 units (will add 100 for safety) Estimated storage: no bytes added @@ -376,7 +376,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000576 - Expected counter: 10 + Expected counter: 9 Gas limit: 1983 Storage limit: 0 bytes Balance updates: @@ -404,7 +404,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1882.929 units (will add 100 for safety) Estimated storage: no bytes added @@ -418,7 +418,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000588 - Expected counter: 11 + Expected counter: 10 Gas limit: 1983 Storage limit: 0 bytes Balance updates: @@ -446,7 +446,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-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]' Node is bootstrapped. Estimated gas: 1883.525 units (will add 100 for safety) Estimated storage: no bytes added @@ -460,7 +460,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.0006 - Expected counter: 12 + Expected counter: 11 Gas limit: 1984 Storage limit: 0 bytes Balance updates: @@ -488,7 +488,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-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]' Node is bootstrapped. Estimated gas: 1884.121 units (will add 100 for safety) Estimated storage: no bytes added @@ -502,7 +502,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000612 - Expected counter: 13 + Expected counter: 12 Gas limit: 1985 Storage limit: 0 bytes Balance updates: @@ -530,7 +530,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-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]' Node is bootstrapped. Estimated gas: 1884.717 units (will add 100 for safety) Estimated storage: no bytes added @@ -544,7 +544,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000624 - Expected counter: 14 + Expected counter: 13 Gas limit: 1985 Storage limit: 0 bytes Balance updates: @@ -572,7 +572,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-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]' Node is bootstrapped. Estimated gas: 1885.313 units (will add 100 for safety) Estimated storage: no bytes added @@ -586,7 +586,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000636 - Expected counter: 15 + Expected counter: 14 Gas limit: 1986 Storage limit: 0 bytes Balance updates: @@ -614,7 +614,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-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]' Node is bootstrapped. Estimated gas: 1885.909 units (will add 100 for safety) Estimated storage: no bytes added @@ -628,7 +628,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000648 - Expected counter: 16 + Expected counter: 15 Gas limit: 1986 Storage limit: 0 bytes Balance updates: @@ -656,7 +656,7 @@ This sequence of operations was run: } -./tezos-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 bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-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]' Node is bootstrapped. Estimated gas: 1886.505 units (will add 100 for safety) Estimated storage: no bytes added @@ -670,7 +670,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.00066 - Expected counter: 17 + Expected counter: 16 Gas limit: 1987 Storage limit: 0 bytes Balance updates: @@ -699,7 +699,7 @@ This sequence of operations was run: } -./tezos-client --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 bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --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]' Node is bootstrapped. Estimated gas: 1887.308 units (will add 100 for safety) Estimated storage: no bytes added @@ -713,7 +713,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000672 - Expected counter: 18 + Expected counter: 17 Gas limit: 1988 Storage limit: 0 bytes Balance updates: @@ -742,7 +742,7 @@ This sequence of operations was run: } -./tezos-client --wait 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 bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait 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]' Node is bootstrapped. Estimated gas: 1887.904 units (will add 100 for safety) Estimated storage: no bytes added @@ -756,7 +756,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000684 - Expected counter: 19 + Expected counter: 18 Gas limit: 1988 Storage limit: 0 bytes Balance updates: @@ -785,7 +785,7 @@ This sequence of operations was run: } -./tezos-client --wait none 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 bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none 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]' Node is bootstrapped. Estimated gas: 1888.500 units (will add 100 for safety) Estimated storage: no bytes added @@ -799,7 +799,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000696 - Expected counter: 20 + Expected counter: 19 Gas limit: 1989 Storage limit: 0 bytes Balance updates: @@ -828,7 +828,7 @@ This sequence of operations was run: } -./tezos-client --wait none send 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 bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send 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]' Node is bootstrapped. Estimated gas: 1889.096 units (will add 100 for safety) Estimated storage: no bytes added @@ -842,7 +842,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000708 - Expected counter: 21 + Expected counter: 20 Gas limit: 1990 Storage limit: 0 bytes Balance updates: @@ -871,7 +871,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc 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 bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc 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]' Node is bootstrapped. Estimated gas: 1889.692 units (will add 100 for safety) Estimated storage: no bytes added @@ -885,7 +885,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.00072 - Expected counter: 22 + Expected counter: 21 Gas limit: 1990 Storage limit: 0 bytes Balance updates: @@ -914,7 +914,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup 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 bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup 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]' Node is bootstrapped. Estimated gas: 1890.288 units (will add 100 for safety) Estimated storage: no bytes added @@ -928,7 +928,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000733 - Expected counter: 23 + Expected counter: 22 Gas limit: 1991 Storage limit: 0 bytes Balance updates: @@ -957,7 +957,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message '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 bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message '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]' Node is bootstrapped. Estimated gas: 1890.884 units (will add 100 for safety) Estimated storage: no bytes added @@ -971,7 +971,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000745 - Expected counter: 24 + Expected counter: 23 Gas limit: 1991 Storage limit: 0 bytes Balance updates: @@ -1000,7 +1000,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","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]' Node is bootstrapped. Estimated gas: 1891.480 units (will add 100 for safety) Estimated storage: no bytes added @@ -1014,7 +1014,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000757 - Expected counter: 25 + Expected counter: 24 Gas limit: 1992 Storage limit: 0 bytes Balance updates: @@ -1043,7 +1043,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","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]' Node is bootstrapped. Estimated gas: 1892.076 units (will add 100 for safety) Estimated storage: no bytes added @@ -1057,7 +1057,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000769 - Expected counter: 26 + Expected counter: 25 Gas limit: 1993 Storage limit: 0 bytes Balance updates: @@ -1086,7 +1086,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","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]' Node is bootstrapped. Estimated gas: 1892.672 units (will add 100 for safety) Estimated storage: no bytes added @@ -1100,7 +1100,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000781 - Expected counter: 27 + Expected counter: 26 Gas limit: 1993 Storage limit: 0 bytes Balance updates: @@ -1129,7 +1129,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","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]' Node is bootstrapped. Estimated gas: 1893.268 units (will add 100 for safety) Estimated storage: no bytes added @@ -1143,7 +1143,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000793 - Expected counter: 28 + Expected counter: 27 Gas limit: 1994 Storage limit: 0 bytes Balance updates: @@ -1172,7 +1172,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","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]' Node is bootstrapped. Estimated gas: 1893.864 units (will add 100 for safety) Estimated storage: no bytes added @@ -1186,7 +1186,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000805 - Expected counter: 29 + Expected counter: 28 Gas limit: 1994 Storage limit: 0 bytes Balance updates: @@ -1215,7 +1215,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","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]' Node is bootstrapped. Estimated gas: 1894.460 units (will add 100 for safety) Estimated storage: no bytes added @@ -1229,7 +1229,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000817 - Expected counter: 30 + Expected counter: 29 Gas limit: 1995 Storage limit: 0 bytes Balance updates: @@ -1258,7 +1258,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","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]' Node is bootstrapped. Estimated gas: 1895.056 units (will add 100 for safety) Estimated storage: no bytes added @@ -1272,7 +1272,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000829 - Expected counter: 31 + Expected counter: 30 Gas limit: 1996 Storage limit: 0 bytes Balance updates: diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (handles.out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (handles.out index 2f3edda8b63b..35d72b6aa066 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (handles.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (handles.out @@ -37,7 +37,7 @@ This sequence of operations was run: { "level": 2, "commitment_hash": "[SC_ROLLUP_COMMITMENT_HASH]" } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1876.850 units (will add 100 for safety) Estimated storage: no bytes added @@ -51,7 +51,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000479 - Expected counter: 2 + Expected counter: 1 Gas limit: 1977 Storage limit: 0 bytes Balance updates: diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (message.out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (message.out index 43d315c696ef..89de5aa9a387 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (message.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (message.out @@ -37,7 +37,7 @@ This sequence of operations was run: { "level": 2, "commitment_hash": "[SC_ROLLUP_COMMITMENT_HASH]" } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1876.722 units (will add 100 for safety) Estimated storage: no bytes added @@ -51,7 +51,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000479 - Expected counter: 2 + Expected counter: 1 Gas limit: 1977 Storage limit: 0 bytes Balance updates: @@ -76,7 +76,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-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 @@ -90,7 +90,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000491 - Expected counter: 3 + Expected counter: 2 Gas limit: 1978 Storage limit: 0 bytes Balance updates: @@ -116,7 +116,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1878.343 units (will add 100 for safety) Estimated storage: no bytes added @@ -130,7 +130,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000503 - Expected counter: 4 + Expected counter: 3 Gas limit: 1979 Storage limit: 0 bytes Balance updates: @@ -156,7 +156,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1878.939 units (will add 100 for safety) Estimated storage: no bytes added @@ -170,7 +170,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000515 - Expected counter: 5 + Expected counter: 4 Gas limit: 1979 Storage limit: 0 bytes Balance updates: @@ -197,7 +197,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.742 units (will add 100 for safety) Estimated storage: no bytes added @@ -211,7 +211,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000527 - Expected counter: 6 + Expected counter: 5 Gas limit: 1980 Storage limit: 0 bytes Balance updates: @@ -238,7 +238,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1880.338 units (will add 100 for safety) Estimated storage: no bytes added @@ -252,7 +252,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.00054 - Expected counter: 7 + Expected counter: 6 Gas limit: 1981 Storage limit: 0 bytes Balance updates: @@ -279,7 +279,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1880.934 units (will add 100 for safety) Estimated storage: no bytes added @@ -293,7 +293,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000552 - Expected counter: 8 + Expected counter: 7 Gas limit: 1981 Storage limit: 0 bytes Balance updates: @@ -320,7 +320,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1881.530 units (will add 100 for safety) Estimated storage: no bytes added @@ -334,7 +334,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000564 - Expected counter: 9 + Expected counter: 8 Gas limit: 1982 Storage limit: 0 bytes Balance updates: @@ -362,7 +362,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1882.333 units (will add 100 for safety) Estimated storage: no bytes added @@ -376,7 +376,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000576 - Expected counter: 10 + Expected counter: 9 Gas limit: 1983 Storage limit: 0 bytes Balance updates: @@ -404,7 +404,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1882.929 units (will add 100 for safety) Estimated storage: no bytes added @@ -418,7 +418,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000588 - Expected counter: 11 + Expected counter: 10 Gas limit: 1983 Storage limit: 0 bytes Balance updates: @@ -446,7 +446,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-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]' Node is bootstrapped. Estimated gas: 1883.525 units (will add 100 for safety) Estimated storage: no bytes added @@ -460,7 +460,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.0006 - Expected counter: 12 + Expected counter: 11 Gas limit: 1984 Storage limit: 0 bytes Balance updates: @@ -488,7 +488,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-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]' Node is bootstrapped. Estimated gas: 1884.121 units (will add 100 for safety) Estimated storage: no bytes added @@ -502,7 +502,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000612 - Expected counter: 13 + Expected counter: 12 Gas limit: 1985 Storage limit: 0 bytes Balance updates: @@ -530,7 +530,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-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]' Node is bootstrapped. Estimated gas: 1884.717 units (will add 100 for safety) Estimated storage: no bytes added @@ -544,7 +544,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000624 - Expected counter: 14 + Expected counter: 13 Gas limit: 1985 Storage limit: 0 bytes Balance updates: @@ -572,7 +572,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-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]' Node is bootstrapped. Estimated gas: 1885.313 units (will add 100 for safety) Estimated storage: no bytes added @@ -586,7 +586,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000636 - Expected counter: 15 + Expected counter: 14 Gas limit: 1986 Storage limit: 0 bytes Balance updates: @@ -614,7 +614,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-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]' Node is bootstrapped. Estimated gas: 1885.909 units (will add 100 for safety) Estimated storage: no bytes added @@ -628,7 +628,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000648 - Expected counter: 16 + Expected counter: 15 Gas limit: 1986 Storage limit: 0 bytes Balance updates: @@ -656,7 +656,7 @@ This sequence of operations was run: } -./tezos-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 bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-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]' Node is bootstrapped. Estimated gas: 1886.505 units (will add 100 for safety) Estimated storage: no bytes added @@ -670,7 +670,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.00066 - Expected counter: 17 + Expected counter: 16 Gas limit: 1987 Storage limit: 0 bytes Balance updates: @@ -699,7 +699,7 @@ This sequence of operations was run: } -./tezos-client --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 bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --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]' Node is bootstrapped. Estimated gas: 1887.308 units (will add 100 for safety) Estimated storage: no bytes added @@ -713,7 +713,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000672 - Expected counter: 18 + Expected counter: 17 Gas limit: 1988 Storage limit: 0 bytes Balance updates: @@ -742,7 +742,7 @@ This sequence of operations was run: } -./tezos-client --wait 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 bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait 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]' Node is bootstrapped. Estimated gas: 1887.904 units (will add 100 for safety) Estimated storage: no bytes added @@ -756,7 +756,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000684 - Expected counter: 19 + Expected counter: 18 Gas limit: 1988 Storage limit: 0 bytes Balance updates: @@ -785,7 +785,7 @@ This sequence of operations was run: } -./tezos-client --wait none 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 bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none 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]' Node is bootstrapped. Estimated gas: 1888.500 units (will add 100 for safety) Estimated storage: no bytes added @@ -799,7 +799,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000696 - Expected counter: 20 + Expected counter: 19 Gas limit: 1989 Storage limit: 0 bytes Balance updates: @@ -828,7 +828,7 @@ This sequence of operations was run: } -./tezos-client --wait none send 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 bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send 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]' Node is bootstrapped. Estimated gas: 1889.096 units (will add 100 for safety) Estimated storage: no bytes added @@ -842,7 +842,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000708 - Expected counter: 21 + Expected counter: 20 Gas limit: 1990 Storage limit: 0 bytes Balance updates: @@ -871,7 +871,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc 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 bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc 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]' Node is bootstrapped. Estimated gas: 1889.692 units (will add 100 for safety) Estimated storage: no bytes added @@ -885,7 +885,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.00072 - Expected counter: 22 + Expected counter: 21 Gas limit: 1990 Storage limit: 0 bytes Balance updates: @@ -914,7 +914,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup 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 bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup 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]' Node is bootstrapped. Estimated gas: 1890.288 units (will add 100 for safety) Estimated storage: no bytes added @@ -928,7 +928,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000733 - Expected counter: 23 + Expected counter: 22 Gas limit: 1991 Storage limit: 0 bytes Balance updates: @@ -957,7 +957,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message '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 bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message '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]' Node is bootstrapped. Estimated gas: 1890.884 units (will add 100 for safety) Estimated storage: no bytes added @@ -971,7 +971,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000745 - Expected counter: 24 + Expected counter: 23 Gas limit: 1991 Storage limit: 0 bytes Balance updates: @@ -1000,7 +1000,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","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]' Node is bootstrapped. Estimated gas: 1891.480 units (will add 100 for safety) Estimated storage: no bytes added @@ -1014,7 +1014,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000757 - Expected counter: 25 + Expected counter: 24 Gas limit: 1992 Storage limit: 0 bytes Balance updates: @@ -1043,7 +1043,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","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]' Node is bootstrapped. Estimated gas: 1892.076 units (will add 100 for safety) Estimated storage: no bytes added @@ -1057,7 +1057,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000769 - Expected counter: 26 + Expected counter: 25 Gas limit: 1993 Storage limit: 0 bytes Balance updates: @@ -1086,7 +1086,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","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]' Node is bootstrapped. Estimated gas: 1892.672 units (will add 100 for safety) Estimated storage: no bytes added @@ -1100,7 +1100,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000781 - Expected counter: 27 + Expected counter: 26 Gas limit: 1993 Storage limit: 0 bytes Balance updates: @@ -1129,7 +1129,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","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]' Node is bootstrapped. Estimated gas: 1893.268 units (will add 100 for safety) Estimated storage: no bytes added @@ -1143,7 +1143,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000793 - Expected counter: 28 + Expected counter: 27 Gas limit: 1994 Storage limit: 0 bytes Balance updates: @@ -1172,7 +1172,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","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]' Node is bootstrapped. Estimated gas: 1893.864 units (will add 100 for safety) Estimated storage: no bytes added @@ -1186,7 +1186,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000805 - Expected counter: 29 + Expected counter: 28 Gas limit: 1994 Storage limit: 0 bytes Balance updates: @@ -1215,7 +1215,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","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]' Node is bootstrapped. Estimated gas: 1894.460 units (will add 100 for safety) Estimated storage: no bytes added @@ -1229,7 +1229,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000817 - Expected counter: 30 + Expected counter: 29 Gas limit: 1995 Storage limit: 0 bytes Balance updates: @@ -1258,7 +1258,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","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]' Node is bootstrapped. Estimated gas: 1895.056 units (will add 100 for safety) Estimated storage: no bytes added @@ -1272,7 +1272,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000829 - Expected counter: 31 + Expected counter: 30 Gas limit: 1996 Storage limit: 0 bytes Balance updates: diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (node_us.out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (node_us.out index fd786205a7f4..edbbec87a9bd 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (node_us.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (node_us.out @@ -37,7 +37,7 @@ This sequence of operations was run: { "level": 2, "commitment_hash": "[SC_ROLLUP_COMMITMENT_HASH]" } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1876.722 units (will add 100 for safety) Estimated storage: no bytes added @@ -51,7 +51,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000479 - Expected counter: 2 + Expected counter: 1 Gas limit: 1977 Storage limit: 0 bytes Balance updates: @@ -76,7 +76,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-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 @@ -90,7 +90,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000491 - Expected counter: 3 + Expected counter: 2 Gas limit: 1978 Storage limit: 0 bytes Balance updates: @@ -116,7 +116,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1878.343 units (will add 100 for safety) Estimated storage: no bytes added @@ -130,7 +130,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000503 - Expected counter: 4 + Expected counter: 3 Gas limit: 1979 Storage limit: 0 bytes Balance updates: @@ -156,7 +156,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1878.939 units (will add 100 for safety) Estimated storage: no bytes added @@ -170,7 +170,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000515 - Expected counter: 5 + Expected counter: 4 Gas limit: 1979 Storage limit: 0 bytes Balance updates: @@ -197,7 +197,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.742 units (will add 100 for safety) Estimated storage: no bytes added @@ -211,7 +211,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000527 - Expected counter: 6 + Expected counter: 5 Gas limit: 1980 Storage limit: 0 bytes Balance updates: @@ -238,7 +238,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1880.338 units (will add 100 for safety) Estimated storage: no bytes added @@ -252,7 +252,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.00054 - Expected counter: 7 + Expected counter: 6 Gas limit: 1981 Storage limit: 0 bytes Balance updates: @@ -279,7 +279,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1880.934 units (will add 100 for safety) Estimated storage: no bytes added @@ -293,7 +293,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000552 - Expected counter: 8 + Expected counter: 7 Gas limit: 1981 Storage limit: 0 bytes Balance updates: @@ -320,7 +320,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1881.530 units (will add 100 for safety) Estimated storage: no bytes added @@ -334,7 +334,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000564 - Expected counter: 9 + Expected counter: 8 Gas limit: 1982 Storage limit: 0 bytes Balance updates: @@ -362,7 +362,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1882.333 units (will add 100 for safety) Estimated storage: no bytes added @@ -376,7 +376,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000576 - Expected counter: 10 + Expected counter: 9 Gas limit: 1983 Storage limit: 0 bytes Balance updates: @@ -404,7 +404,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1882.929 units (will add 100 for safety) Estimated storage: no bytes added @@ -418,7 +418,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000588 - Expected counter: 11 + Expected counter: 10 Gas limit: 1983 Storage limit: 0 bytes Balance updates: @@ -446,7 +446,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-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]' Node is bootstrapped. Estimated gas: 1883.525 units (will add 100 for safety) Estimated storage: no bytes added @@ -460,7 +460,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.0006 - Expected counter: 12 + Expected counter: 11 Gas limit: 1984 Storage limit: 0 bytes Balance updates: @@ -488,7 +488,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-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]' Node is bootstrapped. Estimated gas: 1884.121 units (will add 100 for safety) Estimated storage: no bytes added @@ -502,7 +502,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000612 - Expected counter: 13 + Expected counter: 12 Gas limit: 1985 Storage limit: 0 bytes Balance updates: @@ -530,7 +530,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-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]' Node is bootstrapped. Estimated gas: 1884.717 units (will add 100 for safety) Estimated storage: no bytes added @@ -544,7 +544,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000624 - Expected counter: 14 + Expected counter: 13 Gas limit: 1985 Storage limit: 0 bytes Balance updates: @@ -572,7 +572,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-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]' Node is bootstrapped. Estimated gas: 1885.313 units (will add 100 for safety) Estimated storage: no bytes added @@ -586,7 +586,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000636 - Expected counter: 15 + Expected counter: 14 Gas limit: 1986 Storage limit: 0 bytes Balance updates: @@ -614,7 +614,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-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]' Node is bootstrapped. Estimated gas: 1885.909 units (will add 100 for safety) Estimated storage: no bytes added @@ -628,7 +628,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000648 - Expected counter: 16 + Expected counter: 15 Gas limit: 1986 Storage limit: 0 bytes Balance updates: diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (non_fin.out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (non_fin.out index 92fac4de49dd..f2ba54a738d0 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (non_fin.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (non_fin.out @@ -37,7 +37,7 @@ This sequence of operations was run: { "level": 2, "commitment_hash": "[SC_ROLLUP_COMMITMENT_HASH]" } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1876.722 units (will add 100 for safety) Estimated storage: no bytes added @@ -51,7 +51,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000479 - Expected counter: 2 + Expected counter: 1 Gas limit: 1977 Storage limit: 0 bytes Balance updates: @@ -76,7 +76,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-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 @@ -90,7 +90,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000491 - Expected counter: 3 + Expected counter: 2 Gas limit: 1978 Storage limit: 0 bytes Balance updates: @@ -116,7 +116,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1878.343 units (will add 100 for safety) Estimated storage: no bytes added @@ -130,7 +130,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000503 - Expected counter: 4 + Expected counter: 3 Gas limit: 1979 Storage limit: 0 bytes Balance updates: @@ -156,7 +156,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1878.939 units (will add 100 for safety) Estimated storage: no bytes added @@ -170,7 +170,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000515 - Expected counter: 5 + Expected counter: 4 Gas limit: 1979 Storage limit: 0 bytes Balance updates: @@ -197,7 +197,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.742 units (will add 100 for safety) Estimated storage: no bytes added @@ -211,7 +211,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000527 - Expected counter: 6 + Expected counter: 5 Gas limit: 1980 Storage limit: 0 bytes Balance updates: @@ -238,7 +238,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1880.338 units (will add 100 for safety) Estimated storage: no bytes added @@ -252,7 +252,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.00054 - Expected counter: 7 + Expected counter: 6 Gas limit: 1981 Storage limit: 0 bytes Balance updates: @@ -279,7 +279,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1880.934 units (will add 100 for safety) Estimated storage: no bytes added @@ -293,7 +293,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000552 - Expected counter: 8 + Expected counter: 7 Gas limit: 1981 Storage limit: 0 bytes Balance updates: @@ -320,7 +320,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1881.530 units (will add 100 for safety) Estimated storage: no bytes added @@ -334,7 +334,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000564 - Expected counter: 9 + Expected counter: 8 Gas limit: 1982 Storage limit: 0 bytes Balance updates: @@ -362,7 +362,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1882.333 units (will add 100 for safety) Estimated storage: no bytes added @@ -376,7 +376,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000576 - Expected counter: 10 + Expected counter: 9 Gas limit: 1983 Storage limit: 0 bytes Balance updates: @@ -404,7 +404,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1882.929 units (will add 100 for safety) Estimated storage: no bytes added @@ -418,7 +418,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000588 - Expected counter: 11 + Expected counter: 10 Gas limit: 1983 Storage limit: 0 bytes Balance updates: @@ -446,7 +446,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-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]' Node is bootstrapped. Estimated gas: 1883.525 units (will add 100 for safety) Estimated storage: no bytes added @@ -460,7 +460,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.0006 - Expected counter: 12 + Expected counter: 11 Gas limit: 1984 Storage limit: 0 bytes Balance updates: @@ -488,7 +488,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-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]' Node is bootstrapped. Estimated gas: 1884.121 units (will add 100 for safety) Estimated storage: no bytes added @@ -502,7 +502,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000612 - Expected counter: 13 + Expected counter: 12 Gas limit: 1985 Storage limit: 0 bytes Balance updates: @@ -530,7 +530,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-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]' Node is bootstrapped. Estimated gas: 1884.717 units (will add 100 for safety) Estimated storage: no bytes added @@ -544,7 +544,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000624 - Expected counter: 14 + Expected counter: 13 Gas limit: 1985 Storage limit: 0 bytes Balance updates: @@ -572,7 +572,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-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]' Node is bootstrapped. Estimated gas: 1885.313 units (will add 100 for safety) Estimated storage: no bytes added @@ -586,7 +586,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000636 - Expected counter: 15 + Expected counter: 14 Gas limit: 1986 Storage limit: 0 bytes Balance updates: @@ -614,7 +614,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-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]' Node is bootstrapped. Estimated gas: 1885.909 units (will add 100 for safety) Estimated storage: no bytes added @@ -628,7 +628,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000648 - Expected counter: 16 + Expected counter: 15 Gas limit: 1986 Storage limit: 0 bytes Balance updates: @@ -656,7 +656,7 @@ This sequence of operations was run: } -./tezos-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 bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-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]' Node is bootstrapped. Estimated gas: 1886.505 units (will add 100 for safety) Estimated storage: no bytes added @@ -670,7 +670,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.00066 - Expected counter: 17 + Expected counter: 16 Gas limit: 1987 Storage limit: 0 bytes Balance updates: @@ -699,7 +699,7 @@ This sequence of operations was run: } -./tezos-client --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 bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --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]' Node is bootstrapped. Estimated gas: 1887.308 units (will add 100 for safety) Estimated storage: no bytes added @@ -713,7 +713,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000672 - Expected counter: 18 + Expected counter: 17 Gas limit: 1988 Storage limit: 0 bytes Balance updates: @@ -742,7 +742,7 @@ This sequence of operations was run: } -./tezos-client --wait 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 bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait 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]' Node is bootstrapped. Estimated gas: 1887.904 units (will add 100 for safety) Estimated storage: no bytes added @@ -756,7 +756,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000684 - Expected counter: 19 + Expected counter: 18 Gas limit: 1988 Storage limit: 0 bytes Balance updates: @@ -785,7 +785,7 @@ This sequence of operations was run: } -./tezos-client --wait none 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 bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none 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]' Node is bootstrapped. Estimated gas: 1888.500 units (will add 100 for safety) Estimated storage: no bytes added @@ -799,7 +799,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000696 - Expected counter: 20 + Expected counter: 19 Gas limit: 1989 Storage limit: 0 bytes Balance updates: @@ -828,7 +828,7 @@ This sequence of operations was run: } -./tezos-client --wait none send 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 bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send 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]' Node is bootstrapped. Estimated gas: 1889.096 units (will add 100 for safety) Estimated storage: no bytes added @@ -842,7 +842,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000708 - Expected counter: 21 + Expected counter: 20 Gas limit: 1990 Storage limit: 0 bytes Balance updates: @@ -871,7 +871,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc 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 bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc 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]' Node is bootstrapped. Estimated gas: 1889.692 units (will add 100 for safety) Estimated storage: no bytes added @@ -885,7 +885,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.00072 - Expected counter: 22 + Expected counter: 21 Gas limit: 1990 Storage limit: 0 bytes Balance updates: @@ -914,7 +914,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup 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 bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup 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]' Node is bootstrapped. Estimated gas: 1890.288 units (will add 100 for safety) Estimated storage: no bytes added @@ -928,7 +928,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000733 - Expected counter: 23 + Expected counter: 22 Gas limit: 1991 Storage limit: 0 bytes Balance updates: @@ -957,7 +957,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message '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 bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message '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]' Node is bootstrapped. Estimated gas: 1890.884 units (will add 100 for safety) Estimated storage: no bytes added @@ -971,7 +971,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000745 - Expected counter: 24 + Expected counter: 23 Gas limit: 1991 Storage limit: 0 bytes Balance updates: @@ -1000,7 +1000,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","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]' Node is bootstrapped. Estimated gas: 1891.480 units (will add 100 for safety) Estimated storage: no bytes added @@ -1014,7 +1014,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000757 - Expected counter: 25 + Expected counter: 24 Gas limit: 1992 Storage limit: 0 bytes Balance updates: @@ -1043,7 +1043,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","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]' Node is bootstrapped. Estimated gas: 1892.076 units (will add 100 for safety) Estimated storage: no bytes added @@ -1057,7 +1057,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000769 - Expected counter: 26 + Expected counter: 25 Gas limit: 1993 Storage limit: 0 bytes Balance updates: @@ -1086,7 +1086,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","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]' Node is bootstrapped. Estimated gas: 1892.672 units (will add 100 for safety) Estimated storage: no bytes added @@ -1100,7 +1100,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000781 - Expected counter: 27 + Expected counter: 26 Gas limit: 1993 Storage limit: 0 bytes Balance updates: @@ -1129,7 +1129,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","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]' Node is bootstrapped. Estimated gas: 1893.268 units (will add 100 for safety) Estimated storage: no bytes added @@ -1143,7 +1143,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000793 - Expected counter: 28 + Expected counter: 27 Gas limit: 1994 Storage limit: 0 bytes Balance updates: @@ -1172,7 +1172,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","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]' Node is bootstrapped. Estimated gas: 1893.864 units (will add 100 for safety) Estimated storage: no bytes added @@ -1186,7 +1186,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000805 - Expected counter: 29 + Expected counter: 28 Gas limit: 1994 Storage limit: 0 bytes Balance updates: @@ -1215,7 +1215,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","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]' Node is bootstrapped. Estimated gas: 1894.460 units (will add 100 for safety) Estimated storage: no bytes added @@ -1229,7 +1229,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000817 - Expected counter: 30 + Expected counter: 29 Gas limit: 1995 Storage limit: 0 bytes Balance updates: @@ -1258,7 +1258,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","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]' Node is bootstrapped. Estimated gas: 1895.056 units (will add 100 for safety) Estimated storage: no bytes added @@ -1272,7 +1272,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000829 - Expected counter: 31 + Expected counter: 30 Gas limit: 1996 Storage limit: 0 bytes Balance updates: diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (robust_.out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (robust_.out index 6a35e729e3f2..1a70bae79c02 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (robust_.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (robust_.out @@ -1,5 +1,5 @@ -./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 +./tezos-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.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) @@ -37,7 +37,7 @@ This sequence of operations was run: { "level": 2, "commitment_hash": "[SC_ROLLUP_COMMITMENT_HASH]" } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1876.722 units (will add 100 for safety) Estimated storage: no bytes added @@ -51,7 +51,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000479 - Expected counter: 2 + Expected counter: 1 Gas limit: 1977 Storage limit: 0 bytes Balance updates: @@ -76,7 +76,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-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 @@ -90,7 +90,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000491 - Expected counter: 3 + Expected counter: 2 Gas limit: 1978 Storage limit: 0 bytes Balance updates: @@ -116,7 +116,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1878.343 units (will add 100 for safety) Estimated storage: no bytes added @@ -130,7 +130,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000503 - Expected counter: 4 + Expected counter: 3 Gas limit: 1979 Storage limit: 0 bytes Balance updates: @@ -156,7 +156,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1878.939 units (will add 100 for safety) Estimated storage: no bytes added @@ -170,7 +170,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000515 - Expected counter: 5 + Expected counter: 4 Gas limit: 1979 Storage limit: 0 bytes Balance updates: @@ -197,7 +197,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.742 units (will add 100 for safety) Estimated storage: no bytes added @@ -211,7 +211,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000527 - Expected counter: 6 + Expected counter: 5 Gas limit: 1980 Storage limit: 0 bytes Balance updates: @@ -238,7 +238,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1880.338 units (will add 100 for safety) Estimated storage: no bytes added @@ -252,7 +252,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.00054 - Expected counter: 7 + Expected counter: 6 Gas limit: 1981 Storage limit: 0 bytes Balance updates: @@ -279,7 +279,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1880.934 units (will add 100 for safety) Estimated storage: no bytes added @@ -293,7 +293,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000552 - Expected counter: 8 + Expected counter: 7 Gas limit: 1981 Storage limit: 0 bytes Balance updates: @@ -320,7 +320,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1881.530 units (will add 100 for safety) Estimated storage: no bytes added @@ -334,7 +334,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000564 - Expected counter: 9 + Expected counter: 8 Gas limit: 1982 Storage limit: 0 bytes Balance updates: @@ -362,7 +362,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1882.333 units (will add 100 for safety) Estimated storage: no bytes added @@ -376,7 +376,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000576 - Expected counter: 10 + Expected counter: 9 Gas limit: 1983 Storage limit: 0 bytes Balance updates: @@ -404,7 +404,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1882.929 units (will add 100 for safety) Estimated storage: no bytes added @@ -418,7 +418,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000588 - Expected counter: 11 + Expected counter: 10 Gas limit: 1983 Storage limit: 0 bytes Balance updates: @@ -446,7 +446,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-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]' Node is bootstrapped. Estimated gas: 1883.525 units (will add 100 for safety) Estimated storage: no bytes added @@ -460,7 +460,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.0006 - Expected counter: 12 + Expected counter: 11 Gas limit: 1984 Storage limit: 0 bytes Balance updates: @@ -488,7 +488,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-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]' Node is bootstrapped. Estimated gas: 1884.121 units (will add 100 for safety) Estimated storage: no bytes added @@ -502,7 +502,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000612 - Expected counter: 13 + Expected counter: 12 Gas limit: 1985 Storage limit: 0 bytes Balance updates: @@ -530,7 +530,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-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]' Node is bootstrapped. Estimated gas: 1884.717 units (will add 100 for safety) Estimated storage: no bytes added @@ -544,7 +544,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000624 - Expected counter: 14 + Expected counter: 13 Gas limit: 1985 Storage limit: 0 bytes Balance updates: @@ -572,7 +572,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-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]' Node is bootstrapped. Estimated gas: 1885.313 units (will add 100 for safety) Estimated storage: no bytes added @@ -586,7 +586,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000636 - Expected counter: 15 + Expected counter: 14 Gas limit: 1986 Storage limit: 0 bytes Balance updates: @@ -614,7 +614,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-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]' Node is bootstrapped. Estimated gas: 1885.909 units (will add 100 for safety) Estimated storage: no bytes added @@ -628,7 +628,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000648 - Expected counter: 16 + Expected counter: 15 Gas limit: 1986 Storage limit: 0 bytes Balance updates: @@ -656,7 +656,7 @@ This sequence of operations was run: } -./tezos-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 bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-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]' Node is bootstrapped. Estimated gas: 1886.505 units (will add 100 for safety) Estimated storage: no bytes added @@ -670,7 +670,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.00066 - Expected counter: 17 + Expected counter: 16 Gas limit: 1987 Storage limit: 0 bytes Balance updates: @@ -699,7 +699,7 @@ This sequence of operations was run: } -./tezos-client --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 bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --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]' Node is bootstrapped. Estimated gas: 1887.308 units (will add 100 for safety) Estimated storage: no bytes added @@ -713,7 +713,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000672 - Expected counter: 18 + Expected counter: 17 Gas limit: 1988 Storage limit: 0 bytes Balance updates: @@ -742,7 +742,7 @@ This sequence of operations was run: } -./tezos-client --wait 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 bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait 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]' Node is bootstrapped. Estimated gas: 1887.904 units (will add 100 for safety) Estimated storage: no bytes added @@ -756,7 +756,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000684 - Expected counter: 19 + Expected counter: 18 Gas limit: 1988 Storage limit: 0 bytes Balance updates: @@ -785,7 +785,7 @@ This sequence of operations was run: } -./tezos-client --wait none 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 bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none 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]' Node is bootstrapped. Estimated gas: 1888.500 units (will add 100 for safety) Estimated storage: no bytes added @@ -799,7 +799,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000696 - Expected counter: 20 + Expected counter: 19 Gas limit: 1989 Storage limit: 0 bytes Balance updates: @@ -828,7 +828,7 @@ This sequence of operations was run: } -./tezos-client --wait none send 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 bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send 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]' Node is bootstrapped. Estimated gas: 1889.096 units (will add 100 for safety) Estimated storage: no bytes added @@ -842,7 +842,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000708 - Expected counter: 21 + Expected counter: 20 Gas limit: 1990 Storage limit: 0 bytes Balance updates: @@ -871,7 +871,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc 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 bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc 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]' Node is bootstrapped. Estimated gas: 1889.692 units (will add 100 for safety) Estimated storage: no bytes added @@ -885,7 +885,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.00072 - Expected counter: 22 + Expected counter: 21 Gas limit: 1990 Storage limit: 0 bytes Balance updates: @@ -914,7 +914,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup 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 bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup 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]' Node is bootstrapped. Estimated gas: 1890.288 units (will add 100 for safety) Estimated storage: no bytes added @@ -928,7 +928,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000733 - Expected counter: 23 + Expected counter: 22 Gas limit: 1991 Storage limit: 0 bytes Balance updates: @@ -957,7 +957,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message '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 bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message '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]' Node is bootstrapped. Estimated gas: 1890.884 units (will add 100 for safety) Estimated storage: no bytes added @@ -971,7 +971,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000745 - Expected counter: 24 + Expected counter: 23 Gas limit: 1991 Storage limit: 0 bytes Balance updates: @@ -1000,7 +1000,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","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]' Node is bootstrapped. Estimated gas: 1891.480 units (will add 100 for safety) Estimated storage: no bytes added @@ -1014,7 +1014,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000757 - Expected counter: 25 + Expected counter: 24 Gas limit: 1992 Storage limit: 0 bytes Balance updates: @@ -1043,7 +1043,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","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]' Node is bootstrapped. Estimated gas: 1892.076 units (will add 100 for safety) Estimated storage: no bytes added @@ -1057,7 +1057,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000769 - Expected counter: 26 + Expected counter: 25 Gas limit: 1993 Storage limit: 0 bytes Balance updates: @@ -1086,7 +1086,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","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]' Node is bootstrapped. Estimated gas: 1892.672 units (will add 100 for safety) Estimated storage: no bytes added @@ -1100,7 +1100,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000781 - Expected counter: 27 + Expected counter: 26 Gas limit: 1993 Storage limit: 0 bytes Balance updates: @@ -1129,7 +1129,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","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]' Node is bootstrapped. Estimated gas: 1893.268 units (will add 100 for safety) Estimated storage: no bytes added @@ -1143,7 +1143,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000793 - Expected counter: 28 + Expected counter: 27 Gas limit: 1994 Storage limit: 0 bytes Balance updates: @@ -1172,7 +1172,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","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]' Node is bootstrapped. Estimated gas: 1893.864 units (will add 100 for safety) Estimated storage: no bytes added @@ -1186,7 +1186,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000805 - Expected counter: 29 + Expected counter: 28 Gas limit: 1994 Storage limit: 0 bytes Balance updates: @@ -1215,7 +1215,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","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]' Node is bootstrapped. Estimated gas: 1894.460 units (will add 100 for safety) Estimated storage: no bytes added @@ -1229,7 +1229,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000817 - Expected counter: 30 + Expected counter: 29 Gas limit: 1995 Storage limit: 0 bytes Balance updates: @@ -1258,7 +1258,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","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]' Node is bootstrapped. Estimated gas: 1895.056 units (will add 100 for safety) Estimated storage: no bytes added @@ -1272,7 +1272,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000829 - Expected counter: 31 + Expected counter: 30 Gas limit: 1996 Storage limit: 0 bytes Balance updates: diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct maintenance of inbox in the rollup node (basic).out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct maintenance of inbox in the rollup node (basic).out index 04c570d2fece..2bd0cfbeacc7 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct maintenance of inbox in the rollup node (basic).out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct maintenance of inbox in the rollup node (basic).out @@ -33,7 +33,7 @@ This sequence of operations was run: storage fees ........................... +ꜩ1.663 -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1876.722 units (will add 100 for safety) Estimated storage: no bytes added @@ -47,7 +47,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000479 - Expected counter: 2 + Expected counter: 1 Gas limit: 1977 Storage limit: 0 bytes Balance updates: @@ -72,7 +72,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-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 @@ -86,7 +86,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000491 - Expected counter: 3 + Expected counter: 2 Gas limit: 1978 Storage limit: 0 bytes Balance updates: diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct maintenance of inbox in the rollup node (handles_ch.out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct maintenance of inbox in the rollup node (handles_ch.out index f36d7dca0ab0..2f183a64c4d9 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct maintenance of inbox in the rollup node (handles_ch.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct maintenance of inbox in the rollup node (handles_ch.out @@ -33,7 +33,7 @@ This sequence of operations was run: storage fees ........................... +ꜩ1.663 -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1876.722 units (will add 100 for safety) Estimated storage: no bytes added @@ -47,7 +47,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000479 - Expected counter: 2 + Expected counter: 1 Gas limit: 1977 Storage limit: 0 bytes Balance updates: @@ -72,7 +72,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1876.944 units (will add 100 for safety) Estimated storage: no bytes added @@ -86,7 +86,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000479 - Expected counter: 3 + Expected counter: 2 Gas limit: 1977 Storage limit: 0 bytes Balance updates: @@ -112,7 +112,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1876.944 units (will add 100 for safety) Estimated storage: no bytes added @@ -126,7 +126,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000479 - Expected counter: 3 + Expected counter: 2 Gas limit: 1977 Storage limit: 0 bytes Balance updates: @@ -152,7 +152,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1877.151 units (will add 100 for safety) Estimated storage: no bytes added @@ -166,7 +166,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000479 - Expected counter: 4 + Expected counter: 3 Gas limit: 1978 Storage limit: 0 bytes Balance updates: diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct maintenance of inbox in the rollup node (stops).out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct maintenance of inbox in the rollup node (stops).out index dc866ff81259..a6b0eafd4d8b 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct maintenance of inbox in the rollup node (stops).out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct maintenance of inbox in the rollup node (stops).out @@ -33,7 +33,7 @@ This sequence of operations was run: storage fees ........................... +ꜩ1.663 -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1876.722 units (will add 100 for safety) Estimated storage: no bytes added @@ -47,7 +47,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000479 - Expected counter: 2 + Expected counter: 1 Gas limit: 1977 Storage limit: 0 bytes Balance updates: @@ -72,7 +72,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-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 @@ -86,7 +86,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000491 - Expected counter: 3 + Expected counter: 2 Gas limit: 1978 Storage limit: 0 bytes Balance updates: @@ -112,7 +112,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1877.151 units (will add 100 for safety) Estimated storage: no bytes added @@ -126,7 +126,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000479 - Expected counter: 4 + Expected counter: 3 Gas limit: 1978 Storage limit: 0 bytes Balance updates: @@ -152,7 +152,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1877.747 units (will add 100 for safety) Estimated storage: no bytes added @@ -166,7 +166,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000491 - Expected counter: 5 + Expected counter: 4 Gas limit: 1978 Storage limit: 0 bytes Balance updates: diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (inbox_proof).out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (inbox_proof).out index e9498c3a5b07..d03236cbf2e9 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (inbox_proof).out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (inbox_proof).out @@ -1,5 +1,5 @@ -./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 +./tezos-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.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) @@ -33,7 +33,7 @@ This sequence of operations was run: storage fees ........................... +ꜩ1.663 -./tezos-client --wait none send sc rollup message 'text:["3 3 +","1","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["3 3 +","1","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1878.919 units (will add 100 for safety) Estimated storage: no bytes added @@ -47,7 +47,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 2 + Expected counter: 1 Gas limit: 1979 Storage limit: 0 bytes Balance updates: @@ -72,7 +72,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","3 3 +","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","3 3 +","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.269 units (will add 100 for safety) Estimated storage: no bytes added @@ -86,7 +86,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 3 + Expected counter: 2 Gas limit: 1980 Storage limit: 0 bytes Balance updates: @@ -112,7 +112,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 3 +","3 7 8 + * y","2 2 out"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 3 +","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.348 units (will add 100 for safety) Estimated storage: no bytes added @@ -126,7 +126,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 4 + Expected counter: 3 Gas limit: 1980 Storage limit: 0 bytes Balance updates: @@ -152,7 +152,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","3 3 +","2 2 out"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","3 3 +","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.491 units (will add 100 for safety) Estimated storage: no bytes added @@ -166,7 +166,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 5 + Expected counter: 4 Gas limit: 1980 Storage limit: 0 bytes Balance updates: @@ -193,7 +193,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.555 units (will add 100 for safety) Estimated storage: no bytes added @@ -207,7 +207,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 6 + Expected counter: 5 Gas limit: 1980 Storage limit: 0 bytes Balance updates: @@ -234,7 +234,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added @@ -248,7 +248,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 7 + Expected counter: 6 Gas limit: 1980 Storage limit: 0 bytes Balance updates: @@ -275,7 +275,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added @@ -289,7 +289,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 8 + Expected counter: 7 Gas limit: 1980 Storage limit: 0 bytes Balance updates: @@ -316,7 +316,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.698 units (will add 100 for safety) Estimated storage: no bytes added @@ -330,7 +330,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 9 + Expected counter: 8 Gas limit: 1980 Storage limit: 0 bytes Balance updates: @@ -358,7 +358,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.762 units (will add 100 for safety) Estimated storage: no bytes added @@ -372,7 +372,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 10 + Expected counter: 9 Gas limit: 1980 Storage limit: 0 bytes Balance updates: @@ -400,7 +400,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.777 units (will add 100 for safety) Estimated storage: no bytes added @@ -414,7 +414,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 11 + Expected counter: 10 Gas limit: 1980 Storage limit: 0 bytes Balance updates: diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (inbox_proof_at_genesi.out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (inbox_proof_at_genesi.out index e9498c3a5b07..d03236cbf2e9 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (inbox_proof_at_genesi.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (inbox_proof_at_genesi.out @@ -1,5 +1,5 @@ -./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 +./tezos-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.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) @@ -33,7 +33,7 @@ This sequence of operations was run: storage fees ........................... +ꜩ1.663 -./tezos-client --wait none send sc rollup message 'text:["3 3 +","1","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["3 3 +","1","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1878.919 units (will add 100 for safety) Estimated storage: no bytes added @@ -47,7 +47,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 2 + Expected counter: 1 Gas limit: 1979 Storage limit: 0 bytes Balance updates: @@ -72,7 +72,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","3 3 +","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","3 3 +","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.269 units (will add 100 for safety) Estimated storage: no bytes added @@ -86,7 +86,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 3 + Expected counter: 2 Gas limit: 1980 Storage limit: 0 bytes Balance updates: @@ -112,7 +112,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 3 +","3 7 8 + * y","2 2 out"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 3 +","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.348 units (will add 100 for safety) Estimated storage: no bytes added @@ -126,7 +126,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 4 + Expected counter: 3 Gas limit: 1980 Storage limit: 0 bytes Balance updates: @@ -152,7 +152,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","3 3 +","2 2 out"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","3 3 +","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.491 units (will add 100 for safety) Estimated storage: no bytes added @@ -166,7 +166,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 5 + Expected counter: 4 Gas limit: 1980 Storage limit: 0 bytes Balance updates: @@ -193,7 +193,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.555 units (will add 100 for safety) Estimated storage: no bytes added @@ -207,7 +207,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 6 + Expected counter: 5 Gas limit: 1980 Storage limit: 0 bytes Balance updates: @@ -234,7 +234,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added @@ -248,7 +248,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 7 + Expected counter: 6 Gas limit: 1980 Storage limit: 0 bytes Balance updates: @@ -275,7 +275,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added @@ -289,7 +289,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 8 + Expected counter: 7 Gas limit: 1980 Storage limit: 0 bytes Balance updates: @@ -316,7 +316,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.698 units (will add 100 for safety) Estimated storage: no bytes added @@ -330,7 +330,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 9 + Expected counter: 8 Gas limit: 1980 Storage limit: 0 bytes Balance updates: @@ -358,7 +358,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.762 units (will add 100 for safety) Estimated storage: no bytes added @@ -372,7 +372,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 10 + Expected counter: 9 Gas limit: 1980 Storage limit: 0 bytes Balance updates: @@ -400,7 +400,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.777 units (will add 100 for safety) Estimated storage: no bytes added @@ -414,7 +414,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 11 + Expected counter: 10 Gas limit: 1980 Storage limit: 0 bytes Balance updates: diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (inbox_proof_many_empt.out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (inbox_proof_many_empt.out index 5212f78ae520..86fcf8aec463 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (inbox_proof_many_empt.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (inbox_proof_many_empt.out @@ -1,5 +1,5 @@ -./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 +./tezos-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.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) @@ -33,7 +33,7 @@ This sequence of operations was run: storage fees ........................... +ꜩ1.663 -./tezos-client --wait none send sc rollup message 'text:["3 3 +","1","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["3 3 +","1","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.047 units (will add 100 for safety) Estimated storage: no bytes added @@ -47,7 +47,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 2 + Expected counter: 1 Gas limit: 1980 Storage limit: 0 bytes Balance updates: @@ -72,7 +72,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","3 3 +","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","3 3 +","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.299 units (will add 100 for safety) Estimated storage: no bytes added @@ -86,7 +86,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 3 + Expected counter: 2 Gas limit: 1980 Storage limit: 0 bytes Balance updates: @@ -112,7 +112,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 3 +","3 7 8 + * y","2 2 out"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 3 +","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.363 units (will add 100 for safety) Estimated storage: no bytes added @@ -126,7 +126,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 4 + Expected counter: 3 Gas limit: 1980 Storage limit: 0 bytes Balance updates: @@ -152,7 +152,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","3 3 +","2 2 out"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","3 3 +","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.506 units (will add 100 for safety) Estimated storage: no bytes added @@ -166,7 +166,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 5 + Expected counter: 4 Gas limit: 1980 Storage limit: 0 bytes Balance updates: @@ -193,7 +193,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added @@ -207,7 +207,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 6 + Expected counter: 5 Gas limit: 1980 Storage limit: 0 bytes Balance updates: @@ -234,7 +234,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added @@ -248,7 +248,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 7 + Expected counter: 6 Gas limit: 1980 Storage limit: 0 bytes Balance updates: @@ -275,7 +275,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added @@ -289,7 +289,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 8 + Expected counter: 7 Gas limit: 1980 Storage limit: 0 bytes Balance updates: @@ -316,7 +316,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.713 units (will add 100 for safety) Estimated storage: no bytes added @@ -330,7 +330,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 9 + Expected counter: 8 Gas limit: 1980 Storage limit: 0 bytes Balance updates: @@ -358,7 +358,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.777 units (will add 100 for safety) Estimated storage: no bytes added @@ -372,7 +372,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 10 + Expected counter: 9 Gas limit: 1980 Storage limit: 0 bytes Balance updates: @@ -400,7 +400,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.777 units (will add 100 for safety) Estimated storage: no bytes added @@ -414,7 +414,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 11 + Expected counter: 10 Gas limit: 1980 Storage limit: 0 bytes Balance updates: diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (inbox_proof_one_empty.out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (inbox_proof_one_empty.out index c4f2da626564..8f980c92bd12 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (inbox_proof_one_empty.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (inbox_proof_one_empty.out @@ -1,5 +1,5 @@ -./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 +./tezos-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.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) @@ -33,7 +33,7 @@ This sequence of operations was run: storage fees ........................... +ꜩ1.663 -./tezos-client --wait none send sc rollup message 'text:["3 3 +","1","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["3 3 +","1","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.047 units (will add 100 for safety) Estimated storage: no bytes added @@ -47,7 +47,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 2 + Expected counter: 1 Gas limit: 1980 Storage limit: 0 bytes Balance updates: @@ -72,7 +72,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","3 3 +","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","3 3 +","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.284 units (will add 100 for safety) Estimated storage: no bytes added @@ -86,7 +86,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 3 + Expected counter: 2 Gas limit: 1980 Storage limit: 0 bytes Balance updates: @@ -112,7 +112,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 3 +","3 7 8 + * y","2 2 out"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 3 +","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.363 units (will add 100 for safety) Estimated storage: no bytes added @@ -126,7 +126,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 4 + Expected counter: 3 Gas limit: 1980 Storage limit: 0 bytes Balance updates: @@ -152,7 +152,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","3 3 +","2 2 out"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","3 3 +","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.491 units (will add 100 for safety) Estimated storage: no bytes added @@ -166,7 +166,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 5 + Expected counter: 4 Gas limit: 1980 Storage limit: 0 bytes Balance updates: @@ -193,7 +193,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added @@ -207,7 +207,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 6 + Expected counter: 5 Gas limit: 1980 Storage limit: 0 bytes Balance updates: @@ -234,7 +234,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added @@ -248,7 +248,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 7 + Expected counter: 6 Gas limit: 1980 Storage limit: 0 bytes Balance updates: @@ -275,7 +275,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added @@ -289,7 +289,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 8 + Expected counter: 7 Gas limit: 1980 Storage limit: 0 bytes Balance updates: @@ -316,7 +316,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.698 units (will add 100 for safety) Estimated storage: no bytes added @@ -330,7 +330,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 9 + Expected counter: 8 Gas limit: 1980 Storage limit: 0 bytes Balance updates: @@ -358,7 +358,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.777 units (will add 100 for safety) Estimated storage: no bytes added @@ -372,7 +372,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 10 + Expected counter: 9 Gas limit: 1980 Storage limit: 0 bytes Balance updates: @@ -400,7 +400,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.777 units (will add 100 for safety) Estimated storage: no bytes added @@ -414,7 +414,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 11 + Expected counter: 10 Gas limit: 1980 Storage limit: 0 bytes Balance updates: diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (pvm_proof_0).out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (pvm_proof_0).out index e9498c3a5b07..d03236cbf2e9 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (pvm_proof_0).out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (pvm_proof_0).out @@ -1,5 +1,5 @@ -./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 +./tezos-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.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) @@ -33,7 +33,7 @@ This sequence of operations was run: storage fees ........................... +ꜩ1.663 -./tezos-client --wait none send sc rollup message 'text:["3 3 +","1","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["3 3 +","1","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1878.919 units (will add 100 for safety) Estimated storage: no bytes added @@ -47,7 +47,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 2 + Expected counter: 1 Gas limit: 1979 Storage limit: 0 bytes Balance updates: @@ -72,7 +72,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","3 3 +","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","3 3 +","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.269 units (will add 100 for safety) Estimated storage: no bytes added @@ -86,7 +86,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 3 + Expected counter: 2 Gas limit: 1980 Storage limit: 0 bytes Balance updates: @@ -112,7 +112,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 3 +","3 7 8 + * y","2 2 out"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 3 +","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.348 units (will add 100 for safety) Estimated storage: no bytes added @@ -126,7 +126,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 4 + Expected counter: 3 Gas limit: 1980 Storage limit: 0 bytes Balance updates: @@ -152,7 +152,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","3 3 +","2 2 out"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","3 3 +","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.491 units (will add 100 for safety) Estimated storage: no bytes added @@ -166,7 +166,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 5 + Expected counter: 4 Gas limit: 1980 Storage limit: 0 bytes Balance updates: @@ -193,7 +193,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.555 units (will add 100 for safety) Estimated storage: no bytes added @@ -207,7 +207,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 6 + Expected counter: 5 Gas limit: 1980 Storage limit: 0 bytes Balance updates: @@ -234,7 +234,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added @@ -248,7 +248,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 7 + Expected counter: 6 Gas limit: 1980 Storage limit: 0 bytes Balance updates: @@ -275,7 +275,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added @@ -289,7 +289,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 8 + Expected counter: 7 Gas limit: 1980 Storage limit: 0 bytes Balance updates: @@ -316,7 +316,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.698 units (will add 100 for safety) Estimated storage: no bytes added @@ -330,7 +330,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 9 + Expected counter: 8 Gas limit: 1980 Storage limit: 0 bytes Balance updates: @@ -358,7 +358,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.762 units (will add 100 for safety) Estimated storage: no bytes added @@ -372,7 +372,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 10 + Expected counter: 9 Gas limit: 1980 Storage limit: 0 bytes Balance updates: @@ -400,7 +400,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.777 units (will add 100 for safety) Estimated storage: no bytes added @@ -414,7 +414,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 11 + Expected counter: 10 Gas limit: 1980 Storage limit: 0 bytes Balance updates: diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (pvm_proof_1).out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (pvm_proof_1).out index e9498c3a5b07..d03236cbf2e9 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (pvm_proof_1).out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (pvm_proof_1).out @@ -1,5 +1,5 @@ -./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 +./tezos-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.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) @@ -33,7 +33,7 @@ This sequence of operations was run: storage fees ........................... +ꜩ1.663 -./tezos-client --wait none send sc rollup message 'text:["3 3 +","1","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["3 3 +","1","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1878.919 units (will add 100 for safety) Estimated storage: no bytes added @@ -47,7 +47,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 2 + Expected counter: 1 Gas limit: 1979 Storage limit: 0 bytes Balance updates: @@ -72,7 +72,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","3 3 +","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","3 3 +","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.269 units (will add 100 for safety) Estimated storage: no bytes added @@ -86,7 +86,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 3 + Expected counter: 2 Gas limit: 1980 Storage limit: 0 bytes Balance updates: @@ -112,7 +112,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 3 +","3 7 8 + * y","2 2 out"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 3 +","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.348 units (will add 100 for safety) Estimated storage: no bytes added @@ -126,7 +126,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 4 + Expected counter: 3 Gas limit: 1980 Storage limit: 0 bytes Balance updates: @@ -152,7 +152,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","3 3 +","2 2 out"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","3 3 +","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.491 units (will add 100 for safety) Estimated storage: no bytes added @@ -166,7 +166,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 5 + Expected counter: 4 Gas limit: 1980 Storage limit: 0 bytes Balance updates: @@ -193,7 +193,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.555 units (will add 100 for safety) Estimated storage: no bytes added @@ -207,7 +207,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 6 + Expected counter: 5 Gas limit: 1980 Storage limit: 0 bytes Balance updates: @@ -234,7 +234,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added @@ -248,7 +248,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 7 + Expected counter: 6 Gas limit: 1980 Storage limit: 0 bytes Balance updates: @@ -275,7 +275,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added @@ -289,7 +289,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 8 + Expected counter: 7 Gas limit: 1980 Storage limit: 0 bytes Balance updates: @@ -316,7 +316,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.698 units (will add 100 for safety) Estimated storage: no bytes added @@ -330,7 +330,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 9 + Expected counter: 8 Gas limit: 1980 Storage limit: 0 bytes Balance updates: @@ -358,7 +358,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.762 units (will add 100 for safety) Estimated storage: no bytes added @@ -372,7 +372,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 10 + Expected counter: 9 Gas limit: 1980 Storage limit: 0 bytes Balance updates: @@ -400,7 +400,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.777 units (will add 100 for safety) Estimated storage: no bytes added @@ -414,7 +414,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 11 + Expected counter: 10 Gas limit: 1980 Storage limit: 0 bytes Balance updates: diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (pvm_proof_2).out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (pvm_proof_2).out index ec284d1695bd..7db3b4732c4b 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (pvm_proof_2).out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (pvm_proof_2).out @@ -1,5 +1,5 @@ -./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 +./tezos-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.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) @@ -33,7 +33,7 @@ This sequence of operations was run: storage fees ........................... +ꜩ1.663 -./tezos-client --wait none send sc rollup message 'text:["3 3 +","1","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["3 3 +","1","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1878.919 units (will add 100 for safety) Estimated storage: no bytes added @@ -47,7 +47,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 2 + Expected counter: 1 Gas limit: 1979 Storage limit: 0 bytes Balance updates: @@ -72,7 +72,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","3 3 +","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","3 3 +","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.269 units (will add 100 for safety) Estimated storage: no bytes added @@ -86,7 +86,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 3 + Expected counter: 2 Gas limit: 1980 Storage limit: 0 bytes Balance updates: @@ -112,7 +112,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 3 +","3 7 8 + * y","2 2 out"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 3 +","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.348 units (will add 100 for safety) Estimated storage: no bytes added @@ -126,7 +126,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 4 + Expected counter: 3 Gas limit: 1980 Storage limit: 0 bytes Balance updates: @@ -152,7 +152,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","3 3 +","2 2 out"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","3 3 +","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.491 units (will add 100 for safety) Estimated storage: no bytes added @@ -166,7 +166,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 5 + Expected counter: 4 Gas limit: 1980 Storage limit: 0 bytes Balance updates: @@ -193,7 +193,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.555 units (will add 100 for safety) Estimated storage: no bytes added @@ -207,7 +207,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 6 + Expected counter: 5 Gas limit: 1980 Storage limit: 0 bytes Balance updates: @@ -234,7 +234,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added @@ -248,7 +248,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 7 + Expected counter: 6 Gas limit: 1980 Storage limit: 0 bytes Balance updates: @@ -275,7 +275,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added @@ -289,7 +289,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 8 + Expected counter: 7 Gas limit: 1980 Storage limit: 0 bytes Balance updates: diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (pvm_proof_3).out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (pvm_proof_3).out index 4a7ba79bd4c9..602dfc0fe982 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (pvm_proof_3).out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (pvm_proof_3).out @@ -1,5 +1,5 @@ -./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 +./tezos-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.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) @@ -33,7 +33,7 @@ This sequence of operations was run: storage fees ........................... +ꜩ1.663 -./tezos-client --wait none send sc rollup message 'text:["3 3 +","1","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["3 3 +","1","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1878.919 units (will add 100 for safety) Estimated storage: no bytes added @@ -47,7 +47,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 2 + Expected counter: 1 Gas limit: 1979 Storage limit: 0 bytes Balance updates: @@ -72,7 +72,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","3 3 +","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","3 3 +","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.269 units (will add 100 for safety) Estimated storage: no bytes added @@ -86,7 +86,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 3 + Expected counter: 2 Gas limit: 1980 Storage limit: 0 bytes Balance updates: @@ -112,7 +112,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 3 +","3 7 8 + * y","2 2 out"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 3 +","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.348 units (will add 100 for safety) Estimated storage: no bytes added @@ -126,7 +126,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 4 + Expected counter: 3 Gas limit: 1980 Storage limit: 0 bytes Balance updates: @@ -152,7 +152,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","3 3 +","2 2 out"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","3 3 +","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.491 units (will add 100 for safety) Estimated storage: no bytes added @@ -166,7 +166,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 5 + Expected counter: 4 Gas limit: 1980 Storage limit: 0 bytes Balance updates: @@ -193,7 +193,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added @@ -207,7 +207,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 6 + Expected counter: 5 Gas limit: 1980 Storage limit: 0 bytes Balance updates: @@ -234,7 +234,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added @@ -248,7 +248,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 7 + Expected counter: 6 Gas limit: 1980 Storage limit: 0 bytes Balance updates: @@ -275,7 +275,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added @@ -289,7 +289,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 8 + Expected counter: 7 Gas limit: 1980 Storage limit: 0 bytes Balance updates: diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (pvm_proof_at_genesis).out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (pvm_proof_at_genesis).out index e9498c3a5b07..d03236cbf2e9 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (pvm_proof_at_genesis).out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (pvm_proof_at_genesis).out @@ -1,5 +1,5 @@ -./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 +./tezos-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.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) @@ -33,7 +33,7 @@ This sequence of operations was run: storage fees ........................... +ꜩ1.663 -./tezos-client --wait none send sc rollup message 'text:["3 3 +","1","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["3 3 +","1","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1878.919 units (will add 100 for safety) Estimated storage: no bytes added @@ -47,7 +47,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 2 + Expected counter: 1 Gas limit: 1979 Storage limit: 0 bytes Balance updates: @@ -72,7 +72,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","3 3 +","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","3 3 +","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.269 units (will add 100 for safety) Estimated storage: no bytes added @@ -86,7 +86,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 3 + Expected counter: 2 Gas limit: 1980 Storage limit: 0 bytes Balance updates: @@ -112,7 +112,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 3 +","3 7 8 + * y","2 2 out"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 3 +","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.348 units (will add 100 for safety) Estimated storage: no bytes added @@ -126,7 +126,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 4 + Expected counter: 3 Gas limit: 1980 Storage limit: 0 bytes Balance updates: @@ -152,7 +152,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","3 3 +","2 2 out"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","3 3 +","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.491 units (will add 100 for safety) Estimated storage: no bytes added @@ -166,7 +166,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 5 + Expected counter: 4 Gas limit: 1980 Storage limit: 0 bytes Balance updates: @@ -193,7 +193,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.555 units (will add 100 for safety) Estimated storage: no bytes added @@ -207,7 +207,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 6 + Expected counter: 5 Gas limit: 1980 Storage limit: 0 bytes Balance updates: @@ -234,7 +234,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added @@ -248,7 +248,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 7 + Expected counter: 6 Gas limit: 1980 Storage limit: 0 bytes Balance updates: @@ -275,7 +275,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added @@ -289,7 +289,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 8 + Expected counter: 7 Gas limit: 1980 Storage limit: 0 bytes Balance updates: @@ -316,7 +316,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.698 units (will add 100 for safety) Estimated storage: no bytes added @@ -330,7 +330,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 9 + Expected counter: 8 Gas limit: 1980 Storage limit: 0 bytes Balance updates: @@ -358,7 +358,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.762 units (will add 100 for safety) Estimated storage: no bytes added @@ -372,7 +372,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 10 + Expected counter: 9 Gas limit: 1980 Storage limit: 0 bytes Balance updates: @@ -400,7 +400,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.777 units (will add 100 for safety) Estimated storage: no bytes added @@ -414,7 +414,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 11 + Expected counter: 10 Gas limit: 1980 Storage limit: 0 bytes Balance updates: diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (timeout).out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (timeout).out index e9498c3a5b07..d03236cbf2e9 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (timeout).out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (timeout).out @@ -1,5 +1,5 @@ -./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 +./tezos-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.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) @@ -33,7 +33,7 @@ This sequence of operations was run: storage fees ........................... +ꜩ1.663 -./tezos-client --wait none send sc rollup message 'text:["3 3 +","1","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["3 3 +","1","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1878.919 units (will add 100 for safety) Estimated storage: no bytes added @@ -47,7 +47,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 2 + Expected counter: 1 Gas limit: 1979 Storage limit: 0 bytes Balance updates: @@ -72,7 +72,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","3 3 +","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","3 3 +","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.269 units (will add 100 for safety) Estimated storage: no bytes added @@ -86,7 +86,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 3 + Expected counter: 2 Gas limit: 1980 Storage limit: 0 bytes Balance updates: @@ -112,7 +112,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 3 +","3 7 8 + * y","2 2 out"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 3 +","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.348 units (will add 100 for safety) Estimated storage: no bytes added @@ -126,7 +126,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 4 + Expected counter: 3 Gas limit: 1980 Storage limit: 0 bytes Balance updates: @@ -152,7 +152,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","3 3 +","2 2 out"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","3 3 +","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.491 units (will add 100 for safety) Estimated storage: no bytes added @@ -166,7 +166,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 5 + Expected counter: 4 Gas limit: 1980 Storage limit: 0 bytes Balance updates: @@ -193,7 +193,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.555 units (will add 100 for safety) Estimated storage: no bytes added @@ -207,7 +207,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 6 + Expected counter: 5 Gas limit: 1980 Storage limit: 0 bytes Balance updates: @@ -234,7 +234,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added @@ -248,7 +248,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 7 + Expected counter: 6 Gas limit: 1980 Storage limit: 0 bytes Balance updates: @@ -275,7 +275,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added @@ -289,7 +289,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 8 + Expected counter: 7 Gas limit: 1980 Storage limit: 0 bytes Balance updates: @@ -316,7 +316,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.698 units (will add 100 for safety) Estimated storage: no bytes added @@ -330,7 +330,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 9 + Expected counter: 8 Gas limit: 1980 Storage limit: 0 bytes Balance updates: @@ -358,7 +358,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.762 units (will add 100 for safety) Estimated storage: no bytes added @@ -372,7 +372,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 10 + Expected counter: 9 Gas limit: 1980 Storage limit: 0 bytes Balance updates: @@ -400,7 +400,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.777 units (will add 100 for safety) Estimated storage: no bytes added @@ -414,7 +414,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000516 - Expected counter: 11 + Expected counter: 10 Gas limit: 1980 Storage limit: 0 bytes Balance updates: diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- pushing messages in the inbox - check inbox size.out b/tezt/tests/expected/sc_rollup.ml/Alpha- pushing messages in the inbox - check inbox size.out index d0b484b66afa..304cad53e1c8 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- pushing messages in the inbox - check inbox size.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- pushing messages in the inbox - check inbox size.out @@ -33,7 +33,7 @@ This sequence of operations was run: storage fees ........................... +ꜩ1.663 -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1876.722 units (will add 100 for safety) Estimated storage: no bytes added @@ -47,7 +47,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000479 - Expected counter: 2 + Expected counter: 1 Gas limit: 1977 Storage limit: 0 bytes Balance updates: @@ -72,7 +72,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-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 @@ -86,7 +86,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000491 - Expected counter: 3 + Expected counter: 2 Gas limit: 1978 Storage limit: 0 bytes Balance updates: @@ -112,7 +112,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1878.343 units (will add 100 for safety) Estimated storage: no bytes added @@ -126,7 +126,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000503 - Expected counter: 4 + Expected counter: 3 Gas limit: 1979 Storage limit: 0 bytes Balance updates: @@ -152,7 +152,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1878.939 units (will add 100 for safety) Estimated storage: no bytes added @@ -166,7 +166,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000515 - Expected counter: 5 + Expected counter: 4 Gas limit: 1979 Storage limit: 0 bytes Balance updates: @@ -193,7 +193,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.742 units (will add 100 for safety) Estimated storage: no bytes added @@ -207,7 +207,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000527 - Expected counter: 6 + Expected counter: 5 Gas limit: 1980 Storage limit: 0 bytes Balance updates: @@ -234,7 +234,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1880.338 units (will add 100 for safety) Estimated storage: no bytes added @@ -248,7 +248,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.00054 - Expected counter: 7 + Expected counter: 6 Gas limit: 1981 Storage limit: 0 bytes Balance updates: @@ -275,7 +275,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1880.934 units (will add 100 for safety) Estimated storage: no bytes added @@ -289,7 +289,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000552 - Expected counter: 8 + Expected counter: 7 Gas limit: 1981 Storage limit: 0 bytes Balance updates: @@ -316,7 +316,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1881.530 units (will add 100 for safety) Estimated storage: no bytes added @@ -330,7 +330,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000564 - Expected counter: 9 + Expected counter: 8 Gas limit: 1982 Storage limit: 0 bytes Balance updates: @@ -358,7 +358,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1882.333 units (will add 100 for safety) Estimated storage: no bytes added @@ -372,7 +372,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000576 - Expected counter: 10 + Expected counter: 9 Gas limit: 1983 Storage limit: 0 bytes Balance updates: @@ -400,7 +400,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1882.929 units (will add 100 for safety) Estimated storage: no bytes added @@ -414,7 +414,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000588 - Expected counter: 11 + Expected counter: 10 Gas limit: 1983 Storage limit: 0 bytes Balance updates: diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- pushing messages in the inbox - current messages hash.out b/tezt/tests/expected/sc_rollup.ml/Alpha- pushing messages in the inbox - current messages hash.out index d7c7e23158a0..57536e549711 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- pushing messages in the inbox - current messages hash.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- pushing messages in the inbox - current messages hash.out @@ -33,7 +33,7 @@ This sequence of operations was run: storage fees ........................... +ꜩ1.663 -./tezos-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 bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-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 @@ -47,7 +47,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000603 - Expected counter: 2 + Expected counter: 1 Gas limit: 1981 Storage limit: 0 bytes Balance updates: @@ -72,7 +72,7 @@ This sequence of operations was run: } -./tezos-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 bootstrap1 to '[SC_ROLLUP_HASH]' +./tezos-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 @@ -86,7 +86,7 @@ This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000631 - Expected counter: 3 + Expected counter: 2 Gas limit: 1982 Storage limit: 0 bytes Balance updates: -- GitLab From 5cdbe7871b09217ca2a989e91c131cb8ed425d42 Mon Sep 17 00:00:00 2001 From: Alain Mebsout Date: Mon, 25 Jul 2022 09:45:55 +0200 Subject: [PATCH 13/13] SCORU,Node: description of modes on command line --- src/proto_alpha/bin_sc_rollup_node/configuration.ml | 11 +++++++++++ .../bin_sc_rollup_node/configuration.mli | 3 +++ .../bin_sc_rollup_node/main_sc_rollup_node_alpha.ml | 13 ++++++++++--- 3 files changed, 24 insertions(+), 3 deletions(-) diff --git a/src/proto_alpha/bin_sc_rollup_node/configuration.ml b/src/proto_alpha/bin_sc_rollup_node/configuration.ml index 58e4117bb86f..6594e13e3297 100644 --- a/src/proto_alpha/bin_sc_rollup_node/configuration.ml +++ b/src/proto_alpha/bin_sc_rollup_node/configuration.ml @@ -250,6 +250,17 @@ let mode_of_string = function | "custom" -> Ok Custom | _ -> Error [Exn (Failure "Invalid mode")] +let description_of_mode = function + | Observer -> "Only follows the chain, reconstructs and interprets inboxes" + | Batcher -> + "Accepts transactions in its queue and batches them on the L1 (TODO)" + | Maintenance -> + "Follows the chain and publishes commitments, cement and refute" + | Operator -> "Equivalent to maintenance + batcher" + | Custom -> + "In this mode, only operations that have a corresponding operator/signer \ + are injected" + let mode_encoding = Data_encoding.string_enum [ diff --git a/src/proto_alpha/bin_sc_rollup_node/configuration.mli b/src/proto_alpha/bin_sc_rollup_node/configuration.mli index f8b8b1b2cafd..6dba302e099f 100644 --- a/src/proto_alpha/bin_sc_rollup_node/configuration.mli +++ b/src/proto_alpha/bin_sc_rollup_node/configuration.mli @@ -91,6 +91,9 @@ val string_of_mode : mode -> string (** [mode_of_string s] returns the mode represented by string [s] if it exists. *) val mode_of_string : string -> mode tzresult +(** [description_of_mode m] returns a textual description of the mode [m]. *) +val description_of_mode : mode -> string + (** [filename configuration] returns the [configuration] filename. *) val filename : t -> string diff --git a/src/proto_alpha/bin_sc_rollup_node/main_sc_rollup_node_alpha.ml b/src/proto_alpha/bin_sc_rollup_node/main_sc_rollup_node_alpha.ml index 822517760e0e..e420411e094f 100644 --- a/src/proto_alpha/bin_sc_rollup_node/main_sc_rollup_node_alpha.ml +++ b/src/proto_alpha/bin_sc_rollup_node/main_sc_rollup_node_alpha.ml @@ -86,9 +86,16 @@ let mode_param = Clic.param ~name:"mode" ~desc: - (Printf.sprintf - "The mode for the rollup node (%s)" - (String.concat ", " possible_modes)) + (Format.asprintf + "@[The mode for the rollup node (%s)@,%a@]" + (String.concat ", " possible_modes) + (Format.pp_print_list (fun fmt mode -> + Format.fprintf + fmt + "- %s: %s" + (Configuration.string_of_mode mode) + (Configuration.description_of_mode mode))) + Configuration.modes) mode_parameter let rpc_addr_arg = -- GitLab