Package monero.wallet

Class MoneroWalletFull

java.lang.Object
monero.wallet.MoneroWalletFull
All Implemented Interfaces:
MoneroWallet

public class MoneroWalletFull extends Object
Implements a Monero wallet using fully client-side JNI bindings to monero-project's wallet2 in C++.
  • Method Details

    • walletExists

      public static boolean walletExists(String path)
      Indicates if a wallet exists at the given path.
      Parameters:
      path - is the path to check for a wallet
      Returns:
      true if a wallet exists at the given path, false otherwise
    • openWallet

      public static MoneroWalletFull openWallet(String path, String password, MoneroNetworkType networkType, MoneroRpcConnection daemonConnection)
      Open an existing wallet using JNI bindings to wallet2.h.
      Parameters:
      path - is the path to the wallet file to open
      password - is the password of the wallet file to open
      networkType - is the wallet's network type
      daemonConnection - is connection configuration to a daemon (default = an unconnected wallet)
      Returns:
      the opened wallet
    • openWallet

      public static MoneroWalletFull openWallet(String path, String password, MoneroNetworkType networkType)
    • openWallet

      public static MoneroWalletFull openWallet(String path, String password, MoneroNetworkType networkType, String daemonUri)
    • openWalletData

      public static MoneroWalletFull openWalletData(String password, MoneroNetworkType networkType, byte[] keysData, byte[] cacheData, MoneroRpcConnection daemonConnection)
      Open an existing wallet from byte[] data using JNI bindings to wallet2.h
      Parameters:
      password - the password of the wallet file to open
      networkType - the wallet's network type
      keysData - the wallet's keys data
      cacheData - the wallet's cache data
      daemonConnection - connection configuration to a daemon (default = an unconnected wallet)
      Returns:
      the opened wallet
    • openWallet

      public static MoneroWalletFull openWallet(MoneroWalletConfig config)

      Open an existing wallet using JNI bindings to wallet2.h.

      Example:

      MoneroWallet wallet = MoneroWalletFull.openWallet(new MoneroWalletConfig()
         .setPath("mywallet")
         .setPassword("supersecretpassword")
         .setNetworkType(MoneroNetworkType.STAGENET)
         .setServerUri("http://localhost:38083"));

      All supported configuration:
         path - path of the wallet to open
         password - password of the wallet to open
         networkType - network type of the wallet to open (one of MoneroNetworkType.MAINNET|TESTNET|STAGENET)
         serverUri - uri of the wallet's daemon (optional)
         serverUsername - username to authenticate with the daemon (optional)
         serverPassword - password to authenticate with the daemon (optional)
         server - MoneroRpcConnection to a monero daemon (optional)

      Parameters:
      config - configures the wallet to open
      Returns:
      the wallet instance
    • createWallet

      public static MoneroWalletFull createWallet(MoneroWalletConfig config)

      Create a wallet using JNI bindings to wallet2.h.

      Examples:

      // create stagenet wallet with randomly generated seed
      MoneroWallet wallet1 = MoneroWalletFull.createWallet(new MoneroWalletConfig()
         .setPath("/mywallets/wallet1")
         .setPassword("supersecretpassword")
         .setNetworkType(MoneroNetworkType.STAGENET)
         .setServerUri("http://localhost:38081") // leave blank for offline wallet
         .setServerUsername("superuser")
         .setServerPassword("abctesting123"));

      // restore mainnet wallet from seed
      MoneroWallet wallet2 = MoneroWalletFull.createWallet(new MoneroWalletConfig()
         .setPath("/mywallets/wallet2") // leave blank for in-memory wallet
         .setPassword("abctesting123")
         .setNetworkType("mainnet")
         .setServerUri("http://localhost:18081")
         .setServerUsername("superuser")
         .setServerPassword("abctesting123")
         .setSeed("biggest duets beware eskimos coexist igloo...")
         .setRestoreHeight(573800l));

      All supported configuration:
         path - path of the wallet to create (optional, in-memory wallet if not given)
         password - password of the wallet to create
         networkType - network type of the wallet to create (one of MoneroNetworkType.MAINNET|TESTNET|STAGENET)
         seed - seed of the wallet to create (optional, random wallet created if neither seed nor keys given)
         seedOffset - the offset used to derive a new seed from the given seed to recover a secret wallet from the seed
         isMultisig - restore multisig wallet from seed
         primaryAddress - primary address of the wallet to create (only provide if restoring from keys)
         privateViewKey - private view key of the wallet to create (optional)
         privateSpendKey - private spend key of the wallet to create (optional)
         restoreHeight - block height to start scanning from (defaults to 0 unless generating random wallet)
         language - language of the wallet's seed (defaults to "English" or auto-detected)
         server - MoneroRpcConnection to a monero daemon (optional)
         serverUri - uri of the wallet's daemon (optional)
         serverUsername - username to authenticate with the daemon (optional)
         serverPassword - password to authenticate with the daemon (optional)
         connectionManager - manage connections to monerod (optional)
         accountLookahead - number of accounts to scan (optional)
         subaddressLookahead - number of subaddresses per account to scan (optional)

      Parameters:
      config - configures the wallet to create
      Returns:
      the wallet instance
    • getSeedLanguages

      public static List<String> getSeedLanguages()
      Get a list of available languages for the wallet's seed.
      Returns:
      the available languages for the wallet's seed.
    • getDaemonMaxPeerHeight

      public long getDaemonMaxPeerHeight()
      Get the maximum height of the peers the wallet's daemon is connected to.
      Returns:
      the maximum height of the peers the wallet's daemon is connected to
    • isDaemonSynced

      public boolean isDaemonSynced()
      Indicates if the wallet's daemon is synced with the network.
      Returns:
      true if the daemon is synced with the network, false otherwise
    • isSynced

      public boolean isSynced()
      Indicates if the wallet is synced with the daemon.
      Returns:
      true if the wallet is synced with the daemon, false otherwise
    • getNetworkType

      public MoneroNetworkType getNetworkType()
      Get the wallet's network type (mainnet, testnet, or stagenet).
      Returns:
      the wallet's network type
    • getRestoreHeight

      public long getRestoreHeight()
      Get the height of the first block that the wallet scans.
      Returns:
      the height of the first block that the wallet scans
    • setRestoreHeight

      public void setRestoreHeight(long syncHeight)
      Set the height of the first block that the wallet scans.
      Parameters:
      syncHeight - is the height of the first block that the wallet scans
    • moveTo

      public void moveTo(String path)
      Move the wallet from its current path to the given path.
      Parameters:
      path - is the new wallet's path
    • addListener

      public void addListener(MoneroWalletListenerI listener)
      Description copied from interface: MoneroWallet
      Register a listener to receive wallet notifications.
      Specified by:
      addListener in interface MoneroWallet
      Parameters:
      listener - is the listener to receive wallet notifications
    • removeListener

      public void removeListener(MoneroWalletListenerI listener)
      Description copied from interface: MoneroWallet
      Unregister a listener to receive wallet notifications.
      Specified by:
      removeListener in interface MoneroWallet
      Parameters:
      listener - is the listener to unregister
    • getListeners

      public Set<MoneroWalletListenerI> getListeners()
      Description copied from interface: MoneroWallet
      Get the listeners registered with the wallet.
      Specified by:
      getListeners in interface MoneroWallet
      Returns:
      the registered listeners
    • isViewOnly

      public boolean isViewOnly()
      Description copied from interface: MoneroWallet
      Indicates if the wallet is view-only, meaning it does not have the private spend key and can therefore only observe incoming outputs.
      Returns:
      {bool} true if the wallet is view-only, false otherwise
    • setDaemonConnection

      public void setDaemonConnection(MoneroRpcConnection daemonConnection)
      Description copied from interface: MoneroWallet
      Set the wallet's daemon connection
      Parameters:
      daemonConnection - manages daemon connection information
    • setProxyUri

      public void setProxyUri(String uri)
      Description copied from interface: MoneroWallet
      Set the Tor proxy to the daemon.
      Parameters:
      uri - the Tor proxy URI
    • getDaemonConnection

      public MoneroRpcConnection getDaemonConnection()
      Description copied from interface: MoneroWallet
      Get the wallet's daemon connection.
      Returns:
      the wallet's daemon connection
    • isConnectedToDaemon

      public boolean isConnectedToDaemon()
      Description copied from interface: MoneroWallet
      Indicates if the wallet is connected a daemon.
      Returns:
      true if the wallet is connected to a daemon, false otherwise
    • getVersion

      public MoneroVersion getVersion()
      Description copied from interface: MoneroWallet
      Returns the wallet version.
      Returns:
      the wallet version
    • getPath

      public String getPath()
      Description copied from interface: MoneroWallet
      Get the wallet's path.
      Returns:
      the path the wallet can be opened with
    • getSeed

      public String getSeed()
      Description copied from interface: MoneroWallet
      Get the wallet's mnemonic phrase or seed.
      Returns:
      the wallet's mnemonic phrase or seed.
    • getSeedLanguage

      public String getSeedLanguage()
      Description copied from interface: MoneroWallet
      Get the language of the wallet's mnemonic phrase or seed.
      Returns:
      the language of the wallet's mnemonic phrase or seed
    • getPrivateViewKey

      public String getPrivateViewKey()
      Description copied from interface: MoneroWallet
      Get the wallet's private view key.
      Returns:
      the wallet's private view key
    • getPrivateSpendKey

      public String getPrivateSpendKey()
      Description copied from interface: MoneroWallet
      Get the wallet's private spend key.
      Returns:
      the wallet's private spend key
    • getPublicViewKey

      public String getPublicViewKey()
      Description copied from interface: MoneroWallet
      Get the wallet's public view key.
      Returns:
      the wallet's public view key
    • getPublicSpendKey

      public String getPublicSpendKey()
      Description copied from interface: MoneroWallet
      Get the wallet's public spend key.
      Returns:
      the wallet's public spend key
    • getIntegratedAddress

      public MoneroIntegratedAddress getIntegratedAddress(String standardAddress, String paymentId)
      Description copied from interface: MoneroWallet
      Get an integrated address based on the given standard address and payment ID. Uses the wallet's primary address if an address is not given. Generates a random payment ID if a payment ID is not given.
      Parameters:
      standardAddress - is the standard address to generate the integrated address from (wallet's primary address if null)
      paymentId - is the payment ID to generate an integrated address from (randomly generated if null)
      Returns:
      the integrated address
    • decodeIntegratedAddress

      public MoneroIntegratedAddress decodeIntegratedAddress(String integratedAddress)
      Description copied from interface: MoneroWallet
      Decode an integrated address to get its standard address and payment id.
      Parameters:
      integratedAddress - is an integrated address to decode
      Returns:
      the decoded integrated address including standard address and payment id
    • getHeight

      public long getHeight()
      Description copied from interface: MoneroWallet
      Get the block height that the wallet is synced to.
      Returns:
      the block height that the wallet is synced to
    • getDaemonHeight

      public long getDaemonHeight()
      Description copied from interface: MoneroWallet
      Get the blockchain's height.
      Returns:
      the blockchain's height
    • getHeightByDate

      public long getHeightByDate(int year, int month, int day)
      Description copied from interface: MoneroWallet
      Get the blockchain's height by date as a conservative estimate for scanning.
      Parameters:
      year - year of the height to get
      month - month of the height to get as a number between 1 and 12
      day - day of the height to get as a number between 1 and 31
      Returns:
      the blockchain's approximate height at the given date
    • sync

      public MoneroSyncResult sync(Long startHeight, MoneroWalletListenerI listener)
      Description copied from interface: MoneroWallet
      Synchronize the wallet with the daemon as a one-time synchronous process.
      Specified by:
      sync in interface MoneroWallet
      Parameters:
      startHeight - is the start height to sync from (defaults to the last synced block)
      listener - listener to receive notifications during synchronization
      Returns:
      the sync result
    • startSyncing

      public void startSyncing(Long syncPeriodInMs)
      Description copied from interface: MoneroWallet
      Start background synchronizing with a maximum period between syncs.
      Parameters:
      syncPeriodInMs - maximum period between syncs in milliseconds
    • stopSyncing

      public void stopSyncing()
      Description copied from interface: MoneroWallet
      Stop synchronizing the wallet with the daemon.
    • scanTxs

      public void scanTxs(Collection<String> txHashes)
      Description copied from interface: MoneroWallet
      Scan transactions by their hash/id.
      Parameters:
      txHashes - tx hashes to scan
    • rescanSpent

      public void rescanSpent()
      Description copied from interface: MoneroWallet
      Rescan the blockchain for spent outputs. Note: this can only be called with a trusted daemon. Example use case: peer multisig hex is import when connected to an untrusted daemon, so the wallet will not rescan spent outputs. Then the wallet connects to a trusted daemon. This method should be manually invoked to rescan outputs.
    • rescanBlockchain

      public void rescanBlockchain()
      Description copied from interface: MoneroWallet
      Rescan the blockchain from scratch, losing any information which cannot be recovered from the blockchain itself. WARNING: This method discards local wallet data like destination addresses, tx secret keys, tx notes, etc.
    • getAccounts

      public List<MoneroAccount> getAccounts(boolean includeSubaddresses, String tag)
      Description copied from interface: MoneroWallet
      Get accounts with a given tag.
      Parameters:
      includeSubaddresses - specifies if subaddresses should be included
      tag - is the tag for filtering accounts, all accounts if null
      Returns:
      all accounts with the given tag
    • getAccount

      public MoneroAccount getAccount(int accountIdx, boolean includeSubaddresses)
      Description copied from interface: MoneroWallet
      Get an account.
      Parameters:
      accountIdx - specifies the account to get
      includeSubaddresses - specifies if subaddresses should be included
      Returns:
      the retrieved account
    • createAccount

      public MoneroAccount createAccount(String label)
      Description copied from interface: MoneroWallet
      Create a new account with a label for the first subaddress.
      Parameters:
      label - specifies the label for account's first subaddress (optional)
      Returns:
      the created account
    • getSubaddresses

      public List<MoneroSubaddress> getSubaddresses(int accountIdx, List<Integer> subaddressIndices)
      Description copied from interface: MoneroWallet
      Get subaddresses in an account.
      Parameters:
      accountIdx - specifies the account to get subaddresses within
      subaddressIndices - are specific subaddresses to get (optional)
      Returns:
      the retrieved subaddresses
    • createSubaddress

      public MoneroSubaddress createSubaddress(int accountIdx, String label)
      Description copied from interface: MoneroWallet
      Create a subaddress within an account.
      Parameters:
      accountIdx - specifies the index of the account to create the subaddress within
      label - specifies the the label for the subaddress (optional)
      Returns:
      the created subaddress
    • setSubaddressLabel

      public void setSubaddressLabel(int accountIdx, int subaddressIdx, String label)
      Description copied from interface: MoneroWallet
      Set a subaddress label.
      Parameters:
      accountIdx - index of the account to set the label for
      subaddressIdx - index of the subaddress to set the label for
      label - the label to set
    • getAddress

      public String getAddress(int accountIdx, int subaddressIdx)
      Description copied from interface: MoneroWallet
      Get the address of a specific subaddress.
      Parameters:
      accountIdx - specifies the account index of the address's subaddress
      subaddressIdx - specifies the subaddress index within the account
      Returns:
      the receive address of the specified subaddress
    • getAddressIndex

      public MoneroSubaddress getAddressIndex(String address)
      Description copied from interface: MoneroWallet
      Get the account and subaddress index of the given address.
      Parameters:
      address - is the address to get the account and subaddress index from
      Returns:
      the account and subaddress indices
    • getBalance

      public BigInteger getBalance(Integer accountIdx, Integer subaddressIdx)
      Description copied from interface: MoneroWallet
      Get a subaddress's balance.
      Parameters:
      accountIdx - index of the account to get the balance of (default all accounts if null)
      subaddressIdx - index of the subaddress to get the balance of (default all subaddresses if null)
      Returns:
      the requested balance
    • getUnlockedBalance

      public BigInteger getUnlockedBalance(Integer accountIdx, Integer subaddressIdx)
      Description copied from interface: MoneroWallet
      Get a subaddress's unlocked balance.
      Parameters:
      accountIdx - index of the subaddress to get the unlocked balance of (default all accounts if null)
      subaddressIdx - index of the subaddress to get the unlocked balance of (default all subaddresses if null)
      Returns:
      the requested unlocked balance
    • getTxs

      public List<MoneroTxWallet> getTxs(MoneroTxQuery query)
      Description copied from interface: MoneroWallet

      Get wallet transactions that meet the criteria defined in a query object.

      Transactions must meet every criteria defined in the query in order to be returned. All criteria are optional and no filtering is applied when not defined.

      All supported query criteria:
         isConfirmed - path of the wallet to open
         password - password of the wallet to open
         networkType - network type of the wallet to open (one of MoneroNetworkType.MAINNET|TESTNET|STAGENET)
         serverUri - uri of the wallet's daemon (optional)
         serverUsername - username to authenticate with the daemon (optional)
         serverPassword - password to authenticate with the daemon (optional)
         server - MoneroRpcConnection to a monero daemon (optional)
         isConfirmed - get txs that are confirmed or not (optional)
         inTxPool - get txs that are in the tx pool or not (optional)
         isRelayed - get txs that are relayed or not (optional)
         isFailed - get txs that are failed or not (optional)
         isMinerTx - get miner txs or not (optional)
         hash - get a tx with the hash (optional)
         hashes - get txs with the hashes (optional)
         paymentId - get transactions with the payment id (optional)
         paymentIds - get transactions with the payment ids (optional)
         hasPaymentId - get transactions with a payment id or not (optional)
         minHeight - get txs with height greater than or equal to the given height (optional)
         maxHeight - get txs with height less than or equal to the given height (optional)
         isOutgoing - get txs with an outgoing transfer or not (optional)
         isIncoming - get txs with an incoming transfer or not (optional)
         transferQuery - get txs that have a transfer that meets this query (optional)
         includeOutputs - specifies that tx outputs should be returned with tx results (optional)

      Parameters:
      query - specifies properties of the transactions to get
      Returns:
      wallet transactions that meet the query
    • getTransfers

      public List<MoneroTransfer> getTransfers(MoneroTransferQuery query)
      Description copied from interface: MoneroWallet

      Get tranfsers that meet the criteria defined in a query object.

      Transfers must meet every criteria defined in the query in order to be returned. All criteria are optional and no filtering is applied when not defined.

      All supported query criteria:
         isOutgoing - get transfers that are outgoing or not (optional)
         isIncoming - get transfers that are incoming or not (optional)
         address - wallet's address that a transfer either originated from (if outgoing) or is destined for (if incoming) (optional)
         accountIndex - get transfers that either originated from (if outgoing) or are destined for (if incoming) a specific account index (optional)
         subaddressIndex - get transfers that either originated from (if outgoing) or are destined for (if incoming) a specific subaddress index (optional)
         subaddressIndices - get transfers that either originated from (if outgoing) or are destined for (if incoming) specific subaddress indices (optional)
         amount - amount being transferred (optional)
         destinations - individual destinations of an outgoing transfer, which is local wallet data and NOT recoverable from the blockchain (optional)
         hasDestinations - get transfers that have destinations or not (optional)
         txQuery - get transfers whose transaction meets this query (optional)
      Parameters:
      query - specifies attributes of transfers to get
      Returns:
      wallet transfers that meet the query
    • getOutputs

      public List<MoneroOutputWallet> getOutputs(MoneroOutputQuery query)
      Description copied from interface: MoneroWallet

      Get outputs which meet the criteria defined in a query object.

      Outputs must meet every criteria defined in the query in order to be returned. All criteria are optional and no filtering is applied when not defined.

      All supported query criteria:
         accountIndex - get outputs associated with a specific account index (optional)
         subaddressIndex - get outputs associated with a specific subaddress index (optional)
         subaddressIndices - get outputs associated with specific subaddress indices (optional)
         amount - get outputs with a specific amount (optional)
         minAmount - get outputs greater than or equal to a minimum amount (optional)
         maxAmount - get outputs less than or equal to a maximum amount (optional)
         isSpent - get outputs that are spent or not (optional)
         keyImage - get outputs that match the fields defined in the given key image (optional)
         txQuery - get outputs whose transaction meets this filter (optional)

      Parameters:
      query - specifies attributes of outputs to get
      Returns:
      the queried outputs
    • exportOutputs

      public String exportOutputs(boolean all)
      Description copied from interface: MoneroWallet
      Export outputs in hex format.
      Parameters:
      all - exports all outputs if true, else exports the outputs since the last export
      Returns:
      outputs in hex format
    • importOutputs

      public int importOutputs(String outputsHex)
      Description copied from interface: MoneroWallet
      Import outputs in hex format.
      Parameters:
      outputsHex - are outputs in hex format
      Returns:
      the number of outputs imported
    • exportKeyImages

      public List<MoneroKeyImage> exportKeyImages(boolean all)
      Description copied from interface: MoneroWallet
      Export signed key images.
      Parameters:
      all - exports all key images if true, else exports the key images since the last export
      Returns:
      signed key images
    • importKeyImages

      public MoneroKeyImageImportResult importKeyImages(List<MoneroKeyImage> keyImages)
      Description copied from interface: MoneroWallet
      Import signed key images and verify their spent status.
      Parameters:
      keyImages - are key images to import and verify (requires hex and signature)
      Returns:
      results of the import
    • getNewKeyImagesFromLastImport

      public List<MoneroKeyImage> getNewKeyImagesFromLastImport()
      Description copied from interface: MoneroWallet
      Get new key images from the last imported outputs.
      Returns:
      the key images from the last imported outputs
    • freezeOutput

      public void freezeOutput(String keyImage)
      Description copied from interface: MoneroWallet
      Freeze an output.
      Parameters:
      keyImage - key image of the output to freeze
    • thawOutput

      public void thawOutput(String keyImage)
      Description copied from interface: MoneroWallet
      Thaw a frozen output.
      Parameters:
      keyImage - key image of the output to thaw
    • isOutputFrozen

      public boolean isOutputFrozen(String keyImage)
      Description copied from interface: MoneroWallet
      Check if an output is frozen.
      Parameters:
      keyImage - key image of the output to check if frozen
      Returns:
      true if the output is frozen, false otherwise
    • createTxs

      public List<MoneroTxWallet> createTxs(MoneroTxConfig config)
      Description copied from interface: MoneroWallet
      Create one or more transactions to transfer funds from this wallet.

      All supported configuration:
         address - single destination address (required unless `destinations` provided)
         amount - single destination amount (required unless `destinations` provided)
         accountIndex - source account index to transfer funds from (required)
         subaddressIndex - source subaddress index to transfer funds from (optional)
         subaddressIndices - source subaddress indices to transfer funds from (optional)
         relay - relay the transactions to peers to commit to the blockchain (default false)
         priority - transaction priority (default MoneroTxPriority.NORMAL)
         destinations - addresses and amounts in a multi-destination tx (required unless `address` and `amount` provided)
         paymentId - transaction payment ID (optional)
         unlockTime - minimum height or timestamp for the transactions to unlock (default 0)
         canSplit - allow funds to be transferred using multiple transactions (default true)

      Parameters:
      config - configures the transactions to create
      Returns:
      the created transactions
    • sweepOutput

      public MoneroTxWallet sweepOutput(MoneroTxConfig config)
      Description copied from interface: MoneroWallet
      Sweep an output with a given key image.

      All supported configuration:
         address - single destination address (required)
         keyImage - key image to sweep (required)
         relay - relay the transaction to peers to commit to the blockchain (default false)
         unlockTime - minimum height or timestamp for the transaction to unlock (default 0)
         priority - transaction priority (default MoneroTxPriority.NORMAL)

      Parameters:
      config - configures the sweep transaction
      Returns:
      the created transaction
    • sweepUnlocked

      public List<MoneroTxWallet> sweepUnlocked(MoneroTxConfig config)
      Description copied from interface: MoneroWallet
      Sweep all unlocked funds according to the given config.

      All supported configuration:
         address - single destination address (required)
         accountIndex - source account index to sweep from (optional, defaults to all accounts)
         subaddressIndex - source subaddress index to sweep from (optional, defaults to all subaddresses)
         subaddressIndices - source subaddress indices to sweep from (optional)
         relay - relay the transactions to peers to commit to the blockchain (default false)
         priority - transaction priority (default MoneroTxPriority.NORMAL)
         unlockTime - minimum height or timestamp for the transactions to unlock (default 0)
         sweepEachSubaddress - sweep each subaddress individually if true (default false)

      Parameters:
      config - is the sweep configuration
      Returns:
      the created transactions
    • sweepDust

      public List<MoneroTxWallet> sweepDust(boolean relay)
      Description copied from interface: MoneroWallet
      Sweep all unmixable dust outputs back to the wallet to make them easier to spend and mix. NOTE: Dust only exists pre RCT, so this method will throw "no dust to sweep" on new wallets.
      Parameters:
      relay - specifies if the resulting transaction should be relayed (defaults to false i.e. not relayed)
      Returns:
      the created transactions
    • relayTxs

      public List<String> relayTxs(Collection<String> txMetadatas)
      Description copied from interface: MoneroWallet
      Relay previously created transactions.
      Parameters:
      txMetadatas - are transaction metadata previously created without relaying
      Returns:
      the hashes of the relayed txs
    • describeTxSet

      public MoneroTxSet describeTxSet(MoneroTxSet txSet)
      Description copied from interface: MoneroWallet
      Describe a tx set containing unsigned or multisig tx hex to a new tx set containing structured transactions.
      Parameters:
      txSet - is a tx set containing unsigned or multisig tx hex
      Returns:
      the tx set containing structured transactions
    • signTxs

      public MoneroTxSet signTxs(String unsignedTxHex)
      Description copied from interface: MoneroWallet
      Sign unsigned transactions from a view-only wallet.
      Parameters:
      unsignedTxHex - is unsigned transaction hex from when the transactions were created
      Returns:
      the signed transaction set
    • submitTxs

      public List<String> submitTxs(String signedTxHex)
      Description copied from interface: MoneroWallet
      Submit signed transactions from a view-only wallet.
      Parameters:
      signedTxHex - is signed transaction hex from signTxs()
      Returns:
      the resulting transaction hashes
    • checkTxKey

      public MoneroCheckTx checkTxKey(String txHash, String txKey, String address)
      Description copied from interface: MoneroWallet
      Check a transaction in the blockchain with its secret key.
      Parameters:
      txHash - specifies the transaction to check
      txKey - is the transaction's secret key
      address - is the destination public address of the transaction
      Returns:
      the result of the check
    • getTxProof

      public String getTxProof(String txHash, String address, String message)
      Description copied from interface: MoneroWallet
      Get a transaction signature to prove it.
      Parameters:
      txHash - specifies the transaction to prove
      address - is the destination public address of the transaction
      message - is a message to include with the signature to further authenticate the proof (optional)
      Returns:
      the transaction signature
    • checkTxProof

      public MoneroCheckTx checkTxProof(String txHash, String address, String message, String signature)
      Description copied from interface: MoneroWallet
      Prove a transaction by checking its signature.
      Parameters:
      txHash - specifies the transaction to prove
      address - is the destination public address of the transaction
      message - is a message included with the signature to further authenticate the proof (optional)
      signature - is the transaction signature to confirm
      Returns:
      the result of the check
    • getSpendProof

      public String getSpendProof(String txHash, String message)
      Description copied from interface: MoneroWallet
      Generate a signature to prove a spend. Unlike proving a transaction, it does not require the destination public address.
      Parameters:
      txHash - specifies the transaction to prove
      message - is a message to include with the signature to further authenticate the proof (optional)
      Returns:
      the transaction signature
    • checkSpendProof

      public boolean checkSpendProof(String txHash, String message, String signature)
      Description copied from interface: MoneroWallet
      Prove a spend using a signature. Unlike proving a transaction, it does not require the destination public address.
      Parameters:
      txHash - specifies the transaction to prove
      message - is a message included with the signature to further authenticate the proof (optional)
      signature - is the transaction signature to confirm
      Returns:
      true if the signature is good, false otherwise
    • getReserveProofWallet

      public String getReserveProofWallet(String message)
      Description copied from interface: MoneroWallet
      Generate a signature to prove the entire balance of the wallet.
      Parameters:
      message - is a message included with the signature to further authenticate the proof (optional)
      Returns:
      the reserve proof signature
    • getReserveProofAccount

      public String getReserveProofAccount(int accountIdx, BigInteger amount, String message)
      Description copied from interface: MoneroWallet
      Generate a signature to prove an available amount in an account.
      Parameters:
      accountIdx - specifies the account to prove ownership of the amount
      amount - is the minimum amount to prove as available in the account
      message - is a message to include with the signature to further authenticate the proof (optional)
      Returns:
      the reserve proof signature
    • checkReserveProof

      public MoneroCheckReserve checkReserveProof(String address, String message, String signature)
      Description copied from interface: MoneroWallet
      Proves a wallet has a disposable reserve using a signature.
      Parameters:
      address - is the public wallet address
      message - is a message included with the signature to further authenticate the proof (optional)
      signature - is the reserve proof signature to check
      Returns:
      the result of checking the signature proof
    • signMessage

      public String signMessage(String msg, MoneroMessageSignatureType signatureType, int accountIdx, int subaddressIdx)
      Description copied from interface: MoneroWallet
      Sign a message.
      Parameters:
      msg - the message to sign
      signatureType - sign with spend key or view key
      accountIdx - the account index of the message signature (default 0)
      subaddressIdx - the subaddress index of the message signature (default 0)
      Returns:
      the signature
    • verifyMessage

      public MoneroMessageSignatureResult verifyMessage(String msg, String address, String signature)
      Description copied from interface: MoneroWallet
      Verify a signature on a message.
      Parameters:
      msg - is the signed message
      address - is the signing address
      signature - is the signature
      Returns:
      the message signature verification result
    • getTxKey

      public String getTxKey(String txHash)
      Description copied from interface: MoneroWallet
      Get a transaction's secret key from its hash.
      Parameters:
      txHash - is the transaction's hash
      Returns:
      is the transaction's secret key
    • getTxNotes

      public List<String> getTxNotes(List<String> txHashes)
      Description copied from interface: MoneroWallet
      Get notes for multiple transactions.
      Parameters:
      txHashes - identify the transactions to get notes for
      Returns:
      notes for the transactions
    • setTxNotes

      public void setTxNotes(List<String> txHashes, List<String> notes)
      Description copied from interface: MoneroWallet
      Set notes for multiple transactions.
      Parameters:
      txHashes - specify the transactions to set notes for
      notes - are the notes to set for the transactions
    • getAddressBookEntries

      public List<MoneroAddressBookEntry> getAddressBookEntries(List<Integer> entryIndices)
      Description copied from interface: MoneroWallet
      Get address book entries.
      Parameters:
      entryIndices - are indices of the entries to get (optional)
      Returns:
      the address book entries
    • addAddressBookEntry

      public int addAddressBookEntry(String address, String description)
      Description copied from interface: MoneroWallet
      Add an address book entry.
      Parameters:
      address - is the entry address
      description - is the entry description (optional)
      Returns:
      the index of the added entry
    • editAddressBookEntry

      public void editAddressBookEntry(int index, boolean setAddress, String address, boolean setDescription, String description)
      Description copied from interface: MoneroWallet
      Edit an address book entry.
      Parameters:
      index - is the index of the address book entry to edit
      setAddress - specifies if the address should be updated
      address - is the updated address
      setDescription - specifies if the description should be updated
      description - is the updated description
    • deleteAddressBookEntry

      public void deleteAddressBookEntry(int entryIdx)
      Description copied from interface: MoneroWallet
      Delete an address book entry.
      Parameters:
      entryIdx - is the index of the entry to delete
    • tagAccounts

      public void tagAccounts(String tag, Collection<Integer> accountIndices)
      Description copied from interface: MoneroWallet
      Tag accounts.
      Parameters:
      tag - is the tag to apply to the specified accounts
      accountIndices - are the indices of the accounts to tag
    • untagAccounts

      public void untagAccounts(Collection<Integer> accountIndices)
      Description copied from interface: MoneroWallet
      Untag acconts.
      Parameters:
      accountIndices - are the indices of the accounts to untag
    • getAccountTags

      public List<MoneroAccountTag> getAccountTags()
      Description copied from interface: MoneroWallet
      Return all account tags.
      Returns:
      the wallet's account tags
    • setAccountTagLabel

      public void setAccountTagLabel(String tag, String label)
      Description copied from interface: MoneroWallet
      Sets a human-readable description for a tag.
      Parameters:
      tag - is the tag to set a description for
      label - is the label to set for the tag
    • getPaymentUri

      public String getPaymentUri(MoneroTxConfig request)
      Description copied from interface: MoneroWallet
      Creates a payment URI from a send configuration.
      Parameters:
      request - specifies configuration for a potential tx
      Returns:
      the payment uri
    • parsePaymentUri

      public MoneroTxConfig parsePaymentUri(String uri)
      Description copied from interface: MoneroWallet
      Parses a payment URI to a transaction configuration.
      Parameters:
      uri - is the payment uri to parse
      Returns:
      the send configuration parsed from the uri
    • getAttribute

      public String getAttribute(String key)
      Description copied from interface: MoneroWallet
      Get an attribute.
      Parameters:
      key - is the attribute to get the value of
      Returns:
      the attribute's value
    • setAttribute

      public void setAttribute(String key, String val)
      Description copied from interface: MoneroWallet
      Set an arbitrary attribute.
      Parameters:
      key - is the attribute key
      val - is the attribute value
    • startMining

      public void startMining(Long numThreads, Boolean backgroundMining, Boolean ignoreBattery)
      Description copied from interface: MoneroWallet
      Start mining.
      Parameters:
      numThreads - is the number of threads created for mining (optional)
      backgroundMining - specifies if mining should occur in the background (optional)
      ignoreBattery - specifies if the battery should be ignored for mining (optional)
    • stopMining

      public void stopMining()
      Description copied from interface: MoneroWallet
      Stop mining.
    • isMultisigImportNeeded

      public boolean isMultisigImportNeeded()
      Description copied from interface: MoneroWallet
      Indicates if importing multisig data is needed for returning a correct balance.
      Returns:
      true if importing multisig data is needed for returning a correct balance, false otherwise
    • getMultisigInfo

      public MoneroMultisigInfo getMultisigInfo()
      Description copied from interface: MoneroWallet
      Get multisig info about this wallet.
      Returns:
      multisig info about this wallet
    • prepareMultisig

      public String prepareMultisig()
      Description copied from interface: MoneroWallet
      Get multisig info as hex to share with participants to begin creating a multisig wallet.
      Returns:
      this wallet's multisig hex to share with participants
    • makeMultisig

      public String makeMultisig(List<String> multisigHexes, int threshold, String password)
      Description copied from interface: MoneroWallet
      Make this wallet multisig by importing multisig hex from participants.
      Parameters:
      multisigHexes - are multisig hex from each participant
      threshold - is the number of signatures needed to sign transfers
      password - is the wallet password
      Returns:
      this wallet's multisig hex to share with participants
    • exchangeMultisigKeys

      public MoneroMultisigInitResult exchangeMultisigKeys(List<String> multisigHexes, String password)
      Description copied from interface: MoneroWallet
      Exchange multisig hex with participants in a M/N multisig wallet. This process must be repeated with participants exactly N-M times.
      Parameters:
      multisigHexes - are multisig hex from each participant
      password - is the wallet's password // TODO monero-project: redundant? wallet is created with password
      Returns:
      the result which has the multisig's address xor this wallet's multisig hex to share with participants iff not done
    • exportMultisigHex

      public String exportMultisigHex()
      Description copied from interface: MoneroWallet
      Export this wallet's multisig info as hex for other participants.
      Returns:
      this wallet's multisig info as hex for other participants
    • importMultisigHex

      public int importMultisigHex(List<String> multisigHexes)
      Description copied from interface: MoneroWallet
      Import multisig info as hex from other participants.
      Parameters:
      multisigHexes - are multisig hex from each participant
      Returns:
      the number of outputs signed with the given multisig hex
    • signMultisigTxHex

      public MoneroMultisigSignResult signMultisigTxHex(String multisigTxHex)
      Description copied from interface: MoneroWallet
      Sign multisig transactions from a multisig wallet.
      Parameters:
      multisigTxHex - represents unsigned multisig transactions as hex
      Returns:
      the result of signing the multisig transactions
    • submitMultisigTxHex

      public List<String> submitMultisigTxHex(String signedMultisigTxHex)
      Description copied from interface: MoneroWallet
      Submit signed multisig transactions from a multisig wallet.
      Parameters:
      signedMultisigTxHex - is signed multisig hex returned from signMultisigTxHex()
      Returns:
      the resulting transaction hashes
    • getData

      public byte[][] getData()
      Get the wallet's keys and cache data.
      Returns:
      the keys and cache data, respectively
    • changePassword

      public void changePassword(String oldPassword, String newPassword)
      Description copied from interface: MoneroWallet
      Change the wallet password.
      Parameters:
      oldPassword - is the wallet's old password
      newPassword - is the wallet's new password
    • save

      public void save()
      Description copied from interface: MoneroWallet
      Save the wallet at its current path.
    • close

      public void close(boolean save)
      Description copied from interface: MoneroWallet
      Optionally save then close the wallet.
      Specified by:
      close in interface MoneroWallet
      Parameters:
      save - specifies if the wallet should be saved before being closed (default false)
    • setDaemonConnection

      public void setDaemonConnection(String uri)
      Description copied from interface: MoneroWallet
      Set the wallet's daemon connection.
      Specified by:
      setDaemonConnection in interface MoneroWallet
      Parameters:
      uri - is the uri of the daemon for the wallet to use
    • setDaemonConnection

      public void setDaemonConnection(String uri, String username, String password)
      Description copied from interface: MoneroWallet
      Set the wallet's daemon connection.
      Specified by:
      setDaemonConnection in interface MoneroWallet
      Parameters:
      uri - is the daemon's URI
      username - is the username to authenticate with the daemon (optional)
      password - is the password to authenticate with the daemon (optional)
    • setConnectionManager

      public void setConnectionManager(MoneroConnectionManager connectionManager)
      Description copied from interface: MoneroWallet
      Set the wallet's daemon connection manager.
      Specified by:
      setConnectionManager in interface MoneroWallet
      Parameters:
      connectionManager - manages connections to monerod
    • getConnectionManager

      public MoneroConnectionManager getConnectionManager()
      Description copied from interface: MoneroWallet
      Get the wallet's daemon connection manager.
      Specified by:
      getConnectionManager in interface MoneroWallet
      Returns:
      the wallet's daemon connection manager
    • getPrimaryAddress

      public String getPrimaryAddress()
      Description copied from interface: MoneroWallet
      Get the wallet's primary address.
      Specified by:
      getPrimaryAddress in interface MoneroWallet
      Returns:
      the wallet's primary address
    • getIntegratedAddress

      public MoneroIntegratedAddress getIntegratedAddress()
      Description copied from interface: MoneroWallet
      Get an integrated address based on this wallet's primary address and a randomly generated payment ID.
      Specified by:
      getIntegratedAddress in interface MoneroWallet
      Returns:
      the integrated address
    • sync

      public MoneroSyncResult sync()
      Description copied from interface: MoneroWallet
      Synchronize the wallet with the daemon as a one-time synchronous process.
      Specified by:
      sync in interface MoneroWallet
      Returns:
      the sync result
    • sync

      public MoneroSyncResult sync(MoneroWalletListenerI listener)
      Description copied from interface: MoneroWallet
      Synchronize the wallet with the daemon as a one-time synchronous process.
      Specified by:
      sync in interface MoneroWallet
      Parameters:
      listener - listener to receive notifications during synchronization
      Returns:
      the sync result
    • sync

      public MoneroSyncResult sync(Long startHeight)
      Description copied from interface: MoneroWallet
      Synchronize the wallet with the daemon as a one-time synchronous process.
      Specified by:
      sync in interface MoneroWallet
      Parameters:
      startHeight - is the start height to sync from (defaults to the last synced block)
      Returns:
      the sync result
    • startSyncing

      public void startSyncing()
      Description copied from interface: MoneroWallet
      Start background synchronizing.
      Specified by:
      startSyncing in interface MoneroWallet
    • getBalance

      public BigInteger getBalance()
      Description copied from interface: MoneroWallet
      Get the wallet's balance.
      Specified by:
      getBalance in interface MoneroWallet
      Returns:
      the wallet's balance
    • getBalance

      public BigInteger getBalance(Integer accountIdx)
      Description copied from interface: MoneroWallet
      Get an account's balance.
      Specified by:
      getBalance in interface MoneroWallet
      Parameters:
      accountIdx - index of the account to get the balance of (default all accounts if null)
      Returns:
      the requested balance
    • getUnlockedBalance

      public BigInteger getUnlockedBalance()
      Description copied from interface: MoneroWallet
      Get the wallet's unlocked balance.
      Specified by:
      getUnlockedBalance in interface MoneroWallet
      Returns:
      the wallet's unlocked balance
    • getUnlockedBalance

      public BigInteger getUnlockedBalance(Integer accountIdx)
      Description copied from interface: MoneroWallet
      Get an account's unlocked balance.
      Specified by:
      getUnlockedBalance in interface MoneroWallet
      Parameters:
      accountIdx - index of the account to get the unlocked balance of (default all accounts if null)
      Returns:
      the requested unlocked balance
    • getAccounts

      public List<MoneroAccount> getAccounts()
      Description copied from interface: MoneroWallet
      Get all accounts.
      Specified by:
      getAccounts in interface MoneroWallet
      Returns:
      all accounts
    • getAccounts

      public List<MoneroAccount> getAccounts(boolean includeSubaddresses)
      Description copied from interface: MoneroWallet
      Get all accounts.
      Specified by:
      getAccounts in interface MoneroWallet
      Parameters:
      includeSubaddresses - specifies if subaddresses should be included
      Returns:
      all accounts
    • getAccounts

      public List<MoneroAccount> getAccounts(String tag)
      Description copied from interface: MoneroWallet
      Get accounts with a given tag.
      Specified by:
      getAccounts in interface MoneroWallet
      Parameters:
      tag - is the tag for filtering accounts, all accounts if null
      Returns:
      all accounts with the given tag
    • getAccount

      public MoneroAccount getAccount(int accountIdx)
      Description copied from interface: MoneroWallet
      Get an account without subaddress information.
      Specified by:
      getAccount in interface MoneroWallet
      Parameters:
      accountIdx - specifies the account to get
      Returns:
      the retrieved account
    • createAccount

      public MoneroAccount createAccount()
      Description copied from interface: MoneroWallet
      Create a new account.
      Specified by:
      createAccount in interface MoneroWallet
      Returns:
      the created account
    • setAccountLabel

      public void setAccountLabel(int accountIdx, String label)
      Description copied from interface: MoneroWallet
      Set an account label.
      Specified by:
      setAccountLabel in interface MoneroWallet
      Parameters:
      accountIdx - index of the account to set the label for
      label - the label to set
    • getSubaddresses

      public List<MoneroSubaddress> getSubaddresses(int accountIdx)
      Description copied from interface: MoneroWallet
      Get all subaddresses in an account.
      Specified by:
      getSubaddresses in interface MoneroWallet
      Parameters:
      accountIdx - specifies the account to get subaddresses within
      Returns:
      the retrieved subaddresses
    • getSubaddress

      public MoneroSubaddress getSubaddress(int accountIdx, int subaddressIdx)
      Description copied from interface: MoneroWallet
      Get a subaddress.
      Specified by:
      getSubaddress in interface MoneroWallet
      Parameters:
      accountIdx - specifies the index of the subaddress's account
      subaddressIdx - specifies index of the subaddress within the account
      Returns:
      the retrieved subaddress
    • createSubaddress

      public MoneroSubaddress createSubaddress(int accountIdx)
      Description copied from interface: MoneroWallet
      Create a subaddress within an account and without a label.
      Specified by:
      createSubaddress in interface MoneroWallet
      Parameters:
      accountIdx - specifies the index of the account to create the subaddress within
      Returns:
      the created subaddress
    • getTx

      public MoneroTxWallet getTx(String txHash)
      Description copied from interface: MoneroWallet
      Get a wallet transaction by hash.
      Specified by:
      getTx in interface MoneroWallet
      Parameters:
      txHash - is the hash of a transaction to get
      Returns:
      the identified transaction or null if not found
    • getTxs

      public List<MoneroTxWallet> getTxs()
      Description copied from interface: MoneroWallet
      Get all wallet transactions. Wallet transactions contain one or more transfers that are either incoming or outgoing to the wallet.
      Specified by:
      getTxs in interface MoneroWallet
      Returns:
      all wallet transactions
    • getTxs

      public List<MoneroTxWallet> getTxs(String... txHashes)
      Description copied from interface: MoneroWallet
      Get wallet transactions by hash.
      Specified by:
      getTxs in interface MoneroWallet
      Parameters:
      txHashes - are hashes of transactions to get
      Returns:
      the found transactions
    • getTxs

      public List<MoneroTxWallet> getTxs(List<String> txHashes)
      Description copied from interface: MoneroWallet
      Get wallet transactions by hash.
      Specified by:
      getTxs in interface MoneroWallet
      Parameters:
      txHashes - are hashes of transactions to get
      Returns:
      the found transactions
    • getTransfers

      public List<MoneroTransfer> getTransfers()
      Description copied from interface: MoneroWallet
      Get all incoming and outgoing transfers to and from this wallet. An outgoing transfer represents a total amount sent from one or more subaddresses within an account to individual destination addresses, each with their own amount. An incoming transfer represents a total amount received into a subaddress within an account. Transfers belong to transactions which are stored on the blockchain.
      Specified by:
      getTransfers in interface MoneroWallet
      Returns:
      all wallet transfers
    • getTransfers

      public List<MoneroTransfer> getTransfers(int accountIdx)
      Description copied from interface: MoneroWallet
      Get incoming and outgoing transfers to and from an account. An outgoing transfer represents a total amount sent from one or more subaddresses within an account to individual destination addresses, each with their own amount. An incoming transfer represents a total amount received into a subaddress within an account. Transfers belong to transactions which are stored on the blockchain.
      Specified by:
      getTransfers in interface MoneroWallet
      Parameters:
      accountIdx - is the index of the account to get transfers from
      Returns:
      transfers to/from the account
    • getTransfers

      public List<MoneroTransfer> getTransfers(int accountIdx, int subaddressIdx)
      Description copied from interface: MoneroWallet
      Get incoming and outgoing transfers to and from a subaddress. An outgoing transfer represents a total amount sent from one or more subaddresses within an account to individual destination addresses, each with their own amount. An incoming transfer represents a total amount received into a subaddress within an account. Transfers belong to transactions which are stored on the blockchain.
      Specified by:
      getTransfers in interface MoneroWallet
      Parameters:
      accountIdx - is the index of the account to get transfers from
      subaddressIdx - is the index of the subaddress to get transfers from
      Returns:
      transfers to/from the subaddress
    • getIncomingTransfers

      public List<MoneroIncomingTransfer> getIncomingTransfers()
      Description copied from interface: MoneroWallet
      Get all of the wallet's incoming transfers.
      Specified by:
      getIncomingTransfers in interface MoneroWallet
      Returns:
      the wallet's incoming transfers
    • getIncomingTransfers

      public List<MoneroIncomingTransfer> getIncomingTransfers(MoneroTransferQuery query)
      Description copied from interface: MoneroWallet

      Get incoming transfers that meet a query.

      All supported query criteria:
         address - get incoming transfers to a specific address in the wallet (optional)
         accountIndex - get incoming transfers to a specific account index (optional)
         subaddressIndex - get incoming transfers to a specific subaddress index (optional)
         subaddressIndices - get transfers destined for specific subaddress indices (optional)
         amount - amount being transferred (optional)
         txQuery - get transfers whose transaction meets this query (optional)

      Specified by:
      getIncomingTransfers in interface MoneroWallet
      Parameters:
      query - specifies which incoming transfers to get
      Returns:
      incoming transfers that meet the query
    • getOutgoingTransfers

      public List<MoneroOutgoingTransfer> getOutgoingTransfers()
      Description copied from interface: MoneroWallet
      Get all of the wallet's outgoing transfers.
      Specified by:
      getOutgoingTransfers in interface MoneroWallet
      Returns:
      the wallet's outgoing transfers
    • getOutgoingTransfers

      public List<MoneroOutgoingTransfer> getOutgoingTransfers(MoneroTransferQuery query)
      Description copied from interface: MoneroWallet

      Get outgoing transfers that meet a query.

      All supported query criteria:
         address - get outgoing transfers from a specific address in the wallet (optional)
         accountIndex - get outgoing transfers from a specific account index (optional)
         subaddressIndex - get outgoing transfers from a specific subaddress index (optional)
         subaddressIndices - get outgoing transfers from specific subaddress indices (optional)
         amount - amount being transferred (optional)
         destinations - individual destinations of an outgoing transfer, which is local wallet data and NOT recoverable from the blockchain (optional)
         hasDestinations - get transfers that have destinations or not (optional)
         txQuery - get transfers whose transaction meets this query (optional)

      Specified by:
      getOutgoingTransfers in interface MoneroWallet
      Parameters:
      query - specifies which outgoing transfers to get
      Returns:
      outgoing transfers that meet the query
    • getOutputs

      public List<MoneroOutputWallet> getOutputs()
      Description copied from interface: MoneroWallet
      Get outputs created from previous transactions that belong to the wallet (i.e. that the wallet can spend one time). Outputs are part of transactions which are stored in blocks on the blockchain.
      Specified by:
      getOutputs in interface MoneroWallet
      Returns:
      all wallet outputs
    • exportOutputs

      public String exportOutputs()
      Description copied from interface: MoneroWallet
      Export outputs since the last export.
      Specified by:
      exportOutputs in interface MoneroWallet
      Returns:
      outputs since the last export in hex format
    • exportKeyImages

      public List<MoneroKeyImage> exportKeyImages()
      Description copied from interface: MoneroWallet
      Export key images since the last export.
      Specified by:
      exportKeyImages in interface MoneroWallet
      Returns:
      signed key images since the last export
    • createTx

      public MoneroTxWallet createTx(MoneroTxConfig config)
      Description copied from interface: MoneroWallet
      Create a transaction to transfer funds from this wallet.

      All supported configuration:
         address - single destination address (required unless `destinations` provided)
         amount - single destination amount (required unless `destinations` provided)
         accountIndex - source account index to transfer funds from (required)
         subaddressIndex - source subaddress index to transfer funds from (optional)
         subaddressIndices - source subaddress indices to transfer funds from (optional)
         relay - relay the transaction to peers to commit to the blockchain (default false)
         priority - transaction priority (default MoneroTxPriority.NORMAL)
         destinations - addresses and amounts in a multi-destination tx (required unless `address` and `amount` provided)
         subtractFeeFrom - list of destination indices to split the transaction fee (optional)
         paymentId - transaction payment ID (optional)
         unlockTime - minimum height or timestamp for the transaction to unlock (default 0)

      Specified by:
      createTx in interface MoneroWallet
      Parameters:
      config - configures the transaction to create
      Returns:
      the created transaction
    • relayTx

      public String relayTx(String txMetadata)
      Description copied from interface: MoneroWallet
      Relay a previously created transaction.
      Specified by:
      relayTx in interface MoneroWallet
      Parameters:
      txMetadata - is transaction metadata previously created without relaying
      Returns:
      the hash of the relayed tx
    • relayTx

      public String relayTx(MoneroTxWallet tx)
      Description copied from interface: MoneroWallet
      Relay a previously created transaction.
      Specified by:
      relayTx in interface MoneroWallet
      Parameters:
      tx - is the transaction to relay
      Returns:
      the hash of the relayed tx
    • relayTxs

      public List<String> relayTxs(List<MoneroTxWallet> txs)
      Description copied from interface: MoneroWallet
      Relay previously created transactions.
      Specified by:
      relayTxs in interface MoneroWallet
      Parameters:
      txs - are the transactions to relay
      Returns:
      the hashes of the relayed txs
    • describeUnsignedTxSet

      public MoneroTxSet describeUnsignedTxSet(String unsignedTxHex)
      Description copied from interface: MoneroWallet
      Describe a tx set from unsigned tx hex.
      Specified by:
      describeUnsignedTxSet in interface MoneroWallet
      Parameters:
      unsignedTxHex - unsigned tx hex
      Returns:
      the tx set containing structured transactions
    • describeMultisigTxSet

      public MoneroTxSet describeMultisigTxSet(String multisigTxHex)
      Description copied from interface: MoneroWallet
      Describe a tx set from multisig tx hex.
      Specified by:
      describeMultisigTxSet in interface MoneroWallet
      Parameters:
      multisigTxHex - multisig tx hex
      Returns:
      the tx set containing structured transactions
    • signMessage

      public String signMessage(String message)
      Description copied from interface: MoneroWallet
      Sign a message.
      Specified by:
      signMessage in interface MoneroWallet
      Parameters:
      message - is the message to sign
      Returns:
      the signature
    • getTxProof

      public String getTxProof(String txHash, String address)
      Description copied from interface: MoneroWallet
      Get a transaction signature to prove it.
      Specified by:
      getTxProof in interface MoneroWallet
      Parameters:
      txHash - specifies the transaction to prove
      address - is the destination public address of the transaction
      Returns:
      the transaction signature
    • getSpendProof

      public String getSpendProof(String txHash)
      Description copied from interface: MoneroWallet
      Generate a signature to prove a spend. Unlike proving a transaction, it does not require the destination public address.
      Specified by:
      getSpendProof in interface MoneroWallet
      Parameters:
      txHash - specifies the transaction to prove
      Returns:
      the transaction signature
    • getTxNote

      public String getTxNote(String txHash)
      Description copied from interface: MoneroWallet
      Get a transaction note.
      Specified by:
      getTxNote in interface MoneroWallet
      Parameters:
      txHash - specifies the transaction to get the note of
      Returns:
      the tx note
    • setTxNote

      public void setTxNote(String txHash, String note)
      Description copied from interface: MoneroWallet
      Set a note for a specific transaction.
      Specified by:
      setTxNote in interface MoneroWallet
      Parameters:
      txHash - specifies the transaction
      note - specifies the note
    • getAddressBookEntries

      public List<MoneroAddressBookEntry> getAddressBookEntries()
      Description copied from interface: MoneroWallet
      Get all address book entries.
      Specified by:
      getAddressBookEntries in interface MoneroWallet
      Returns:
      the address book entries
    • isMultisig

      public boolean isMultisig()
      Description copied from interface: MoneroWallet
      Indicates if this wallet is a multisig wallet.
      Specified by:
      isMultisig in interface MoneroWallet
      Returns:
      true if this is a multisig wallet, false otherwise
    • importMultisigHex

      public int importMultisigHex(String... multisigHexes)
      Description copied from interface: MoneroWallet
      Import multisig info as hex from other participants.
      Specified by:
      importMultisigHex in interface MoneroWallet
      Parameters:
      multisigHexes - are multisig hex from each participant
      Returns:
      the number of outputs signed with the given multisig hex
    • close

      public void close()
      Description copied from interface: MoneroWallet
      Close the wallet (does not save).
      Specified by:
      close in interface MoneroWallet
    • isClosed

      public boolean isClosed()
      Description copied from interface: MoneroWallet
      Indicates if this wallet is closed or not.
      Specified by:
      isClosed in interface MoneroWallet
      Returns:
      true if the wallet is closed, false otherwise