forked from hashgraph/hedera-protobufs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcrypto_service.proto
119 lines (100 loc) · 3.62 KB
/
crypto_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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
syntax = "proto3";
package proto;
/*-
*
* Hedera Network Services Protobuf
*
* Copyright (C) 2018 - 2021 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.token">>> This comment is special code for setting PBJ Compiler java package
import "query.proto";
import "response.proto";
import "transaction_response.proto";
import "transaction.proto";
/**
* Transactions and queries for the Crypto Service
*/
service CryptoService {
/**
* Creates a new account by submitting the transaction
*/
rpc createAccount (Transaction) returns (TransactionResponse);
/**
* Updates an account by submitting the transaction
*/
rpc updateAccount (Transaction) returns (TransactionResponse);
/**
* Initiates a transfer by submitting the transaction
*/
rpc cryptoTransfer (Transaction) returns (TransactionResponse);
/**
* Deletes and account by submitting the transaction
*/
rpc cryptoDelete (Transaction) returns (TransactionResponse);
/**
* Adds one or more approved allowances for spenders to transfer the paying account's hbar or tokens.
*/
rpc approveAllowances (Transaction) returns (TransactionResponse);
/**
* Deletes one or more of the specific approved NFT serial numbers on an owner account.
*/
rpc deleteAllowances (Transaction) returns (TransactionResponse);
/**
* (NOT CURRENTLY SUPPORTED) Adds a livehash
*/
rpc addLiveHash (Transaction) returns (TransactionResponse);
/**
* (NOT CURRENTLY SUPPORTED) Deletes a livehash
*/
rpc deleteLiveHash (Transaction) returns (TransactionResponse);
/**
* (NOT CURRENTLY SUPPORTED) Retrieves a livehash for an account
*/
rpc getLiveHash (Query) returns (Response);
/**
* Returns all transactions in the last 180s of consensus time for which the given account was
* the effective payer <b>and</b> network property <tt>ledger.keepRecordsInState</tt> was
* <tt>true</tt>.
*/
rpc getAccountRecords (Query) returns (Response);
/**
* Retrieves the balance of an account
*/
rpc cryptoGetBalance (Query) returns (Response);
/**
* Retrieves the metadata of an account
*/
rpc getAccountInfo (Query) returns (Response);
/**
* Retrieves the latest receipt for a transaction that is either awaiting consensus, or reached
* consensus in the last 180 seconds
*/
rpc getTransactionReceipts (Query) returns (Response);
/**
* (NOT CURRENTLY SUPPORTED) Returns the records of transactions recently funded by an account
*/
rpc getFastTransactionRecord (Query) returns (Response);
/**
* Retrieves the record of a transaction that is either awaiting consensus, or reached consensus
* in the last 180 seconds
*/
rpc getTxRecordByTxID (Query) returns (Response);
/**
* (NOT CURRENTLY SUPPORTED) Retrieves the stakers for a node by account id
*/
rpc getStakersByAccountID (Query) returns (Response);
}