getWalletEventData method
Wallet-specific event data (to be implemented by concrete events)
Implementation
@override
Map<String, dynamic> getWalletEventData() {
return {
'txid': txid,
'rawHex': rawHex,
'totalInputSats': totalInputSats,
'totalOutputSats': totalOutputSats,
'fee': fee,
'numInputs': numInputs,
'numOutputs': numOutputs,
'txVersion': txVersion,
'txLockTime': txLockTime,
'spentUtxoKeys': spentUtxoKeys,
'recipientAddresses': recipientAddresses,
'paymentAmount': paymentAmount,
'changeAddress': changeAddress,
'changeAmount': changeAmount,
};
}