Skip to content

Commit

Permalink
Merge pull request #15985 from MinaProtocol/dkijania/merge_removal_be…
Browse files Browse the repository at this point in the history
…rkeley_to_dev

merge removal berkeley to dev
  • Loading branch information
georgeee committed Aug 28, 2024
2 parents 6ad3970 + daeb1b2 commit 48888b0
Show file tree
Hide file tree
Showing 14 changed files with 611 additions and 245 deletions.
50 changes: 50 additions & 0 deletions src/app/cli/src/init/client.ml
Original file line number Diff line number Diff line change
Expand Up @@ -2268,6 +2268,55 @@ let signature_kind =
in
Core.print_endline signature_kind_string )

let test_ledger_application =
Command.async ~summary:"Test ledger application"
(let%map_open.Command privkey_path = Cli_lib.Flag.privkey_read_path
and prev_block_path =
flag "--prev-block-path" ~doc:"FILE file with serialized block"
(optional string)
and ledger_path =
flag "--ledger-path" ~doc:"FILE directory with ledger DB"
(required string)
and num_txs =
flag "--num-txs"
~doc:"NN Number of transactions to create after preparatory rounds"
(required int)
and num_txs_per_round =
flag "--num-txs-per-round"
~doc:
"NN Number of transactions to create per preparatory round \
(default: 3)"
(optional int)
and rounds =
flag "--rounds" ~doc:"NN Number of preparatory rounds (default: 580)"
(optional int)
and first_partition_slots =
flag "--first-partition-slots"
~doc:
"NN Number of slots in first partition of scan state (default: 128)"
(optional int)
and max_depth =
flag "--max-depth" ~doc:"NN Maximum depth of masks (default: 290)"
(optional int)
and no_new_stack =
flag "--old-stack" ~doc:"Use is_new_stack: false (scan state)" no_arg
and has_second_partition =
flag "--has-second-partition"
~doc:"Assume there is a second partition (scan state)" no_arg
and tracing = flag "--tracing" ~doc:"Wrap test into tracing" no_arg
and no_masks = flag "--no-masks" ~doc:"Do not create masks" no_arg in
Cli_lib.Exceptions.handle_nicely
@@ fun () ->
let first_partition_slots =
Option.value ~default:128 first_partition_slots
in
let num_txs_per_round = Option.value ~default:3 num_txs_per_round in
let rounds = Option.value ~default:580 rounds in
let max_depth = Option.value ~default:290 max_depth in
Test_ledger_application.test ~privkey_path ~ledger_path ?prev_block_path
~first_partition_slots ~no_new_stack ~has_second_partition
~num_txs_per_round ~rounds ~no_masks ~max_depth ~tracing num_txs )

let itn_create_accounts =
Command.async ~summary:"Fund new accounts for incentivized testnet"
(let open Command.Param in
Expand Down Expand Up @@ -2433,6 +2482,7 @@ let ledger =
[ ("export", export_ledger)
; ("hash", hash_ledger)
; ("currency", currency_in_ledger)
; ("test-apply", test_ledger_application)
]

let libp2p =
Expand Down
2 changes: 2 additions & 0 deletions src/app/cli/src/init/dune
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
cohttp-async
graphql-async
mirage-crypto-ec
base_quickcheck
;;local libraries
bounded_types
snark_profiler_lib
Expand Down Expand Up @@ -122,6 +123,7 @@
string_sign
zkapp_command_builder
internal_tracing
transaction_snark_scan_state
)
(instrumentation (backend bisect_ppx))
(preprocessor_deps ../../../../../graphql_schema.json
Expand Down
219 changes: 219 additions & 0 deletions src/app/cli/src/init/test_ledger_application.ml
Original file line number Diff line number Diff line change
@@ -0,0 +1,219 @@
(* test_ledger_application.ml -- code to test application of transactions to a specific ledger *)

open Core_kernel
open Async_kernel
open Mina_ledger
open Mina_base
open Mina_state

let logger = Logger.create ()

let read_privkey privkey_path =
let password =
lazy (Secrets.Keypair.Terminal_stdin.prompt_password "Enter password: ")
in
match%map Secrets.Keypair.read ~privkey_path ~password with
| Ok keypair ->
keypair
| Error err ->
eprintf "Could not read the specified keypair: %s\n"
(Secrets.Privkey_error.to_string err) ;
exit 1

let mk_tx ~(constraint_constants : Genesis_constants.Constraint_constants.t)
keypair nonce =
let num_acc_updates = 8 in
let multispec : Transaction_snark.For_tests.Multiple_transfers_spec.t =
let fee_payer = None in
let receivers =
Quickcheck.random_value
~seed:(`Deterministic ("test-apply-" ^ Unsigned.UInt32.to_string nonce))
@@ Base_quickcheck.Generator.list_with_length ~length:num_acc_updates
@@ let%map.Base_quickcheck.Generator kp = Signature_lib.Keypair.gen in
(Signature_lib.Public_key.compress kp.public_key, Currency.Amount.zero)
in
let zkapp_account_keypairs = [] in
let new_zkapp_account = false in
let snapp_update = Account_update.Update.dummy in
let actions = [] in
let events = [] in
let call_data = Snark_params.Tick.Field.zero in
let preconditions = Some Account_update.Preconditions.accept in
{ fee = Currency.Fee.of_mina_int_exn 1
; sender = (keypair, nonce)
; fee_payer
; receivers
; amount =
Currency.Amount.(
scale
(of_fee constraint_constants.account_creation_fee)
num_acc_updates)
|> Option.value_exn ~here:[%here]
; zkapp_account_keypairs
; memo = Signed_command_memo.empty
; new_zkapp_account
; snapp_update
; actions
; events
; call_data
; preconditions
}
in
Transaction_snark.For_tests.multiple_transfers ~constraint_constants multispec

let generate_protocol_state_stub ~consensus_constants ~constraint_constants
ledger =
let open Staged_ledger_diff in
Protocol_state.negative_one
~genesis_ledger:(lazy ledger)
~genesis_epoch_data:None ~constraint_constants ~consensus_constants
~genesis_body_reference

let apply_txs ~constraint_constants ~first_partition_slots ~no_new_stack
~has_second_partition ~num_txs ~prev_protocol_state
~(keypair : Signature_lib.Keypair.t) ~i ledger =
let init_nonce =
let account_id = Account_id.of_public_key keypair.public_key in
let loc =
Ledger.location_of_account ledger account_id
|> Option.value_exn ~here:[%here]
in
let account = Ledger.get ledger loc |> Option.value_exn ~here:[%here] in
account.nonce
in
let to_nonce =
Fn.compose (Unsigned.UInt32.add init_nonce) Unsigned.UInt32.of_int
in
let mk_tx' = mk_tx ~constraint_constants keypair in
let fork_slot =
Option.value_map ~default:Mina_numbers.Global_slot_since_genesis.zero
~f:(fun f -> f.global_slot_since_genesis)
constraint_constants.fork
in
let prev_protocol_state_body_hash =
Protocol_state.body prev_protocol_state |> Protocol_state.Body.hash
in
let prev_protocol_state_hash =
(Protocol_state.hashes_with_body ~body_hash:prev_protocol_state_body_hash
prev_protocol_state )
.state_hash
in
let prev_state_view =
Protocol_state.body prev_protocol_state
|> Mina_state.Protocol_state.Body.view
in
let global_slot =
Protocol_state.consensus_state prev_protocol_state
|> Consensus.Data.Consensus_state.curr_global_slot
|> Mina_numbers.Global_slot_since_hard_fork.succ
|> Mina_numbers.Global_slot_since_hard_fork.to_int
|> Mina_numbers.Global_slot_span.of_int
|> Mina_numbers.Global_slot_since_genesis.add fork_slot
in
let zkapps = List.init num_txs ~f:(Fn.compose mk_tx' to_nonce) in
let pending_coinbase =
Pending_coinbase.create ~depth:constraint_constants.pending_coinbase_depth
()
|> Or_error.ok_exn
in
let zkapps' =
List.map zkapps ~f:(fun tx ->
{ With_status.data =
Mina_transaction.Transaction.Command (User_command.Zkapp_command tx)
; status = Applied
} )
in
let accounts_accessed =
List.fold_left ~init:Account_id.Set.empty zkapps ~f:(fun set txn ->
Account_id.Set.(
union set (of_list (Zkapp_command.accounts_referenced txn))) )
|> Set.to_list
in
Ledger.unsafe_preload_accounts_from_parent ledger accounts_accessed ;
let start = Time.now () in
match%map
Staged_ledger.Test_helpers.update_coinbase_stack_and_get_data_impl
~first_partition_slots ~is_new_stack:(not no_new_stack)
~no_second_partition:(not has_second_partition) ~constraint_constants
~logger ~global_slot ledger pending_coinbase zkapps' prev_state_view
(prev_protocol_state_hash, prev_protocol_state_body_hash)
with
| Ok (b, _, _, _, _) ->
let root = Ledger.merkle_root ledger in
printf
!"Result of application %d: %B (took %s): new root %s\n%!"
i b
Time.(Span.to_string @@ diff (now ()) start)
(Ledger_hash.to_base58_check root)
| Error e ->
eprintf
!"Error applying staged ledger: %s\n%!"
(Staged_ledger.Staged_ledger_error.to_string e) ;
exit 1

let test ~privkey_path ~ledger_path ?prev_block_path ~first_partition_slots
~no_new_stack ~has_second_partition ~num_txs_per_round ~rounds ~no_masks
~max_depth ~tracing num_txs_final =
O1trace.thread "mina"
@@ fun () ->
let%bind keypair = read_privkey privkey_path in
let constraint_constants =
Genesis_constants_compiled.Constraint_constants.t
in
let init_ledger =
Ledger.create ~directory_name:ledger_path
~depth:constraint_constants.ledger_depth ()
in
let prev_protocol_state =
let%map.Option prev_block_path = prev_block_path in
let prev_block_data = In_channel.read_all prev_block_path in
let prev_block =
Binable.of_string (module Mina_block.Stable.Latest) prev_block_data
in
Mina_block.header prev_block |> Mina_block.Header.protocol_state
in
let consensus_constants =
Consensus.Constants.create ~constraint_constants
~protocol_constants:Genesis_constants_compiled.t.protocol
in
let prev_protocol_state =
match prev_protocol_state with
| None ->
generate_protocol_state_stub ~consensus_constants ~constraint_constants
init_ledger
| Some p ->
p
in
let apply =
apply_txs ~constraint_constants ~first_partition_slots ~no_new_stack
~has_second_partition ~prev_protocol_state ~keypair
in
let mask_handler ledger =
if no_masks then Fn.const ledger
else
Fn.compose (Ledger.register_mask ledger)
@@ Ledger.Mask.create ~depth:constraint_constants.ledger_depth
in
let drop_old_ledger ledger =
if not no_masks then (
Ledger.commit ledger ;
Ledger.remove_and_reparent_exn ledger ledger )
in
let stop_tracing =
if tracing then (fun x -> Mina_tracing.stop () ; x) else ident
in
let init_root = Ledger.merkle_root init_ledger in
printf !"Init root %s\n%!" (Ledger_hash.to_base58_check init_root) ;
Deferred.List.fold (List.init rounds ~f:ident) ~init:(init_ledger, [])
~f:(fun (ledger, ledgers) i ->
let%bind () =
if tracing && i = 1 then Mina_tracing.start "." else Deferred.unit
in
List.hd (List.drop ledgers (max_depth - 1))
|> Option.iter ~f:drop_old_ledger ;
apply ~num_txs:num_txs_per_round ~i ledger
>>| mask_handler ledger
>>| Fn.flip Tuple2.create (ledger :: ledgers) )
>>| fst
>>= apply ~num_txs:num_txs_final ~i:rounds
>>| stop_tracing
28 changes: 13 additions & 15 deletions src/lib/cli_lib/commands.ml
Original file line number Diff line number Diff line change
Expand Up @@ -8,21 +8,19 @@ open Async

let generate_keypair =
Command.async ~summary:"Generate a new public, private keypair"
(let open Command.Let_syntax in
let%map_open privkey_path = Flag.privkey_write_path in
Exceptions.handle_nicely
@@ fun () ->
let env = Secrets.Keypair.env in
if Option.is_some (Sys.getenv env) then
eprintf "Using password from environment variable %s\n" env ;
let open Deferred.Let_syntax in
let kp = Keypair.create () in
let%bind () = Secrets.Keypair.Terminal_stdin.write_exn kp ~privkey_path in
printf "Keypair generated\nPublic key: %s\nRaw public key: %s\n"
( kp.public_key |> Public_key.compress
|> Public_key.Compressed.to_base58_check )
(Rosetta_coding.Coding.of_public_key kp.public_key) ;
exit 0)
(let%map_open.Command privkey_path = Flag.privkey_write_path in
Exceptions.handle_nicely
@@ fun () ->
let env = Secrets.Keypair.env in
if Option.is_some (Sys.getenv env) then
eprintf "Using password from environment variable %s\n" env ;
let kp = Keypair.create () in
let%bind () = Secrets.Keypair.Terminal_stdin.write_exn kp ~privkey_path in
printf "Keypair generated\nPublic key: %s\nRaw public key: %s\n"
( kp.public_key |> Public_key.compress
|> Public_key.Compressed.to_base58_check )
(Rosetta_coding.Coding.of_public_key kp.public_key) ;
exit 0 )

let validate_keypair =
Command.async ~summary:"Validate a public, private keypair"
Expand Down
3 changes: 2 additions & 1 deletion src/lib/merkle_ledger/any_ledger.ml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,8 @@ module Make_base (Inputs : Intf.Inputs.Intf) :

let get_at_index_exn (T ((module Base), t)) = Base.get_at_index_exn t

let set_batch (T ((module Base), t)) = Base.set_batch t
let set_batch ?hash_cache (T ((module Base), t)) =
Base.set_batch ?hash_cache t

let set (T ((module Base), t)) = Base.set t

Expand Down
3 changes: 2 additions & 1 deletion src/lib/merkle_ledger/intf.ml
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,8 @@ module Ledger = struct

val set : t -> Location.t -> account -> unit

val set_batch : t -> (Location.t * account) list -> unit
val set_batch :
?hash_cache:hash Addr.Map.t -> t -> (Location.t * account) list -> unit

val get_at_index_exn : t -> int -> account

Expand Down
3 changes: 2 additions & 1 deletion src/lib/merkle_ledger/null_ledger.ml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,8 @@ end = struct

let get_at_index_exn _t = failwith "get_at_index_exn: null ledgers are empty"

let set_batch _t = failwith "set_batch: null ledgers cannot be mutated"
let set_batch ?hash_cache:_ _t =
failwith "set_batch: null ledgers cannot be mutated"

let set _t = failwith "set: null ledgers cannot be mutated"

Expand Down
Loading

0 comments on commit 48888b0

Please sign in to comment.