@coinbase/cdp-hooks 0.0.25 → 0.0.27

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.
@@ -1,16 +1,12 @@
1
- import { EstimateGasExecutionError as i } from "./index100.js";
2
- import { UnknownNodeError as m } from "./index101.js";
3
- import { getNodeError as s } from "./index224.js";
4
- function a(r, { docsPath: e, ...o }) {
5
- const n = (() => {
6
- const t = s(r, o);
7
- return t instanceof m ? r : t;
8
- })();
9
- return new i(n, {
10
- docsPath: e,
11
- ...o
1
+ import { recoverAddress as i } from "./index149.js";
2
+ import { hashAuthorization as e } from "./index248.js";
3
+ async function a(o) {
4
+ const { authorization: r, signature: t } = o;
5
+ return i({
6
+ hash: e(r),
7
+ signature: t ?? r
12
8
  });
13
9
  }
14
10
  export {
15
- a as getEstimateGasError
11
+ a as recoverAuthorizationAddress
16
12
  };
@@ -1,17 +1,16 @@
1
- import { BaseError as t } from "./index82.js";
2
- class r extends t {
3
- constructor({ address: o }) {
4
- super(`No EIP-712 domain found on contract "${o}".`, {
5
- metaMessages: [
6
- "Ensure that:",
7
- `- The contract is deployed at the address "${o}".`,
8
- "- `eip712Domain()` function exists on the contract.",
9
- "- `eip712Domain()` function matches signature to ERC-5267 specification."
10
- ],
11
- name: "Eip712DomainNotFoundError"
12
- });
13
- }
1
+ import { EstimateGasExecutionError as i } from "./index100.js";
2
+ import { UnknownNodeError as m } from "./index101.js";
3
+ import { getNodeError as s } from "./index225.js";
4
+ function a(r, { docsPath: e, ...o }) {
5
+ const n = (() => {
6
+ const t = s(r, o);
7
+ return t instanceof m ? r : t;
8
+ })();
9
+ return new i(n, {
10
+ docsPath: e,
11
+ ...o
12
+ });
14
13
  }
15
14
  export {
16
- r as Eip712DomainNotFoundError
15
+ a as getEstimateGasError
17
16
  };
@@ -1,11 +1,17 @@
1
- function r(a) {
2
- return {
3
- baseFeePerGas: a.baseFeePerGas.map((e) => BigInt(e)),
4
- gasUsedRatio: a.gasUsedRatio,
5
- oldestBlock: BigInt(a.oldestBlock),
6
- reward: a.reward?.map((e) => e.map((t) => BigInt(t)))
7
- };
1
+ import { BaseError as t } from "./index82.js";
2
+ class r extends t {
3
+ constructor({ address: o }) {
4
+ super(`No EIP-712 domain found on contract "${o}".`, {
5
+ metaMessages: [
6
+ "Ensure that:",
7
+ `- The contract is deployed at the address "${o}".`,
8
+ "- `eip712Domain()` function exists on the contract.",
9
+ "- `eip712Domain()` function matches signature to ERC-5267 specification."
10
+ ],
11
+ name: "Eip712DomainNotFoundError"
12
+ });
13
+ }
8
14
  }
9
15
  export {
10
- r as formatFeeHistory
16
+ r as Eip712DomainNotFoundError
11
17
  };
@@ -1,18 +1,11 @@
1
- import { hexToNumber as a } from "./index142.js";
2
- function t(e) {
3
- return e.map((n) => ({
4
- ...n,
5
- value: BigInt(n.value)
6
- }));
7
- }
8
- function o(e) {
1
+ function r(a) {
9
2
  return {
10
- ...e,
11
- balance: e.balance ? BigInt(e.balance) : void 0,
12
- nonce: e.nonce ? a(e.nonce) : void 0,
13
- storageProof: e.storageProof ? t(e.storageProof) : void 0
3
+ baseFeePerGas: a.baseFeePerGas.map((e) => BigInt(e)),
4
+ gasUsedRatio: a.gasUsedRatio,
5
+ oldestBlock: BigInt(a.oldestBlock),
6
+ reward: a.reward?.map((e) => e.map((t) => BigInt(t)))
14
7
  };
15
8
  }
16
9
  export {
17
- o as formatProof
10
+ r as formatFeeHistory
18
11
  };
@@ -1,27 +1,18 @@
1
- import { BaseError as a } from "./index82.js";
2
- import { ExecutionRevertedError as s, FeeCapTooHighError as r, FeeCapTooLowError as i, NonceTooHighError as c, NonceTooLowError as u, NonceMaxValueError as d, InsufficientFundsError as f, IntrinsicGasTooHighError as w, IntrinsicGasTooLowError as E, TransactionTypeNotSupportedError as m, TipAboveFeeCapError as g, UnknownNodeError as F } from "./index101.js";
3
- function G(e, n) {
4
- const o = (e.details || "").toLowerCase(), t = e instanceof a ? e.walk((x) => x?.code === s.code) : e;
5
- return t instanceof a ? new s({
6
- cause: e,
7
- message: t.details
8
- }) : s.nodeMessage.test(o) ? new s({
9
- cause: e,
10
- message: e.details
11
- }) : r.nodeMessage.test(o) ? new r({
12
- cause: e,
13
- maxFeePerGas: n?.maxFeePerGas
14
- }) : i.nodeMessage.test(o) ? new i({
15
- cause: e,
16
- maxFeePerGas: n?.maxFeePerGas
17
- }) : c.nodeMessage.test(o) ? new c({ cause: e, nonce: n?.nonce }) : u.nodeMessage.test(o) ? new u({ cause: e, nonce: n?.nonce }) : d.nodeMessage.test(o) ? new d({ cause: e, nonce: n?.nonce }) : f.nodeMessage.test(o) ? new f({ cause: e }) : w.nodeMessage.test(o) ? new w({ cause: e, gas: n?.gas }) : E.nodeMessage.test(o) ? new E({ cause: e, gas: n?.gas }) : m.nodeMessage.test(o) ? new m({ cause: e }) : g.nodeMessage.test(o) ? new g({
18
- cause: e,
19
- maxFeePerGas: n?.maxFeePerGas,
20
- maxPriorityFeePerGas: n?.maxPriorityFeePerGas
21
- }) : new F({
22
- cause: e
23
- });
1
+ import { hexToNumber as a } from "./index142.js";
2
+ function t(e) {
3
+ return e.map((n) => ({
4
+ ...n,
5
+ value: BigInt(n.value)
6
+ }));
7
+ }
8
+ function o(e) {
9
+ return {
10
+ ...e,
11
+ balance: e.balance ? BigInt(e.balance) : void 0,
12
+ nonce: e.nonce ? a(e.nonce) : void 0,
13
+ storageProof: e.storageProof ? t(e.storageProof) : void 0
14
+ };
24
15
  }
25
16
  export {
26
- G as getNodeError
17
+ o as formatProof
27
18
  };
@@ -1,14 +1,27 @@
1
- import { from as t } from "./index249.js";
2
- import { encode as m } from "./index250.js";
3
- import { concat as c } from "./index246.js";
4
- function s(o, e) {
5
- const { bytecode: r, args: n } = e;
6
- return c(r, o.inputs?.length && n?.length ? m(o.inputs, n) : "0x");
7
- }
8
- function u(o) {
9
- return t(o);
1
+ import { BaseError as a } from "./index82.js";
2
+ import { ExecutionRevertedError as s, FeeCapTooHighError as r, FeeCapTooLowError as i, NonceTooHighError as c, NonceTooLowError as u, NonceMaxValueError as d, InsufficientFundsError as f, IntrinsicGasTooHighError as w, IntrinsicGasTooLowError as E, TransactionTypeNotSupportedError as m, TipAboveFeeCapError as g, UnknownNodeError as F } from "./index101.js";
3
+ function G(e, n) {
4
+ const o = (e.details || "").toLowerCase(), t = e instanceof a ? e.walk((x) => x?.code === s.code) : e;
5
+ return t instanceof a ? new s({
6
+ cause: e,
7
+ message: t.details
8
+ }) : s.nodeMessage.test(o) ? new s({
9
+ cause: e,
10
+ message: e.details
11
+ }) : r.nodeMessage.test(o) ? new r({
12
+ cause: e,
13
+ maxFeePerGas: n?.maxFeePerGas
14
+ }) : i.nodeMessage.test(o) ? new i({
15
+ cause: e,
16
+ maxFeePerGas: n?.maxFeePerGas
17
+ }) : c.nodeMessage.test(o) ? new c({ cause: e, nonce: n?.nonce }) : u.nodeMessage.test(o) ? new u({ cause: e, nonce: n?.nonce }) : d.nodeMessage.test(o) ? new d({ cause: e, nonce: n?.nonce }) : f.nodeMessage.test(o) ? new f({ cause: e }) : w.nodeMessage.test(o) ? new w({ cause: e, gas: n?.gas }) : E.nodeMessage.test(o) ? new E({ cause: e, gas: n?.gas }) : m.nodeMessage.test(o) ? new m({ cause: e }) : g.nodeMessage.test(o) ? new g({
18
+ cause: e,
19
+ maxFeePerGas: n?.maxFeePerGas,
20
+ maxPriorityFeePerGas: n?.maxPriorityFeePerGas
21
+ }) : new F({
22
+ cause: e
23
+ });
10
24
  }
11
25
  export {
12
- s as encode,
13
- u as from
26
+ G as getNodeError
14
27
  };
@@ -1,27 +1,14 @@
1
- import { from as c, fromAbi as m, NotFoundError as i, getSelector as s } from "./index249.js";
2
- import { encode as u } from "./index250.js";
3
- import { concat as d } from "./index246.js";
4
- function S(o, ...t) {
5
- const { overloads: r } = o, e = r ? p([o, ...r], o.name, {
6
- args: t[0]
7
- }) : o, n = l(e), f = t.length > 0 ? u(e.inputs, t[0]) : void 0;
8
- return f ? d(n, f) : n;
1
+ import { from as t } from "./index249.js";
2
+ import { encode as m } from "./index250.js";
3
+ import { concat as c } from "./index246.js";
4
+ function s(o, e) {
5
+ const { bytecode: r, args: n } = e;
6
+ return c(r, o.inputs?.length && n?.length ? m(o.inputs, n) : "0x");
9
7
  }
10
- function $(o, t = {}) {
11
- return c(o, t);
12
- }
13
- function p(o, t, r) {
14
- const e = m(o, t, r);
15
- if (e.type !== "function")
16
- throw new i({ name: t, type: "function" });
17
- return e;
18
- }
19
- function l(o) {
20
- return s(o);
8
+ function u(o) {
9
+ return t(o);
21
10
  }
22
11
  export {
23
- S as encodeData,
24
- $ as from,
25
- p as fromAbi,
26
- l as getSelector
12
+ s as encode,
13
+ u as from
27
14
  };
@@ -1,54 +1,27 @@
1
- import { universalSignatureValidatorAbi as d } from "./index72.js";
2
- import { universalSignatureValidatorByteCode as l } from "./index74.js";
3
- import { CallExecutionError as g } from "./index85.js";
4
- import { encodeDeployData as y } from "./index134.js";
5
- import { getAddress as S } from "./index119.js";
6
- import { isAddressEqual as h } from "./index141.js";
7
- import { isHex as v } from "./index145.js";
8
- import { bytesToHex as x } from "./index109.js";
9
- import { getAction as b } from "./index206.js";
10
- import { isErc6492Signature as A } from "./index155.js";
11
- import { recoverAddress as w } from "./index149.js";
12
- import { serializeErc6492Signature as E } from "./index156.js";
13
- import { serializeSignature as V } from "./index153.js";
14
- import { call as D } from "./index24.js";
15
- import { encodeFunctionData as H } from "./index137.js";
16
- import { hexToBool as z } from "./index142.js";
17
- async function Q(o, p) {
18
- const { address: i, factory: n, factoryData: s, hash: a, signature: r, universalSignatureVerifierAddress: f = o.chain?.contracts?.universalSignatureVerifier?.address, ...m } = p, t = v(r) ? r : typeof r == "object" && "r" in r && "s" in r ? V(r) : x(r), c = await (async () => !n && !s || A(t) ? t : E({
19
- address: n,
20
- data: s,
21
- signature: t
22
- }))();
23
- try {
24
- const e = f ? {
25
- to: f,
26
- data: H({
27
- abi: d,
28
- functionName: "isValidSig",
29
- args: [i, a, c]
30
- }),
31
- ...m
32
- } : {
33
- data: y({
34
- abi: d,
35
- args: [i, a, c],
36
- bytecode: l
37
- }),
38
- ...m
39
- }, { data: u } = await b(o, D, "call")(e);
40
- return z(u ?? "0x0");
41
- } catch (e) {
42
- try {
43
- if (h(S(i), await w({ hash: a, signature: r })))
44
- return !0;
45
- } catch {
46
- }
47
- if (e instanceof g)
48
- return !1;
49
- throw e;
50
- }
1
+ import { from as c, fromAbi as m, NotFoundError as i, getSelector as s } from "./index249.js";
2
+ import { encode as u } from "./index250.js";
3
+ import { concat as d } from "./index246.js";
4
+ function S(o, ...t) {
5
+ const { overloads: r } = o, e = r ? p([o, ...r], o.name, {
6
+ args: t[0]
7
+ }) : o, n = l(e), f = t.length > 0 ? u(e.inputs, t[0]) : void 0;
8
+ return f ? d(n, f) : n;
9
+ }
10
+ function $(o, t = {}) {
11
+ return c(o, t);
12
+ }
13
+ function p(o, t, r) {
14
+ const e = m(o, t, r);
15
+ if (e.type !== "function")
16
+ throw new i({ name: t, type: "function" });
17
+ return e;
18
+ }
19
+ function l(o) {
20
+ return s(o);
51
21
  }
52
22
  export {
53
- Q as verifyHash
23
+ S as encodeData,
24
+ $ as from,
25
+ p as fromAbi,
26
+ l as getSelector
54
27
  };
@@ -1,20 +1,54 @@
1
- function x(e) {
2
- const { scheme: n, statement: t, ...c } = e.match(f)?.groups ?? {}, { chainId: s, expirationTime: i, issuedAt: o, notBefore: r, requestId: a, ...d } = e.match(p)?.groups ?? {}, u = e.split("Resources:")[1]?.split(`
3
- - `).slice(1);
4
- return {
5
- ...c,
6
- ...d,
7
- ...s ? { chainId: Number(s) } : {},
8
- ...i ? { expirationTime: new Date(i) } : {},
9
- ...o ? { issuedAt: new Date(o) } : {},
10
- ...r ? { notBefore: new Date(r) } : {},
11
- ...a ? { requestId: a } : {},
12
- ...u ? { resources: u } : {},
13
- ...n ? { scheme: n } : {},
14
- ...t ? { statement: t } : {}
15
- };
1
+ import { universalSignatureValidatorAbi as d } from "./index72.js";
2
+ import { universalSignatureValidatorByteCode as l } from "./index74.js";
3
+ import { CallExecutionError as g } from "./index85.js";
4
+ import { encodeDeployData as y } from "./index134.js";
5
+ import { getAddress as S } from "./index119.js";
6
+ import { isAddressEqual as h } from "./index141.js";
7
+ import { isHex as v } from "./index145.js";
8
+ import { bytesToHex as x } from "./index109.js";
9
+ import { getAction as b } from "./index206.js";
10
+ import { isErc6492Signature as A } from "./index155.js";
11
+ import { recoverAddress as w } from "./index149.js";
12
+ import { serializeErc6492Signature as E } from "./index156.js";
13
+ import { serializeSignature as V } from "./index153.js";
14
+ import { call as D } from "./index24.js";
15
+ import { encodeFunctionData as H } from "./index137.js";
16
+ import { hexToBool as z } from "./index142.js";
17
+ async function Q(o, p) {
18
+ const { address: i, factory: n, factoryData: s, hash: a, signature: r, universalSignatureVerifierAddress: f = o.chain?.contracts?.universalSignatureVerifier?.address, ...m } = p, t = v(r) ? r : typeof r == "object" && "r" in r && "s" in r ? V(r) : x(r), c = await (async () => !n && !s || A(t) ? t : E({
19
+ address: n,
20
+ data: s,
21
+ signature: t
22
+ }))();
23
+ try {
24
+ const e = f ? {
25
+ to: f,
26
+ data: H({
27
+ abi: d,
28
+ functionName: "isValidSig",
29
+ args: [i, a, c]
30
+ }),
31
+ ...m
32
+ } : {
33
+ data: y({
34
+ abi: d,
35
+ args: [i, a, c],
36
+ bytecode: l
37
+ }),
38
+ ...m
39
+ }, { data: u } = await b(o, D, "call")(e);
40
+ return z(u ?? "0x0");
41
+ } catch (e) {
42
+ try {
43
+ if (h(S(i), await w({ hash: a, signature: r })))
44
+ return !0;
45
+ } catch {
46
+ }
47
+ if (e instanceof g)
48
+ return !1;
49
+ throw e;
50
+ }
16
51
  }
17
- const f = /^(?:(?<scheme>[a-zA-Z][a-zA-Z0-9+-.]*):\/\/)?(?<domain>[a-zA-Z0-9+-.]*(?::[0-9]{1,5})?) (?:wants you to sign in with your Ethereum account:\n)(?<address>0x[a-fA-F0-9]{40})\n\n(?:(?<statement>.*)\n\n)?/, p = /(?:URI: (?<uri>.+))\n(?:Version: (?<version>.+))\n(?:Chain ID: (?<chainId>\d+))\n(?:Nonce: (?<nonce>[a-zA-Z0-9]+))\n(?:Issued At: (?<issuedAt>.+))(?:\nExpiration Time: (?<expirationTime>.+))?(?:\nNot Before: (?<notBefore>.+))?(?:\nRequest ID: (?<requestId>.+))?/;
18
52
  export {
19
- x as parseSiweMessage
53
+ Q as verifyHash
20
54
  };
@@ -1,17 +1,20 @@
1
- import { isAddress as f } from "./index131.js";
2
- import { isAddressEqual as o } from "./index141.js";
3
- function l(n) {
4
- const { address: r, domain: s, message: e, nonce: t, scheme: a, time: i = /* @__PURE__ */ new Date() } = n;
5
- if (s && e.domain !== s || t && e.nonce !== t || a && e.scheme !== a || e.expirationTime && i >= e.expirationTime || e.notBefore && i < e.notBefore)
6
- return !1;
7
- try {
8
- if (!e.address || !f(e.address, { strict: !1 }) || r && !o(e.address, r))
9
- return !1;
10
- } catch {
11
- return !1;
12
- }
13
- return !0;
1
+ function x(e) {
2
+ const { scheme: n, statement: t, ...c } = e.match(f)?.groups ?? {}, { chainId: s, expirationTime: i, issuedAt: o, notBefore: r, requestId: a, ...d } = e.match(p)?.groups ?? {}, u = e.split("Resources:")[1]?.split(`
3
+ - `).slice(1);
4
+ return {
5
+ ...c,
6
+ ...d,
7
+ ...s ? { chainId: Number(s) } : {},
8
+ ...i ? { expirationTime: new Date(i) } : {},
9
+ ...o ? { issuedAt: new Date(o) } : {},
10
+ ...r ? { notBefore: new Date(r) } : {},
11
+ ...a ? { requestId: a } : {},
12
+ ...u ? { resources: u } : {},
13
+ ...n ? { scheme: n } : {},
14
+ ...t ? { statement: t } : {}
15
+ };
14
16
  }
17
+ const f = /^(?:(?<scheme>[a-zA-Z][a-zA-Z0-9+-.]*):\/\/)?(?<domain>[a-zA-Z0-9+-.]*(?::[0-9]{1,5})?) (?:wants you to sign in with your Ethereum account:\n)(?<address>0x[a-fA-F0-9]{40})\n\n(?:(?<statement>.*)\n\n)?/, p = /(?:URI: (?<uri>.+))\n(?:Version: (?<version>.+))\n(?:Chain ID: (?<chainId>\d+))\n(?:Nonce: (?<nonce>[a-zA-Z0-9]+))\n(?:Issued At: (?<issuedAt>.+))(?:\nExpiration Time: (?<expirationTime>.+))?(?:\nNot Before: (?<notBefore>.+))?(?:\nRequest ID: (?<requestId>.+))?/;
15
18
  export {
16
- l as validateSiweMessage
19
+ x as parseSiweMessage
17
20
  };
@@ -3,10 +3,10 @@ import { decodeFunctionResult as p } from "./index130.js";
3
3
  import { encodeFunctionData as A } from "./index137.js";
4
4
  import { getChainContractAddress as R } from "./index173.js";
5
5
  import { toHex as b } from "./index109.js";
6
- import { isNullUniversalResolverError as g } from "./index211.js";
6
+ import { isNullUniversalResolverError as g } from "./index212.js";
7
7
  import { localBatchGatewayUrl as w } from "./index163.js";
8
8
  import { namehash as x } from "./index112.js";
9
- import { packetToBytes as C } from "./index212.js";
9
+ import { packetToBytes as C } from "./index213.js";
10
10
  import { getAction as y } from "./index206.js";
11
11
  import { readContract as N } from "./index55.js";
12
12
  async function j(n, e) {
@@ -1,14 +1,17 @@
1
- import { LruMap as u } from "./index179.js";
2
- const t = /* @__PURE__ */ new u(8192);
3
- function s(r, { enabled: o = !0, id: e }) {
4
- if (!o || !e)
5
- return r();
6
- if (t.get(e))
7
- return t.get(e);
8
- const n = r().finally(() => t.delete(e));
9
- return t.set(e, n), n;
1
+ import { isAddress as f } from "./index131.js";
2
+ import { isAddressEqual as o } from "./index141.js";
3
+ function l(n) {
4
+ const { address: r, domain: s, message: e, nonce: t, scheme: a, time: i = /* @__PURE__ */ new Date() } = n;
5
+ if (s && e.domain !== s || t && e.nonce !== t || a && e.scheme !== a || e.expirationTime && i >= e.expirationTime || e.notBefore && i < e.notBefore)
6
+ return !1;
7
+ try {
8
+ if (!e.address || !f(e.address, { strict: !1 }) || r && !o(e.address, r))
9
+ return !1;
10
+ } catch {
11
+ return !1;
12
+ }
13
+ return !0;
10
14
  }
11
15
  export {
12
- t as promiseCache,
13
- s as withDedupe
16
+ l as validateSiweMessage
14
17
  };
@@ -1,15 +1,14 @@
1
- function r() {
2
- return {
3
- current: 0,
4
- take() {
5
- return this.current++;
6
- },
7
- reset() {
8
- this.current = 0;
9
- }
10
- };
1
+ import { LruMap as u } from "./index179.js";
2
+ const t = /* @__PURE__ */ new u(8192);
3
+ function s(r, { enabled: o = !0, id: e }) {
4
+ if (!o || !e)
5
+ return r();
6
+ if (t.get(e))
7
+ return t.get(e);
8
+ const n = r().finally(() => t.delete(e));
9
+ return t.set(e, n), n;
11
10
  }
12
- const t = /* @__PURE__ */ r();
13
11
  export {
14
- t as idCache
12
+ t as promiseCache,
13
+ s as withDedupe
15
14
  };
@@ -1,7 +1,7 @@
1
- import { toRpc as $ } from "./index214.js";
1
+ import { toRpc as $ } from "./index215.js";
2
2
  import { parseAccount as W } from "./index11.js";
3
3
  import { multicall3Abi as O } from "./index72.js";
4
- import { aggregate3Signature as I } from "./index215.js";
4
+ import { aggregate3Signature as I } from "./index216.js";
5
5
  import { deploylessCallViaBytecodeBytecode as J, deploylessCallViaFactoryBytecode as K } from "./index74.js";
6
6
  import { BaseError as N } from "./index82.js";
7
7
  import { ClientChainNotConfiguredError as P, ChainDoesNotSupportContract as Q } from "./index97.js";
@@ -11,11 +11,11 @@ import { encodeDeployData as T } from "./index134.js";
11
11
  import { encodeFunctionData as Z } from "./index137.js";
12
12
  import { getChainContractAddress as tt } from "./index173.js";
13
13
  import { numberToHex as V } from "./index109.js";
14
- import { getCallError as at } from "./index216.js";
15
- import { extract as et } from "./index217.js";
14
+ import { getCallError as at } from "./index217.js";
15
+ import { extract as et } from "./index218.js";
16
16
  import { formatTransactionRequest as rt } from "./index144.js";
17
17
  import { createBatchScheduler as ot } from "./index15.js";
18
- import { serializeStateOverride as ct } from "./index218.js";
18
+ import { serializeStateOverride as ct } from "./index219.js";
19
19
  import { assertRequest as nt } from "./index157.js";
20
20
  import { parseAbi as z } from "./index196.js";
21
21
  async function Et(t, a) {
@@ -1,7 +1,7 @@
1
1
  import { parseAccount as P } from "./index11.js";
2
2
  import { numberToHex as y } from "./index109.js";
3
- import { getCallError as F } from "./index216.js";
4
- import { extract as L } from "./index217.js";
3
+ import { getCallError as F } from "./index217.js";
4
+ import { extract as L } from "./index218.js";
5
5
  import { formatTransactionRequest as A } from "./index144.js";
6
6
  import { assertRequest as G } from "./index157.js";
7
7
  async function _(t, e) {
@@ -1,11 +1,11 @@
1
1
  import { parseAccount as R } from "./index11.js";
2
2
  import { BaseError as _ } from "./index82.js";
3
- import { recoverAuthorizationAddress as A } from "./index219.js";
3
+ import { recoverAuthorizationAddress as A } from "./index220.js";
4
4
  import { numberToHex as x } from "./index109.js";
5
- import { getEstimateGasError as E } from "./index220.js";
6
- import { extract as N } from "./index217.js";
5
+ import { getEstimateGasError as E } from "./index221.js";
6
+ import { extract as N } from "./index218.js";
7
7
  import { formatTransactionRequest as S } from "./index144.js";
8
- import { serializeStateOverride as I } from "./index218.js";
8
+ import { serializeStateOverride as I } from "./index219.js";
9
9
  import { assertRequest as V } from "./index157.js";
10
10
  import { prepareTransactionRequest as C } from "./index69.js";
11
11
  import { getBalance as j } from "./index34.js";
@@ -1,4 +1,4 @@
1
- import { Eip712DomainNotFoundError as u } from "./index221.js";
1
+ import { Eip712DomainNotFoundError as u } from "./index222.js";
2
2
  import { getAction as d } from "./index206.js";
3
3
  import { readContract as f } from "./index55.js";
4
4
  async function E(a, o) {
@@ -1,5 +1,5 @@
1
1
  import { numberToHex as o } from "./index109.js";
2
- import { formatFeeHistory as f } from "./index222.js";
2
+ import { formatFeeHistory as f } from "./index223.js";
3
3
  async function u(r, { blockCount: i, blockNumber: e, blockTag: n = "latest", rewardPercentiles: s }) {
4
4
  const t = typeof e == "bigint" ? o(e) : void 0, a = await r.request({
5
5
  method: "eth_feeHistory",
@@ -1,5 +1,5 @@
1
1
  import { numberToHex as c } from "./index109.js";
2
- import { formatProof as s } from "./index223.js";
2
+ import { formatProof as s } from "./index224.js";
3
3
  async function d(t, { address: e, blockNumber: o, blockTag: r, storageKeys: n }) {
4
4
  const f = r ?? "latest", a = o !== void 0 ? c(o) : void 0, m = await t.request({
5
5
  method: "eth_getProof",
@@ -1,4 +1,4 @@
1
- import { toRpc as R } from "./index214.js";
1
+ import { toRpc as R } from "./index215.js";
2
2
  import { parseAccount as q } from "./index11.js";
3
3
  import { AbiDecodingZeroDataError as D } from "./index79.js";
4
4
  import { RawContractError as S } from "./index85.js";
@@ -8,11 +8,11 @@ import { encodeFunctionData as C } from "./index137.js";
8
8
  import { concat as F } from "./index113.js";
9
9
  import { numberToHex as H } from "./index109.js";
10
10
  import { getContractError as U } from "./index180.js";
11
- import { getNodeError as A } from "./index224.js";
11
+ import { getNodeError as A } from "./index225.js";
12
12
  import { formatBlock as _ } from "./index114.js";
13
13
  import { formatLog as z } from "./index117.js";
14
14
  import { formatTransactionRequest as I } from "./index144.js";
15
- import { serializeStateOverride as L } from "./index218.js";
15
+ import { serializeStateOverride as L } from "./index219.js";
16
16
  import { assertRequest as V } from "./index157.js";
17
17
  async function nr(p, g) {
18
18
  const { blockNumber: b, blockTag: x = p.experimental_blockTag ?? "latest", blocks: k, returnFullTransactions: v, traceTransfers: w, validation: N } = g;
@@ -1,5 +1,5 @@
1
- import { encode as J, from as K } from "./index225.js";
2
- import { encodeData as M, from as o } from "./index226.js";
1
+ import { encode as J, from as K } from "./index226.js";
2
+ import { encodeData as M, from as o } from "./index227.js";
3
3
  import { parseAccount as Q } from "./index11.js";
4
4
  import { zeroAddress as t, ethAddress as S } from "./index73.js";
5
5
  import { deploylessCallViaBytecodeBytecode as W } from "./index74.js";
@@ -1,5 +1,5 @@
1
1
  import { hashMessage as h } from "./index182.js";
2
- import { verifyHash as i } from "./index227.js";
2
+ import { verifyHash as i } from "./index228.js";
3
3
  async function m(r, { address: a, message: o, factory: s, factoryData: t, signature: e, ...f }) {
4
4
  const c = h(o);
5
5
  return i(r, {
@@ -1,5 +1,5 @@
1
1
  import { hashTypedData as m } from "./index147.js";
2
- import { verifyHash as d } from "./index227.js";
2
+ import { verifyHash as d } from "./index228.js";
3
3
  async function D(a, t) {
4
4
  const { address: r, factory: e, factoryData: o, signature: s, message: y, primaryType: c, types: f, domain: i, ...n } = t, p = m({ message: y, primaryType: c, types: f, domain: i });
5
5
  return d(a, {
@@ -1,7 +1,7 @@
1
1
  import { hashMessage as g } from "./index182.js";
2
- import { parseSiweMessage as l } from "./index228.js";
3
- import { validateSiweMessage as p } from "./index229.js";
4
- import { verifyHash as h } from "./index227.js";
2
+ import { parseSiweMessage as l } from "./index229.js";
3
+ import { validateSiweMessage as p } from "./index230.js";
4
+ import { verifyHash as h } from "./index228.js";
5
5
  async function S(a, r) {
6
6
  const { address: i, domain: t, message: s, nonce: o, scheme: n, signature: d, time: m = /* @__PURE__ */ new Date(), ...f } = r, e = l(s);
7
7
  if (!e.address || !p({