123 lines
3.8 KiB
OCaml
123 lines
3.8 KiB
OCaml
(**************************************************************************)
|
|
(* *)
|
|
(* Copyright (c) 2014 - 2018. *)
|
|
(* Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
|
|
(* *)
|
|
(* All rights reserved. No warranty, explicit or implicit, provided. *)
|
|
(* *)
|
|
(**************************************************************************)
|
|
|
|
module S = struct
|
|
|
|
open Data_encoding
|
|
|
|
let path = RPC_path.(root / "injection")
|
|
|
|
let block_query =
|
|
let open RPC_query in
|
|
query (fun async force chain -> object
|
|
method async = async
|
|
method force = force
|
|
method chain = chain
|
|
end)
|
|
|+ flag "async" (fun t -> t#async)
|
|
|+ flag "force" (fun t -> t#force)
|
|
|+ opt_field "chain" Chain_services.chain_arg (fun t -> t#chain)
|
|
|> seal
|
|
|
|
let block_param =
|
|
obj2
|
|
(req "data" bytes)
|
|
(req "operations"
|
|
(list (dynamic_size (list (dynamic_size Operation.encoding)))))
|
|
|
|
let block =
|
|
RPC_service.post_service
|
|
~description:
|
|
"Inject a block in the node and broadcast it. The `operations` \
|
|
embedded in `blockHeader` might be pre-validated using a \
|
|
contextual RPCs from the latest block \
|
|
(e.g. '/blocks/head/context/preapply'). Returns the ID of the \
|
|
block. By default, the RPC will wait for the block to be \
|
|
validated before answering."
|
|
~query: block_query
|
|
~input: block_param
|
|
~output: Block_hash.encoding
|
|
RPC_path.(path / "block")
|
|
|
|
let operation_query =
|
|
let open RPC_query in
|
|
query (fun async chain -> object
|
|
method async = async
|
|
method chain = chain
|
|
end)
|
|
|+ flag "async" (fun t -> t#async)
|
|
|+ opt_field "chain" Chain_services.chain_arg (fun t -> t#chain)
|
|
|> seal
|
|
|
|
let operation =
|
|
RPC_service.post_service
|
|
~description:
|
|
"Inject an operation in node and broadcast it. Returns the \
|
|
ID of the operation. The `signedOperationContents` should be \
|
|
constructed using a contextual RPCs from the latest block \
|
|
and signed by the client. By default, the RPC will wait for \
|
|
the operation to be (pre-)validated before answering. See \
|
|
RPCs under /blocks/prevalidation for more details on the \
|
|
prevalidation context."
|
|
~query: operation_query
|
|
~input: bytes
|
|
~output: Operation_hash.encoding
|
|
RPC_path.(path / "operation")
|
|
|
|
let protocol_query =
|
|
let open RPC_query in
|
|
query (fun async force -> object
|
|
method async = async
|
|
method force = force
|
|
end)
|
|
|+ flag "async" (fun t -> t#async)
|
|
|+ flag "force" (fun t -> t#force)
|
|
|> seal
|
|
|
|
|
|
let protocol =
|
|
RPC_service.post_service
|
|
~description:
|
|
"Inject a protocol in node. Returns the ID of the protocol."
|
|
~query: protocol_query
|
|
~input: Protocol.encoding
|
|
~output: Protocol_hash.encoding
|
|
RPC_path.(path / "protocol")
|
|
|
|
end
|
|
|
|
open RPC_context
|
|
|
|
let block ctxt
|
|
?(async = false) ?(force = false) ?chain
|
|
raw operations =
|
|
make_call S.block ctxt ()
|
|
(object
|
|
method async = async
|
|
method force = force
|
|
method chain = chain
|
|
end)
|
|
(raw, operations)
|
|
|
|
let operation ctxt ?(async = false) ?chain operation =
|
|
make_call S.operation ctxt ()
|
|
(object
|
|
method async = async
|
|
method chain = chain
|
|
end)
|
|
operation
|
|
|
|
let protocol ctxt ?(async = false) ?(force = false) protocol =
|
|
make_call S.protocol ctxt ()
|
|
(object
|
|
method async = async
|
|
method force = force
|
|
end)
|
|
protocol
|