We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b0fd093 commit 1d07a04Copy full SHA for 1d07a04
proto/sidechain.proto
@@ -13,6 +13,8 @@ service Sidechain {
13
returns (CollectTransactionsResponse);
14
rpc GetChainTip(GetChainTipRequest) returns (GetChainTipResponse);
15
rpc GetUtxoSet(GetUtxoSetRequest) returns (GetUtxoSetResponse);
16
+ rpc GetWithdrawalBundle(GetWithdrawalBundleRequest)
17
+ returns (GetWithdrawalBundleResponse);
18
}
19
20
message SubmitTransactionRequest { bytes transaction = 1; }
@@ -65,3 +67,6 @@ message DisconnectMainBlockResponse {}
65
67
66
68
message GetUtxoSetRequest {}
69
message GetUtxoSetResponse { bytes utxos = 1; }
70
+
71
+message GetWithdrawalBundleRequest {}
72
+message GetWithdrawalBundleResponse { bytes bundle = 1; }
0 commit comments