pinax-network / substreams

Substreams built by Pinax
Apache License 2.0
5 stars 2 forks source link

Host Substream Protobufs on IPFS #9

Closed DenisCarriere closed 1 year ago

DenisCarriere commented 1 year ago
syntax = "proto3";

package antelope.tokens.v1;

import "google/protobuf/timestamp.proto";

message Tokens {
  repeated Token tokens = 1;
}

message Token {
  uint32 block_num = 1;
  google.protobuf.Timestamp timestamp = 2;
  string contract = 3;
  string symcode = 4;
  uint32 precision = 5;
  int64 amount = 6;
  string issuer = 7;
}
DenisCarriere commented 1 year ago

Implemented