@ensnode/ensnode-sdk 0.0.0-next-20260316153207 → 0.0.0-next-20260316155921

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.
package/dist/index.d.cts CHANGED
@@ -3564,6 +3564,14 @@ type RegistrarActionsFilter = RegistrarActionsFilterBySubregistryNode | Registra
3564
3564
  * Records Orders
3565
3565
  */
3566
3566
  declare const RegistrarActionsOrders: {
3567
+ /**
3568
+ * Returns registrar actions newest-first.
3569
+ *
3570
+ * Sorts by block timestamp descending. Because each action's identifier encodes
3571
+ * all ordering-relevant onchain properties, this also correctly orders actions
3572
+ * that share the same block timestamp by the chronological order in which they
3573
+ * were executed within the block.
3574
+ */
3567
3575
  readonly LatestRegistrarActions: "orderBy[timestamp]=desc";
3568
3576
  };
3569
3577
  type RegistrarActionsOrder = (typeof RegistrarActionsOrders)[keyof typeof RegistrarActionsOrders];
package/dist/index.d.ts CHANGED
@@ -3564,6 +3564,14 @@ type RegistrarActionsFilter = RegistrarActionsFilterBySubregistryNode | Registra
3564
3564
  * Records Orders
3565
3565
  */
3566
3566
  declare const RegistrarActionsOrders: {
3567
+ /**
3568
+ * Returns registrar actions newest-first.
3569
+ *
3570
+ * Sorts by block timestamp descending. Because each action's identifier encodes
3571
+ * all ordering-relevant onchain properties, this also correctly orders actions
3572
+ * that share the same block timestamp by the chronological order in which they
3573
+ * were executed within the block.
3574
+ */
3567
3575
  readonly LatestRegistrarActions: "orderBy[timestamp]=desc";
3568
3576
  };
3569
3577
  type RegistrarActionsOrder = (typeof RegistrarActionsOrders)[keyof typeof RegistrarActionsOrders];
package/dist/index.js CHANGED
@@ -2927,6 +2927,14 @@ var RegistrarActionsFilterTypes = {
2927
2927
  EndTimestamp: "endTimestamp"
2928
2928
  };
2929
2929
  var RegistrarActionsOrders = {
2930
+ /**
2931
+ * Returns registrar actions newest-first.
2932
+ *
2933
+ * Sorts by block timestamp descending. Because each action's identifier encodes
2934
+ * all ordering-relevant onchain properties, this also correctly orders actions
2935
+ * that share the same block timestamp by the chronological order in which they
2936
+ * were executed within the block.
2937
+ */
2930
2938
  LatestRegistrarActions: "orderBy[timestamp]=desc"
2931
2939
  };
2932
2940