Added bitcoin explorer

This commit is contained in:
Julien Cassis
2023-12-06 11:13:31 -05:00
parent e58834e9b6
commit 0e4387e783
20 changed files with 869 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
syntax = "proto3";
package btc.block_meta.v1;
message BlockMeta {
uint64 number = 1;
string hash = 2;
string parent_hash = 3;
}

View File

@@ -0,0 +1,14 @@
syntax = "proto3";
package btc.transaction.v1;
message Transactions {
repeated Transaction transactions = 1;
}
message Transaction {
string hash = 1;
uint64 vin_count = 2;
uint64 vout_count = 3;
double btc_value = 4;
}