Skip to content

Commit 1f9b133

Browse files
authored
chore(transport): update indexer protofile (#155)
1 parent 8c8fa2c commit 1f9b133

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

NArk.Core/Transport/GrpcClient/Protos/ark/v1/indexer.proto

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -237,12 +237,17 @@ message GetVtxoChainRequest {
237237
// A valid token obtained from GetVirtualTxs rpc can be recycled for this request.
238238
string token = 4;
239239
}
240+
// Opaque cursor returned as next_page_token by a previous call. When set, the
241+
// response resumes from where that page ended.
242+
string page_token = 5;
240243
}
241244
message GetVtxoChainResponse {
242245
repeated IndexerChain chain = 1;
243246
IndexerPageResponse page = 2;
244247
// Auth token can be used for other rpcs related to this vtxo/tx that require proof of ownership.
245248
string auth_token = 3;
249+
// Opaque cursor for fetching the next page. Empty when there are no more pages.
250+
string next_page_token = 4;
246251
}
247252

248253
message GetVirtualTxsRequest {

0 commit comments

Comments
 (0)