4.3. Block API¶
4.3.1. Block¶
4.3.1.1. get_blocks¶
-
vector<optional<signed_block>>
graphene::app::block_api::get_blocks(uint32_t block_num_from, uint32_t block_num_to) const¶ Get signed blocks.
- Return
- A list of signed blocks from block_num_from till block_num_to
- Parameters
block_num_from: The lowest block numberblock_num_to: The highest block number
4.4. Asset API¶
4.4.1. Asset¶
4.4.1.1. get_asset_holders¶
-
vector<account_asset_balance>
graphene::app::asset_api::get_asset_holders(asset_id_type asset_id, uint32_t start, uint32_t limit) const¶ Get asset holders for a specific asset.
- Return
- A list of asset holders for the specified asset
- Parameters
asset_id: The specific assetstart: The start indexlimit: Maximum limit must not exceed 100
4.5. Orders API¶
4.5.1. Orders¶
4.5.1.1. get_grouped_limit_orders¶
-
vector<limit_order_group>
graphene::app::orders_api::get_grouped_limit_orders(asset_id_type base_asset_id, asset_id_type quote_asset_id, uint16_t group, optional<price> start, uint32_t limit) const¶ Get grouped limit orders in given market.
- Return
- The grouped limit orders, ordered from best offered price to worst
- Parameters
base_asset_id: ID of asset being soldquote_asset_id: ID of asset being purchasedgroup: Maximum price diff within each order group, have to be one of configured valuesstart: Optional price to indicate the first order group to retrievelimit: Maximum number of order groups to retrieve (must not exceed 101)