121 lines
4.4 KiB
Protocol Buffer
121 lines
4.4 KiB
Protocol Buffer
// Copyright (c) 2019-2020 The Zcash developers
|
|
// Distributed under the MIT software license, see the accompanying
|
|
// file COPYING or https://www.opensource.org/licenses/mit-license.php .
|
|
|
|
syntax = "proto3";
|
|
package cash.z.wallet.sdk.rpc;
|
|
option go_package = "walletrpc";
|
|
option swift_prefix = "";
|
|
import "compact_formats.proto";
|
|
|
|
// A BlockID message contains identifiers to select a block: a height or a
|
|
// hash. Specification by hash is not implemented, but may be in the future.
|
|
message BlockID {
|
|
uint64 height = 1;
|
|
bytes hash = 2;
|
|
}
|
|
|
|
// BlockRange specifies a series of blocks from start to end inclusive.
|
|
// Both BlockIDs must be heights; specification by hash is not yet supported.
|
|
message BlockRange {
|
|
BlockID start = 1;
|
|
BlockID end = 2;
|
|
}
|
|
|
|
// A TxFilter contains the information needed to identify a particular
|
|
// transaction: either a block and an index, or a direct transaction hash.
|
|
// Currently, only specification by hash is supported.
|
|
message TxFilter {
|
|
BlockID block = 1; // block identifier, height or hash
|
|
uint64 index = 2; // index within the block
|
|
bytes hash = 3; // transaction ID (hash, txid)
|
|
}
|
|
|
|
// RawTransaction contains the complete transaction data. It also optionally includes
|
|
// the block height in which the transaction was included.
|
|
message RawTransaction {
|
|
bytes data = 1; // exact data returned by zcash 'getrawtransaction'
|
|
uint64 height = 2; // height that the transaction was mined (or -1)
|
|
}
|
|
|
|
// A SendResponse encodes an error code and a string. It is currently used
|
|
// only by SendTransaction(). If error code is zero, the operation was
|
|
// successful; if non-zero, it and the message specify the failure.
|
|
message SendResponse {
|
|
int32 errorCode = 1;
|
|
string errorMessage = 2;
|
|
}
|
|
|
|
// Chainspec is a placeholder to allow specification of a particular chain fork.
|
|
message ChainSpec {}
|
|
|
|
// Empty is for gRPCs that take no arguments, currently only GetLightdInfo.
|
|
message Empty {}
|
|
|
|
// LightdInfo returns various information about this lightwalletd instance
|
|
// and the state of the blockchain.
|
|
message LightdInfo {
|
|
string version = 1;
|
|
string vendor = 2;
|
|
bool taddrSupport = 3; // true
|
|
string chainName = 4; // either "main" or "test"
|
|
uint64 saplingActivationHeight = 5; // depends on mainnet or testnet
|
|
string consensusBranchId = 6; // protocol identifier, see consensus/upgrades.cpp
|
|
uint64 blockHeight = 7; // latest block on the best chain
|
|
}
|
|
|
|
// TransparentAddressBlockFilter restricts the results to the given address
|
|
// or block range.
|
|
message TransparentAddressBlockFilter {
|
|
string address = 1; // t-address
|
|
BlockRange range = 2; // start, end heights
|
|
}
|
|
|
|
// Duration is currently used only for testing, so that the Ping rpc
|
|
// can simulate a delay, to create many simultaneous connections. Units
|
|
// are microseconds.
|
|
message Duration {
|
|
int64 intervalUs = 1;
|
|
}
|
|
|
|
// PingResponse is used to indicate concurrency, how many Ping rpcs
|
|
// are executing upon entry and upon exit (after the delay).
|
|
// This rpc is used for testing only.
|
|
message PingResponse {
|
|
int64 entry = 1;
|
|
int64 exit = 2;
|
|
}
|
|
|
|
message EvilLightwalletdState {
|
|
int32 startHeight = 1;
|
|
int32 saplingActivation = 2;
|
|
string branchID = 3;
|
|
string chainName = 4;
|
|
repeated string blocks = 5;
|
|
}
|
|
service CompactTxStreamer {
|
|
// Return the height of the tip of the best chain
|
|
rpc GetLatestBlock(ChainSpec) returns (BlockID) {}
|
|
// Return the compact block corresponding to the given block identifier
|
|
rpc GetBlock(BlockID) returns (CompactBlock) {}
|
|
// Return a list of consecutive compact blocks
|
|
rpc GetBlockRange(BlockRange) returns (stream CompactBlock) {}
|
|
|
|
// Return the requested full (not compact) transaction (as from zcashd)
|
|
rpc GetTransaction(TxFilter) returns (RawTransaction) {}
|
|
// Submit the given transaction to the zcash network
|
|
rpc SendTransaction(RawTransaction) returns (SendResponse) {}
|
|
|
|
// Return the txids corresponding to the given t-address within the given block range
|
|
rpc GetAddressTxids(TransparentAddressBlockFilter) returns (stream RawTransaction) {}
|
|
|
|
// Return information about this lightwalletd instance and the blockchain
|
|
rpc GetLightdInfo(Empty) returns (LightdInfo) {}
|
|
// Testing-only
|
|
rpc Ping(Duration) returns (PingResponse) {}
|
|
|
|
// Evil
|
|
rpc EvilGetIncomingTransactions(Empty) returns (stream RawTransaction) {}
|
|
rpc EvilSetState(EvilLightwalletdState) returns (Empty) {}
|
|
}
|