mirror of
https://github.com/onsonr/sonr.git
synced 2025-03-10 21:09:11 +00:00
23 lines
399 B
Protocol Buffer
23 lines
399 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
package vault.v1;
|
||
|
|
||
|
import "cosmos/orm/v1/orm.proto";
|
||
|
|
||
|
option go_package = "github.com/onsonr/sonr/x/vault/types";
|
||
|
|
||
|
// https://github.com/cosmos/cosmos-sdk/blob/main/orm/README.md
|
||
|
|
||
|
message DWN {
|
||
|
option (cosmos.orm.v1.table) = {
|
||
|
id: 1
|
||
|
primary_key: {fields: "account"}
|
||
|
index: {
|
||
|
id: 1
|
||
|
fields: "amount"
|
||
|
}
|
||
|
};
|
||
|
|
||
|
bytes account = 1;
|
||
|
uint64 amount = 2;
|
||
|
}
|