syntax = "proto3";

message Decimal {
  uint64 lo = 1; // the first 64 bits of the underlying value
  uint32 hi = 2; // the last 32 bis of the underlying value
  sint32 signScale = 3; // the number of decimal digits (bits 1-16), and the sign (bit 0)
}
