mirror of
https://github.com/LBRYFoundation/types.git
synced 2025-08-23 17:47:32 +00:00
15 lines
199 B
Protocol Buffer
15 lines
199 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package pb;
|
|
|
|
message Fee {
|
|
enum Currency {
|
|
LBC = 0;
|
|
BTC = 1;
|
|
USD = 2;
|
|
}
|
|
|
|
Currency currency = 1;
|
|
bytes address = 2;
|
|
float amount = 3;
|
|
}
|