@thenamespace/ens-components 0.18.0 → 0.19.0

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.js CHANGED
@@ -16,13 +16,12 @@ import { useCapabilities, useWriteContracts } from 'wagmi/experimental';
16
16
  import { call as call$1 } from 'viem/actions';
17
17
  import 'viem/siwe';
18
18
  import crypto$3 from 'crypto';
19
- import require$$0$2 from 'url';
20
- import require$$1$1 from 'http';
21
- import require$$2$1 from 'https';
19
+ import url$1 from 'url';
20
+ import http$3 from 'http';
21
+ import https$1 from 'https';
22
22
  import http2 from 'http2';
23
- import stream, { Readable } from 'stream';
24
- import require$$4 from 'assert';
25
23
  import zlib from 'zlib';
24
+ import stream, { Readable } from 'stream';
26
25
 
27
26
  function _mergeNamespaces(n, m) {
28
27
  for (var i = 0; i < m.length; i++) {
@@ -40690,7 +40689,7 @@ var transitionalDefaults$1 = {
40690
40689
  clarifyTimeoutError: false
40691
40690
  };
40692
40691
 
40693
- var URLSearchParams$2 = require$$0$2.URLSearchParams;
40692
+ var URLSearchParams$2 = url$1.URLSearchParams;
40694
40693
 
40695
40694
  const ALPHA = 'abcdefghijklmnopqrstuvwxyz';
40696
40695
 
@@ -41517,7 +41516,7 @@ function buildFullPath$1(baseURL, requestedURL, allowAbsoluteUrls) {
41517
41516
 
41518
41517
  var proxyFromEnv = {};
41519
41518
 
41520
- var parseUrl$1 = require$$0$2.parse;
41519
+ var parseUrl$1 = require('url').parse;
41521
41520
 
41522
41521
  var DEFAULT_PORTS = {
41523
41522
  ftp: 21,
@@ -44854,12 +44853,12 @@ var debug_1 = function () {
44854
44853
  debug$1.apply(null, arguments);
44855
44854
  };
44856
44855
 
44857
- var url = require$$0$2;
44856
+ var url = require("url");
44858
44857
  var URL$1 = url.URL;
44859
- var http = require$$1$1;
44860
- var https = require$$2$1;
44861
- var Writable = stream.Writable;
44862
- var assert$c = require$$4;
44858
+ var http = require("http");
44859
+ var https = require("https");
44860
+ var Writable = require("stream").Writable;
44861
+ var assert$c = require("assert");
44863
44862
  var debug = debug_1;
44864
44863
 
44865
44864
  // Preventive platform detection
@@ -47185,7 +47184,7 @@ var httpAdapter$1 = isHttpAdapterSupported && function httpAdapter(config) {
47185
47184
  if (config.transport) {
47186
47185
  transport = config.transport;
47187
47186
  } else if (config.maxRedirects === 0) {
47188
- transport = isHttpsRequest ? require$$2$1 : require$$1$1;
47187
+ transport = isHttpsRequest ? https$1 : http$3;
47189
47188
  } else {
47190
47189
  if (config.maxRedirects) {
47191
47190
  options.maxRedirects = config.maxRedirects;