📄️ createAddress
Creates an additional address in your wallet.
📄️ createDelayedTransaction
Creates a delayed transaction. Such transactions are not sent into the network automatically and should be pushed using sendDelayedTransaction method.
📄️ createIntegratedAddress
Allows you to create a combined address, containing a standard address and a paymentId, to be used in sendTransaction or for supplying to a user, instead of using an address and paymentId as separate parameters. This is helpful to ensure users cannot forget to supply a payment Id.
📄️ deleteAddress
Deletes a specified address.
📄️ deleteDelayedTransaction
Deletes a specified delayed transaction.
📄️ estimateFusion
Counts the number of unspent outputs of the specified addresses and returns how many of those outputs can be optimized. This method is used to understand if a fusion transaction can be created. If fusionReadyCount returns a value = 0, then a fusion transaction cannot be created.
📄️ getAddresses
Returns an array of your RPC Wallet's addresses.
📄️ getBalance
Returns a balance for a specified address.
📄️ getBlockHashes
Returns an array of block hashes for a specified block range.
📄️ getDelayedTransactionHashes
Returns hashes of delayed transactions.
📄️ getFeeInfo
Retrieves the fee and address to which the fee is paid for using the remote node you are connecting to. This fee will be automatically added to any transaction sent by sendTransaction or sendDelayedTransaction. Note that it does not apply to sendFusionTransaction.
📄️ getMnemonicSeed
Returns the mnemonic seed for the given deterministic address. A mnemonic seed is a list of words which can be used to recover a wallet.
📄️ getSpendKeys
Returns your spend keys.
📄️ getStatus
Returns information about the current RPC Wallet state: block count, known block count, last block hash and peer count.
📄️ getTransaction
Returns information about a particular transaction.
📄️ getTransactionHashes
Returns an array of block and transaction hashes. A transaction consists of transfers. A transfer is an amount-address pair. There could be several transfers in a single transaction.
📄️ getTransactions
Returns an array of block and transaction hashes. A transaction consists of transfers. A transfer is an amount-address pair. There could be several transfers in a single transaction.
📄️ getUnconfirmedTransactionHashes
Returns information about the current unconfirmed transaction pool or for a specified addresses.
📄️ getViewKey
Returns your view key.
📄️ reset
Allows you to re-sync your wallet.
📄️ save
Allows you to save your wallet by request.
📄️ sendDelayedTransaction
Sends a specified delayed transaction.
📄️ sendFusionTransaction
Allows you to send a fusion transaction, by taking funds from selected addresses and transferring them to the destination address. If there aren't any outputs that can be optimized, sendFusionTransaction will return an error. You can use estimateFusion to check the outputs, available for the optimization
📄️ sendTransaction
Allows you to send transaction(s) to one or several addresses. Also, it allows you to use a payment ID for a transaction to a single address.