How can I determine some transaction information

+1 vote
Given a transaction id.

How can I determine where ther it is a "transfer" transaction (created using a "send") or a "issue" transaction?

For the transfer transaction, how can I determine the from/to address ?
asked Apr 4, 2016 by tuanba1

1 Answer

0 votes

Look at the following APIs:

getrawtransaction (set verbose=1)

getwallettransaction (set verbose=true)

They should give you everything you need.

answered Apr 4, 2016 by MultiChain
...