luckymx New Member Apr 6, 2022 5 1 3 36 Apr 6, 2022 #1 Are there any libraries for decoding the extraPayload data found in Dash DIP 2 special transactions? Reactions: GrandMasterDash
thephez Member Dash Core Group Jan 23, 2016 129 78 78 Apr 13, 2022 #2 I'm not aware of any specific libraries. You can get the decoded data from Dash Core's `getrawtransaction` RPC.
I'm not aware of any specific libraries. You can get the decoded data from Dash Core's `getrawtransaction` RPC.
barrysty1e New Member Apr 30, 2022 3 2 3 36 Apr 30, 2022 #3 Once you have the hex-string from a call to getrawtransaction, you can just pass the hex-string back to `decoderawtransaction` - which will in turn decode the special transaction component. Last edited: Apr 30, 2022 Reactions: thephez and strophy
Once you have the hex-string from a call to getrawtransaction, you can just pass the hex-string back to `decoderawtransaction` - which will in turn decode the special transaction component.