@ensnode/ensnode-sdk 0.0.0-next-20260316153207 → 0.0.0-next-20260316173707
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.cjs +8 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +8 -0
- package/dist/index.d.ts +8 -0
- package/dist/index.js +8 -0
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
package/dist/index.cjs
CHANGED
|
@@ -3236,6 +3236,14 @@ var RegistrarActionsFilterTypes = {
|
|
|
3236
3236
|
EndTimestamp: "endTimestamp"
|
|
3237
3237
|
};
|
|
3238
3238
|
var RegistrarActionsOrders = {
|
|
3239
|
+
/**
|
|
3240
|
+
* Returns registrar actions newest-first.
|
|
3241
|
+
*
|
|
3242
|
+
* Sorts by block timestamp descending. Because each action's identifier encodes
|
|
3243
|
+
* all ordering-relevant onchain properties, this also correctly orders actions
|
|
3244
|
+
* that share the same block timestamp by the chronological order in which they
|
|
3245
|
+
* were executed within the block.
|
|
3246
|
+
*/
|
|
3239
3247
|
LatestRegistrarActions: "orderBy[timestamp]=desc"
|
|
3240
3248
|
};
|
|
3241
3249
|
|