types/proto/fee.proto

17 lines
220 B
Protocol Buffer

syntax = "proto3";
package pb;
message Fee {
enum Currency {
UNKNOWN = 0;
LBC = 1;
BTC = 2;
USD = 3;
}
Currency currency = 1;
bytes address = 2;
float amount = 3;
}