@ensnode/ensnode-sdk 0.0.0-next-20260605123219 → 0.0.0-next-20260605153822

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/internal.cjs CHANGED
@@ -2428,6 +2428,26 @@ query DomainSubdomains($name: InterpretedName!) {
2428
2428
  }
2429
2429
  }
2430
2430
  }
2431
+ }`,
2432
+ variables: { default: { name: "eth" } }
2433
+ },
2434
+ ////////////////////////////////////
2435
+ // Most Recently Registered Subdomains
2436
+ ////////////////////////////////////
2437
+ {
2438
+ id: "domain-subdomains-recently-registered",
2439
+ query: `
2440
+ query RecentlyRegisteredSubdomains($name: InterpretedName!) {
2441
+ domain(by: {name: $name}) {
2442
+ canonical { name { interpreted beautified } }
2443
+ subdomains(first: 10, order: {by: REGISTRATION_TIMESTAMP, dir: DESC}) {
2444
+ edges {
2445
+ node {
2446
+ canonical { name { interpreted beautified } }
2447
+ }
2448
+ }
2449
+ }
2450
+ }
2431
2451
  }`,
2432
2452
  variables: { default: { name: "eth" } }
2433
2453
  },