luckymx New member Apr 6, 2022 #1 Are there any libraries for decoding the extraPayload data found in Dash DIP 2 special transactions?
thephez Active member Dash Core Group 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 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
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.