BitShares-Core  7.0.2
BitShares blockchain node software and command-line wallet software
samet_fund_object.hpp
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2021 Abit More, and contributors.
3  *
4  * The MIT License
5  *
6  * Permission is hereby granted, free of charge, to any person obtaining a copy
7  * of this software and associated documentation files (the "Software"), to deal
8  * in the Software without restriction, including without limitation the rights
9  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10  * copies of the Software, and to permit persons to whom the Software is
11  * furnished to do so, subject to the following conditions:
12  *
13  * The above copyright notice and this permission notice shall be included in
14  * all copies or substantial portions of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22  * THE SOFTWARE.
23  */
24 #pragma once
25 
26 #include <graphene/chain/types.hpp>
28 
29 #include <boost/multi_index/composite_key.hpp>
30 
31 namespace graphene { namespace chain {
32 
39 class samet_fund_object : public abstract_object<samet_fund_object, protocol_ids, samet_fund_object_type>
40 {
41  public:
42  account_id_type owner_account;
43  asset_id_type asset_type;
45  uint32_t fee_rate = 0;
47 };
48 
49 struct by_unpaid; // for protocol
50 struct by_owner; // for API
51 struct by_asset_type; // for API
52 
56 using samet_fund_multi_index_type = multi_index_container<
58  indexed_by<
59  ordered_unique< tag<by_id>, member< object, object_id_type, &object::id > >,
60  ordered_unique< tag<by_unpaid>,
61  composite_key< samet_fund_object,
62  member< samet_fund_object, share_type, &samet_fund_object::unpaid_amount >,
63  member< object, object_id_type, &object::id>
64  >,
65  composite_key_compare< std::greater<share_type>, std::less<object_id_type> >
66  >,
67  ordered_unique< tag<by_owner>,
68  composite_key< samet_fund_object,
69  member< samet_fund_object, account_id_type, &samet_fund_object::owner_account >,
70  member< object, object_id_type, &object::id>
71  >
72  >,
73  ordered_unique< tag<by_asset_type>,
74  composite_key< samet_fund_object,
75  member< samet_fund_object, asset_id_type, &samet_fund_object::asset_type >,
76  member< object, object_id_type, &object::id>
77  >
78  >
79  >
80 >;
81 
86 
87 } } // graphene::chain
88 
90 
92 
graphene::chain::samet_fund_object
A SameT Fund is a fund which can be used by a borrower and have to be repaid in the same transaction.
Definition: samet_fund_object.hpp:39
FC_REFLECT_TYPENAME
FC_REFLECT_TYPENAME(fc::log_message)
generic_index.hpp
graphene::chain::samet_fund_multi_index_type
multi_index_container< samet_fund_object, indexed_by< ordered_unique< tag< by_id >, member< object, object_id_type, &object::id > >, ordered_unique< tag< by_unpaid >, composite_key< samet_fund_object, member< samet_fund_object, share_type, &samet_fund_object::unpaid_amount >, member< object, object_id_type, &object::id > >, composite_key_compare< std::greater< share_type >, std::less< object_id_type > > >, ordered_unique< tag< by_owner >, composite_key< samet_fund_object, member< samet_fund_object, account_id_type, &samet_fund_object::owner_account >, member< object, object_id_type, &object::id > > >, ordered_unique< tag< by_asset_type >, composite_key< samet_fund_object, member< samet_fund_object, asset_id_type, &samet_fund_object::asset_type >, member< object, object_id_type, &object::id > > > > > samet_fund_multi_index_type
Definition: samet_fund_object.hpp:80
MAP_OBJECT_ID_TO_TYPE
#define MAP_OBJECT_ID_TO_TYPE(OBJECT)
Definition: object_id.hpp:93
graphene::db::abstract_object
Definition: object.hpp:107
graphene::chain::samet_fund_object::unpaid_amount
share_type unpaid_amount
Unpaid amount.
Definition: samet_fund_object.hpp:46
graphene::chain::samet_fund_object::fee_rate
uint32_t fee_rate
Fee rate, the demominator is GRAPHENE_FEE_RATE_DENOM.
Definition: samet_fund_object.hpp:45
GRAPHENE_DECLARE_EXTERNAL_SERIALIZATION
#define GRAPHENE_DECLARE_EXTERNAL_SERIALIZATION(type)
Definition: types.hpp:85
graphene::chain::samet_fund_object::balance
share_type balance
Usable amount in the fund.
Definition: samet_fund_object.hpp:44
types.hpp
graphene::db::generic_index
Definition: generic_index.hpp:43
graphene::chain::samet_fund_object::asset_type
asset_id_type asset_type
Asset type in the fund.
Definition: samet_fund_object.hpp:43
graphene::chain::samet_fund_object::owner_account
account_id_type owner_account
Owner of the fund.
Definition: samet_fund_object.hpp:42
graphene
Definition: api.cpp:48
fc::safe
Definition: safe.hpp:26