BitShares-Core
7.0.2
BitShares blockchain node software and command-line wallet software
libraries
protocol
samet_fund.cpp
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
#include <
graphene/protocol/samet_fund.hpp
>
25
26
#include <
fc/io/raw.hpp
>
27
28
namespace
graphene
{
namespace
protocol {
29
30
void
samet_fund_create_operation::validate
()
const
31
{
32
FC_ASSERT
(
fee
.
amount
>= 0,
"Fee should not be negative"
);
33
FC_ASSERT
(
balance
> 0,
"Balance should be positive"
);
34
}
35
36
void
samet_fund_delete_operation::validate
()
const
37
{
38
FC_ASSERT
(
fee
.
amount
>= 0,
"Fee should not be negative"
);
39
}
40
41
void
samet_fund_update_operation::validate
()
const
42
{
43
FC_ASSERT
(
fee
.
amount
>= 0,
"Fee should not be negative"
);
44
FC_ASSERT
(
delta_amount
.valid() ||
new_fee_rate
.
valid
(),
"Should change something"
);
45
if
(
delta_amount
.valid() )
46
FC_ASSERT
(
delta_amount
->amount != 0,
"Delta amount should not be zero"
);
47
}
48
49
void
samet_fund_borrow_operation::validate
()
const
50
{
51
FC_ASSERT
(
fee
.
amount
>= 0,
"Fee should not be negative"
);
52
FC_ASSERT
(
borrow_amount
.
amount
> 0,
"Amount to borrow should be positive"
);
53
}
54
55
void
samet_fund_repay_operation::validate
()
const
56
{
57
FC_ASSERT
(
fee
.
amount
>= 0,
"Fee should not be negative"
);
58
FC_ASSERT
(
repay_amount
.
amount
> 0,
"Amount to repay should be positive"
);
59
FC_ASSERT
(
fund_fee
.
amount
>= 0,
"Fund fee should not be negative"
);
60
FC_ASSERT
(
repay_amount
.
asset_id
==
fund_fee
.
asset_id
,
61
"Asset type of repay amount and fund fee should be the same"
);
62
}
63
64
} }
// graphene::protocol
65
66
GRAPHENE_IMPLEMENT_EXTERNAL_SERIALIZATION
(
graphene::protocol::samet_fund_create_operation::fee_params_t
)
67
GRAPHENE_IMPLEMENT_EXTERNAL_SERIALIZATION
(
graphene::protocol::samet_fund_delete_operation::fee_params_t
)
68
GRAPHENE_IMPLEMENT_EXTERNAL_SERIALIZATION
(
graphene::protocol::samet_fund_update_operation::fee_params_t
)
69
GRAPHENE_IMPLEMENT_EXTERNAL_SERIALIZATION
(
graphene::protocol::samet_fund_borrow_operation::fee_params_t
)
70
GRAPHENE_IMPLEMENT_EXTERNAL_SERIALIZATION
(
graphene::protocol::samet_fund_repay_operation::fee_params_t
)
71
72
GRAPHENE_IMPLEMENT_EXTERNAL_SERIALIZATION
(
graphene::protocol::samet_fund_create_operation
)
73
GRAPHENE_IMPLEMENT_EXTERNAL_SERIALIZATION
(
graphene::protocol::samet_fund_delete_operation
)
74
GRAPHENE_IMPLEMENT_EXTERNAL_SERIALIZATION
(
graphene::protocol::samet_fund_update_operation
)
75
GRAPHENE_IMPLEMENT_EXTERNAL_SERIALIZATION
(
graphene::protocol::samet_fund_borrow_operation
)
76
GRAPHENE_IMPLEMENT_EXTERNAL_SERIALIZATION
(
graphene::protocol::samet_fund_repay_operation
)
graphene::protocol::samet_fund_update_operation::new_fee_rate
optional< uint32_t > new_fee_rate
New fee rate, optional.
Definition:
samet_fund.hpp:82
graphene::protocol::samet_fund_update_operation::fee_params_t
Definition:
samet_fund.hpp:76
graphene::protocol::samet_fund_delete_operation
Delete a SameT Fund object.
Definition:
samet_fund.hpp:56
graphene::protocol::samet_fund_borrow_operation::fee
asset fee
Operation fee.
Definition:
samet_fund.hpp:98
graphene::protocol::samet_fund_create_operation::balance
share_type balance
Usable amount in the fund.
Definition:
samet_fund.hpp:43
graphene::protocol::samet_fund_update_operation::fee
asset fee
Operation fee.
Definition:
samet_fund.hpp:78
graphene::protocol::samet_fund_repay_operation::fee_params_t
Definition:
samet_fund.hpp:115
graphene::protocol::samet_fund_update_operation::delta_amount
optional< asset > delta_amount
Delta amount, optional.
Definition:
samet_fund.hpp:81
GRAPHENE_IMPLEMENT_EXTERNAL_SERIALIZATION
#define GRAPHENE_IMPLEMENT_EXTERNAL_SERIALIZATION(type)
Definition:
types.hpp:86
samet_fund.hpp
graphene::protocol::samet_fund_borrow_operation
Borrow from a SameT Fund.
Definition:
samet_fund.hpp:94
graphene::protocol::samet_fund_create_operation
Create a new SameT Fund object.
Definition:
samet_fund.hpp:36
graphene::protocol::samet_fund_update_operation
Update a SameT Fund object.
Definition:
samet_fund.hpp:74
graphene::protocol::samet_fund_repay_operation::fee
asset fee
Operation fee.
Definition:
samet_fund.hpp:117
graphene::protocol::samet_fund_repay_operation::validate
void validate() const override
Definition:
samet_fund.cpp:55
graphene::protocol::samet_fund_create_operation::fee
asset fee
Operation fee.
Definition:
samet_fund.hpp:40
graphene::protocol::samet_fund_delete_operation::fee
asset fee
Operation fee.
Definition:
samet_fund.hpp:60
graphene::protocol::samet_fund_borrow_operation::fee_params_t
Definition:
samet_fund.hpp:96
fc::optional::valid
bool valid() const
Definition:
optional.hpp:186
graphene::protocol::asset::asset_id
asset_id_type asset_id
Definition:
asset.hpp:37
graphene::protocol::samet_fund_update_operation::validate
void validate() const override
Definition:
samet_fund.cpp:41
graphene::protocol::samet_fund_delete_operation::validate
void validate() const override
Definition:
samet_fund.cpp:36
graphene::protocol::samet_fund_repay_operation::repay_amount
asset repay_amount
The amount to repay.
Definition:
samet_fund.hpp:120
FC_ASSERT
#define FC_ASSERT(TEST,...)
Checks a condition and throws an assert_exception if the test is FALSE.
Definition:
exception.hpp:345
graphene::protocol::asset::amount
share_type amount
Definition:
asset.hpp:36
graphene::protocol::samet_fund_repay_operation::fund_fee
asset fund_fee
Fee for using the fund.
Definition:
samet_fund.hpp:121
graphene::protocol::samet_fund_delete_operation::fee_params_t
Definition:
samet_fund.hpp:58
graphene::protocol::samet_fund_create_operation::validate
void validate() const override
Definition:
samet_fund.cpp:30
graphene::protocol::samet_fund_repay_operation
Repay to a SameT Fund.
Definition:
samet_fund.hpp:113
graphene::protocol::samet_fund_create_operation::fee_params_t
Definition:
samet_fund.hpp:38
graphene::protocol::samet_fund_borrow_operation::validate
void validate() const override
Definition:
samet_fund.cpp:49
graphene::protocol::samet_fund_borrow_operation::borrow_amount
asset borrow_amount
The amount to borrow.
Definition:
samet_fund.hpp:101
graphene
Definition:
api.cpp:48
raw.hpp
Generated on Fri Dec 15 2023 06:12:43 for BitShares-Core by
1.8.17