@moonbeam-network/mrl 3.1.12 → 3.1.14
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/build/index.mjs +61 -45
- package/build/index.mjs.map +1 -1
- package/package.json +11 -11
package/build/index.mjs
CHANGED
|
@@ -155,10 +155,10 @@ __export(ethers_contracts_exports, {
|
|
|
155
155
|
Implementation__factory: () => Implementation__factory
|
|
156
156
|
});
|
|
157
157
|
|
|
158
|
-
// ../../node_modules/.pnpm/ethers@6.
|
|
159
|
-
var version = "6.
|
|
158
|
+
// ../../node_modules/.pnpm/ethers@6.14.3_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/ethers/lib.esm/_version.js
|
|
159
|
+
var version = "6.14.3";
|
|
160
160
|
|
|
161
|
-
// ../../node_modules/.pnpm/ethers@6.
|
|
161
|
+
// ../../node_modules/.pnpm/ethers@6.14.3_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/ethers/lib.esm/utils/properties.js
|
|
162
162
|
function checkType(value, type, name) {
|
|
163
163
|
const types = type.split("|").map((t) => t.trim());
|
|
164
164
|
for (let i = 0; i < types.length; i++) {
|
|
@@ -199,13 +199,22 @@ function defineProperties(target, values, types) {
|
|
|
199
199
|
}
|
|
200
200
|
}
|
|
201
201
|
|
|
202
|
-
// ../../node_modules/.pnpm/ethers@6.
|
|
203
|
-
function stringify(value) {
|
|
202
|
+
// ../../node_modules/.pnpm/ethers@6.14.3_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/ethers/lib.esm/utils/errors.js
|
|
203
|
+
function stringify(value, seen) {
|
|
204
204
|
if (value == null) {
|
|
205
205
|
return "null";
|
|
206
206
|
}
|
|
207
|
+
if (seen == null) {
|
|
208
|
+
seen = /* @__PURE__ */ new Set();
|
|
209
|
+
}
|
|
210
|
+
if (typeof value === "object") {
|
|
211
|
+
if (seen.has(value)) {
|
|
212
|
+
return "[Circular]";
|
|
213
|
+
}
|
|
214
|
+
seen.add(value);
|
|
215
|
+
}
|
|
207
216
|
if (Array.isArray(value)) {
|
|
208
|
-
return "[ " + value.map(stringify).join(", ") + " ]";
|
|
217
|
+
return "[ " + value.map((v) => stringify(v, seen)).join(", ") + " ]";
|
|
209
218
|
}
|
|
210
219
|
if (value instanceof Uint8Array) {
|
|
211
220
|
const HEX = "0123456789abcdef";
|
|
@@ -217,22 +226,21 @@ function stringify(value) {
|
|
|
217
226
|
return result;
|
|
218
227
|
}
|
|
219
228
|
if (typeof value === "object" && typeof value.toJSON === "function") {
|
|
220
|
-
return stringify(value.toJSON());
|
|
229
|
+
return stringify(value.toJSON(), seen);
|
|
221
230
|
}
|
|
222
231
|
switch (typeof value) {
|
|
223
232
|
case "boolean":
|
|
233
|
+
case "number":
|
|
224
234
|
case "symbol":
|
|
225
235
|
return value.toString();
|
|
226
236
|
case "bigint":
|
|
227
237
|
return BigInt(value).toString();
|
|
228
|
-
case "number":
|
|
229
|
-
return value.toString();
|
|
230
238
|
case "string":
|
|
231
239
|
return JSON.stringify(value);
|
|
232
240
|
case "object": {
|
|
233
241
|
const keys = Object.keys(value);
|
|
234
242
|
keys.sort();
|
|
235
|
-
return "{ " + keys.map((k) => `${stringify(k)}: ${stringify(value[k])}`).join(", ") + " }";
|
|
243
|
+
return "{ " + keys.map((k) => `${stringify(k, seen)}: ${stringify(value[k], seen)}`).join(", ") + " }";
|
|
236
244
|
}
|
|
237
245
|
}
|
|
238
246
|
return `[ COULD NOT SERIALIZE ]`;
|
|
@@ -350,7 +358,7 @@ function assertPrivate(givenGuard, guard, className) {
|
|
|
350
358
|
}
|
|
351
359
|
}
|
|
352
360
|
|
|
353
|
-
// ../../node_modules/.pnpm/ethers@6.
|
|
361
|
+
// ../../node_modules/.pnpm/ethers@6.14.3_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/ethers/lib.esm/utils/data.js
|
|
354
362
|
function _getBytes(value, name, copy) {
|
|
355
363
|
if (value instanceof Uint8Array) {
|
|
356
364
|
if (copy) {
|
|
@@ -437,7 +445,7 @@ function zeroPadBytes(data, length) {
|
|
|
437
445
|
return zeroPad(data, length, false);
|
|
438
446
|
}
|
|
439
447
|
|
|
440
|
-
// ../../node_modules/.pnpm/ethers@6.
|
|
448
|
+
// ../../node_modules/.pnpm/ethers@6.14.3_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/ethers/lib.esm/utils/maths.js
|
|
441
449
|
var BN_0 = BigInt(0);
|
|
442
450
|
var BN_1 = BigInt(1);
|
|
443
451
|
var maxValue = 9007199254740991;
|
|
@@ -587,7 +595,7 @@ function toBeArray(_value) {
|
|
|
587
595
|
return result;
|
|
588
596
|
}
|
|
589
597
|
|
|
590
|
-
// ../../node_modules/.pnpm/ethers@6.
|
|
598
|
+
// ../../node_modules/.pnpm/ethers@6.14.3_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/ethers/lib.esm/utils/events.js
|
|
591
599
|
var EventPayload = class {
|
|
592
600
|
/**
|
|
593
601
|
* The event filter.
|
|
@@ -617,7 +625,7 @@ var EventPayload = class {
|
|
|
617
625
|
}
|
|
618
626
|
};
|
|
619
627
|
|
|
620
|
-
// ../../node_modules/.pnpm/ethers@6.
|
|
628
|
+
// ../../node_modules/.pnpm/ethers@6.14.3_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/ethers/lib.esm/utils/utf8.js
|
|
621
629
|
function errorFunc(reason, offset, bytes2, output2, badCodepoint) {
|
|
622
630
|
assertArgument(false, `invalid codepoint at offset ${offset}; ${reason}`, "bytes", bytes2);
|
|
623
631
|
}
|
|
@@ -762,7 +770,7 @@ function toUtf8String(bytes2, onError) {
|
|
|
762
770
|
return _toUtf8String(getUtf8CodePoints(bytes2, onError));
|
|
763
771
|
}
|
|
764
772
|
|
|
765
|
-
// ../../node_modules/.pnpm/ethers@6.
|
|
773
|
+
// ../../node_modules/.pnpm/ethers@6.14.3_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/ethers/lib.esm/utils/rlp-encode.js
|
|
766
774
|
function arrayifyInteger(value) {
|
|
767
775
|
const result = [];
|
|
768
776
|
while (value) {
|
|
@@ -806,7 +814,7 @@ function encodeRlp(object) {
|
|
|
806
814
|
return result;
|
|
807
815
|
}
|
|
808
816
|
|
|
809
|
-
// ../../node_modules/.pnpm/ethers@6.
|
|
817
|
+
// ../../node_modules/.pnpm/ethers@6.14.3_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/ethers/lib.esm/abi/coders/abstract-coder.js
|
|
810
818
|
var WordSize = 32;
|
|
811
819
|
var Padding = new Uint8Array(WordSize);
|
|
812
820
|
var passProperties = ["then"];
|
|
@@ -1479,7 +1487,7 @@ var genShake = (suffix, blockLen, outputLen) => wrapXOFConstructorWithOpts((opts
|
|
|
1479
1487
|
var shake128 = /* @__PURE__ */ genShake(31, 168, 128 / 8);
|
|
1480
1488
|
var shake256 = /* @__PURE__ */ genShake(31, 136, 256 / 8);
|
|
1481
1489
|
|
|
1482
|
-
// ../../node_modules/.pnpm/ethers@6.
|
|
1490
|
+
// ../../node_modules/.pnpm/ethers@6.14.3_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/ethers/lib.esm/crypto/keccak.js
|
|
1483
1491
|
var locked = false;
|
|
1484
1492
|
var _keccak256 = function(data) {
|
|
1485
1493
|
return keccak_256(data);
|
|
@@ -1501,7 +1509,7 @@ keccak256.register = function(func) {
|
|
|
1501
1509
|
};
|
|
1502
1510
|
Object.freeze(keccak256);
|
|
1503
1511
|
|
|
1504
|
-
// ../../node_modules/.pnpm/ethers@6.
|
|
1512
|
+
// ../../node_modules/.pnpm/ethers@6.14.3_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/ethers/lib.esm/address/address.js
|
|
1505
1513
|
var BN_02 = BigInt(0);
|
|
1506
1514
|
var BN_36 = BigInt(36);
|
|
1507
1515
|
function getChecksumAddress(address) {
|
|
@@ -1584,7 +1592,7 @@ function getAddress(address) {
|
|
|
1584
1592
|
assertArgument(false, "invalid address", "address", address);
|
|
1585
1593
|
}
|
|
1586
1594
|
|
|
1587
|
-
// ../../node_modules/.pnpm/ethers@6.
|
|
1595
|
+
// ../../node_modules/.pnpm/ethers@6.14.3_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/ethers/lib.esm/address/contract-address.js
|
|
1588
1596
|
function getCreateAddress(tx) {
|
|
1589
1597
|
const from = getAddress(tx.from);
|
|
1590
1598
|
const nonce = getBigInt(tx.nonce, "tx.nonce");
|
|
@@ -1599,7 +1607,7 @@ function getCreateAddress(tx) {
|
|
|
1599
1607
|
return getAddress(dataSlice(keccak256(encodeRlp([from, nonceHex])), 12));
|
|
1600
1608
|
}
|
|
1601
1609
|
|
|
1602
|
-
// ../../node_modules/.pnpm/ethers@6.
|
|
1610
|
+
// ../../node_modules/.pnpm/ethers@6.14.3_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/ethers/lib.esm/address/checks.js
|
|
1603
1611
|
function isAddressable(value) {
|
|
1604
1612
|
return value && typeof value.getAddress === "function";
|
|
1605
1613
|
}
|
|
@@ -1626,7 +1634,7 @@ function resolveAddress(target, resolver) {
|
|
|
1626
1634
|
assertArgument(false, "unsupported addressable value", "target", target);
|
|
1627
1635
|
}
|
|
1628
1636
|
|
|
1629
|
-
// ../../node_modules/.pnpm/ethers@6.
|
|
1637
|
+
// ../../node_modules/.pnpm/ethers@6.14.3_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/ethers/lib.esm/abi/typed.js
|
|
1630
1638
|
var _gaurd = {};
|
|
1631
1639
|
function n(value, width) {
|
|
1632
1640
|
let signed = false;
|
|
@@ -2407,7 +2415,7 @@ var Typed = class _Typed {
|
|
|
2407
2415
|
}
|
|
2408
2416
|
};
|
|
2409
2417
|
|
|
2410
|
-
// ../../node_modules/.pnpm/ethers@6.
|
|
2418
|
+
// ../../node_modules/.pnpm/ethers@6.14.3_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/ethers/lib.esm/abi/coders/address.js
|
|
2411
2419
|
var AddressCoder = class extends Coder {
|
|
2412
2420
|
constructor(localName) {
|
|
2413
2421
|
super("address", "address", localName, false);
|
|
@@ -2429,7 +2437,7 @@ var AddressCoder = class extends Coder {
|
|
|
2429
2437
|
}
|
|
2430
2438
|
};
|
|
2431
2439
|
|
|
2432
|
-
// ../../node_modules/.pnpm/ethers@6.
|
|
2440
|
+
// ../../node_modules/.pnpm/ethers@6.14.3_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/ethers/lib.esm/abi/coders/anonymous.js
|
|
2433
2441
|
var AnonymousCoder = class extends Coder {
|
|
2434
2442
|
coder;
|
|
2435
2443
|
constructor(coder) {
|
|
@@ -2447,7 +2455,7 @@ var AnonymousCoder = class extends Coder {
|
|
|
2447
2455
|
}
|
|
2448
2456
|
};
|
|
2449
2457
|
|
|
2450
|
-
// ../../node_modules/.pnpm/ethers@6.
|
|
2458
|
+
// ../../node_modules/.pnpm/ethers@6.14.3_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/ethers/lib.esm/abi/coders/array.js
|
|
2451
2459
|
function pack(writer, coders, values) {
|
|
2452
2460
|
let arrayValues = [];
|
|
2453
2461
|
if (Array.isArray(values)) {
|
|
@@ -2577,7 +2585,7 @@ var ArrayCoder = class extends Coder {
|
|
|
2577
2585
|
}
|
|
2578
2586
|
};
|
|
2579
2587
|
|
|
2580
|
-
// ../../node_modules/.pnpm/ethers@6.
|
|
2588
|
+
// ../../node_modules/.pnpm/ethers@6.14.3_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/ethers/lib.esm/abi/coders/boolean.js
|
|
2581
2589
|
var BooleanCoder = class extends Coder {
|
|
2582
2590
|
constructor(localName) {
|
|
2583
2591
|
super("bool", "bool", localName, false);
|
|
@@ -2594,7 +2602,7 @@ var BooleanCoder = class extends Coder {
|
|
|
2594
2602
|
}
|
|
2595
2603
|
};
|
|
2596
2604
|
|
|
2597
|
-
// ../../node_modules/.pnpm/ethers@6.
|
|
2605
|
+
// ../../node_modules/.pnpm/ethers@6.14.3_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/ethers/lib.esm/abi/coders/bytes.js
|
|
2598
2606
|
var DynamicBytesCoder = class extends Coder {
|
|
2599
2607
|
constructor(type, localName) {
|
|
2600
2608
|
super(type, type, localName, true);
|
|
@@ -2621,7 +2629,7 @@ var BytesCoder = class extends DynamicBytesCoder {
|
|
|
2621
2629
|
}
|
|
2622
2630
|
};
|
|
2623
2631
|
|
|
2624
|
-
// ../../node_modules/.pnpm/ethers@6.
|
|
2632
|
+
// ../../node_modules/.pnpm/ethers@6.14.3_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/ethers/lib.esm/abi/coders/fixed-bytes.js
|
|
2625
2633
|
var FixedBytesCoder = class extends Coder {
|
|
2626
2634
|
size;
|
|
2627
2635
|
constructor(size, localName) {
|
|
@@ -2644,7 +2652,7 @@ var FixedBytesCoder = class extends Coder {
|
|
|
2644
2652
|
}
|
|
2645
2653
|
};
|
|
2646
2654
|
|
|
2647
|
-
// ../../node_modules/.pnpm/ethers@6.
|
|
2655
|
+
// ../../node_modules/.pnpm/ethers@6.14.3_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/ethers/lib.esm/abi/coders/null.js
|
|
2648
2656
|
var Empty = new Uint8Array([]);
|
|
2649
2657
|
var NullCoder = class extends Coder {
|
|
2650
2658
|
constructor(localName) {
|
|
@@ -2665,7 +2673,7 @@ var NullCoder = class extends Coder {
|
|
|
2665
2673
|
}
|
|
2666
2674
|
};
|
|
2667
2675
|
|
|
2668
|
-
// ../../node_modules/.pnpm/ethers@6.
|
|
2676
|
+
// ../../node_modules/.pnpm/ethers@6.14.3_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/ethers/lib.esm/abi/coders/number.js
|
|
2669
2677
|
var BN_03 = BigInt(0);
|
|
2670
2678
|
var BN_12 = BigInt(1);
|
|
2671
2679
|
var BN_MAX_UINT256 = BigInt("0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff");
|
|
@@ -2703,7 +2711,7 @@ var NumberCoder = class extends Coder {
|
|
|
2703
2711
|
}
|
|
2704
2712
|
};
|
|
2705
2713
|
|
|
2706
|
-
// ../../node_modules/.pnpm/ethers@6.
|
|
2714
|
+
// ../../node_modules/.pnpm/ethers@6.14.3_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/ethers/lib.esm/abi/coders/string.js
|
|
2707
2715
|
var StringCoder = class extends DynamicBytesCoder {
|
|
2708
2716
|
constructor(localName) {
|
|
2709
2717
|
super("string", localName);
|
|
@@ -2719,7 +2727,7 @@ var StringCoder = class extends DynamicBytesCoder {
|
|
|
2719
2727
|
}
|
|
2720
2728
|
};
|
|
2721
2729
|
|
|
2722
|
-
// ../../node_modules/.pnpm/ethers@6.
|
|
2730
|
+
// ../../node_modules/.pnpm/ethers@6.14.3_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/ethers/lib.esm/abi/coders/tuple.js
|
|
2723
2731
|
var TupleCoder = class extends Coder {
|
|
2724
2732
|
coders;
|
|
2725
2733
|
constructor(coders, localName) {
|
|
@@ -2774,12 +2782,7 @@ var TupleCoder = class extends Coder {
|
|
|
2774
2782
|
}
|
|
2775
2783
|
};
|
|
2776
2784
|
|
|
2777
|
-
// ../../node_modules/.pnpm/ethers@6.
|
|
2778
|
-
function id(value) {
|
|
2779
|
-
return keccak256(toUtf8Bytes(value));
|
|
2780
|
-
}
|
|
2781
|
-
|
|
2782
|
-
// ../../node_modules/.pnpm/ethers@6.13.5_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/ethers/lib.esm/transaction/accesslist.js
|
|
2785
|
+
// ../../node_modules/.pnpm/ethers@6.14.3_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/ethers/lib.esm/transaction/accesslist.js
|
|
2783
2786
|
function accessSetify(addr, storageKeys) {
|
|
2784
2787
|
return {
|
|
2785
2788
|
address: getAddress(addr),
|
|
@@ -2812,7 +2815,12 @@ function accessListify(value) {
|
|
|
2812
2815
|
return result;
|
|
2813
2816
|
}
|
|
2814
2817
|
|
|
2815
|
-
// ../../node_modules/.pnpm/ethers@6.
|
|
2818
|
+
// ../../node_modules/.pnpm/ethers@6.14.3_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/ethers/lib.esm/hash/id.js
|
|
2819
|
+
function id(value) {
|
|
2820
|
+
return keccak256(toUtf8Bytes(value));
|
|
2821
|
+
}
|
|
2822
|
+
|
|
2823
|
+
// ../../node_modules/.pnpm/ethers@6.14.3_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/ethers/lib.esm/abi/fragments.js
|
|
2816
2824
|
function setify(items) {
|
|
2817
2825
|
const result = /* @__PURE__ */ new Set();
|
|
2818
2826
|
items.forEach((k) => result.add(k));
|
|
@@ -4060,7 +4068,7 @@ var StructFragment = class _StructFragment extends NamedFragment {
|
|
|
4060
4068
|
}
|
|
4061
4069
|
};
|
|
4062
4070
|
|
|
4063
|
-
// ../../node_modules/.pnpm/ethers@6.
|
|
4071
|
+
// ../../node_modules/.pnpm/ethers@6.14.3_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/ethers/lib.esm/abi/abi-coder.js
|
|
4064
4072
|
var PanicReasons = /* @__PURE__ */ new Map();
|
|
4065
4073
|
PanicReasons.set(0, "GENERIC_PANIC");
|
|
4066
4074
|
PanicReasons.set(1, "ASSERT_FALSE");
|
|
@@ -4230,7 +4238,7 @@ var AbiCoder = class _AbiCoder {
|
|
|
4230
4238
|
}
|
|
4231
4239
|
};
|
|
4232
4240
|
|
|
4233
|
-
// ../../node_modules/.pnpm/ethers@6.
|
|
4241
|
+
// ../../node_modules/.pnpm/ethers@6.14.3_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/ethers/lib.esm/abi/interface.js
|
|
4234
4242
|
var LogDescription = class {
|
|
4235
4243
|
/**
|
|
4236
4244
|
* The matching fragment for the ``topic0``.
|
|
@@ -5238,7 +5246,7 @@ var Interface = class _Interface {
|
|
|
5238
5246
|
}
|
|
5239
5247
|
};
|
|
5240
5248
|
|
|
5241
|
-
// ../../node_modules/.pnpm/ethers@6.
|
|
5249
|
+
// ../../node_modules/.pnpm/ethers@6.14.3_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/ethers/lib.esm/providers/provider.js
|
|
5242
5250
|
var BN_04 = BigInt(0);
|
|
5243
5251
|
function toJson(value) {
|
|
5244
5252
|
if (value == null) {
|
|
@@ -5274,6 +5282,9 @@ function copyRequest(req) {
|
|
|
5274
5282
|
if (req.accessList) {
|
|
5275
5283
|
result.accessList = accessListify(req.accessList);
|
|
5276
5284
|
}
|
|
5285
|
+
if (req.authorizationList) {
|
|
5286
|
+
result.authorizationList = req.authorizationList.slice();
|
|
5287
|
+
}
|
|
5277
5288
|
if ("blockTag" in req) {
|
|
5278
5289
|
result.blockTag = req.blockTag;
|
|
5279
5290
|
}
|
|
@@ -5785,6 +5796,10 @@ var TransactionResponse = class _TransactionResponse {
|
|
|
5785
5796
|
* The [[link-eip-4844]] BLOb versioned hashes.
|
|
5786
5797
|
*/
|
|
5787
5798
|
blobVersionedHashes;
|
|
5799
|
+
/**
|
|
5800
|
+
* The [[link-eip-7702]] authorizations (if any).
|
|
5801
|
+
*/
|
|
5802
|
+
authorizationList;
|
|
5788
5803
|
#startBlock;
|
|
5789
5804
|
/**
|
|
5790
5805
|
* @_ignore:
|
|
@@ -5810,6 +5825,7 @@ var TransactionResponse = class _TransactionResponse {
|
|
|
5810
5825
|
this.signature = tx.signature;
|
|
5811
5826
|
this.accessList = tx.accessList != null ? tx.accessList : null;
|
|
5812
5827
|
this.blobVersionedHashes = tx.blobVersionedHashes != null ? tx.blobVersionedHashes : null;
|
|
5828
|
+
this.authorizationList = tx.authorizationList != null ? tx.authorizationList : null;
|
|
5813
5829
|
this.#startBlock = -1;
|
|
5814
5830
|
}
|
|
5815
5831
|
/**
|
|
@@ -5996,7 +6012,7 @@ var TransactionResponse = class _TransactionResponse {
|
|
|
5996
6012
|
return checkReceipt(receipt);
|
|
5997
6013
|
}
|
|
5998
6014
|
if (receipt) {
|
|
5999
|
-
if (await receipt.confirmations() >= confirms) {
|
|
6015
|
+
if (confirms === 1 || await receipt.confirmations() >= confirms) {
|
|
6000
6016
|
return checkReceipt(receipt);
|
|
6001
6017
|
}
|
|
6002
6018
|
} else {
|
|
@@ -6161,7 +6177,7 @@ function createRemovedLogFilter(log) {
|
|
|
6161
6177
|
} };
|
|
6162
6178
|
}
|
|
6163
6179
|
|
|
6164
|
-
// ../../node_modules/.pnpm/ethers@6.
|
|
6180
|
+
// ../../node_modules/.pnpm/ethers@6.14.3_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/ethers/lib.esm/contract/wrappers.js
|
|
6165
6181
|
var EventLog = class extends Log {
|
|
6166
6182
|
/**
|
|
6167
6183
|
* The Contract Interface.
|
|
@@ -6316,7 +6332,7 @@ var ContractEventPayload = class extends ContractUnknownEventPayload {
|
|
|
6316
6332
|
}
|
|
6317
6333
|
};
|
|
6318
6334
|
|
|
6319
|
-
// ../../node_modules/.pnpm/ethers@6.
|
|
6335
|
+
// ../../node_modules/.pnpm/ethers@6.14.3_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/ethers/lib.esm/contract/contract.js
|
|
6320
6336
|
var BN_05 = BigInt(0);
|
|
6321
6337
|
function canCall(value) {
|
|
6322
6338
|
return value && typeof value.call === "function";
|
|
@@ -7193,7 +7209,7 @@ function _ContractBase() {
|
|
|
7193
7209
|
var Contract = class extends _ContractBase() {
|
|
7194
7210
|
};
|
|
7195
7211
|
|
|
7196
|
-
// ../../node_modules/.pnpm/ethers@6.
|
|
7212
|
+
// ../../node_modules/.pnpm/ethers@6.14.3_bufferutil@4.0.9_utf-8-validate@5.0.10/node_modules/ethers/lib.esm/contract/factory.js
|
|
7197
7213
|
var ContractFactory = class _ContractFactory {
|
|
7198
7214
|
/**
|
|
7199
7215
|
* The Contract Interface.
|