ligo/src/client/embedded/alpha/client_proto_rpcs.ml

297 lines
12 KiB
OCaml
Raw Normal View History

2016-09-08 21:13:10 +04:00
(**************************************************************************)
(* *)
(* Copyright (c) 2014 - 2016. *)
(* Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
(* *)
(* All rights reserved. No warranty, explicit or implicit, provided. *)
(* *)
(**************************************************************************)
let string_of_errors exns =
Format.asprintf " @[<v>%a@]" pp_print_error exns
let handle_error cctxt = function
2016-09-08 21:13:10 +04:00
| Ok res -> Lwt.return res
| Error exns ->
pp_print_error Format.err_formatter exns ;
cctxt.Client_commands.error "%s" "cannot continue"
2016-09-08 21:13:10 +04:00
2017-04-20 17:50:02 +04:00
let call_service0 cctxt s block =
Client_rpcs.call_service0 cctxt
(s Node_rpc_services.Blocks.proto_path) block
let call_service1 cctxt s block a1 =
Client_rpcs.call_service1 cctxt
2016-09-08 21:13:10 +04:00
(s Node_rpc_services.Blocks.proto_path) block a1
let call_error_service1 cctxt s block a1 =
call_service1 cctxt s block a1 >>= function
| Ok (Error _ as err) -> Lwt.return (wrap_error err)
| Ok (Ok v) -> return v
| Error _ as err -> Lwt.return err
let call_service2 cctxt s block a1 a2 =
Client_rpcs.call_service2 cctxt
2016-09-08 21:13:10 +04:00
(s Node_rpc_services.Blocks.proto_path) block a1 a2
let call_error_service2 cctxt s block a1 a2 =
call_service2 cctxt s block a1 a2 >>= function
| Ok (Error _ as err) -> Lwt.return (wrap_error err)
| Ok (Ok v) -> return v
| Error _ as err -> Lwt.return err
2016-09-08 21:13:10 +04:00
2017-04-20 17:50:02 +04:00
type block = Node_rpc_services.Blocks.block
let header cctxt block =
call_error_service1 cctxt Services.header block ()
module Header = struct
let priority cctxt block =
call_error_service1 cctxt Services.Header.priority block ()
let seed_nonce_hash cctxt block =
call_error_service1 cctxt Services.Header.seed_nonce_hash block ()
end
2016-09-08 21:13:10 +04:00
module Constants = struct
let errors cctxt block =
call_service1 cctxt Services.Constants.errors block ()
let cycle_length cctxt block =
call_error_service1 cctxt Services.Constants.cycle_length block ()
let voting_period_length cctxt block =
call_error_service1 cctxt Services.Constants.voting_period_length block ()
let time_before_reward cctxt block =
call_error_service1 cctxt Services.Constants.time_before_reward block ()
let slot_durations cctxt block =
call_error_service1 cctxt Services.Constants.slot_durations block ()
let first_free_mining_slot cctxt block =
call_error_service1 cctxt Services.Constants.first_free_mining_slot block ()
let max_signing_slot cctxt block =
call_error_service1 cctxt Services.Constants.max_signing_slot block ()
let instructions_per_transaction cctxt block =
call_error_service1 cctxt Services.Constants.instructions_per_transaction block ()
let stamp_threshold cctxt block =
call_error_service1 cctxt Services.Constants.proof_of_work_threshold block ()
2016-09-08 21:13:10 +04:00
end
module Context = struct
let level cctxt block =
call_error_service1 cctxt Services.Context.level block ()
let next_level cctxt block =
call_error_service1 cctxt Services.Context.next_level block ()
2016-09-08 21:13:10 +04:00
let voting_period_kind cctxt block =
call_error_service1 cctxt Services.Context.voting_period_kind block ()
2016-09-08 21:13:10 +04:00
module Nonce = struct
type nonce_info = Services.Context.Nonce.nonce_info =
| Revealed of Nonce.t
| Missing of Nonce_hash.t
| Forgotten
let get cctxt block level =
call_error_service2 cctxt Services.Context.Nonce.get block level ()
2016-09-08 21:13:10 +04:00
let hash cctxt block =
call_error_service1 cctxt Services.Context.Nonce.hash block ()
2016-09-08 21:13:10 +04:00
end
module Key = struct
let get cctxt block pk_h =
call_error_service2 cctxt Services.Context.Key.get block pk_h ()
2016-09-08 21:13:10 +04:00
let list cctxt block =
call_error_service1 cctxt Services.Context.Key.list block ()
2016-09-08 21:13:10 +04:00
end
module Contract = struct
let list cctxt b =
call_error_service1 cctxt Services.Context.Contract.list b ()
2016-09-08 21:13:10 +04:00
type info = Services.Context.Contract.info = {
manager: public_key_hash ;
balance: Tez.t ;
spendable: bool ;
delegate: bool * public_key_hash option ;
script: Script.t option ;
2016-09-08 21:13:10 +04:00
counter: int32 ;
}
let get cctxt b c =
call_error_service2 cctxt Services.Context.Contract.get b c ()
let balance cctxt b c =
call_error_service2 cctxt Services.Context.Contract.balance b c ()
let manager cctxt b c =
call_error_service2 cctxt Services.Context.Contract.manager b c ()
let delegate cctxt b c =
call_error_service2 cctxt Services.Context.Contract.delegate b c ()
let counter cctxt b c =
call_error_service2 cctxt Services.Context.Contract.counter b c ()
let spendable cctxt b c =
call_error_service2 cctxt Services.Context.Contract.spendable b c ()
let delegatable cctxt b c =
call_error_service2 cctxt Services.Context.Contract.delegatable b c ()
let script cctxt b c =
call_error_service2 cctxt Services.Context.Contract.script b c ()
2016-09-08 21:13:10 +04:00
end
end
module Helpers = struct
let minimal_time cctxt block ?prio () =
call_error_service1 cctxt Services.Helpers.minimal_timestamp block prio
2016-09-08 21:13:10 +04:00
let typecheck_code cctxt =
call_error_service1 cctxt Services.Helpers.typecheck_code
2016-09-08 21:13:10 +04:00
let apply_operation cctxt block pred_block hash forged_operation signature =
call_error_service1 cctxt Services.Helpers.apply_operation
block (pred_block, hash, forged_operation, signature)
let run_code cctxt block code (storage, input, amount) =
call_error_service1 cctxt Services.Helpers.run_code
block (code, storage, input, amount, None, None)
let trace_code cctxt block code (storage, input, amount) =
call_error_service1 cctxt Services.Helpers.trace_code
block (code, storage, input, amount, None, None)
let typecheck_data cctxt =
call_error_service1 cctxt Services.Helpers.typecheck_data
let hash_data cctxt =
call_error_service1 cctxt Services.Helpers.hash_data
let level cctxt block ?offset lvl =
call_error_service2 cctxt Services.Helpers.level block lvl offset
2016-09-08 21:13:10 +04:00
let levels cctxt block cycle =
call_error_service2 cctxt Services.Helpers.levels block cycle ()
2016-09-08 21:13:10 +04:00
module Rights = struct
type mining_slot = Raw_level.t * int * Time.t
type endorsement_slot = Raw_level.t * int
let mining_rights_for_delegate cctxt
2016-09-08 21:13:10 +04:00
b c ?max_priority ?first_level ?last_level () =
call_error_service2 cctxt Services.Helpers.Rights.mining_rights_for_delegate
2016-09-08 21:13:10 +04:00
b c (max_priority, first_level, last_level)
let endorsement_rights_for_delegate cctxt
2016-09-08 21:13:10 +04:00
b c ?max_priority ?first_level ?last_level () =
call_error_service2 cctxt Services.Helpers.Rights.endorsement_rights_for_delegate
2016-09-08 21:13:10 +04:00
b c (max_priority, first_level, last_level)
end
module Forge = struct
open Operation
module Manager = struct
let operations cctxt
block ~net_id ~branch ~source ?sourcePubKey ~counter ~fee operations =
2016-09-08 21:13:10 +04:00
let ops =
Manager_operations { source ; public_key = sourcePubKey ;
counter ; operations ; fee } in
(call_error_service1 cctxt Services.Helpers.Forge.operations block
({net_id ; branch }, Sourced_operations ops))
let transaction cctxt
block ~net_id ~branch ~source ?sourcePubKey ~counter
2016-09-08 21:13:10 +04:00
~amount ~destination ?parameters ~fee ()=
operations cctxt block ~net_id ~branch ~source ?sourcePubKey ~counter ~fee
2016-09-08 21:13:10 +04:00
Tezos_context.[Transaction { amount ; parameters ; destination }]
let origination cctxt
block ~net_id ~branch
2016-09-08 21:13:10 +04:00
~source ?sourcePubKey ~counter
~managerPubKey ~balance
?(spendable = true)
?(delegatable = true)
?delegatePubKey ?script ~fee () =
operations cctxt block ~net_id ~branch ~source ?sourcePubKey ~counter ~fee
2016-09-08 21:13:10 +04:00
Tezos_context.[
Origination { manager = managerPubKey ;
delegate = delegatePubKey ;
script ;
spendable ;
delegatable ;
credit = balance }
]
let delegation cctxt
block ~net_id ~branch ~source ?sourcePubKey ~counter ~fee delegate =
operations cctxt block ~net_id ~branch ~source ?sourcePubKey ~counter ~fee
2016-09-08 21:13:10 +04:00
Tezos_context.[Delegation delegate]
end
module Delegate = struct
let operations cctxt
block ~net_id ~branch ~source operations =
2016-09-08 21:13:10 +04:00
let ops = Delegate_operations { source ; operations } in
(call_error_service1 cctxt Services.Helpers.Forge.operations block
({net_id ; branch}, Sourced_operations ops))
let endorsement cctxt
b ~net_id ~branch ~source ~block ~slot () =
operations cctxt b ~net_id ~branch ~source
2016-09-08 21:13:10 +04:00
Tezos_context.[Endorsement { block ; slot }]
let proposals cctxt
b ~net_id ~branch ~source ~period ~proposals () =
operations cctxt b ~net_id ~branch ~source
Tezos_context.[Proposals { period ; proposals }]
let ballot cctxt
b ~net_id ~branch ~source ~period ~proposal ~ballot () =
operations cctxt b ~net_id ~branch ~source
Tezos_context.[Ballot { period ; proposal ; ballot }]
2016-09-08 21:13:10 +04:00
end
module Dictator = struct
let operation cctxt
block ~net_id ~branch operation =
let op = Dictator_operation operation in
(call_error_service1 cctxt Services.Helpers.Forge.operations block
({net_id ; branch}, Sourced_operations op))
let activate cctxt
b ~net_id ~branch hash =
operation cctxt b ~net_id ~branch (Activate hash)
let activate_testnet cctxt
b ~net_id ~branch hash =
operation cctxt b ~net_id ~branch (Activate_testnet hash)
end
2016-09-08 21:13:10 +04:00
module Anonymous = struct
let operations cctxt block ~net_id ~branch operations =
(call_error_service1 cctxt Services.Helpers.Forge.operations block
({net_id ; branch}, Anonymous_operations operations))
let seed_nonce_revelation cctxt
block ~net_id ~branch ~level ~nonce () =
operations cctxt block ~net_id ~branch [Seed_nonce_revelation { level ; nonce }]
2017-02-28 05:48:51 +04:00
let faucet cctxt
block ~net_id ~branch ~id () =
2017-02-28 05:48:51 +04:00
let nonce = Sodium.Random.Bigbytes.generate 16 in
operations cctxt block ~net_id ~branch [Faucet { id ; nonce }]
2016-09-08 21:13:10 +04:00
end
let empty_proof_of_work_nonce =
MBytes.of_string
(String.make Constants_repr.proof_of_work_nonce_size '\000')
let block_proto_header cctxt
block
~priority ~seed_nonce_hash
?(proof_of_work_nonce = empty_proof_of_work_nonce) () =
call_error_service1 cctxt Services.Helpers.Forge.block_proto_header
block (priority, seed_nonce_hash, proof_of_work_nonce)
2016-09-08 21:13:10 +04:00
end
module Parse = struct
2017-03-30 16:31:16 +04:00
let operations cctxt block ?check operations =
call_error_service1 cctxt
2017-03-30 16:31:16 +04:00
Services.Helpers.Parse.operations block (operations, check)
let block cctxt block shell proto =
call_error_service1 cctxt
Services.Helpers.Parse.block block
2017-04-20 17:21:10 +04:00
({ shell ; proto } : Block_header.raw)
2016-09-08 21:13:10 +04:00
end
end
(* type slot = *)
(* raw_level * int * timestamp option *)
(* let mining_possibilities *)
(* b c ?max_priority ?first_level ?last_level () = *)
(* call_error_service2 Services.Helpers.Context.Contract.mining_possibilities *)
(* b c (max_priority, first_level, last_level) *)
(* (\* let endorsement_possibilities b c ?max_priority ?first_level ?last_level () = *\) *)
(* call_error_service2 Services.Helpers.Context.Contract.endorsement_possibilities *)
(* b c (max_priority, first_level, last_level) *)