Developers API

Hook onto it by using...

import is.currency.Currency
...
private Currency currency;
...
Plugin currencyCore = super.getServer().getPluginManager().getPlugin("CurrencyCore");
if(currencyCore != null) {
    currency = (Currency) currencyCore;
}


Access accounts by using (not case sensitive)...

AccountContext account = this.currency.getAccountManager().getAccount("noob");


Format currency by using...

String string = this.currency.getFormatHelper().format(50.0);


Pretty straight forward from there.