Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | 1x | module.exports = {
get_basic_info: [],
get_tx_ids: [],
get_deposit_address: [`currency`],
get_callback_address: [`currency`],
create_transfer: [`amount`, `currency`, `merchant|pbntag`],
convert: [`amount`, `from`, `to`],
convert_limits: [`from`, `to`],
get_withdrawal_history: [],
get_conversion_info: [`id`],
get_pbn_info: [`pbntag`],
get_pbn_list: [],
update_pbn_tag: [`tagid`],
claim_pbn_tag: [`tagid`, `name`],
get_withdrawal_info: [`id`],
get_tx_info: [`txid`],
get_tx_info_multi: [`txid`],
create_withdrawal: [`amount`, `currency`, `address|pbntag`],
create_mass_withdrawal: [],
create_transaction: [`amount`, `currency1`, `currency2`, `buyer_email`],
rates: [],
balances: []
};
|