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!