File tree Expand file tree Collapse file tree
NArk.Core/Transport/GrpcClient/Protos/ark/v1 Expand file tree Collapse file tree Original file line number Diff line number Diff 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}
241244message 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
248253message GetVirtualTxsRequest {
You can’t perform that action at this time.
0 commit comments