Files
tycho-protocol-sdk/substreams/ethereum-maverick/proto/pool.proto
2024-03-07 16:57:17 -05:00

16 lines
225 B
Protocol Buffer

syntax = "proto3";
package eth.pool.v1;
message Transfers {
repeated Transfer transfers = 1;
}
message Transfer {
string from = 1;
string to = 2;
uint64 token_id = 3;
string trx_hash = 4;
uint64 ordinal = 5;
}