A program to display your cryptocurrency balances in fiat currency - best for HODLers
If building from source, ensure Golang is installed on your system
Currently...
This program leverages the Coincap API for markets data reference.
Only USD fiat currency is supported.
All input data is sourced from a user supplied manifest file in JSON format (e.g. YOURFILENAME.json) via the -manifest argument.
Edit your JSON manifest file with your asset data. The manifest must include an array of objects. Object properties include:
id (string, required): Coincap API asset identifierquantity (float, required): quantity of the asset you currently hold
Example: manifest.json
[
{
"id": "bitcoin",
"quantity": 10.0
},
{
"id": "bitcoin-cash",
"quantity": 10.0
},
{
"id": "ethereum",
"quantity": 10.0
},
{
"id": "cardano",
"quantity": 10.0
},
{
"id": "xrp",
"quantity": 10.0
}
]You can either compile the program from source, or download a pre-compiled binary specific to your operating system
From the repository root directory, run the following shell command:
go buildInvoke the binary relative to your operating system via shell:
./cryptofolio -manifest=/path/to/your/manifest.json.\cryptofolio.exe -manifest=C:\path\to\your\manifest.json