BitShares-Core
7.0.2
BitShares blockchain node software and command-line wallet software
|
A liquidity pool. More...
#include <liquidity_pool_object.hpp>
Public Member Functions | |
void | update_virtual_value () |
Public Member Functions inherited from graphene::db::abstract_object< liquidity_pool_object, protocol_ids, liquidity_pool_object_type > | |
abstract_object () | |
object_id< SpaceID, TypeID > | get_id () const |
Public Member Functions inherited from graphene::db::base_abstract_object< liquidity_pool_object > | |
std::unique_ptr< object > | clone () const override |
void | move_from (object &obj) override |
fc::variant | to_variant () const override |
std::vector< char > | pack () const override |
object ()=default | |
object (uint8_t space_id, uint8_t type_id) | |
Public Member Functions inherited from graphene::db::object | |
object ()=default | |
object (uint8_t space_id, uint8_t type_id) | |
virtual | ~object ()=default |
virtual std::unique_ptr< object > | clone () const =0 |
virtual fc::variant | to_variant () const =0 |
virtual std::vector< char > | pack () const =0 |
Public Attributes | |
asset_id_type | asset_a |
Type of the first asset in the pool. More... | |
asset_id_type | asset_b |
Type of the second asset in the pool. More... | |
share_type | balance_a |
The balance of the first asset in the pool. More... | |
share_type | balance_b |
The balance of the second asset in the pool. More... | |
asset_id_type | share_asset |
Type of the share asset aka the LP token. More... | |
uint16_t | taker_fee_percent = 0 |
Taker fee percent. More... | |
uint16_t | withdrawal_fee_percent = 0 |
Withdrawal fee percent. More... | |
fc::uint128_t | virtual_value = 0 |
Virtual value of the pool. More... | |
Public Attributes inherited from graphene::db::object | |
object_id_type | id |
Additional Inherited Members | |
Static Public Attributes inherited from graphene::db::abstract_object< liquidity_pool_object, protocol_ids, liquidity_pool_object_type > | |
static constexpr uint8_t | space_id |
static constexpr uint8_t | type_id |
A liquidity pool.
Definition at line 44 of file liquidity_pool_object.hpp.
|
inline |
Definition at line 56 of file liquidity_pool_object.hpp.
asset_id_type graphene::chain::liquidity_pool_object::asset_a |
Type of the first asset in the pool.
Definition at line 47 of file liquidity_pool_object.hpp.
asset_id_type graphene::chain::liquidity_pool_object::asset_b |
Type of the second asset in the pool.
Definition at line 48 of file liquidity_pool_object.hpp.
share_type graphene::chain::liquidity_pool_object::balance_a |
The balance of the first asset in the pool.
Definition at line 49 of file liquidity_pool_object.hpp.
share_type graphene::chain::liquidity_pool_object::balance_b |
The balance of the second asset in the pool.
Definition at line 50 of file liquidity_pool_object.hpp.
asset_id_type graphene::chain::liquidity_pool_object::share_asset |
Type of the share asset aka the LP token.
Definition at line 51 of file liquidity_pool_object.hpp.
uint16_t graphene::chain::liquidity_pool_object::taker_fee_percent = 0 |
Taker fee percent.
Definition at line 52 of file liquidity_pool_object.hpp.
fc::uint128_t graphene::chain::liquidity_pool_object::virtual_value = 0 |
Virtual value of the pool.
Definition at line 54 of file liquidity_pool_object.hpp.
uint16_t graphene::chain::liquidity_pool_object::withdrawal_fee_percent = 0 |
Withdrawal fee percent.
Definition at line 53 of file liquidity_pool_object.hpp.