steampipe plugin install kaggrwal/bitfinex

Table: bitfinex_currency

This includes the config data and pairs related to particular currency.

Examples

To get pairs for a currency

select
pairs
from
bitfinex_currency
where
currency = 'USD';

To get all currency that contains bitcoin in label/description

select
currency
from
bitfinex_currency
where
label like '%Bitcoin%';

Schema for bitfinex_currency

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form, e.g. connection_name.
currencytextCurrency for which Config is requested.
explorers_address_urltextRecognised block explorer Address URL for the currency.
explorers_base_urltextRecognised block explorer Base URL for the currency.
explorers_transaction_urltextRecognised block explorer Transaction URL for the currency.
labeltextVerbose friendly name for the currency.
pairstextAll pairs for the currency.
poolstextNetwork/Protocol which is used by currency.
symboltextAPI symbol for the currency.
unittextUnit of measure for the currency.