Skip to content
This repository has been archived by the owner on Dec 9, 2022. It is now read-only.

Latest commit

 

History

History
242 lines (211 loc) · 6.84 KB

configuration-groups.md

File metadata and controls

242 lines (211 loc) · 6.84 KB

Groups configuration

Fast example:

groups:
  test:
    - interface: ethereum
      addr: 0xe99356bde974bbe08721d77712168fa070aa8da4
      decimal_places: 4
      name: home mist
      percent_owned: 100

Universal options

Universal options can be set in defaults file section. Every option from defaults section appying to each group element if it has not set permanently. Values can be applied to any wallet:

  • interface required, string coin interface name. Coins list below.
  • decimal_places optional, int Decimal places for cryptocurrency balance output
  • percent_owned: optional, int Balance percentile you own
  • name optional, string Short name for wallet

Wallets

cryptoportfolio can show your cryptocoin wallet balances.

Bitcoin address Interface name: bitcoin Works using https://blockchain.info Options:

Ethereum address Interface name: ethereum Works using https://api.ethplorer.io Options:

Emercoin address Interface name: emercoin Works using https://emercoin.mintr.org Options:

MAGI coin address Interface name: magi Works using https://chainz.cryptoid.info Options:

Stellar address Interface name: stellar Works using https://horizon.stellar.org Options:

NEM address Interface name: nem Works using undocumnted balance request on http://explorer.ournem.com/ Options:

Reddcoin address Interface name: reddcoin Works using undocumnted balance request on https://live.reddcoin.com/ Options:

Radium address Interface name: reddcoin Works using api balance request on https://chainz.cryptoid.info/ Options:

Hyperstake address Interface name: hyperstake Works using balance request on https://prohashing.com/explorer/ Options:

Cardano address Interface name: cardano Works using balance request on https://cardanoexplorer.com Options:

QTUM address Interface name: qtum Works using official explorer api https://qtum.info/ Options:

CRDS address Interface name: crds Works using official explorer api http://explorer.crds.co/ Options:

Mining pools

cryptoportfolio can show your mining pool confirmed balance.

Interface name: nicehash Works using nicehash api You can get api key and id in account settings page Options:

Interface name: bitcoin_com Works using rest v2 api You can get api_key account settings page Options:

Interface name: f2pool Works using rest api Options:

  • universal options
  • currency required, string Your currency
  • user required, string Username

Exchanges

cryptoportfolio can show your exchange deposits

Interface name: poloniex Works using api You can get api keys in api settings page Options:

  • universal options
  • api_key required, string API key
  • api_secret required, string API secret

Interface name: bittrex Works using python-bittrex api wrapper You can get api keys in api settings page Options:

  • universal options
  • api_key required, string API key
  • api_secret required, string API secret

Interface name: binance Works using official api You can get api keys in api settings page Options:

  • universal options
  • api_key required, string API key
  • api_secret required, string API secret

Example

groups:
  test:
    - interface: ethereum
      addr: 0xe99356bde974bbe08721d77712168fa070aa8da4
      percent_owned: 80
    - interface: bitcoin
      addr: 1Hz96kJKF2HLPGY15JWLB5m9qGNxvt8tHJ
      percent_owned: 10
    - interface: magi
      decimal_places: 4
      addr: 958cdNtPsrU5ohF2qULhnSFkdu99JCrDgv
    - interface: stellar
      addr: GAKOQTDQYEV4KZI2EGEL4OS4AA6XHAXFQUAJ52C7B4H7SCL2XVKQYJAR
    - interface: emercoin
      addr: EQcFiCWANf3jziUumewwuTHMzMxa4a4QDw

    - interface: nicehash
      name: nicehash
      id: ...
      key: ...
    - interface: bitcoin_com
      api_key: ...

    - interface: poloniex
      name: poloniex
      api_key: ...
      api_secret: ...