-
Notifications
You must be signed in to change notification settings - Fork 24
/
util_service.proto
58 lines (53 loc) · 2.04 KB
/
util_service.proto
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/**
* # Utility Service
* This service provides a transaction to generate a deterministic
* pseudo-random value, either a 32-bit integer within a requested range
* or a 384-bit byte array.
*
* ### Keywords
* The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
* "SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this
* document are to be interpreted as described in
* [RFC2119](https://www.ietf.org/rfc/rfc2119) and clarified in
* [RFC8174](https://www.ietf.org/rfc/rfc8174).
*/
syntax = "proto3";
package proto;
/*
* Copyright (C) 2018-2024 Hedera Hashgraph, LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
option java_package = "com.hederahashgraph.service.proto.java";
// <<<pbj.java_package = "com.hedera.hapi.node.util">>> This comment is special code for setting PBJ Compiler java package
import "transaction_response.proto";
import "transaction.proto";
/**
* The Utility Service provides a pseudo-random number generator.
*
* The single gRPC call defined for this service simply reports a single
* pseudo-random number in the transaction record. That value may either
* be a 32-bit integer within a requested range, or a 384-bit byte array.
*
* ### Block Stream Effects
* The requested value is reported exclusively in a `UtilPrngOutput` message.
*/
service UtilService {
/**
* Generate a pseudo-random value.
* <p>
* The request body MUST be a
* [UtilPrngTransactionBody](#proto.UtilPrngTransactionBody)
*/
rpc prng (Transaction) returns (TransactionResponse);
}