#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Params {
#[prost(string, tag = "1")]
pub supply_rate_permille: ::prost::alloc::string::String,
#[prost(string, tag = "2")]
pub borrow_rate_permille: ::prost::alloc::string::String,
#[prost(string, tag = "3")]
pub fee_recipient: ::prost::alloc::string::String,
#[prost(string, repeated, tag = "4")]
pub pool_creators: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
#[prost(string, tag = "5")]
pub min_initial_ltv_percent: ::prost::alloc::string::String,
#[prost(string, tag = "6")]
pub liquidation_threshold_percent: ::prost::alloc::string::String,
}
impl ::prost::Name for Params {
const NAME: &'static str = "Params";
const PACKAGE: &'static str = "side.lending";
fn full_name() -> ::prost::alloc::string::String {
::prost::alloc::format!("side.lending.{}", Self::NAME)
}
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct LendingPool {
#[prost(string, tag = "1")]
pub id: ::prost::alloc::string::String,
#[prost(message, optional, tag = "2")]
pub supply: ::core::option::Option<super::super::cosmos::base::v1beta1::Coin>,
#[prost(string, tag = "3")]
pub total_shares: ::prost::alloc::string::String,
#[prost(string, tag = "4")]
pub borrowed_amount: ::prost::alloc::string::String,
#[prost(enumeration = "PoolStatus", tag = "5")]
pub status: i32,
}
impl ::prost::Name for LendingPool {
const NAME: &'static str = "LendingPool";
const PACKAGE: &'static str = "side.lending";
fn full_name() -> ::prost::alloc::string::String {
::prost::alloc::format!("side.lending.{}", Self::NAME)
}
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Loan {
#[prost(string, tag = "1")]
pub vault_address: ::prost::alloc::string::String,
#[prost(string, tag = "2")]
pub borrower: ::prost::alloc::string::String,
#[prost(string, tag = "3")]
pub borrower_pub_key: ::prost::alloc::string::String,
#[prost(string, tag = "4")]
pub agency: ::prost::alloc::string::String,
#[prost(string, tag = "5")]
pub hash_loan_secret: ::prost::alloc::string::String,
#[prost(int64, tag = "6")]
pub maturity_time: i64,
#[prost(int64, tag = "7")]
pub final_timeout: i64,
#[prost(message, optional, tag = "8")]
pub borrow_amount: ::core::option::Option<super::super::cosmos::base::v1beta1::Coin>,
#[prost(string, tag = "9")]
pub fees: ::prost::alloc::string::String,
#[prost(string, tag = "10")]
pub interests: ::prost::alloc::string::String,
#[prost(string, tag = "11")]
pub term: ::prost::alloc::string::String,
#[prost(uint64, tag = "12")]
pub event_id: u64,
#[prost(uint64, tag = "13")]
pub attestation_id: u64,
#[prost(string, repeated, tag = "14")]
pub deposit_txs: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
#[prost(string, tag = "15")]
pub collateral_amount: ::prost::alloc::string::String,
#[prost(string, tag = "16")]
pub loan_secret: ::prost::alloc::string::String,
#[prost(message, optional, tag = "17")]
pub create_at: ::core::option::Option<::tendermint_proto::google::protobuf::Timestamp>,
#[prost(enumeration = "LoanStatus", tag = "18")]
pub status: i32,
#[prost(string, tag = "19")]
pub pool_id: ::prost::alloc::string::String,
}
impl ::prost::Name for Loan {
const NAME: &'static str = "Loan";
const PACKAGE: &'static str = "side.lending";
fn full_name() -> ::prost::alloc::string::String {
::prost::alloc::format!("side.lending.{}", Self::NAME)
}
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct DlcMeta {
#[prost(string, tag = "1")]
pub liquidation_cet: ::prost::alloc::string::String,
#[prost(string, tag = "2")]
pub signed_liquidation_cet_hex: ::prost::alloc::string::String,
#[prost(string, tag = "3")]
pub liquidation_adaptor_signature: ::prost::alloc::string::String,
#[prost(string, tag = "4")]
pub liquidation_adapted_signature: ::prost::alloc::string::String,
#[prost(string, repeated, tag = "5")]
pub liquidation_agency_signatures: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
#[prost(message, optional, tag = "6")]
pub vault_utxo: ::core::option::Option<super::btcbridge::Utxo>,
#[prost(string, tag = "7")]
pub internal_key: ::prost::alloc::string::String,
#[prost(string, tag = "8")]
pub liquidation_cet_script: ::prost::alloc::string::String,
#[prost(string, tag = "9")]
pub repayment_script: ::prost::alloc::string::String,
#[prost(string, tag = "10")]
pub forced_repayment_script: ::prost::alloc::string::String,
#[prost(string, tag = "11")]
pub timeout_refund_script: ::prost::alloc::string::String,
}
impl ::prost::Name for DlcMeta {
const NAME: &'static str = "DLCMeta";
const PACKAGE: &'static str = "side.lending";
fn full_name() -> ::prost::alloc::string::String {
::prost::alloc::format!("side.lending.{}", Self::NAME)
}
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct DepositLog {
#[prost(string, tag = "2")]
pub txid: ::prost::alloc::string::String,
#[prost(string, tag = "1")]
pub vault_address: ::prost::alloc::string::String,
#[prost(string, tag = "3")]
pub deposit_tx: ::prost::alloc::string::String,
}
impl ::prost::Name for DepositLog {
const NAME: &'static str = "DepositLog";
const PACKAGE: &'static str = "side.lending";
fn full_name() -> ::prost::alloc::string::String {
::prost::alloc::format!("side.lending.{}", Self::NAME)
}
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Repayment {
#[prost(string, tag = "1")]
pub loan_id: ::prost::alloc::string::String,
#[prost(string, tag = "2")]
pub txid: ::prost::alloc::string::String,
#[prost(string, tag = "3")]
pub tx: ::prost::alloc::string::String,
#[prost(string, tag = "4")]
pub repay_adaptor_point: ::prost::alloc::string::String,
#[prost(string, tag = "5")]
pub dca_adaptor_signature: ::prost::alloc::string::String,
#[prost(string, tag = "6")]
pub borrower_signature: ::prost::alloc::string::String,
#[prost(message, optional, tag = "7")]
pub create_at: ::core::option::Option<::tendermint_proto::google::protobuf::Timestamp>,
}
impl ::prost::Name for Repayment {
const NAME: &'static str = "Repayment";
const PACKAGE: &'static str = "side.lending";
fn full_name() -> ::prost::alloc::string::String {
::prost::alloc::format!("side.lending.{}", Self::NAME)
}
}
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
#[repr(i32)]
pub enum PoolStatus {
Active = 0,
Inactive = 1,
}
impl PoolStatus {
pub fn as_str_name(&self) -> &'static str {
match self {
PoolStatus::Active => "ACTIVE",
PoolStatus::Inactive => "INACTIVE",
}
}
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"ACTIVE" => Some(Self::Active),
"INACTIVE" => Some(Self::Inactive),
_ => None,
}
}
}
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
#[repr(i32)]
pub enum LoanStatus {
Apply = 0,
Approve = 1,
Disburse = 2,
Repay = 3,
Default = 4,
Liquidate = 5,
Close = 6,
}
impl LoanStatus {
pub fn as_str_name(&self) -> &'static str {
match self {
LoanStatus::Apply => "Apply",
LoanStatus::Approve => "Approve",
LoanStatus::Disburse => "Disburse",
LoanStatus::Repay => "Repay",
LoanStatus::Default => "Default",
LoanStatus::Liquidate => "Liquidate",
LoanStatus::Close => "Close",
}
}
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"Apply" => Some(Self::Apply),
"Approve" => Some(Self::Approve),
"Disburse" => Some(Self::Disburse),
"Repay" => Some(Self::Repay),
"Default" => Some(Self::Default),
"Liquidate" => Some(Self::Liquidate),
"Close" => Some(Self::Close),
_ => None,
}
}
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GenesisState {
#[prost(message, optional, tag = "1")]
pub params: ::core::option::Option<Params>,
#[prost(message, repeated, tag = "2")]
pub pools: ::prost::alloc::vec::Vec<LendingPool>,
}
impl ::prost::Name for GenesisState {
const NAME: &'static str = "GenesisState";
const PACKAGE: &'static str = "side.lending";
fn full_name() -> ::prost::alloc::string::String {
::prost::alloc::format!("side.lending.{}", Self::NAME)
}
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct QueryLiquidationEventRequest {
#[prost(message, optional, tag = "1")]
pub borrow_amount: ::core::option::Option<super::super::cosmos::base::v1beta1::Coin>,
#[prost(message, optional, tag = "2")]
pub collateral_acmount: ::core::option::Option<super::super::cosmos::base::v1beta1::Coin>,
}
impl ::prost::Name for QueryLiquidationEventRequest {
const NAME: &'static str = "QueryLiquidationEventRequest";
const PACKAGE: &'static str = "side.lending";
fn full_name() -> ::prost::alloc::string::String {
::prost::alloc::format!("side.lending.{}", Self::NAME)
}
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct QueryLiquidationEventResponse {
#[prost(uint64, tag = "1")]
pub event_id: u64,
#[prost(string, tag = "2")]
pub oracle_pubkey: ::prost::alloc::string::String,
#[prost(string, tag = "3")]
pub nonce: ::prost::alloc::string::String,
#[prost(string, tag = "4")]
pub price: ::prost::alloc::string::String,
#[prost(string, tag = "5")]
pub signature_point: ::prost::alloc::string::String,
}
impl ::prost::Name for QueryLiquidationEventResponse {
const NAME: &'static str = "QueryLiquidationEventResponse";
const PACKAGE: &'static str = "side.lending";
fn full_name() -> ::prost::alloc::string::String {
::prost::alloc::format!("side.lending.{}", Self::NAME)
}
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct QueryLiquidationCetRequest {
#[prost(string, tag = "1")]
pub borrower_pubkey: ::prost::alloc::string::String,
#[prost(string, tag = "2")]
pub agency_pubkey: ::prost::alloc::string::String,
}
impl ::prost::Name for QueryLiquidationCetRequest {
const NAME: &'static str = "QueryLiquidationCetRequest";
const PACKAGE: &'static str = "side.lending";
fn full_name() -> ::prost::alloc::string::String {
::prost::alloc::format!("side.lending.{}", Self::NAME)
}
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct QueryLiquidationCetResponse {
#[prost(string, tag = "1")]
pub liquidation_cet_script: ::prost::alloc::string::String,
}
impl ::prost::Name for QueryLiquidationCetResponse {
const NAME: &'static str = "QueryLiquidationCetResponse";
const PACKAGE: &'static str = "side.lending";
fn full_name() -> ::prost::alloc::string::String {
::prost::alloc::format!("side.lending.{}", Self::NAME)
}
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct QueryCollateralAddressRequest {
#[prost(string, tag = "1")]
pub borrower_pubkey: ::prost::alloc::string::String,
#[prost(string, tag = "2")]
pub agency_pubkey: ::prost::alloc::string::String,
#[prost(string, tag = "3")]
pub hash_of_loan_secret: ::prost::alloc::string::String,
#[prost(uint64, tag = "4")]
pub maturity_time: u64,
#[prost(uint64, tag = "5")]
pub final_timeout: u64,
}
impl ::prost::Name for QueryCollateralAddressRequest {
const NAME: &'static str = "QueryCollateralAddressRequest";
const PACKAGE: &'static str = "side.lending";
fn full_name() -> ::prost::alloc::string::String {
::prost::alloc::format!("side.lending.{}", Self::NAME)
}
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct QueryCollateralAddressResponse {
#[prost(string, tag = "1")]
pub address: ::prost::alloc::string::String,
}
impl ::prost::Name for QueryCollateralAddressResponse {
const NAME: &'static str = "QueryCollateralAddressResponse";
const PACKAGE: &'static str = "side.lending";
fn full_name() -> ::prost::alloc::string::String {
::prost::alloc::format!("side.lending.{}", Self::NAME)
}
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct QueryParamsRequest {}
impl ::prost::Name for QueryParamsRequest {
const NAME: &'static str = "QueryParamsRequest";
const PACKAGE: &'static str = "side.lending";
fn full_name() -> ::prost::alloc::string::String {
::prost::alloc::format!("side.lending.{}", Self::NAME)
}
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct QueryParamsResponse {
#[prost(message, optional, tag = "1")]
pub params: ::core::option::Option<Params>,
}
impl ::prost::Name for QueryParamsResponse {
const NAME: &'static str = "QueryParamsResponse";
const PACKAGE: &'static str = "side.lending";
fn full_name() -> ::prost::alloc::string::String {
::prost::alloc::format!("side.lending.{}", Self::NAME)
}
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct QueryLoanRequest {
#[prost(string, tag = "1")]
pub loan_id: ::prost::alloc::string::String,
}
impl ::prost::Name for QueryLoanRequest {
const NAME: &'static str = "QueryLoanRequest";
const PACKAGE: &'static str = "side.lending";
fn full_name() -> ::prost::alloc::string::String {
::prost::alloc::format!("side.lending.{}", Self::NAME)
}
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct QueryLoanResponse {
#[prost(message, optional, tag = "1")]
pub loan: ::core::option::Option<Loan>,
}
impl ::prost::Name for QueryLoanResponse {
const NAME: &'static str = "QueryLoanResponse";
const PACKAGE: &'static str = "side.lending";
fn full_name() -> ::prost::alloc::string::String {
::prost::alloc::format!("side.lending.{}", Self::NAME)
}
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct QueryLoansRequest {
#[prost(enumeration = "LoanStatus", tag = "1")]
pub status: i32,
#[prost(message, optional, tag = "2")]
pub pagination: ::core::option::Option<super::super::cosmos::base::query::v1beta1::PageRequest>,
}
impl ::prost::Name for QueryLoansRequest {
const NAME: &'static str = "QueryLoansRequest";
const PACKAGE: &'static str = "side.lending";
fn full_name() -> ::prost::alloc::string::String {
::prost::alloc::format!("side.lending.{}", Self::NAME)
}
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct QueryLoansResponse {
#[prost(message, repeated, tag = "1")]
pub loans: ::prost::alloc::vec::Vec<Loan>,
#[prost(message, optional, tag = "2")]
pub pagination:
::core::option::Option<super::super::cosmos::base::query::v1beta1::PageResponse>,
}
impl ::prost::Name for QueryLoansResponse {
const NAME: &'static str = "QueryLoansResponse";
const PACKAGE: &'static str = "side.lending";
fn full_name() -> ::prost::alloc::string::String {
::prost::alloc::format!("side.lending.{}", Self::NAME)
}
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct QueryLoanDlcMetaRequest {
#[prost(string, tag = "1")]
pub loan_id: ::prost::alloc::string::String,
}
impl ::prost::Name for QueryLoanDlcMetaRequest {
const NAME: &'static str = "QueryLoanDlcMetaRequest";
const PACKAGE: &'static str = "side.lending";
fn full_name() -> ::prost::alloc::string::String {
::prost::alloc::format!("side.lending.{}", Self::NAME)
}
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct QueryLoanDlcMetaResponse {
#[prost(message, optional, tag = "1")]
pub dlc_meta: ::core::option::Option<DlcMeta>,
}
impl ::prost::Name for QueryLoanDlcMetaResponse {
const NAME: &'static str = "QueryLoanDlcMetaResponse";
const PACKAGE: &'static str = "side.lending";
fn full_name() -> ::prost::alloc::string::String {
::prost::alloc::format!("side.lending.{}", Self::NAME)
}
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct QueryRepaymentRequest {
#[prost(string, tag = "1")]
pub loan_id: ::prost::alloc::string::String,
}
impl ::prost::Name for QueryRepaymentRequest {
const NAME: &'static str = "QueryRepaymentRequest";
const PACKAGE: &'static str = "side.lending";
fn full_name() -> ::prost::alloc::string::String {
::prost::alloc::format!("side.lending.{}", Self::NAME)
}
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct QueryRepaymentResponse {
#[prost(message, optional, tag = "1")]
pub repayment: ::core::option::Option<Repayment>,
}
impl ::prost::Name for QueryRepaymentResponse {
const NAME: &'static str = "QueryRepaymentResponse";
const PACKAGE: &'static str = "side.lending";
fn full_name() -> ::prost::alloc::string::String {
::prost::alloc::format!("side.lending.{}", Self::NAME)
}
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MsgCreatePool {
#[prost(string, tag = "1")]
pub creator: ::prost::alloc::string::String,
#[prost(string, tag = "2")]
pub pool_id: ::prost::alloc::string::String,
#[prost(string, tag = "3")]
pub lending_asset: ::prost::alloc::string::String,
}
impl ::prost::Name for MsgCreatePool {
const NAME: &'static str = "MsgCreatePool";
const PACKAGE: &'static str = "side.lending";
fn full_name() -> ::prost::alloc::string::String {
::prost::alloc::format!("side.lending.{}", Self::NAME)
}
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MsgCreatePoolResponse {}
impl ::prost::Name for MsgCreatePoolResponse {
const NAME: &'static str = "MsgCreatePoolResponse";
const PACKAGE: &'static str = "side.lending";
fn full_name() -> ::prost::alloc::string::String {
::prost::alloc::format!("side.lending.{}", Self::NAME)
}
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MsgRepay {
#[prost(string, tag = "1")]
pub borrower: ::prost::alloc::string::String,
#[prost(string, tag = "2")]
pub loan_id: ::prost::alloc::string::String,
#[prost(string, tag = "3")]
pub adaptor_point: ::prost::alloc::string::String,
}
impl ::prost::Name for MsgRepay {
const NAME: &'static str = "MsgRepay";
const PACKAGE: &'static str = "side.lending";
fn full_name() -> ::prost::alloc::string::String {
::prost::alloc::format!("side.lending.{}", Self::NAME)
}
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MsgRepayResponse {}
impl ::prost::Name for MsgRepayResponse {
const NAME: &'static str = "MsgRepayResponse";
const PACKAGE: &'static str = "side.lending";
fn full_name() -> ::prost::alloc::string::String {
::prost::alloc::format!("side.lending.{}", Self::NAME)
}
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MsgRedeem {
#[prost(string, tag = "1")]
pub borrower: ::prost::alloc::string::String,
#[prost(string, tag = "2")]
pub loan_id: ::prost::alloc::string::String,
#[prost(string, tag = "3")]
pub loan_secret: ::prost::alloc::string::String,
}
impl ::prost::Name for MsgRedeem {
const NAME: &'static str = "MsgRedeem";
const PACKAGE: &'static str = "side.lending";
fn full_name() -> ::prost::alloc::string::String {
::prost::alloc::format!("side.lending.{}", Self::NAME)
}
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MsgRedeemResponse {}
impl ::prost::Name for MsgRedeemResponse {
const NAME: &'static str = "MsgRedeemResponse";
const PACKAGE: &'static str = "side.lending";
fn full_name() -> ::prost::alloc::string::String {
::prost::alloc::format!("side.lending.{}", Self::NAME)
}
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MsgAddLiquidity {
#[prost(string, tag = "1")]
pub pool_id: ::prost::alloc::string::String,
#[prost(string, tag = "2")]
pub lender: ::prost::alloc::string::String,
#[prost(message, optional, tag = "3")]
pub amount: ::core::option::Option<super::super::cosmos::base::v1beta1::Coin>,
}
impl ::prost::Name for MsgAddLiquidity {
const NAME: &'static str = "MsgAddLiquidity";
const PACKAGE: &'static str = "side.lending";
fn full_name() -> ::prost::alloc::string::String {
::prost::alloc::format!("side.lending.{}", Self::NAME)
}
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MsgAddLiquidityResponse {
#[prost(message, optional, tag = "1")]
pub shares: ::core::option::Option<super::super::cosmos::base::v1beta1::Coin>,
}
impl ::prost::Name for MsgAddLiquidityResponse {
const NAME: &'static str = "MsgAddLiquidityResponse";
const PACKAGE: &'static str = "side.lending";
fn full_name() -> ::prost::alloc::string::String {
::prost::alloc::format!("side.lending.{}", Self::NAME)
}
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MsgRemoveLiquidity {
#[prost(string, tag = "1")]
pub lender: ::prost::alloc::string::String,
#[prost(message, optional, tag = "2")]
pub shares: ::core::option::Option<super::super::cosmos::base::v1beta1::Coin>,
}
impl ::prost::Name for MsgRemoveLiquidity {
const NAME: &'static str = "MsgRemoveLiquidity";
const PACKAGE: &'static str = "side.lending";
fn full_name() -> ::prost::alloc::string::String {
::prost::alloc::format!("side.lending.{}", Self::NAME)
}
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MsgRemoveLiquidityResponse {
#[prost(message, optional, tag = "1")]
pub amount: ::core::option::Option<super::super::cosmos::base::v1beta1::Coin>,
}
impl ::prost::Name for MsgRemoveLiquidityResponse {
const NAME: &'static str = "MsgRemoveLiquidityResponse";
const PACKAGE: &'static str = "side.lending";
fn full_name() -> ::prost::alloc::string::String {
::prost::alloc::format!("side.lending.{}", Self::NAME)
}
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MsgApply {
#[prost(string, tag = "1")]
pub borrower: ::prost::alloc::string::String,
#[prost(string, tag = "2")]
pub borrower_pubkey: ::prost::alloc::string::String,
#[prost(string, tag = "3")]
pub loan_secret_hash: ::prost::alloc::string::String,
#[prost(int64, tag = "4")]
pub maturity_time: i64,
#[prost(int64, tag = "5")]
pub final_timeout: i64,
#[prost(string, tag = "6")]
pub pool_id: ::prost::alloc::string::String,
#[prost(message, optional, tag = "7")]
pub borrow_amount: ::core::option::Option<super::super::cosmos::base::v1beta1::Coin>,
#[prost(uint64, tag = "8")]
pub event_id: u64,
#[prost(uint64, tag = "9")]
pub agency_id: u64,
#[prost(string, tag = "10")]
pub deposit_tx: ::prost::alloc::string::String,
#[prost(string, tag = "11")]
pub liquidation_cet: ::prost::alloc::string::String,
#[prost(string, tag = "12")]
pub liquidation_adaptor_signature: ::prost::alloc::string::String,
}
impl ::prost::Name for MsgApply {
const NAME: &'static str = "MsgApply";
const PACKAGE: &'static str = "side.lending";
fn full_name() -> ::prost::alloc::string::String {
::prost::alloc::format!("side.lending.{}", Self::NAME)
}
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MsgApplyResponse {
#[prost(string, tag = "1")]
pub vault_address: ::prost::alloc::string::String,
}
impl ::prost::Name for MsgApplyResponse {
const NAME: &'static str = "MsgApplyResponse";
const PACKAGE: &'static str = "side.lending";
fn full_name() -> ::prost::alloc::string::String {
::prost::alloc::format!("side.lending.{}", Self::NAME)
}
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MsgApprove {
#[prost(string, tag = "1")]
pub relayer: ::prost::alloc::string::String,
#[prost(string, tag = "2")]
pub deposit_tx_id: ::prost::alloc::string::String,
#[prost(string, tag = "3")]
pub block_hash: ::prost::alloc::string::String,
#[prost(string, repeated, tag = "4")]
pub proof: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
impl ::prost::Name for MsgApprove {
const NAME: &'static str = "MsgApprove";
const PACKAGE: &'static str = "side.lending";
fn full_name() -> ::prost::alloc::string::String {
::prost::alloc::format!("side.lending.{}", Self::NAME)
}
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MsgApproveResponse {}
impl ::prost::Name for MsgApproveResponse {
const NAME: &'static str = "MsgApproveResponse";
const PACKAGE: &'static str = "side.lending";
fn full_name() -> ::prost::alloc::string::String {
::prost::alloc::format!("side.lending.{}", Self::NAME)
}
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MsgSubmitRepaymentAdaptorSignature {
#[prost(string, tag = "1")]
pub sender: ::prost::alloc::string::String,
#[prost(string, tag = "2")]
pub loan_id: ::prost::alloc::string::String,
#[prost(string, tag = "3")]
pub adaptor_signature: ::prost::alloc::string::String,
}
impl ::prost::Name for MsgSubmitRepaymentAdaptorSignature {
const NAME: &'static str = "MsgSubmitRepaymentAdaptorSignature";
const PACKAGE: &'static str = "side.lending";
fn full_name() -> ::prost::alloc::string::String {
::prost::alloc::format!("side.lending.{}", Self::NAME)
}
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MsgSubmitRepaymentAdaptorSignatureResponse {}
impl ::prost::Name for MsgSubmitRepaymentAdaptorSignatureResponse {
const NAME: &'static str = "MsgSubmitRepaymentAdaptorSignatureResponse";
const PACKAGE: &'static str = "side.lending";
fn full_name() -> ::prost::alloc::string::String {
::prost::alloc::format!("side.lending.{}", Self::NAME)
}
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MsgSubmitLiquidationCetSignatures {
#[prost(string, tag = "1")]
pub sender: ::prost::alloc::string::String,
#[prost(string, tag = "2")]
pub loan_id: ::prost::alloc::string::String,
#[prost(string, repeated, tag = "3")]
pub signatures: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
impl ::prost::Name for MsgSubmitLiquidationCetSignatures {
const NAME: &'static str = "MsgSubmitLiquidationCetSignatures";
const PACKAGE: &'static str = "side.lending";
fn full_name() -> ::prost::alloc::string::String {
::prost::alloc::format!("side.lending.{}", Self::NAME)
}
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MsgSubmitLiquidationCetSignaturesResponse {}
impl ::prost::Name for MsgSubmitLiquidationCetSignaturesResponse {
const NAME: &'static str = "MsgSubmitLiquidationCetSignaturesResponse";
const PACKAGE: &'static str = "side.lending";
fn full_name() -> ::prost::alloc::string::String {
::prost::alloc::format!("side.lending.{}", Self::NAME)
}
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MsgClose {
#[prost(string, tag = "1")]
pub relayer: ::prost::alloc::string::String,
#[prost(string, tag = "2")]
pub loan_id: ::prost::alloc::string::String,
#[prost(string, tag = "3")]
pub signature: ::prost::alloc::string::String,
}
impl ::prost::Name for MsgClose {
const NAME: &'static str = "MsgClose";
const PACKAGE: &'static str = "side.lending";
fn full_name() -> ::prost::alloc::string::String {
::prost::alloc::format!("side.lending.{}", Self::NAME)
}
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MsgCloseResponse {}
impl ::prost::Name for MsgCloseResponse {
const NAME: &'static str = "MsgCloseResponse";
const PACKAGE: &'static str = "side.lending";
fn full_name() -> ::prost::alloc::string::String {
::prost::alloc::format!("side.lending.{}", Self::NAME)
}
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MsgSubmitPrice {
#[prost(string, tag = "1")]
pub sender: ::prost::alloc::string::String,
#[prost(string, tag = "2")]
pub price: ::prost::alloc::string::String,
}
impl ::prost::Name for MsgSubmitPrice {
const NAME: &'static str = "MsgSubmitPrice";
const PACKAGE: &'static str = "side.lending";
fn full_name() -> ::prost::alloc::string::String {
::prost::alloc::format!("side.lending.{}", Self::NAME)
}
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MsgSubmitPriceResponse {}
impl ::prost::Name for MsgSubmitPriceResponse {
const NAME: &'static str = "MsgSubmitPriceResponse";
const PACKAGE: &'static str = "side.lending";
fn full_name() -> ::prost::alloc::string::String {
::prost::alloc::format!("side.lending.{}", Self::NAME)
}
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MsgUpdateParams {
#[prost(string, tag = "1")]
pub authority: ::prost::alloc::string::String,
#[prost(message, optional, tag = "2")]
pub params: ::core::option::Option<Params>,
}
impl ::prost::Name for MsgUpdateParams {
const NAME: &'static str = "MsgUpdateParams";
const PACKAGE: &'static str = "side.lending";
fn full_name() -> ::prost::alloc::string::String {
::prost::alloc::format!("side.lending.{}", Self::NAME)
}
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MsgUpdateParamsResponse {}
impl ::prost::Name for MsgUpdateParamsResponse {
const NAME: &'static str = "MsgUpdateParamsResponse";
const PACKAGE: &'static str = "side.lending";
fn full_name() -> ::prost::alloc::string::String {
::prost::alloc::format!("side.lending.{}", Self::NAME)
}
}
include!("side.lending.serde.rs");
include!("side.lending.tonic.rs");