Creating raw transaction of an external address

+1 vote
Hi!

So we need to create a raw transaction from an EXTERNAL address (an unsupervised external to the node's wallet address) to an INTERNAL address (an address contained in the node's wallet).

'''

createrawtransaction EXTERNAL INTERNAL amount

'''

The problem is that to do so we need a list of the inspent transactions to that EXTERNAL address and we cant use "listunspent" because it isn't in the node's wallet.

 

Is there an alternative way to create raw (unsigned) transactions from uncontroled addresses?

Thanks!
asked Feb 12, 2016 by nicosandller

1 Answer

+1 vote

Use the importaddress API command to add the external address as a watch-only address for this node. Then you can use listunspent to see the unspent outputs for that address.

answered Feb 12, 2016 by MultiChain
...