statenweb/cryptocurrency

Cryptocurrency Display

Installs: 27

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 2

Forks: 0

Open Issues: 0

Type:wordpress-plugin

0.0.11 2018-01-01 00:28 UTC

This package is auto-updated.

Last update: 2024-03-25 23:52:38 UTC


README

=== Cryptocurrency Portfolio Tracker ===
Contributors: matstars, statenweb
Donate link: https://statenweb.com/donate
Tags: cryptocurrency, bitcoin, litecoin, ethereum, bitcoin cash, ripple
Requires at least: 4.0
Tested up to: 4.9.5
Stable tag: 0.0.15
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html

Calculate and output your cryptocurrency portfolio's performance

== Description ==

Adds an admin screen to enter in your cryptocurrency purchases and then exposes a simple to use shortcode and simple API to output your cryptocurrency portfolio's performance on the frontend.

Please note that this plugin makes use of a 3rd party service to retrieve cryptocurrency prices. This means that a request is made to third party servers (coinmarketcap.com) requesting current cryptocurrency prices. See https://coinmarketcap.com/api/ for more information.

## Simple usage:

### Adding your portfolio


- Download, install and activate the plugin.
- Go to `Settings` > `Cryptocurrency`
- Populate your coin purchases and your cost bases. You can enter multiple entries for the same currency (i.e. you have bought the same currency multiple times at different cost bases).
- ???
- Profit!... or look and see how to output the table on the frontend.


### Outputting the data



#### Shortcode

`[cryptocurrency_table]`


#### PHP API

`cryptocurrency_table();`


#### Filters

For the sake of brevity, by default, the table outputs (1) the current price of each currency and does NOT output the last time the price was retrieved (see API section below), both of which can be toggled by adding the following:

Hiding the current price:

`add_filter( 'cryptocurrency/show_current_price', '__return_false’ );`

Showing the last updated:

`add_filter( 'cryptocurrency/show_last_updated', '__return_true' );`

#### API

This plugin uses the public API made available by coinmarketcap.com. It is built to cache responses for 60 seconds so as to not flood the API. The plugin injects the last updated date/time as part of the response object which can be exposed via a filter (see Filters above). Please make sure to follow their API rules. See https://coinmarketcap.com/api/ for more information.


#### Release Notes


- 0.0.15
bugfixes, analytics data

- 0.0.14
frontend updates for the shortcode (thanks /u/ZSsDesign)

- 0.0.13
update plugin title (thanks /u/you-cant-twerk)

- 0.0.12
readme fix

- 0.0.11
update readme to be more explicit that this plugin makes requests to a third party server.

- 0.0.10
update language on purchase spend field

- 0.0.9
don’t rely on composer’s autoloader, use spl’s

- 0.0.8
fix for readme.txt

- 0.0.7
adding back composer.lock
setting current price to be displayed by default

- 0.0.6
move dependencies to dev-dependencies in composer.json

- 0.0.5
remove composer.lock to stop dependency recursion

- 0.0.4
fix typo in documentation

- 0.0.3
remove title from table

- 0.0.2
adding translation template

- 0.0.1
initial release

#### Roadmap
Things I'd like to add in the future
- Ability to set and display data based on a specific currency (currently only supports USD).

- Translations, feel free to translate this into your own language, `cryptocurrency` is the text domain.

== Installation ==

This section describes how to install the plugin and get it working.

1. Upload the plugin files to the `/wp-content/plugins/cryptocurrency` directory, or install the plugin through the WordPress plugins screen directly.
1. Activate the plugin through the 'Plugins' screen in WordPress
1. Use the Settings->Cryptocurrency screen to add your cryptocurrency portfolio
1. Use the shortcode or API (examples for both above) to output your portfolio data