@gardenfi/utils 0.0.1-beta.0 → 0.0.1-beta.2

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/index24.js CHANGED
@@ -1,55 +1,15 @@
1
- import { hexToNumber as r } from "./index28.js";
2
- const y = {
3
- "0x0": "legacy",
4
- "0x1": "eip2930",
5
- "0x2": "eip1559",
6
- "0x3": "eip4844",
7
- "0x4": "eip7702"
8
- };
9
- function l(e) {
10
- const d = {
11
- ...e,
12
- blockHash: e.blockHash ? e.blockHash : null,
13
- blockNumber: e.blockNumber ? BigInt(e.blockNumber) : null,
14
- chainId: e.chainId ? r(e.chainId) : void 0,
15
- gas: e.gas ? BigInt(e.gas) : void 0,
16
- gasPrice: e.gasPrice ? BigInt(e.gasPrice) : void 0,
17
- maxFeePerBlobGas: e.maxFeePerBlobGas ? BigInt(e.maxFeePerBlobGas) : void 0,
18
- maxFeePerGas: e.maxFeePerGas ? BigInt(e.maxFeePerGas) : void 0,
19
- maxPriorityFeePerGas: e.maxPriorityFeePerGas ? BigInt(e.maxPriorityFeePerGas) : void 0,
20
- nonce: e.nonce ? r(e.nonce) : void 0,
21
- to: e.to ? e.to : null,
22
- transactionIndex: e.transactionIndex ? Number(e.transactionIndex) : null,
23
- type: e.type ? y[e.type] : void 0,
24
- typeHex: e.type ? e.type : void 0,
25
- value: e.value ? BigInt(e.value) : void 0,
26
- v: e.v ? BigInt(e.v) : void 0
27
- };
28
- return e.authorizationList && (d.authorizationList = i(e.authorizationList)), d.yParity = (() => {
29
- if (e.yParity)
30
- return Number(e.yParity);
31
- if (typeof d.v == "bigint") {
32
- if (d.v === 0n || d.v === 27n)
33
- return 0;
34
- if (d.v === 1n || d.v === 28n)
35
- return 1;
36
- if (d.v >= 35n)
37
- return d.v % 2n === 0n ? 1 : 0;
38
- }
39
- })(), d.type === "legacy" && (delete d.accessList, delete d.maxFeePerBlobGas, delete d.maxFeePerGas, delete d.maxPriorityFeePerGas, delete d.yParity), d.type === "eip2930" && (delete d.maxFeePerBlobGas, delete d.maxFeePerGas, delete d.maxPriorityFeePerGas), d.type === "eip1559" && delete d.maxFeePerBlobGas, d;
40
- }
41
- function i(e) {
42
- return e.map((d) => ({
43
- contractAddress: d.address,
44
- r: d.r,
45
- s: d.s,
46
- chainId: Number(d.chainId),
47
- nonce: Number(d.nonce),
48
- ...typeof d.yParity < "u" ? { yParity: Number(d.yParity) } : {},
49
- ...typeof d.v < "u" && typeof d.yParity > "u" ? { v: Number(d.v) } : {}
50
- }));
1
+ import { TransactionReceiptNotFoundError as i } from "./index22.js";
2
+ import { formatTransactionReceipt as c } from "./index25.js";
3
+ async function f(t, { hash: r }) {
4
+ var o, a, n;
5
+ const e = await t.request({
6
+ method: "eth_getTransactionReceipt",
7
+ params: [r]
8
+ }, { dedupe: !0 });
9
+ if (!e)
10
+ throw new i({ hash: r });
11
+ return (((n = (a = (o = t.chain) == null ? void 0 : o.formatters) == null ? void 0 : a.transactionReceipt) == null ? void 0 : n.format) || c)(e);
51
12
  }
52
13
  export {
53
- l as formatTransaction,
54
- y as transactionType
14
+ f as getTransactionReceipt
55
15
  };
package/dist/index25.cjs CHANGED
@@ -1 +1 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const c=require("./index23.cjs"),i=require("./index26.cjs");async function s(t,{hash:e}){var a,n,o;const r=await t.request({method:"eth_getTransactionReceipt",params:[e]},{dedupe:!0});if(!r)throw new c.TransactionReceiptNotFoundError({hash:e});return(((o=(n=(a=t.chain)==null?void 0:a.formatters)==null?void 0:n.transactionReceipt)==null?void 0:o.format)||i.formatTransactionReceipt)(r)}exports.getTransactionReceipt=s;
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const b=require("./index27.cjs"),d=require("./index39.cjs"),r=require("./index23.cjs"),u={"0x0":"reverted","0x1":"success"};function o(l){const s={...l,blockNumber:l.blockNumber?BigInt(l.blockNumber):null,contractAddress:l.contractAddress?l.contractAddress:null,cumulativeGasUsed:l.cumulativeGasUsed?BigInt(l.cumulativeGasUsed):null,effectiveGasPrice:l.effectiveGasPrice?BigInt(l.effectiveGasPrice):null,gasUsed:l.gasUsed?BigInt(l.gasUsed):null,logs:l.logs?l.logs.map(e=>d.formatLog(e)):null,to:l.to?l.to:null,transactionIndex:l.transactionIndex?b.hexToNumber(l.transactionIndex):null,status:l.status?u[l.status]:null,type:l.type?r.transactionType[l.type]||l.type:null};return l.blobGasPrice&&(s.blobGasPrice=BigInt(l.blobGasPrice)),l.blobGasUsed&&(s.blobGasUsed=BigInt(l.blobGasUsed)),s}exports.formatTransactionReceipt=o;exports.receiptStatuses=u;
package/dist/index25.js CHANGED
@@ -1,15 +1,27 @@
1
- import { TransactionReceiptNotFoundError as i } from "./index23.js";
2
- import { formatTransactionReceipt as c } from "./index26.js";
3
- async function f(t, { hash: r }) {
4
- var o, a, n;
5
- const e = await t.request({
6
- method: "eth_getTransactionReceipt",
7
- params: [r]
8
- }, { dedupe: !0 });
9
- if (!e)
10
- throw new i({ hash: r });
11
- return (((n = (a = (o = t.chain) == null ? void 0 : o.formatters) == null ? void 0 : a.transactionReceipt) == null ? void 0 : n.format) || c)(e);
1
+ import { hexToNumber as b } from "./index27.js";
2
+ import { formatLog as d } from "./index39.js";
3
+ import { transactionType as m } from "./index23.js";
4
+ const f = {
5
+ "0x0": "reverted",
6
+ "0x1": "success"
7
+ };
8
+ function r(l) {
9
+ const u = {
10
+ ...l,
11
+ blockNumber: l.blockNumber ? BigInt(l.blockNumber) : null,
12
+ contractAddress: l.contractAddress ? l.contractAddress : null,
13
+ cumulativeGasUsed: l.cumulativeGasUsed ? BigInt(l.cumulativeGasUsed) : null,
14
+ effectiveGasPrice: l.effectiveGasPrice ? BigInt(l.effectiveGasPrice) : null,
15
+ gasUsed: l.gasUsed ? BigInt(l.gasUsed) : null,
16
+ logs: l.logs ? l.logs.map((s) => d(s)) : null,
17
+ to: l.to ? l.to : null,
18
+ transactionIndex: l.transactionIndex ? b(l.transactionIndex) : null,
19
+ status: l.status ? f[l.status] : null,
20
+ type: l.type ? m[l.type] || l.type : null
21
+ };
22
+ return l.blobGasPrice && (u.blobGasPrice = BigInt(l.blobGasPrice)), l.blobGasUsed && (u.blobGasUsed = BigInt(l.blobGasUsed)), u;
12
23
  }
13
24
  export {
14
- f as getTransactionReceipt
25
+ r as formatTransactionReceipt,
26
+ f as receiptStatuses
15
27
  };
package/dist/index26.cjs CHANGED
@@ -1 +1 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const b=require("./index28.cjs"),d=require("./index39.cjs"),r=require("./index24.cjs"),u={"0x0":"reverted","0x1":"success"};function o(l){const s={...l,blockNumber:l.blockNumber?BigInt(l.blockNumber):null,contractAddress:l.contractAddress?l.contractAddress:null,cumulativeGasUsed:l.cumulativeGasUsed?BigInt(l.cumulativeGasUsed):null,effectiveGasPrice:l.effectiveGasPrice?BigInt(l.effectiveGasPrice):null,gasUsed:l.gasUsed?BigInt(l.gasUsed):null,logs:l.logs?l.logs.map(e=>d.formatLog(e)):null,to:l.to?l.to:null,transactionIndex:l.transactionIndex?b.hexToNumber(l.transactionIndex):null,status:l.status?u[l.status]:null,type:l.type?r.transactionType[l.type]||l.type:null};return l.blobGasPrice&&(s.blobGasPrice=BigInt(l.blobGasPrice)),l.blobGasUsed&&(s.blobGasUsed=BigInt(l.blobGasUsed)),s}exports.formatTransactionReceipt=o;exports.receiptStatuses=u;
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const w=require("./index27.cjs"),d=require("./index28.cjs"),y=require("./index29.cjs"),h=require("./index30.cjs"),B=require("./index31.cjs"),m=require("./index19.cjs");function q(t,{emitOnBegin:b=!1,emitMissed:l=!1,onBlockNumber:p,onError:a,poll:k,pollingInterval:i=t.pollingInterval}){const g=typeof k<"u"?k:!(t.transport.type==="webSocket"||t.transport.type==="fallback"&&t.transport.transports[0].config.type==="webSocket");let r;return g?(()=>{const f=B.stringify(["watchBlockNumber",t.uid,b,l,i]);return y.observe(f,{onBlockNumber:p,onError:a},o=>h.poll(async()=>{var c;try{const e=await d.getAction(t,m.getBlockNumber,"getBlockNumber")({cacheTime:0});if(r){if(e===r)return;if(e-r>1&&l)for(let s=r+1n;s<e;s++)o.onBlockNumber(s,r),r=s}(!r||e>r)&&(o.onBlockNumber(e,r),r=e)}catch(e){(c=o.onError)==null||c.call(o,e)}},{emitOnBegin:b,interval:i}))})():(()=>{const f=B.stringify(["watchBlockNumber",t.uid,b,l]);return y.observe(f,{onBlockNumber:p,onError:a},o=>{let c=!0,e=()=>c=!1;return(async()=>{try{const s=(()=>{if(t.transport.type==="fallback"){const n=t.transport.transports.find(u=>u.config.type==="webSocket");return n?n.value:t.transport}return t.transport})(),{unsubscribe:v}=await s.subscribe({params:["newHeads"],onData(n){var N;if(!c)return;const u=w.hexToBigInt((N=n.result)==null?void 0:N.number);o.onBlockNumber(u,r),r=u},onError(n){var u;(u=o.onError)==null||u.call(o,n)}});e=v,c||e()}catch(s){a==null||a(s)}})(),()=>e()})})()}exports.watchBlockNumber=q;
package/dist/index26.js CHANGED
@@ -1,27 +1,78 @@
1
- import { hexToNumber as b } from "./index28.js";
2
- import { formatLog as d } from "./index39.js";
3
- import { transactionType as m } from "./index24.js";
4
- const f = {
5
- "0x0": "reverted",
6
- "0x1": "success"
7
- };
8
- function r(l) {
9
- const u = {
10
- ...l,
11
- blockNumber: l.blockNumber ? BigInt(l.blockNumber) : null,
12
- contractAddress: l.contractAddress ? l.contractAddress : null,
13
- cumulativeGasUsed: l.cumulativeGasUsed ? BigInt(l.cumulativeGasUsed) : null,
14
- effectiveGasPrice: l.effectiveGasPrice ? BigInt(l.effectiveGasPrice) : null,
15
- gasUsed: l.gasUsed ? BigInt(l.gasUsed) : null,
16
- logs: l.logs ? l.logs.map((s) => d(s)) : null,
17
- to: l.to ? l.to : null,
18
- transactionIndex: l.transactionIndex ? b(l.transactionIndex) : null,
19
- status: l.status ? f[l.status] : null,
20
- type: l.type ? m[l.type] || l.type : null
21
- };
22
- return l.blobGasPrice && (u.blobGasPrice = BigInt(l.blobGasPrice)), l.blobGasUsed && (u.blobGasUsed = BigInt(l.blobGasUsed)), u;
1
+ import { hexToBigInt as h } from "./index27.js";
2
+ import { getAction as v } from "./index28.js";
3
+ import { observe as i } from "./index29.js";
4
+ import { poll as d } from "./index30.js";
5
+ import { stringify as y } from "./index31.js";
6
+ import { getBlockNumber as g } from "./index19.js";
7
+ function j(t, { emitOnBegin: b = !1, emitMissed: f = !1, onBlockNumber: p, onError: n, poll: k, pollingInterval: m = t.pollingInterval }) {
8
+ const B = typeof k < "u" ? k : !(t.transport.type === "webSocket" || t.transport.type === "fallback" && t.transport.transports[0].config.type === "webSocket");
9
+ let r;
10
+ return B ? (() => {
11
+ const l = y([
12
+ "watchBlockNumber",
13
+ t.uid,
14
+ b,
15
+ f,
16
+ m
17
+ ]);
18
+ return i(l, { onBlockNumber: p, onError: n }, (e) => d(async () => {
19
+ var a;
20
+ try {
21
+ const o = await v(t, g, "getBlockNumber")({ cacheTime: 0 });
22
+ if (r) {
23
+ if (o === r)
24
+ return;
25
+ if (o - r > 1 && f)
26
+ for (let s = r + 1n; s < o; s++)
27
+ e.onBlockNumber(s, r), r = s;
28
+ }
29
+ (!r || o > r) && (e.onBlockNumber(o, r), r = o);
30
+ } catch (o) {
31
+ (a = e.onError) == null || a.call(e, o);
32
+ }
33
+ }, {
34
+ emitOnBegin: b,
35
+ interval: m
36
+ }));
37
+ })() : (() => {
38
+ const l = y([
39
+ "watchBlockNumber",
40
+ t.uid,
41
+ b,
42
+ f
43
+ ]);
44
+ return i(l, { onBlockNumber: p, onError: n }, (e) => {
45
+ let a = !0, o = () => a = !1;
46
+ return (async () => {
47
+ try {
48
+ const s = (() => {
49
+ if (t.transport.type === "fallback") {
50
+ const c = t.transport.transports.find((u) => u.config.type === "webSocket");
51
+ return c ? c.value : t.transport;
52
+ }
53
+ return t.transport;
54
+ })(), { unsubscribe: w } = await s.subscribe({
55
+ params: ["newHeads"],
56
+ onData(c) {
57
+ var N;
58
+ if (!a)
59
+ return;
60
+ const u = h((N = c.result) == null ? void 0 : N.number);
61
+ e.onBlockNumber(u, r), r = u;
62
+ },
63
+ onError(c) {
64
+ var u;
65
+ (u = e.onError) == null || u.call(e, c);
66
+ }
67
+ });
68
+ o = w, a || o();
69
+ } catch (s) {
70
+ n == null || n(s);
71
+ }
72
+ })(), () => o();
73
+ });
74
+ })();
23
75
  }
24
76
  export {
25
- r as formatTransactionReceipt,
26
- f as receiptStatuses
77
+ j as watchBlockNumber
27
78
  };
package/dist/index27.cjs CHANGED
@@ -1 +1 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const w=require("./index28.cjs"),d=require("./index29.cjs"),y=require("./index30.cjs"),h=require("./index31.cjs"),B=require("./index32.cjs"),m=require("./index20.cjs");function q(t,{emitOnBegin:b=!1,emitMissed:l=!1,onBlockNumber:p,onError:a,poll:k,pollingInterval:i=t.pollingInterval}){const g=typeof k<"u"?k:!(t.transport.type==="webSocket"||t.transport.type==="fallback"&&t.transport.transports[0].config.type==="webSocket");let r;return g?(()=>{const f=B.stringify(["watchBlockNumber",t.uid,b,l,i]);return y.observe(f,{onBlockNumber:p,onError:a},o=>h.poll(async()=>{var c;try{const e=await d.getAction(t,m.getBlockNumber,"getBlockNumber")({cacheTime:0});if(r){if(e===r)return;if(e-r>1&&l)for(let s=r+1n;s<e;s++)o.onBlockNumber(s,r),r=s}(!r||e>r)&&(o.onBlockNumber(e,r),r=e)}catch(e){(c=o.onError)==null||c.call(o,e)}},{emitOnBegin:b,interval:i}))})():(()=>{const f=B.stringify(["watchBlockNumber",t.uid,b,l]);return y.observe(f,{onBlockNumber:p,onError:a},o=>{let c=!0,e=()=>c=!1;return(async()=>{try{const s=(()=>{if(t.transport.type==="fallback"){const n=t.transport.transports.find(u=>u.config.type==="webSocket");return n?n.value:t.transport}return t.transport})(),{unsubscribe:v}=await s.subscribe({params:["newHeads"],onData(n){var N;if(!c)return;const u=w.hexToBigInt((N=n.result)==null?void 0:N.number);o.onBlockNumber(u,r),r=u},onError(n){var u;(u=o.onError)==null||u.call(o,n)}});e=v,c||e()}catch(s){a==null||a(s)}})(),()=>e()})})()}exports.watchBlockNumber=q;
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const z=require("./index34.cjs"),r=require("./index38.cjs");function o(e,{size:n}){if(r.size(e)>n)throw new z.SizeOverflowError({givenSize:r.size(e),maxSize:n})}function s(e,n={}){const{signed:u}=n;n.size&&o(e,{size:n.size});const i=BigInt(e);if(!u)return i;const t=(e.length-2)/2,c=(1n<<BigInt(t)*8n-1n)-1n;return i<=c?i:i-BigInt(`0x${"f".padStart(t*2,"f")}`)-1n}function f(e,n={}){return Number(s(e,n))}exports.assertSize=o;exports.hexToBigInt=s;exports.hexToNumber=f;
package/dist/index27.js CHANGED
@@ -1,78 +1,26 @@
1
- import { hexToBigInt as h } from "./index28.js";
2
- import { getAction as v } from "./index29.js";
3
- import { observe as i } from "./index30.js";
4
- import { poll as d } from "./index31.js";
5
- import { stringify as y } from "./index32.js";
6
- import { getBlockNumber as g } from "./index20.js";
7
- function j(t, { emitOnBegin: b = !1, emitMissed: f = !1, onBlockNumber: p, onError: n, poll: k, pollingInterval: m = t.pollingInterval }) {
8
- const B = typeof k < "u" ? k : !(t.transport.type === "webSocket" || t.transport.type === "fallback" && t.transport.transports[0].config.type === "webSocket");
9
- let r;
10
- return B ? (() => {
11
- const l = y([
12
- "watchBlockNumber",
13
- t.uid,
14
- b,
15
- f,
16
- m
17
- ]);
18
- return i(l, { onBlockNumber: p, onError: n }, (e) => d(async () => {
19
- var a;
20
- try {
21
- const o = await v(t, g, "getBlockNumber")({ cacheTime: 0 });
22
- if (r) {
23
- if (o === r)
24
- return;
25
- if (o - r > 1 && f)
26
- for (let s = r + 1n; s < o; s++)
27
- e.onBlockNumber(s, r), r = s;
28
- }
29
- (!r || o > r) && (e.onBlockNumber(o, r), r = o);
30
- } catch (o) {
31
- (a = e.onError) == null || a.call(e, o);
32
- }
33
- }, {
34
- emitOnBegin: b,
35
- interval: m
36
- }));
37
- })() : (() => {
38
- const l = y([
39
- "watchBlockNumber",
40
- t.uid,
41
- b,
42
- f
43
- ]);
44
- return i(l, { onBlockNumber: p, onError: n }, (e) => {
45
- let a = !0, o = () => a = !1;
46
- return (async () => {
47
- try {
48
- const s = (() => {
49
- if (t.transport.type === "fallback") {
50
- const c = t.transport.transports.find((u) => u.config.type === "webSocket");
51
- return c ? c.value : t.transport;
52
- }
53
- return t.transport;
54
- })(), { unsubscribe: w } = await s.subscribe({
55
- params: ["newHeads"],
56
- onData(c) {
57
- var N;
58
- if (!a)
59
- return;
60
- const u = h((N = c.result) == null ? void 0 : N.number);
61
- e.onBlockNumber(u, r), r = u;
62
- },
63
- onError(c) {
64
- var u;
65
- (u = e.onError) == null || u.call(e, c);
66
- }
67
- });
68
- o = w, a || o();
69
- } catch (s) {
70
- n == null || n(s);
71
- }
72
- })(), () => o();
1
+ import { SizeOverflowError as u } from "./index34.js";
2
+ import { size as t } from "./index38.js";
3
+ function s(n, { size: i }) {
4
+ if (t(n) > i)
5
+ throw new u({
6
+ givenSize: t(n),
7
+ maxSize: i
73
8
  });
74
- })();
9
+ }
10
+ function z(n, i = {}) {
11
+ const { signed: o } = i;
12
+ i.size && s(n, { size: i.size });
13
+ const e = BigInt(n);
14
+ if (!o)
15
+ return e;
16
+ const r = (n.length - 2) / 2, f = (1n << BigInt(r) * 8n - 1n) - 1n;
17
+ return e <= f ? e : e - BigInt(`0x${"f".padStart(r * 2, "f")}`) - 1n;
18
+ }
19
+ function g(n, i = {}) {
20
+ return Number(z(n, i));
75
21
  }
76
22
  export {
77
- j as watchBlockNumber
23
+ s as assertSize,
24
+ z as hexToBigInt,
25
+ g as hexToNumber
78
26
  };
package/dist/index28.cjs CHANGED
@@ -1 +1 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const z=require("./index34.cjs"),r=require("./index38.cjs");function o(e,{size:n}){if(r.size(e)>n)throw new z.SizeOverflowError({givenSize:r.size(e),maxSize:n})}function s(e,n={}){const{signed:u}=n;n.size&&o(e,{size:n.size});const i=BigInt(e);if(!u)return i;const t=(e.length-2)/2,c=(1n<<BigInt(t)*8n-1n)-1n;return i<=c?i:i-BigInt(`0x${"f".padStart(t*2,"f")}`)-1n}function f(e,n={}){return Number(s(e,n))}exports.assertSize=o;exports.hexToBigInt=s;exports.hexToNumber=f;
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});function r(t,e,o){const i=t[e.name];if(typeof i=="function")return i;const n=t[o];return typeof n=="function"?n:c=>e(t,c)}exports.getAction=r;
package/dist/index28.js CHANGED
@@ -1,26 +1,10 @@
1
- import { SizeOverflowError as u } from "./index34.js";
2
- import { size as t } from "./index38.js";
3
- function s(n, { size: i }) {
4
- if (t(n) > i)
5
- throw new u({
6
- givenSize: t(n),
7
- maxSize: i
8
- });
9
- }
10
- function z(n, i = {}) {
11
- const { signed: o } = i;
12
- i.size && s(n, { size: i.size });
13
- const e = BigInt(n);
14
- if (!o)
15
- return e;
16
- const r = (n.length - 2) / 2, f = (1n << BigInt(r) * 8n - 1n) - 1n;
17
- return e <= f ? e : e - BigInt(`0x${"f".padStart(r * 2, "f")}`) - 1n;
18
- }
19
- function g(n, i = {}) {
20
- return Number(z(n, i));
1
+ function f(t, n, c) {
2
+ const i = t[n.name];
3
+ if (typeof i == "function")
4
+ return i;
5
+ const o = t[c];
6
+ return typeof o == "function" ? o : (e) => n(t, e);
21
7
  }
22
8
  export {
23
- s as assertSize,
24
- z as hexToBigInt,
25
- g as hexToNumber
9
+ f as getAction
26
10
  };
package/dist/index29.cjs CHANGED
@@ -1 +1 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});function r(t,e,o){const i=t[e.name];if(typeof i=="function")return i;const n=t[o];return typeof n=="function"?n:c=>e(t,c)}exports.getAction=r;
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const s=new Map,i=new Map;let w=0;function M(e,l,C){const u=++w,n=()=>s.get(e)||[],y=()=>{const t=n();s.set(e,t.filter(o=>o.id!==u))},a=()=>{const t=i.get(e);n().length===1&&t&&t(),y()},c=n();if(s.set(e,[...c,{id:u,fns:l}]),c&&c.length>0)return a;const r={};for(const t in l)r[t]=(...o)=>{var h,p;const g=n();if(g.length!==0)for(const b of g)(p=(h=b.fns)[t])==null||p.call(h,...o)};const f=C(r);return typeof f=="function"&&i.set(e,f),a}exports.cleanupCache=i;exports.listenersCache=s;exports.observe=M;
package/dist/index29.js CHANGED
@@ -1,10 +1,32 @@
1
- function f(t, n, c) {
2
- const i = t[n.name];
3
- if (typeof i == "function")
4
- return i;
5
- const o = t[c];
6
- return typeof o == "function" ? o : (e) => n(t, e);
1
+ const o = /* @__PURE__ */ new Map(), h = /* @__PURE__ */ new Map();
2
+ let y = 0;
3
+ function M(t, i, w) {
4
+ const l = ++y, e = () => o.get(t) || [], C = () => {
5
+ const n = e();
6
+ o.set(t, n.filter((c) => c.id !== l));
7
+ }, f = () => {
8
+ const n = h.get(t);
9
+ e().length === 1 && n && n(), C();
10
+ }, s = e();
11
+ if (o.set(t, [
12
+ ...s,
13
+ { id: l, fns: i }
14
+ ]), s && s.length > 0)
15
+ return f;
16
+ const u = {};
17
+ for (const n in i)
18
+ u[n] = (...c) => {
19
+ var p, g;
20
+ const r = e();
21
+ if (r.length !== 0)
22
+ for (const k of r)
23
+ (g = (p = k.fns)[n]) == null || g.call(p, ...c);
24
+ };
25
+ const a = w(u);
26
+ return typeof a == "function" && h.set(t, a), f;
7
27
  }
8
28
  export {
9
- f as getAction
29
+ h as cleanupCache,
30
+ o as listenersCache,
31
+ M as observe
10
32
  };
package/dist/index30.cjs CHANGED
@@ -1 +1 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const s=new Map,i=new Map;let w=0;function M(e,l,C){const u=++w,n=()=>s.get(e)||[],y=()=>{const t=n();s.set(e,t.filter(o=>o.id!==u))},a=()=>{const t=i.get(e);n().length===1&&t&&t(),y()},c=n();if(s.set(e,[...c,{id:u,fns:l}]),c&&c.length>0)return a;const r={};for(const t in l)r[t]=(...o)=>{var h,p;const g=n();if(g.length!==0)for(const b of g)(p=(h=b.fns)[t])==null||p.call(h,...o)};const f=C(r);return typeof f=="function"&&i.set(e,f),a}exports.cleanupCache=i;exports.listenersCache=s;exports.observe=M;
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const u=require("./index40.cjs");function s(o,{emitOnBegin:w,initialWaitTime:t,interval:c}){let e=!0;const a=()=>e=!1;return(async()=>{let n;w&&(n=await o({unpoll:a}));const r=await(t==null?void 0:t(n))??c;await u.wait(r);const l=async()=>{e&&(await o({unpoll:a}),await u.wait(c),l())};l()})(),a}exports.poll=s;
package/dist/index30.js CHANGED
@@ -1,32 +1,18 @@
1
- const o = /* @__PURE__ */ new Map(), h = /* @__PURE__ */ new Map();
2
- let y = 0;
3
- function M(t, i, w) {
4
- const l = ++y, e = () => o.get(t) || [], C = () => {
5
- const n = e();
6
- o.set(t, n.filter((c) => c.id !== l));
7
- }, f = () => {
8
- const n = h.get(t);
9
- e().length === 1 && n && n(), C();
10
- }, s = e();
11
- if (o.set(t, [
12
- ...s,
13
- { id: l, fns: i }
14
- ]), s && s.length > 0)
15
- return f;
16
- const u = {};
17
- for (const n in i)
18
- u[n] = (...c) => {
19
- var p, g;
20
- const r = e();
21
- if (r.length !== 0)
22
- for (const k of r)
23
- (g = (p = k.fns)[n]) == null || g.call(p, ...c);
1
+ import { wait as l } from "./index40.js";
2
+ function f(o, { emitOnBegin: r, initialWaitTime: t, interval: c }) {
3
+ let n = !0;
4
+ const a = () => n = !1;
5
+ return (async () => {
6
+ let w;
7
+ r && (w = await o({ unpoll: a }));
8
+ const s = await (t == null ? void 0 : t(w)) ?? c;
9
+ await l(s);
10
+ const u = async () => {
11
+ n && (await o({ unpoll: a }), await l(c), u());
24
12
  };
25
- const a = w(u);
26
- return typeof a == "function" && h.set(t, a), f;
13
+ u();
14
+ })(), a;
27
15
  }
28
16
  export {
29
- h as cleanupCache,
30
- o as listenersCache,
31
- M as observe
17
+ f as poll
32
18
  };
package/dist/index31.cjs CHANGED
@@ -1 +1 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const u=require("./index40.cjs");function s(o,{emitOnBegin:w,initialWaitTime:t,interval:c}){let e=!0;const a=()=>e=!1;return(async()=>{let n;w&&(n=await o({unpoll:a}));const r=await(t==null?void 0:t(n))??c;await u.wait(r);const l=async()=>{e&&(await o({unpoll:a}),await u.wait(c),l())};l()})(),a}exports.poll=s;
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const r=(e,n,i)=>JSON.stringify(e,(o,t)=>typeof t=="bigint"?t.toString():t,i);exports.stringify=r;
package/dist/index31.js CHANGED
@@ -1,18 +1,4 @@
1
- import { wait as l } from "./index40.js";
2
- function f(o, { emitOnBegin: r, initialWaitTime: t, interval: c }) {
3
- let n = !0;
4
- const a = () => n = !1;
5
- return (async () => {
6
- let w;
7
- r && (w = await o({ unpoll: a }));
8
- const s = await (t == null ? void 0 : t(w)) ?? c;
9
- await l(s);
10
- const u = async () => {
11
- n && (await o({ unpoll: a }), await l(c), u());
12
- };
13
- u();
14
- })(), a;
15
- }
1
+ const g = (r, n, i) => JSON.stringify(r, (e, t) => typeof t == "bigint" ? t.toString() : t, i);
16
2
  export {
17
- f as poll
3
+ g as stringify
18
4
  };
package/dist/index32.cjs CHANGED
@@ -1 +1 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const r=(e,n,i)=>JSON.stringify(e,(o,t)=>typeof t=="bigint"?t.toString():t,i);exports.stringify=r;
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const u=require("./index40.cjs");function f(n,{delay:e=100,retryCount:o=2,shouldRetry:c=()=>!0}={}){return new Promise((s,y)=>{const a=async({count:r=0}={})=>{const w=async({error:t})=>{const i=typeof e=="function"?e({count:r,error:t}):e;i&&await u.wait(i),a({count:r+1})};try{const t=await n();s(t)}catch(t){if(r<o&&await c({count:r,error:t}))return w({error:t});y(t)}};a()})}exports.withRetry=f;
package/dist/index32.js CHANGED
@@ -1,4 +1,23 @@
1
- const g = (r, n, i) => JSON.stringify(r, (e, t) => typeof t == "bigint" ? t.toString() : t, i);
1
+ import { wait as w } from "./index40.js";
2
+ function p(n, { delay: e = 100, retryCount: o = 2, shouldRetry: c = () => !0 } = {}) {
3
+ return new Promise((s, y) => {
4
+ const a = async ({ count: r = 0 } = {}) => {
5
+ const f = async ({ error: t }) => {
6
+ const i = typeof e == "function" ? e({ count: r, error: t }) : e;
7
+ i && await w(i), a({ count: r + 1 });
8
+ };
9
+ try {
10
+ const t = await n();
11
+ s(t);
12
+ } catch (t) {
13
+ if (r < o && await c({ count: r, error: t }))
14
+ return f({ error: t });
15
+ y(t);
16
+ }
17
+ };
18
+ a();
19
+ });
20
+ }
2
21
  export {
3
- g as stringify
22
+ p as withRetry
4
23
  };
package/dist/index33.cjs CHANGED
@@ -1 +1 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const u=require("./index40.cjs");function f(n,{delay:e=100,retryCount:o=2,shouldRetry:c=()=>!0}={}){return new Promise((s,y)=>{const a=async({count:r=0}={})=>{const w=async({error:t})=>{const i=typeof e=="function"?e({count:r,error:t}):e;i&&await u.wait(i),a({count:r+1})};try{const t=await n();s(t)}catch(t){if(r<o&&await c({count:r,error:t}))return w({error:t});y(t)}};a()})}exports.withRetry=f;
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});function n(e){return{formatters:void 0,fees:void 0,serializers:void 0,...e}}exports.defineChain=n;
package/dist/index33.js CHANGED
@@ -1,23 +1,11 @@
1
- import { wait as w } from "./index40.js";
2
- function p(n, { delay: e = 100, retryCount: o = 2, shouldRetry: c = () => !0 } = {}) {
3
- return new Promise((s, y) => {
4
- const a = async ({ count: r = 0 } = {}) => {
5
- const f = async ({ error: t }) => {
6
- const i = typeof e == "function" ? e({ count: r, error: t }) : e;
7
- i && await w(i), a({ count: r + 1 });
8
- };
9
- try {
10
- const t = await n();
11
- s(t);
12
- } catch (t) {
13
- if (r < o && await c({ count: r, error: t }))
14
- return f({ error: t });
15
- y(t);
16
- }
17
- };
18
- a();
19
- });
1
+ function n(e) {
2
+ return {
3
+ formatters: void 0,
4
+ fees: void 0,
5
+ serializers: void 0,
6
+ ...e
7
+ };
20
8
  }
21
9
  export {
22
- p as withRetry
10
+ n as defineChain
23
11
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gardenfi/utils",
3
- "version": "0.0.1-beta.0",
3
+ "version": "0.0.1-beta.2",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "build": "vite build",