mirror of
https://github.com/OpenBB-finance/OpenBB.git
synced 2026-06-08 15:54:10 +08:00
* add first iteration of content for Terminal Pro * Update index.md * Update dashboards.md * Update folders.md * Update grouping.md * Update report.md * Update templates.md * Update quick-start.md * Update index.md * Update index.md * Update home.md * Update news.md * Update index.md * Update index.md * Update index.md * Update data-provider.md * Update chat-with-widget.md * Update data-manipulation.md * Update forecasting.md * fix: images self closing tags * fix: only pro visitors can see pro * inter font * improve SEO content and restructuring * add new package for toggle on tutorials * move folder around * improve main page of each prod * small updates and improvements * fix logo above * small improvement in headtitle for portfolio funcs * fix typos from OpenAI's GPT-4 * fix _category_ json * remove generic SEO words * add script that generates SEO for documentation * add missing file * remove sdk warning message * fix links for andrew --------- Co-authored-by: jose-donato <zmcdonato@gmail.com> Co-authored-by: jose-donato <43375532+jose-donato@users.noreply.github.com> Co-authored-by: andrewkenreich <andrew.kenreich@gmail.com>
2.3 KiB
Vendored
2.3 KiB
Vendored
title, description, keywords
| title | description | keywords | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| validators | The page details the usage and parameters of two functions that work with 'validators' in the terra system. The 'validators' function provides terra validators details while the 'validators_chart' function sorts data and provides the option to export dataframe data. |
|
import HeadTitle from '@site/src/components/General/HeadTitle.tsx';
import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem';
Get information about terra validators [Source: https://fcd.terra.dev/swagger]
Source Code: [link]
openbb.crypto.defi.validators(sortby: str = "votingPower", ascend: bool = True)
Parameters
This function does not take any parameters.
Returns
| Type | Description |
|---|---|
| pd.DataFrame | terra validators details |
Prints table showing information about terra validators [Source: https://fcd.terra.dev/swagger]
Source Code: [link]
openbb.crypto.defi.validators_chart(limit: int = 10, sortby: str = "votingPower", ascend: bool = True, export: str = "")
Parameters
| Name | Type | Description | Default | Optional |
|---|---|---|---|---|
| limit | int | Number of records to display | 10 | True |
| sortby | str | Key by which to sort data. Choose from: validatorName, tokensAmount, votingPower, commissionRate, status, uptime |
votingPower | True |
| ascend | bool | Flag to sort data descending | True | True |
| export | str | Export dataframe data to csv,json,xlsx file | True |
Returns
This function does not return anything