@hashgraphonline/standards-sdk 0.0.46 → 0.0.48

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -15714,7 +15714,14 @@ class HederaMirrorNode {
15714
15714
  return;
15715
15715
  }
15716
15716
  messageJson.sequence_number = message.sequence_number;
15717
- messages.push(messageJson);
15717
+ messages.push({
15718
+ ...messageJson,
15719
+ consensus_timestamp: message.consensus_timestamp,
15720
+ sequence_number: message.sequence_number,
15721
+ date: new Date(
15722
+ Number(message.consensus_timestamp) * 1e3
15723
+ )
15724
+ });
15718
15725
  } catch (error) {
15719
15726
  this.logger.error(`Error processing message: ${error.message}`);
15720
15727
  }