PsychicCat / monero-nodejs

Monero wallet management via JSON-RPC
MIT License
114 stars 61 forks source link
monero

monero-nodejs

A Node.js wallet manager for interacting with monero-wallet-rpc.

For more information about Monero, visit: https://getmonero.org

If you found this useful, please consider contributing to the Monero Project!

Install the package

via NPM

npm install monero-nodejs

Or clone the Github repository

git clone https://github.com/PsychicCat/monero-nodejs.git

Initializing a wallet

Require the module:

var moneroWallet = require('monero-nodejs');

Create a new instance of the wallet:

var Wallet = new moneroWallet();

This creates a wallet using the following simplewallet default RPC settings:

To connect to a wallet with different settings, pass in the values:

var Wallet = new moneroWallet($HOSTNAME, $PORT);

Note: versions of monero-nodejs prior to 3.0 require hostname with the 'http://' prefix, 3.0 and greater only require the IP address.

Testing

Some basic tests can now be run locally to verify the library and your simplewallet instance are communicating. The tests assume simplewallet will be listening at the default config settings. Tests are run via mocha. To run the tests, clone the repository and then:

npm install npm test

Example Usage

Wallet.balance().then(function(balance) {
    console.log(balance);
});

Wallet Methods

create_wallet

Usage:

Wallet.create_wallet('monero_wallet', '', 'English');

Creates a new wallet.

Parameters:

Example response:

{}

Returns an object with error field if unsuccessful.

open_walllet

Usage:

Wallet.open_wallet('monero_wallet', '');

Opens a wallet.

Parameters:

Example response:

{}

Returns an object with error field if unsuccessful.

balance

Usage:

Wallet.balance();

Responds with the current balance and unlocked (spendable) balance of the wallet in atomic units. Divide by 1e12 to convert.

Example response:

{ balance: 3611980142579999, unlocked_balance: 3611980142579999 }

address

Usage:

Wallet.address();

Responds with the Monero address of the wallet.

Example response:

{ address: '44AFFq5kSiGBoZ4NMDwYtN18obc8AemS33DBLWs3H7otXft3XjrpDtQGv7SqSsaBYBb98uNbr2VBBEt7f2wfn3RVGQBEP3A' }

transfer

Usage:

Wallet.transfer(destinations, options);

Transfers Monero to a single recipient OR a group of recipients in a single transaction. Responds with the transaction hash of the payment.

Parameters:

Example response:

{ tx_hash: '<b9272a68b0f242769baa1ac2f723b826a7efdc5ba0c71a2feff4f292967936d8>', tx_key: '' }

transferSplit

Usage:

Wallet.transferSplit(destinations, options);

Same as transfer, but can split into more than one transaction if necessary. Responds with a list of transaction hashes.

Additional property available for the options parameter:

Example response:

{ tx_hash_list: [ '<f17fb226ebfdf784a0f5814e1c5bb78c19ea26930a0d706c9dc1085a250ceb37>' ] }

sweep_dust

Usage:

Wallet.sweep_dust();

Sends all dust outputs back to the wallet, to make funds easier to spend and mix. Responds with a list of the corresponding transaction hashes.

Example response:

{ tx_hash_list: [ '<75c666fc96120a643321a5e76c0376b40761582ee40cc4917e8d1379a2c8ad9f>' ] }

sweep_all

Usage:

Wallet.sweep_all('44AFFq5kSiGBoZ4NMDwYtN18obc8AemS33DBLWs3H7otXft3XjrpDtQGv7SqSsaBYBb98uNbr2VBBEt7f2wfn3RVGQBEP3A');

Sends all spendable outputs to the specified address. Responds with a list of the corresponding transaction hashes.

Example response:

{ tx_hash_list: [ '<75c666fc96120a643321a5e76c0376b40761582ee40cc4917e8d1379a2c8ad9f>' ] }

getPayments

Usage:

Wallet.getPayments(paymentID);

Returns a list of incoming payments using a given payment ID.

Parameters:

getBulkPayments

Usage:

Wallet.getBulkPayments(paymentIDs, minHeight);

Returns a list of incoming payments using a single payment ID or a list of payment IDs from a given height.

Parameters:

incomingTransfers

Usage:

Wallet.incomingTransfers(type);

Returns a list of incoming transfers to the wallet.

Parameters:

queryKey

Usage:

Wallet.queryKey(type);

Returns the wallet's spend key (mnemonic seed) or view private key.

Parameters:

integratedAddress

Usage:

Wallet.integratedAddress(paymentID);

OR:

Wallet.integratedAddress();

Make and return a new integrated address from your wallet address and a payment ID.

Parameters:

Example response:

{ integrated_address: '4HCSju123guax69cVdqVP5APVLkcxxjjXdcP9fJWZdNc5mEpn3fXQY1CFmJDvyUXzj2Fy9XafvUgMbW91ZoqwqmQ96NYBVqEd6JAu9j3gk' }

splitIntegrated

Usage:

Wallet.splitIntegrated(address);

Returns the standard address and payment ID corresponding to a given integrated address.

Parameters:

Example response:

{ payment_id: '<61eec5ffd3b9cb57>',
  standard_address: '44AFFq5kSiGBoZ4NMDwYtN18obc8AemS33DBLWs3H7otXft3XjrpDtQGv7SqSsaBYBb98uNbr2VBBEt7f2wfn3RVGQBEP3A' }

height

Usage:

Wallet.height();

Returns the current block height of the daemon.

Parameters:

Example response:

{ height: 874458 }

stopWallet

Usage:

Wallet.stopWallet();

Cleanly shuts down the current simplewallet process.