flow_access_api 0.1.7

The Rust implementation of the Flow Access API through gRPC client.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
syntax = "proto3";

package flow.entities;

option go_package = "github.com/onflow/flow/protobuf/go/flow/entities";
option java_package = "org.onflow.protobuf.entities";

message Metadata {
  bytes latest_finalized_block_id = 1;
  uint64 latest_finalized_height = 2;
  bytes node_id = 3;
  uint64 highest_indexed_height = 4;
}