nibiru_std/proto/buf/
cosmos.base.v1beta1.rs

1// @generated
2/// Coin defines a token with a denomination and an amount.
3///
4/// NOTE: The amount field is an Int which implements the custom method
5/// signatures required by gogoproto.
6#[allow(clippy::derive_partial_eq_without_eq)]
7#[derive(Clone, PartialEq, ::prost::Message)]
8pub struct Coin {
9    #[prost(string, tag="1")]
10    pub denom: ::prost::alloc::string::String,
11    #[prost(string, tag="2")]
12    pub amount: ::prost::alloc::string::String,
13}
14/// DecCoin defines a token with a denomination and a decimal amount.
15///
16/// NOTE: The amount field is an Dec which implements the custom method
17/// signatures required by gogoproto.
18#[allow(clippy::derive_partial_eq_without_eq)]
19#[derive(Clone, PartialEq, ::prost::Message)]
20pub struct DecCoin {
21    #[prost(string, tag="1")]
22    pub denom: ::prost::alloc::string::String,
23    #[prost(string, tag="2")]
24    pub amount: ::prost::alloc::string::String,
25}
26/// IntProto defines a Protobuf wrapper around an Int object.
27#[allow(clippy::derive_partial_eq_without_eq)]
28#[derive(Clone, PartialEq, ::prost::Message)]
29pub struct IntProto {
30    #[prost(string, tag="1")]
31    pub int: ::prost::alloc::string::String,
32}
33/// DecProto defines a Protobuf wrapper around a Dec object.
34#[allow(clippy::derive_partial_eq_without_eq)]
35#[derive(Clone, PartialEq, ::prost::Message)]
36pub struct DecProto {
37    #[prost(string, tag="1")]
38    pub dec: ::prost::alloc::string::String,
39}
40// @@protoc_insertion_point(module)