A successful response.
PageResponse is to be embedded in gRPC response messages where the corresponding request message has used PageRequest.
message SomeResponse { repeated Bar results = 1; PageResponse page = 2; }
const response = await fetch('https://zetachain.nownodes.io/zeta-chain/observer/get_all_blame_records', { method: 'GET', headers: {}, }); const data = await response.json();
{ "blame_info": [ { "index": "text", "failure_reason": "text", "nodes": [ { "pub_key": "text", "blame_data": "Ynl0ZXM=", "blame_signature": "Ynl0ZXM=" } ] } ], "pagination": { "next_key": "Ynl0ZXM=", "total": "text" } }