@inco/js 0.1.11 → 0.1.12

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.
@@ -41,7 +41,7 @@ var __export = (target, all) => {
41
41
  };
42
42
  var __esm = (fn, res) => () => (fn && (res = fn(fn = 0)), res);
43
43
 
44
- // node_modules/viem/_esm/utils/data/isHex.js
44
+ // ../node_modules/viem/_esm/utils/data/isHex.js
45
45
  function isHex(value6, { strict: strict2 = true } = {}) {
46
46
  if (!value6)
47
47
  return false;
@@ -50,19 +50,18 @@ function isHex(value6, { strict: strict2 = true } = {}) {
50
50
  return strict2 ? /^0x[0-9a-fA-F]*$/.test(value6) : value6.startsWith("0x");
51
51
  }
52
52
 
53
- // node_modules/viem/_esm/utils/data/size.js
53
+ // ../node_modules/viem/_esm/utils/data/size.js
54
54
  function size21(value6) {
55
55
  if (isHex(value6, { strict: false }))
56
56
  return Math.ceil((value6.length - 2) / 2);
57
57
  return value6.length;
58
58
  }
59
- var init_size = () => {
60
- };
59
+ var init_size = () => {};
61
60
 
62
- // node_modules/viem/_esm/errors/version.js
63
- var version = "2.22.23";
61
+ // ../node_modules/viem/_esm/errors/version.js
62
+ var version = "2.24.3";
64
63
 
65
- // node_modules/viem/_esm/errors/base.js
64
+ // ../node_modules/viem/_esm/errors/base.js
66
65
  function walk(err, fn) {
67
66
  if (fn?.(err))
68
67
  return err;
@@ -150,7 +149,7 @@ var init_base = __esm(() => {
150
149
  };
151
150
  });
152
151
 
153
- // node_modules/viem/_esm/errors/abi.js
152
+ // ../node_modules/viem/_esm/errors/abi.js
154
153
  var AbiEncodingLengthMismatchError, BytesSizeMismatchError, UnsupportedPackedAbiType;
155
154
  var init_abi = __esm(() => {
156
155
  init_base();
@@ -180,15 +179,10 @@ var init_abi = __esm(() => {
180
179
  };
181
180
  });
182
181
 
183
- // node_modules/viem/_esm/errors/data.js
184
- var SliceOffsetOutOfBoundsError, SizeExceedsPaddingSizeError;
182
+ // ../node_modules/viem/_esm/errors/data.js
183
+ var SizeExceedsPaddingSizeError;
185
184
  var init_data = __esm(() => {
186
185
  init_base();
187
- SliceOffsetOutOfBoundsError = class SliceOffsetOutOfBoundsError extends BaseError {
188
- constructor({ offset, position, size: size22 }) {
189
- super(`Slice ${position === "start" ? "starting" : "ending"} at offset "${offset}" is out-of-bounds (size: ${size22}).`, { name: "SliceOffsetOutOfBoundsError" });
190
- }
191
- };
192
186
  SizeExceedsPaddingSizeError = class SizeExceedsPaddingSizeError extends BaseError {
193
187
  constructor({ size: size22, targetSize, type: type2 }) {
194
188
  super(`${type2.charAt(0).toUpperCase()}${type2.slice(1).toLowerCase()} size (${size22}) exceeds padding size (${targetSize}).`, { name: "SizeExceedsPaddingSizeError" });
@@ -196,7 +190,7 @@ var init_data = __esm(() => {
196
190
  };
197
191
  });
198
192
 
199
- // node_modules/viem/_esm/utils/data/pad.js
193
+ // ../node_modules/viem/_esm/utils/data/pad.js
200
194
  function pad(hexOrBytes, { dir: dir2, size: size22 = 32 } = {}) {
201
195
  if (typeof hexOrBytes === "string")
202
196
  return padHex(hexOrBytes, { dir: dir2, size: size22 });
@@ -234,7 +228,7 @@ var init_pad = __esm(() => {
234
228
  init_data();
235
229
  });
236
230
 
237
- // node_modules/viem/_esm/errors/encoding.js
231
+ // ../node_modules/viem/_esm/errors/encoding.js
238
232
  var IntegerOutOfRangeError, SizeOverflowError;
239
233
  var init_encoding = __esm(() => {
240
234
  init_base();
@@ -250,26 +244,7 @@ var init_encoding = __esm(() => {
250
244
  };
251
245
  });
252
246
 
253
- // node_modules/viem/_esm/utils/data/trim.js
254
- function trim(hexOrBytes, { dir: dir2 = "left" } = {}) {
255
- let data = typeof hexOrBytes === "string" ? hexOrBytes.replace("0x", "") : hexOrBytes;
256
- let sliceLength = 0;
257
- for (let i = 0;i < data.length - 1; i++) {
258
- if (data[dir2 === "left" ? i : data.length - i - 1].toString() === "0")
259
- sliceLength++;
260
- else
261
- break;
262
- }
263
- data = dir2 === "left" ? data.slice(sliceLength) : data.slice(0, data.length - sliceLength);
264
- if (typeof hexOrBytes === "string") {
265
- if (data.length === 1 && dir2 === "right")
266
- data = `${data}0`;
267
- return `0x${data.length % 2 === 1 ? `0${data}` : data}`;
268
- }
269
- return data;
270
- }
271
-
272
- // node_modules/viem/_esm/utils/encoding/fromHex.js
247
+ // ../node_modules/viem/_esm/utils/encoding/fromHex.js
273
248
  function assertSize(hexOrBytes, { size: size22 }) {
274
249
  if (size21(hexOrBytes) > size22)
275
250
  throw new SizeOverflowError({
@@ -277,28 +252,12 @@ function assertSize(hexOrBytes, { size: size22 }) {
277
252
  maxSize: size22
278
253
  });
279
254
  }
280
- function hexToBigInt(hex, opts = {}) {
281
- const { signed } = opts;
282
- if (opts.size)
283
- assertSize(hex, { size: opts.size });
284
- const value6 = BigInt(hex);
285
- if (!signed)
286
- return value6;
287
- const size22 = (hex.length - 2) / 2;
288
- const max6 = (1n << BigInt(size22) * 8n - 1n) - 1n;
289
- if (value6 <= max6)
290
- return value6;
291
- return value6 - BigInt(`0x${"f".padStart(size22 * 2, "f")}`) - 1n;
292
- }
293
- function hexToNumber(hex, opts = {}) {
294
- return Number(hexToBigInt(hex, opts));
295
- }
296
255
  var init_fromHex = __esm(() => {
297
256
  init_encoding();
298
257
  init_size();
299
258
  });
300
259
 
301
- // node_modules/viem/_esm/utils/encoding/toHex.js
260
+ // ../node_modules/viem/_esm/utils/encoding/toHex.js
302
261
  function toHex(value6, opts = {}) {
303
262
  if (typeof value6 === "number" || typeof value6 === "bigint")
304
263
  return numberToHex(value6, opts);
@@ -370,7 +329,7 @@ var init_toHex = __esm(() => {
370
329
  encoder2 = /* @__PURE__ */ new TextEncoder;
371
330
  });
372
331
 
373
- // node_modules/viem/_esm/utils/encoding/toBytes.js
332
+ // ../node_modules/viem/_esm/utils/encoding/toBytes.js
374
333
  function toBytes(value6, opts = {}) {
375
334
  if (typeof value6 === "number" || typeof value6 === "bigint")
376
335
  return numberToBytes(value6, opts);
@@ -475,8 +434,7 @@ function aoutput(out, instance) {
475
434
  throw new Error("digestInto() expects output buffer of length at least " + min4);
476
435
  }
477
436
  }
478
- var init__assert = () => {
479
- };
437
+ var init__assert = () => {};
480
438
 
481
439
  // ../node_modules/@noble/hashes/esm/_u64.js
482
440
  function fromBig(n, le = false) {
@@ -503,12 +461,6 @@ var init__u64 = __esm(() => {
503
461
  function u32(arr) {
504
462
  return new Uint32Array(arr.buffer, arr.byteOffset, Math.floor(arr.byteLength / 4));
505
463
  }
506
- function createView(arr) {
507
- return new DataView(arr.buffer, arr.byteOffset, arr.byteLength);
508
- }
509
- function rotr(word, shift2) {
510
- return word << 32 - shift2 | word >>> shift2;
511
- }
512
464
  function byteSwap(word) {
513
465
  return word << 24 & 4278190080 | word << 8 & 16711680 | word >>> 8 & 65280 | word >>> 24 & 255;
514
466
  }
@@ -744,7 +696,7 @@ var init_sha3 = __esm(() => {
744
696
  shake256 = /* @__PURE__ */ genShake(31, 136, 256 / 8);
745
697
  });
746
698
 
747
- // node_modules/viem/_esm/utils/hash/keccak256.js
699
+ // ../node_modules/viem/_esm/utils/hash/keccak256.js
748
700
  function keccak256(value6, to_) {
749
701
  const to = to_ || "hex";
750
702
  const bytes = keccak_256(isHex(value6, { strict: false }) ? toBytes(value6) : value6);
@@ -758,7 +710,7 @@ var init_keccak256 = __esm(() => {
758
710
  init_toHex();
759
711
  });
760
712
 
761
- // node_modules/viem/_esm/errors/address.js
713
+ // ../node_modules/viem/_esm/errors/address.js
762
714
  var InvalidAddressError;
763
715
  var init_address = __esm(() => {
764
716
  init_base();
@@ -775,7 +727,7 @@ var init_address = __esm(() => {
775
727
  };
776
728
  });
777
729
 
778
- // node_modules/viem/_esm/utils/lru.js
730
+ // ../node_modules/viem/_esm/utils/lru.js
779
731
  var LruMap;
780
732
  var init_lru = __esm(() => {
781
733
  LruMap = class LruMap extends Map {
@@ -809,7 +761,7 @@ var init_lru = __esm(() => {
809
761
  };
810
762
  });
811
763
 
812
- // node_modules/viem/_esm/utils/address/getAddress.js
764
+ // ../node_modules/viem/_esm/utils/address/getAddress.js
813
765
  function checksumAddress(address_, chainId) {
814
766
  if (checksumAddressCache.has(`${address_}.${chainId}`))
815
767
  return checksumAddressCache.get(`${address_}.${chainId}`);
@@ -836,7 +788,7 @@ var init_getAddress = __esm(() => {
836
788
  checksumAddressCache = /* @__PURE__ */ new LruMap(8192);
837
789
  });
838
790
 
839
- // node_modules/viem/_esm/utils/address/isAddress.js
791
+ // ../node_modules/viem/_esm/utils/address/isAddress.js
840
792
  function isAddress(address, options) {
841
793
  const { strict: strict2 = true } = options ?? {};
842
794
  const cacheKey = `${address}.${strict2}`;
@@ -862,58 +814,12 @@ var init_isAddress = __esm(() => {
862
814
  isAddressCache = /* @__PURE__ */ new LruMap(8192);
863
815
  });
864
816
 
865
- // node_modules/viem/_esm/utils/data/concat.js
817
+ // ../node_modules/viem/_esm/utils/data/concat.js
866
818
  function concatHex(values7) {
867
819
  return `0x${values7.reduce((acc, x) => acc + x.replace("0x", ""), "")}`;
868
820
  }
869
821
 
870
- // node_modules/viem/_esm/utils/data/slice.js
871
- function slice(value6, start5, end6, { strict: strict2 } = {}) {
872
- if (isHex(value6, { strict: false }))
873
- return sliceHex(value6, start5, end6, {
874
- strict: strict2
875
- });
876
- return sliceBytes(value6, start5, end6, {
877
- strict: strict2
878
- });
879
- }
880
- function assertStartOffset(value6, start5) {
881
- if (typeof start5 === "number" && start5 > 0 && start5 > size21(value6) - 1)
882
- throw new SliceOffsetOutOfBoundsError({
883
- offset: start5,
884
- position: "start",
885
- size: size21(value6)
886
- });
887
- }
888
- function assertEndOffset(value6, start5, end6) {
889
- if (typeof start5 === "number" && typeof end6 === "number" && size21(value6) !== end6 - start5) {
890
- throw new SliceOffsetOutOfBoundsError({
891
- offset: end6,
892
- position: "end",
893
- size: size21(value6)
894
- });
895
- }
896
- }
897
- function sliceBytes(value_, start5, end6, { strict: strict2 } = {}) {
898
- assertStartOffset(value_, start5);
899
- const value6 = value_.slice(start5, end6);
900
- if (strict2)
901
- assertEndOffset(value6, start5, end6);
902
- return value6;
903
- }
904
- function sliceHex(value_, start5, end6, { strict: strict2 } = {}) {
905
- assertStartOffset(value_, start5);
906
- const value6 = `0x${value_.replace("0x", "").slice((start5 ?? 0) * 2, (end6 ?? value_.length) * 2)}`;
907
- if (strict2)
908
- assertEndOffset(value6, start5, end6);
909
- return value6;
910
- }
911
- var init_slice = __esm(() => {
912
- init_data();
913
- init_size();
914
- });
915
-
916
- // node_modules/viem/_esm/utils/regex.js
822
+ // ../node_modules/viem/_esm/utils/regex.js
917
823
  var arrayRegex, bytesRegex, integerRegex;
918
824
  var init_regex = __esm(() => {
919
825
  arrayRegex = /^(.*)\[([0-9]*)\]$/;
@@ -921,861 +827,6 @@ var init_regex = __esm(() => {
921
827
  integerRegex = /^(u?int)(8|16|24|32|40|48|56|64|72|80|88|96|104|112|120|128|136|144|152|160|168|176|184|192|200|208|216|224|232|240|248|256)?$/;
922
828
  });
923
829
 
924
- // node_modules/viem/_esm/errors/cursor.js
925
- var NegativeOffsetError, PositionOutOfBoundsError, RecursiveReadLimitExceededError;
926
- var init_cursor = __esm(() => {
927
- init_base();
928
- NegativeOffsetError = class NegativeOffsetError extends BaseError {
929
- constructor({ offset }) {
930
- super(`Offset \`${offset}\` cannot be negative.`, {
931
- name: "NegativeOffsetError"
932
- });
933
- }
934
- };
935
- PositionOutOfBoundsError = class PositionOutOfBoundsError extends BaseError {
936
- constructor({ length: length4, position }) {
937
- super(`Position \`${position}\` is out of bounds (\`0 < position < ${length4}\`).`, { name: "PositionOutOfBoundsError" });
938
- }
939
- };
940
- RecursiveReadLimitExceededError = class RecursiveReadLimitExceededError extends BaseError {
941
- constructor({ count: count5, limit }) {
942
- super(`Recursive read limit of \`${limit}\` exceeded (recursive read count: \`${count5}\`).`, { name: "RecursiveReadLimitExceededError" });
943
- }
944
- };
945
- });
946
-
947
- // node_modules/viem/_esm/utils/cursor.js
948
- function createCursor(bytes, { recursiveReadLimit = 8192 } = {}) {
949
- const cursor = Object.create(staticCursor);
950
- cursor.bytes = bytes;
951
- cursor.dataView = new DataView(bytes.buffer, bytes.byteOffset, bytes.byteLength);
952
- cursor.positionReadCount = new Map;
953
- cursor.recursiveReadLimit = recursiveReadLimit;
954
- return cursor;
955
- }
956
- var staticCursor;
957
- var init_cursor2 = __esm(() => {
958
- init_cursor();
959
- staticCursor = {
960
- bytes: new Uint8Array,
961
- dataView: new DataView(new ArrayBuffer(0)),
962
- position: 0,
963
- positionReadCount: new Map,
964
- recursiveReadCount: 0,
965
- recursiveReadLimit: Number.POSITIVE_INFINITY,
966
- assertReadLimit() {
967
- if (this.recursiveReadCount >= this.recursiveReadLimit)
968
- throw new RecursiveReadLimitExceededError({
969
- count: this.recursiveReadCount + 1,
970
- limit: this.recursiveReadLimit
971
- });
972
- },
973
- assertPosition(position) {
974
- if (position < 0 || position > this.bytes.length - 1)
975
- throw new PositionOutOfBoundsError({
976
- length: this.bytes.length,
977
- position
978
- });
979
- },
980
- decrementPosition(offset) {
981
- if (offset < 0)
982
- throw new NegativeOffsetError({ offset });
983
- const position = this.position - offset;
984
- this.assertPosition(position);
985
- this.position = position;
986
- },
987
- getReadCount(position) {
988
- return this.positionReadCount.get(position || this.position) || 0;
989
- },
990
- incrementPosition(offset) {
991
- if (offset < 0)
992
- throw new NegativeOffsetError({ offset });
993
- const position = this.position + offset;
994
- this.assertPosition(position);
995
- this.position = position;
996
- },
997
- inspectByte(position_) {
998
- const position = position_ ?? this.position;
999
- this.assertPosition(position);
1000
- return this.bytes[position];
1001
- },
1002
- inspectBytes(length4, position_) {
1003
- const position = position_ ?? this.position;
1004
- this.assertPosition(position + length4 - 1);
1005
- return this.bytes.subarray(position, position + length4);
1006
- },
1007
- inspectUint8(position_) {
1008
- const position = position_ ?? this.position;
1009
- this.assertPosition(position);
1010
- return this.bytes[position];
1011
- },
1012
- inspectUint16(position_) {
1013
- const position = position_ ?? this.position;
1014
- this.assertPosition(position + 1);
1015
- return this.dataView.getUint16(position);
1016
- },
1017
- inspectUint24(position_) {
1018
- const position = position_ ?? this.position;
1019
- this.assertPosition(position + 2);
1020
- return (this.dataView.getUint16(position) << 8) + this.dataView.getUint8(position + 2);
1021
- },
1022
- inspectUint32(position_) {
1023
- const position = position_ ?? this.position;
1024
- this.assertPosition(position + 3);
1025
- return this.dataView.getUint32(position);
1026
- },
1027
- pushByte(byte) {
1028
- this.assertPosition(this.position);
1029
- this.bytes[this.position] = byte;
1030
- this.position++;
1031
- },
1032
- pushBytes(bytes) {
1033
- this.assertPosition(this.position + bytes.length - 1);
1034
- this.bytes.set(bytes, this.position);
1035
- this.position += bytes.length;
1036
- },
1037
- pushUint8(value6) {
1038
- this.assertPosition(this.position);
1039
- this.bytes[this.position] = value6;
1040
- this.position++;
1041
- },
1042
- pushUint16(value6) {
1043
- this.assertPosition(this.position + 1);
1044
- this.dataView.setUint16(this.position, value6);
1045
- this.position += 2;
1046
- },
1047
- pushUint24(value6) {
1048
- this.assertPosition(this.position + 2);
1049
- this.dataView.setUint16(this.position, value6 >> 8);
1050
- this.dataView.setUint8(this.position + 2, value6 & ~4294967040);
1051
- this.position += 3;
1052
- },
1053
- pushUint32(value6) {
1054
- this.assertPosition(this.position + 3);
1055
- this.dataView.setUint32(this.position, value6);
1056
- this.position += 4;
1057
- },
1058
- readByte() {
1059
- this.assertReadLimit();
1060
- this._touch();
1061
- const value6 = this.inspectByte();
1062
- this.position++;
1063
- return value6;
1064
- },
1065
- readBytes(length4, size22) {
1066
- this.assertReadLimit();
1067
- this._touch();
1068
- const value6 = this.inspectBytes(length4);
1069
- this.position += size22 ?? length4;
1070
- return value6;
1071
- },
1072
- readUint8() {
1073
- this.assertReadLimit();
1074
- this._touch();
1075
- const value6 = this.inspectUint8();
1076
- this.position += 1;
1077
- return value6;
1078
- },
1079
- readUint16() {
1080
- this.assertReadLimit();
1081
- this._touch();
1082
- const value6 = this.inspectUint16();
1083
- this.position += 2;
1084
- return value6;
1085
- },
1086
- readUint24() {
1087
- this.assertReadLimit();
1088
- this._touch();
1089
- const value6 = this.inspectUint24();
1090
- this.position += 3;
1091
- return value6;
1092
- },
1093
- readUint32() {
1094
- this.assertReadLimit();
1095
- this._touch();
1096
- const value6 = this.inspectUint32();
1097
- this.position += 4;
1098
- return value6;
1099
- },
1100
- get remaining() {
1101
- return this.bytes.length - this.position;
1102
- },
1103
- setPosition(position) {
1104
- const oldPosition = this.position;
1105
- this.assertPosition(position);
1106
- this.position = position;
1107
- return () => this.position = oldPosition;
1108
- },
1109
- _touch() {
1110
- if (this.recursiveReadLimit === Number.POSITIVE_INFINITY)
1111
- return;
1112
- const count5 = this.getReadCount();
1113
- this.positionReadCount.set(this.position, count5 + 1);
1114
- if (count5 > 0)
1115
- this.recursiveReadCount++;
1116
- }
1117
- };
1118
- });
1119
-
1120
- // node_modules/viem/_esm/constants/unit.js
1121
- var gweiUnits;
1122
- var init_unit = __esm(() => {
1123
- gweiUnits = {
1124
- ether: -9,
1125
- wei: 9
1126
- };
1127
- });
1128
-
1129
- // node_modules/viem/_esm/utils/unit/formatUnits.js
1130
- function formatUnits(value6, decimals) {
1131
- let display = value6.toString();
1132
- const negative2 = display.startsWith("-");
1133
- if (negative2)
1134
- display = display.slice(1);
1135
- display = display.padStart(decimals, "0");
1136
- let [integer3, fraction] = [
1137
- display.slice(0, display.length - decimals),
1138
- display.slice(display.length - decimals)
1139
- ];
1140
- fraction = fraction.replace(/(0+)$/, "");
1141
- return `${negative2 ? "-" : ""}${integer3 || "0"}${fraction ? `.${fraction}` : ""}`;
1142
- }
1143
-
1144
- // node_modules/viem/_esm/utils/unit/formatGwei.js
1145
- function formatGwei(wei, unit = "wei") {
1146
- return formatUnits(wei, gweiUnits[unit]);
1147
- }
1148
- var init_formatGwei = __esm(() => {
1149
- init_unit();
1150
- });
1151
-
1152
- // node_modules/viem/_esm/errors/transaction.js
1153
- function prettyPrint(args2) {
1154
- const entries3 = Object.entries(args2).map(([key, value6]) => {
1155
- if (value6 === undefined || value6 === false)
1156
- return null;
1157
- return [key, value6];
1158
- }).filter(Boolean);
1159
- const maxLength2 = entries3.reduce((acc, [key]) => Math.max(acc, key.length), 0);
1160
- return entries3.map(([key, value6]) => ` ${`${key}:`.padEnd(maxLength2 + 1)} ${value6}`).join(`
1161
- `);
1162
- }
1163
- var InvalidLegacyVError, InvalidSerializableTransactionError, InvalidStorageKeySizeError;
1164
- var init_transaction = __esm(() => {
1165
- init_base();
1166
- InvalidLegacyVError = class InvalidLegacyVError extends BaseError {
1167
- constructor({ v }) {
1168
- super(`Invalid \`v\` value "${v}". Expected 27 or 28.`, {
1169
- name: "InvalidLegacyVError"
1170
- });
1171
- }
1172
- };
1173
- InvalidSerializableTransactionError = class InvalidSerializableTransactionError extends BaseError {
1174
- constructor({ transaction }) {
1175
- super("Cannot infer a transaction type from provided transaction.", {
1176
- metaMessages: [
1177
- "Provided Transaction:",
1178
- "{",
1179
- prettyPrint(transaction),
1180
- "}",
1181
- "",
1182
- "To infer the type, either provide:",
1183
- "- a `type` to the Transaction, or",
1184
- "- an EIP-1559 Transaction with `maxFeePerGas`, or",
1185
- "- an EIP-2930 Transaction with `gasPrice` & `accessList`, or",
1186
- "- an EIP-4844 Transaction with `blobs`, `blobVersionedHashes`, `sidecars`, or",
1187
- "- an EIP-7702 Transaction with `authorizationList`, or",
1188
- "- a Legacy Transaction with `gasPrice`"
1189
- ],
1190
- name: "InvalidSerializableTransactionError"
1191
- });
1192
- }
1193
- };
1194
- InvalidStorageKeySizeError = class InvalidStorageKeySizeError extends BaseError {
1195
- constructor({ storageKey }) {
1196
- super(`Size for storage key "${storageKey}" is invalid. Expected 32 bytes. Got ${Math.floor((storageKey.length - 2) / 2)} bytes.`, { name: "InvalidStorageKeySizeError" });
1197
- }
1198
- };
1199
- });
1200
-
1201
- // node_modules/viem/_esm/errors/node.js
1202
- var ExecutionRevertedError, FeeCapTooHighError, FeeCapTooLowError, NonceTooHighError, NonceTooLowError, NonceMaxValueError, InsufficientFundsError, IntrinsicGasTooHighError, IntrinsicGasTooLowError, TransactionTypeNotSupportedError, TipAboveFeeCapError;
1203
- var init_node = __esm(() => {
1204
- init_formatGwei();
1205
- init_base();
1206
- ExecutionRevertedError = class ExecutionRevertedError extends BaseError {
1207
- constructor({ cause: cause2, message } = {}) {
1208
- const reason = message?.replace("execution reverted: ", "")?.replace("execution reverted", "");
1209
- super(`Execution reverted ${reason ? `with reason: ${reason}` : "for an unknown reason"}.`, {
1210
- cause: cause2,
1211
- name: "ExecutionRevertedError"
1212
- });
1213
- }
1214
- };
1215
- Object.defineProperty(ExecutionRevertedError, "code", {
1216
- enumerable: true,
1217
- configurable: true,
1218
- writable: true,
1219
- value: 3
1220
- });
1221
- Object.defineProperty(ExecutionRevertedError, "nodeMessage", {
1222
- enumerable: true,
1223
- configurable: true,
1224
- writable: true,
1225
- value: /execution reverted/
1226
- });
1227
- FeeCapTooHighError = class FeeCapTooHighError extends BaseError {
1228
- constructor({ cause: cause2, maxFeePerGas } = {}) {
1229
- super(`The fee cap (\`maxFeePerGas\`${maxFeePerGas ? ` = ${formatGwei(maxFeePerGas)} gwei` : ""}) cannot be higher than the maximum allowed value (2^256-1).`, {
1230
- cause: cause2,
1231
- name: "FeeCapTooHighError"
1232
- });
1233
- }
1234
- };
1235
- Object.defineProperty(FeeCapTooHighError, "nodeMessage", {
1236
- enumerable: true,
1237
- configurable: true,
1238
- writable: true,
1239
- value: /max fee per gas higher than 2\^256-1|fee cap higher than 2\^256-1/
1240
- });
1241
- FeeCapTooLowError = class FeeCapTooLowError extends BaseError {
1242
- constructor({ cause: cause2, maxFeePerGas } = {}) {
1243
- super(`The fee cap (\`maxFeePerGas\`${maxFeePerGas ? ` = ${formatGwei(maxFeePerGas)}` : ""} gwei) cannot be lower than the block base fee.`, {
1244
- cause: cause2,
1245
- name: "FeeCapTooLowError"
1246
- });
1247
- }
1248
- };
1249
- Object.defineProperty(FeeCapTooLowError, "nodeMessage", {
1250
- enumerable: true,
1251
- configurable: true,
1252
- writable: true,
1253
- value: /max fee per gas less than block base fee|fee cap less than block base fee|transaction is outdated/
1254
- });
1255
- NonceTooHighError = class NonceTooHighError extends BaseError {
1256
- constructor({ cause: cause2, nonce } = {}) {
1257
- super(`Nonce provided for the transaction ${nonce ? `(${nonce}) ` : ""}is higher than the next one expected.`, { cause: cause2, name: "NonceTooHighError" });
1258
- }
1259
- };
1260
- Object.defineProperty(NonceTooHighError, "nodeMessage", {
1261
- enumerable: true,
1262
- configurable: true,
1263
- writable: true,
1264
- value: /nonce too high/
1265
- });
1266
- NonceTooLowError = class NonceTooLowError extends BaseError {
1267
- constructor({ cause: cause2, nonce } = {}) {
1268
- super([
1269
- `Nonce provided for the transaction ${nonce ? `(${nonce}) ` : ""}is lower than the current nonce of the account.`,
1270
- "Try increasing the nonce or find the latest nonce with `getTransactionCount`."
1271
- ].join(`
1272
- `), { cause: cause2, name: "NonceTooLowError" });
1273
- }
1274
- };
1275
- Object.defineProperty(NonceTooLowError, "nodeMessage", {
1276
- enumerable: true,
1277
- configurable: true,
1278
- writable: true,
1279
- value: /nonce too low|transaction already imported|already known/
1280
- });
1281
- NonceMaxValueError = class NonceMaxValueError extends BaseError {
1282
- constructor({ cause: cause2, nonce } = {}) {
1283
- super(`Nonce provided for the transaction ${nonce ? `(${nonce}) ` : ""}exceeds the maximum allowed nonce.`, { cause: cause2, name: "NonceMaxValueError" });
1284
- }
1285
- };
1286
- Object.defineProperty(NonceMaxValueError, "nodeMessage", {
1287
- enumerable: true,
1288
- configurable: true,
1289
- writable: true,
1290
- value: /nonce has max value/
1291
- });
1292
- InsufficientFundsError = class InsufficientFundsError extends BaseError {
1293
- constructor({ cause: cause2 } = {}) {
1294
- super([
1295
- "The total cost (gas * gas fee + value) of executing this transaction exceeds the balance of the account."
1296
- ].join(`
1297
- `), {
1298
- cause: cause2,
1299
- metaMessages: [
1300
- "This error could arise when the account does not have enough funds to:",
1301
- " - pay for the total gas fee,",
1302
- " - pay for the value to send.",
1303
- " ",
1304
- "The cost of the transaction is calculated as `gas * gas fee + value`, where:",
1305
- " - `gas` is the amount of gas needed for transaction to execute,",
1306
- " - `gas fee` is the gas fee,",
1307
- " - `value` is the amount of ether to send to the recipient."
1308
- ],
1309
- name: "InsufficientFundsError"
1310
- });
1311
- }
1312
- };
1313
- Object.defineProperty(InsufficientFundsError, "nodeMessage", {
1314
- enumerable: true,
1315
- configurable: true,
1316
- writable: true,
1317
- value: /insufficient funds|exceeds transaction sender account balance/
1318
- });
1319
- IntrinsicGasTooHighError = class IntrinsicGasTooHighError extends BaseError {
1320
- constructor({ cause: cause2, gas } = {}) {
1321
- super(`The amount of gas ${gas ? `(${gas}) ` : ""}provided for the transaction exceeds the limit allowed for the block.`, {
1322
- cause: cause2,
1323
- name: "IntrinsicGasTooHighError"
1324
- });
1325
- }
1326
- };
1327
- Object.defineProperty(IntrinsicGasTooHighError, "nodeMessage", {
1328
- enumerable: true,
1329
- configurable: true,
1330
- writable: true,
1331
- value: /intrinsic gas too high|gas limit reached/
1332
- });
1333
- IntrinsicGasTooLowError = class IntrinsicGasTooLowError extends BaseError {
1334
- constructor({ cause: cause2, gas } = {}) {
1335
- super(`The amount of gas ${gas ? `(${gas}) ` : ""}provided for the transaction is too low.`, {
1336
- cause: cause2,
1337
- name: "IntrinsicGasTooLowError"
1338
- });
1339
- }
1340
- };
1341
- Object.defineProperty(IntrinsicGasTooLowError, "nodeMessage", {
1342
- enumerable: true,
1343
- configurable: true,
1344
- writable: true,
1345
- value: /intrinsic gas too low/
1346
- });
1347
- TransactionTypeNotSupportedError = class TransactionTypeNotSupportedError extends BaseError {
1348
- constructor({ cause: cause2 }) {
1349
- super("The transaction type is not supported for this chain.", {
1350
- cause: cause2,
1351
- name: "TransactionTypeNotSupportedError"
1352
- });
1353
- }
1354
- };
1355
- Object.defineProperty(TransactionTypeNotSupportedError, "nodeMessage", {
1356
- enumerable: true,
1357
- configurable: true,
1358
- writable: true,
1359
- value: /transaction type not valid/
1360
- });
1361
- TipAboveFeeCapError = class TipAboveFeeCapError extends BaseError {
1362
- constructor({ cause: cause2, maxPriorityFeePerGas, maxFeePerGas } = {}) {
1363
- super([
1364
- `The provided tip (\`maxPriorityFeePerGas\`${maxPriorityFeePerGas ? ` = ${formatGwei(maxPriorityFeePerGas)} gwei` : ""}) cannot be higher than the fee cap (\`maxFeePerGas\`${maxFeePerGas ? ` = ${formatGwei(maxFeePerGas)} gwei` : ""}).`
1365
- ].join(`
1366
- `), {
1367
- cause: cause2,
1368
- name: "TipAboveFeeCapError"
1369
- });
1370
- }
1371
- };
1372
- Object.defineProperty(TipAboveFeeCapError, "nodeMessage", {
1373
- enumerable: true,
1374
- configurable: true,
1375
- writable: true,
1376
- value: /max priority fee per gas higher than max fee per gas|tip higher than fee cap/
1377
- });
1378
- });
1379
-
1380
- // node_modules/viem/_esm/utils/formatters/formatter.js
1381
- function defineFormatter(type2, format7) {
1382
- return ({ exclude: exclude3, format: overrides }) => {
1383
- return {
1384
- exclude: exclude3,
1385
- format: (args2) => {
1386
- const formatted = format7(args2);
1387
- if (exclude3) {
1388
- for (const key of exclude3) {
1389
- delete formatted[key];
1390
- }
1391
- }
1392
- return {
1393
- ...formatted,
1394
- ...overrides(args2)
1395
- };
1396
- },
1397
- type: type2
1398
- };
1399
- };
1400
- }
1401
-
1402
- // node_modules/viem/_esm/constants/number.js
1403
- var maxInt8, maxInt16, maxInt24, maxInt32, maxInt40, maxInt48, maxInt56, maxInt64, maxInt72, maxInt80, maxInt88, maxInt96, maxInt104, maxInt112, maxInt120, maxInt128, maxInt136, maxInt144, maxInt152, maxInt160, maxInt168, maxInt176, maxInt184, maxInt192, maxInt200, maxInt208, maxInt216, maxInt224, maxInt232, maxInt240, maxInt248, maxInt256, minInt8, minInt16, minInt24, minInt32, minInt40, minInt48, minInt56, minInt64, minInt72, minInt80, minInt88, minInt96, minInt104, minInt112, minInt120, minInt128, minInt136, minInt144, minInt152, minInt160, minInt168, minInt176, minInt184, minInt192, minInt200, minInt208, minInt216, minInt224, minInt232, minInt240, minInt248, minInt256, maxUint8, maxUint16, maxUint24, maxUint32, maxUint40, maxUint48, maxUint56, maxUint64, maxUint72, maxUint80, maxUint88, maxUint96, maxUint104, maxUint112, maxUint120, maxUint128, maxUint136, maxUint144, maxUint152, maxUint160, maxUint168, maxUint176, maxUint184, maxUint192, maxUint200, maxUint208, maxUint216, maxUint224, maxUint232, maxUint240, maxUint248, maxUint256;
1404
- var init_number = __esm(() => {
1405
- maxInt8 = 2n ** (8n - 1n) - 1n;
1406
- maxInt16 = 2n ** (16n - 1n) - 1n;
1407
- maxInt24 = 2n ** (24n - 1n) - 1n;
1408
- maxInt32 = 2n ** (32n - 1n) - 1n;
1409
- maxInt40 = 2n ** (40n - 1n) - 1n;
1410
- maxInt48 = 2n ** (48n - 1n) - 1n;
1411
- maxInt56 = 2n ** (56n - 1n) - 1n;
1412
- maxInt64 = 2n ** (64n - 1n) - 1n;
1413
- maxInt72 = 2n ** (72n - 1n) - 1n;
1414
- maxInt80 = 2n ** (80n - 1n) - 1n;
1415
- maxInt88 = 2n ** (88n - 1n) - 1n;
1416
- maxInt96 = 2n ** (96n - 1n) - 1n;
1417
- maxInt104 = 2n ** (104n - 1n) - 1n;
1418
- maxInt112 = 2n ** (112n - 1n) - 1n;
1419
- maxInt120 = 2n ** (120n - 1n) - 1n;
1420
- maxInt128 = 2n ** (128n - 1n) - 1n;
1421
- maxInt136 = 2n ** (136n - 1n) - 1n;
1422
- maxInt144 = 2n ** (144n - 1n) - 1n;
1423
- maxInt152 = 2n ** (152n - 1n) - 1n;
1424
- maxInt160 = 2n ** (160n - 1n) - 1n;
1425
- maxInt168 = 2n ** (168n - 1n) - 1n;
1426
- maxInt176 = 2n ** (176n - 1n) - 1n;
1427
- maxInt184 = 2n ** (184n - 1n) - 1n;
1428
- maxInt192 = 2n ** (192n - 1n) - 1n;
1429
- maxInt200 = 2n ** (200n - 1n) - 1n;
1430
- maxInt208 = 2n ** (208n - 1n) - 1n;
1431
- maxInt216 = 2n ** (216n - 1n) - 1n;
1432
- maxInt224 = 2n ** (224n - 1n) - 1n;
1433
- maxInt232 = 2n ** (232n - 1n) - 1n;
1434
- maxInt240 = 2n ** (240n - 1n) - 1n;
1435
- maxInt248 = 2n ** (248n - 1n) - 1n;
1436
- maxInt256 = 2n ** (256n - 1n) - 1n;
1437
- minInt8 = -(2n ** (8n - 1n));
1438
- minInt16 = -(2n ** (16n - 1n));
1439
- minInt24 = -(2n ** (24n - 1n));
1440
- minInt32 = -(2n ** (32n - 1n));
1441
- minInt40 = -(2n ** (40n - 1n));
1442
- minInt48 = -(2n ** (48n - 1n));
1443
- minInt56 = -(2n ** (56n - 1n));
1444
- minInt64 = -(2n ** (64n - 1n));
1445
- minInt72 = -(2n ** (72n - 1n));
1446
- minInt80 = -(2n ** (80n - 1n));
1447
- minInt88 = -(2n ** (88n - 1n));
1448
- minInt96 = -(2n ** (96n - 1n));
1449
- minInt104 = -(2n ** (104n - 1n));
1450
- minInt112 = -(2n ** (112n - 1n));
1451
- minInt120 = -(2n ** (120n - 1n));
1452
- minInt128 = -(2n ** (128n - 1n));
1453
- minInt136 = -(2n ** (136n - 1n));
1454
- minInt144 = -(2n ** (144n - 1n));
1455
- minInt152 = -(2n ** (152n - 1n));
1456
- minInt160 = -(2n ** (160n - 1n));
1457
- minInt168 = -(2n ** (168n - 1n));
1458
- minInt176 = -(2n ** (176n - 1n));
1459
- minInt184 = -(2n ** (184n - 1n));
1460
- minInt192 = -(2n ** (192n - 1n));
1461
- minInt200 = -(2n ** (200n - 1n));
1462
- minInt208 = -(2n ** (208n - 1n));
1463
- minInt216 = -(2n ** (216n - 1n));
1464
- minInt224 = -(2n ** (224n - 1n));
1465
- minInt232 = -(2n ** (232n - 1n));
1466
- minInt240 = -(2n ** (240n - 1n));
1467
- minInt248 = -(2n ** (248n - 1n));
1468
- minInt256 = -(2n ** (256n - 1n));
1469
- maxUint8 = 2n ** 8n - 1n;
1470
- maxUint16 = 2n ** 16n - 1n;
1471
- maxUint24 = 2n ** 24n - 1n;
1472
- maxUint32 = 2n ** 32n - 1n;
1473
- maxUint40 = 2n ** 40n - 1n;
1474
- maxUint48 = 2n ** 48n - 1n;
1475
- maxUint56 = 2n ** 56n - 1n;
1476
- maxUint64 = 2n ** 64n - 1n;
1477
- maxUint72 = 2n ** 72n - 1n;
1478
- maxUint80 = 2n ** 80n - 1n;
1479
- maxUint88 = 2n ** 88n - 1n;
1480
- maxUint96 = 2n ** 96n - 1n;
1481
- maxUint104 = 2n ** 104n - 1n;
1482
- maxUint112 = 2n ** 112n - 1n;
1483
- maxUint120 = 2n ** 120n - 1n;
1484
- maxUint128 = 2n ** 128n - 1n;
1485
- maxUint136 = 2n ** 136n - 1n;
1486
- maxUint144 = 2n ** 144n - 1n;
1487
- maxUint152 = 2n ** 152n - 1n;
1488
- maxUint160 = 2n ** 160n - 1n;
1489
- maxUint168 = 2n ** 168n - 1n;
1490
- maxUint176 = 2n ** 176n - 1n;
1491
- maxUint184 = 2n ** 184n - 1n;
1492
- maxUint192 = 2n ** 192n - 1n;
1493
- maxUint200 = 2n ** 200n - 1n;
1494
- maxUint208 = 2n ** 208n - 1n;
1495
- maxUint216 = 2n ** 216n - 1n;
1496
- maxUint224 = 2n ** 224n - 1n;
1497
- maxUint232 = 2n ** 232n - 1n;
1498
- maxUint240 = 2n ** 240n - 1n;
1499
- maxUint248 = 2n ** 248n - 1n;
1500
- maxUint256 = 2n ** 256n - 1n;
1501
- });
1502
-
1503
- // ../node_modules/@noble/hashes/esm/_md.js
1504
- function setBigUint64(view, byteOffset, value6, isLE2) {
1505
- if (typeof view.setBigUint64 === "function")
1506
- return view.setBigUint64(byteOffset, value6, isLE2);
1507
- const _32n2 = BigInt(32);
1508
- const _u32_max = BigInt(4294967295);
1509
- const wh = Number(value6 >> _32n2 & _u32_max);
1510
- const wl = Number(value6 & _u32_max);
1511
- const h = isLE2 ? 4 : 0;
1512
- const l = isLE2 ? 0 : 4;
1513
- view.setUint32(byteOffset + h, wh, isLE2);
1514
- view.setUint32(byteOffset + l, wl, isLE2);
1515
- }
1516
- function Chi(a, b, c) {
1517
- return a & b ^ ~a & c;
1518
- }
1519
- function Maj(a, b, c) {
1520
- return a & b ^ a & c ^ b & c;
1521
- }
1522
- var HashMD;
1523
- var init__md = __esm(() => {
1524
- init__assert();
1525
- init_utils();
1526
- HashMD = class HashMD extends Hash {
1527
- constructor(blockLen, outputLen, padOffset, isLE2) {
1528
- super();
1529
- this.blockLen = blockLen;
1530
- this.outputLen = outputLen;
1531
- this.padOffset = padOffset;
1532
- this.isLE = isLE2;
1533
- this.finished = false;
1534
- this.length = 0;
1535
- this.pos = 0;
1536
- this.destroyed = false;
1537
- this.buffer = new Uint8Array(blockLen);
1538
- this.view = createView(this.buffer);
1539
- }
1540
- update(data) {
1541
- aexists(this);
1542
- const { view, buffer: buffer3, blockLen } = this;
1543
- data = toBytes2(data);
1544
- const len = data.length;
1545
- for (let pos = 0;pos < len; ) {
1546
- const take10 = Math.min(blockLen - this.pos, len - pos);
1547
- if (take10 === blockLen) {
1548
- const dataView = createView(data);
1549
- for (;blockLen <= len - pos; pos += blockLen)
1550
- this.process(dataView, pos);
1551
- continue;
1552
- }
1553
- buffer3.set(data.subarray(pos, pos + take10), this.pos);
1554
- this.pos += take10;
1555
- pos += take10;
1556
- if (this.pos === blockLen) {
1557
- this.process(view, 0);
1558
- this.pos = 0;
1559
- }
1560
- }
1561
- this.length += data.length;
1562
- this.roundClean();
1563
- return this;
1564
- }
1565
- digestInto(out) {
1566
- aexists(this);
1567
- aoutput(out, this);
1568
- this.finished = true;
1569
- const { buffer: buffer3, view, blockLen, isLE: isLE2 } = this;
1570
- let { pos } = this;
1571
- buffer3[pos++] = 128;
1572
- this.buffer.subarray(pos).fill(0);
1573
- if (this.padOffset > blockLen - pos) {
1574
- this.process(view, 0);
1575
- pos = 0;
1576
- }
1577
- for (let i = pos;i < blockLen; i++)
1578
- buffer3[i] = 0;
1579
- setBigUint64(view, blockLen - 8, BigInt(this.length * 8), isLE2);
1580
- this.process(view, 0);
1581
- const oview = createView(out);
1582
- const len = this.outputLen;
1583
- if (len % 4)
1584
- throw new Error("_sha2: outputLen should be aligned to 32bit");
1585
- const outLen = len / 4;
1586
- const state = this.get();
1587
- if (outLen > state.length)
1588
- throw new Error("_sha2: outputLen bigger than state");
1589
- for (let i = 0;i < outLen; i++)
1590
- oview.setUint32(4 * i, state[i], isLE2);
1591
- }
1592
- digest() {
1593
- const { buffer: buffer3, outputLen } = this;
1594
- this.digestInto(buffer3);
1595
- const res = buffer3.slice(0, outputLen);
1596
- this.destroy();
1597
- return res;
1598
- }
1599
- _cloneInto(to) {
1600
- to || (to = new this.constructor);
1601
- to.set(...this.get());
1602
- const { blockLen, buffer: buffer3, length: length4, finished, destroyed, pos } = this;
1603
- to.length = length4;
1604
- to.pos = pos;
1605
- to.finished = finished;
1606
- to.destroyed = destroyed;
1607
- if (length4 % blockLen)
1608
- to.buffer.set(buffer3);
1609
- return to;
1610
- }
1611
- };
1612
- });
1613
-
1614
- // ../node_modules/@noble/hashes/esm/sha256.js
1615
- var SHA256_K, SHA256_IV, SHA256_W, SHA256, sha256;
1616
- var init_sha256 = __esm(() => {
1617
- init__md();
1618
- init_utils();
1619
- SHA256_K = /* @__PURE__ */ new Uint32Array([
1620
- 1116352408,
1621
- 1899447441,
1622
- 3049323471,
1623
- 3921009573,
1624
- 961987163,
1625
- 1508970993,
1626
- 2453635748,
1627
- 2870763221,
1628
- 3624381080,
1629
- 310598401,
1630
- 607225278,
1631
- 1426881987,
1632
- 1925078388,
1633
- 2162078206,
1634
- 2614888103,
1635
- 3248222580,
1636
- 3835390401,
1637
- 4022224774,
1638
- 264347078,
1639
- 604807628,
1640
- 770255983,
1641
- 1249150122,
1642
- 1555081692,
1643
- 1996064986,
1644
- 2554220882,
1645
- 2821834349,
1646
- 2952996808,
1647
- 3210313671,
1648
- 3336571891,
1649
- 3584528711,
1650
- 113926993,
1651
- 338241895,
1652
- 666307205,
1653
- 773529912,
1654
- 1294757372,
1655
- 1396182291,
1656
- 1695183700,
1657
- 1986661051,
1658
- 2177026350,
1659
- 2456956037,
1660
- 2730485921,
1661
- 2820302411,
1662
- 3259730800,
1663
- 3345764771,
1664
- 3516065817,
1665
- 3600352804,
1666
- 4094571909,
1667
- 275423344,
1668
- 430227734,
1669
- 506948616,
1670
- 659060556,
1671
- 883997877,
1672
- 958139571,
1673
- 1322822218,
1674
- 1537002063,
1675
- 1747873779,
1676
- 1955562222,
1677
- 2024104815,
1678
- 2227730452,
1679
- 2361852424,
1680
- 2428436474,
1681
- 2756734187,
1682
- 3204031479,
1683
- 3329325298
1684
- ]);
1685
- SHA256_IV = /* @__PURE__ */ new Uint32Array([
1686
- 1779033703,
1687
- 3144134277,
1688
- 1013904242,
1689
- 2773480762,
1690
- 1359893119,
1691
- 2600822924,
1692
- 528734635,
1693
- 1541459225
1694
- ]);
1695
- SHA256_W = /* @__PURE__ */ new Uint32Array(64);
1696
- SHA256 = class SHA256 extends HashMD {
1697
- constructor() {
1698
- super(64, 32, 8, false);
1699
- this.A = SHA256_IV[0] | 0;
1700
- this.B = SHA256_IV[1] | 0;
1701
- this.C = SHA256_IV[2] | 0;
1702
- this.D = SHA256_IV[3] | 0;
1703
- this.E = SHA256_IV[4] | 0;
1704
- this.F = SHA256_IV[5] | 0;
1705
- this.G = SHA256_IV[6] | 0;
1706
- this.H = SHA256_IV[7] | 0;
1707
- }
1708
- get() {
1709
- const { A, B, C, D, E, F, G, H } = this;
1710
- return [A, B, C, D, E, F, G, H];
1711
- }
1712
- set(A, B, C, D, E, F, G, H) {
1713
- this.A = A | 0;
1714
- this.B = B | 0;
1715
- this.C = C | 0;
1716
- this.D = D | 0;
1717
- this.E = E | 0;
1718
- this.F = F | 0;
1719
- this.G = G | 0;
1720
- this.H = H | 0;
1721
- }
1722
- process(view, offset) {
1723
- for (let i = 0;i < 16; i++, offset += 4)
1724
- SHA256_W[i] = view.getUint32(offset, false);
1725
- for (let i = 16;i < 64; i++) {
1726
- const W15 = SHA256_W[i - 15];
1727
- const W2 = SHA256_W[i - 2];
1728
- const s0 = rotr(W15, 7) ^ rotr(W15, 18) ^ W15 >>> 3;
1729
- const s1 = rotr(W2, 17) ^ rotr(W2, 19) ^ W2 >>> 10;
1730
- SHA256_W[i] = s1 + SHA256_W[i - 7] + s0 + SHA256_W[i - 16] | 0;
1731
- }
1732
- let { A, B, C, D, E, F, G, H } = this;
1733
- for (let i = 0;i < 64; i++) {
1734
- const sigma1 = rotr(E, 6) ^ rotr(E, 11) ^ rotr(E, 25);
1735
- const T1 = H + sigma1 + Chi(E, F, G) + SHA256_K[i] + SHA256_W[i] | 0;
1736
- const sigma0 = rotr(A, 2) ^ rotr(A, 13) ^ rotr(A, 22);
1737
- const T2 = sigma0 + Maj(A, B, C) | 0;
1738
- H = G;
1739
- G = F;
1740
- F = E;
1741
- E = D + T1 | 0;
1742
- D = C;
1743
- C = B;
1744
- B = A;
1745
- A = T1 + T2 | 0;
1746
- }
1747
- A = A + this.A | 0;
1748
- B = B + this.B | 0;
1749
- C = C + this.C | 0;
1750
- D = D + this.D | 0;
1751
- E = E + this.E | 0;
1752
- F = F + this.F | 0;
1753
- G = G + this.G | 0;
1754
- H = H + this.H | 0;
1755
- this.set(A, B, C, D, E, F, G, H);
1756
- }
1757
- roundClean() {
1758
- SHA256_W.fill(0);
1759
- }
1760
- destroy() {
1761
- this.set(0, 0, 0, 0, 0, 0, 0, 0);
1762
- this.buffer.fill(0);
1763
- }
1764
- };
1765
- sha256 = /* @__PURE__ */ wrapConstructor(() => new SHA256);
1766
- });
1767
-
1768
- // node_modules/viem/_esm/errors/chain.js
1769
- var InvalidChainIdError;
1770
- var init_chain = __esm(() => {
1771
- init_base();
1772
- InvalidChainIdError = class InvalidChainIdError extends BaseError {
1773
- constructor({ chainId }) {
1774
- super(typeof chainId === "number" ? `Chain ID "${chainId}" is invalid.` : "Chain ID is invalid.", { name: "InvalidChainIdError" });
1775
- }
1776
- };
1777
- });
1778
-
1779
830
  // src/reencryption/index.ts
1780
831
  var exports_reencryption = {};
1781
832
  __export(exports_reencryption, {
@@ -1903,7 +954,7 @@ var array = (item) => make((self, that) => {
1903
954
  });
1904
955
 
1905
956
  // ../node_modules/effect/dist/esm/internal/version.js
1906
- var moduleVersion = "3.14.10";
957
+ var moduleVersion = "3.14.5";
1907
958
  var getCurrentVersion = () => moduleVersion;
1908
959
 
1909
960
  // ../node_modules/effect/dist/esm/GlobalValue.js
@@ -2101,8 +1152,7 @@ var tracingFunction = (name) => {
2101
1152
  };
2102
1153
  };
2103
1154
  var internalCall = /* @__PURE__ */ tracingFunction("effect_internal_function");
2104
- var genConstructor = function* () {
2105
- }.constructor;
1155
+ var genConstructor = function* () {}.constructor;
2106
1156
 
2107
1157
  // ../node_modules/effect/dist/esm/Hash.js
2108
1158
  var randomHashCache = /* @__PURE__ */ globalValue(/* @__PURE__ */ Symbol.for("effect/Hash/randomHashCache"), () => new WeakMap);
@@ -2449,8 +1499,7 @@ var StructuralCommitPrototype = {
2449
1499
  ...StructuralPrototype
2450
1500
  };
2451
1501
  var Base = /* @__PURE__ */ function() {
2452
- function Base2() {
2453
- }
1502
+ function Base2() {}
2454
1503
  Base2.prototype = CommitPrototype;
2455
1504
  return Base2;
2456
1505
  }();
@@ -5953,8 +5002,7 @@ var Reference = () => (id, options) => {
5953
5002
  Error.stackTraceLimit = 2;
5954
5003
  const creationError = new Error;
5955
5004
  Error.stackTraceLimit = limit;
5956
- function ReferenceClass() {
5957
- }
5005
+ function ReferenceClass() {}
5958
5006
  Object.setPrototypeOf(ReferenceClass, ReferenceProto);
5959
5007
  ReferenceClass.key = id;
5960
5008
  ReferenceClass.defaultValue = options.defaultValue;
@@ -8894,8 +7942,7 @@ var prettyErrorMessage = (u) => {
8894
7942
  if (hasProperty(u, "toString") && isFunction2(u["toString"]) && u["toString"] !== Object.prototype.toString && u["toString"] !== globalThis.Array.prototype.toString) {
8895
7943
  return u["toString"]();
8896
7944
  }
8897
- } catch {
8898
- }
7945
+ } catch {}
8899
7946
  return stringifyCircular(u);
8900
7947
  };
8901
7948
  var locationRegex = /\((.*)\)/g;
@@ -9469,8 +8516,7 @@ var zip2 = /* @__PURE__ */ dual(2, (self, that) => flatMap6(self, (a) => map9(th
9469
8516
  var zipLeft = /* @__PURE__ */ dual(2, (self, that) => flatMap6(self, (a) => as(that, a)));
9470
8517
  var zipRight = /* @__PURE__ */ dual(2, (self, that) => flatMap6(self, () => that));
9471
8518
  var never = /* @__PURE__ */ asyncInterrupt(() => {
9472
- const interval = setInterval(() => {
9473
- }, 2 ** 31 - 1);
8519
+ const interval = setInterval(() => {}, 2 ** 31 - 1);
9474
8520
  return sync(() => clearInterval(interval));
9475
8521
  });
9476
8522
  var interruptFiber = (self) => flatMap6(fiberId, (fiberId2) => pipe(self, interruptAsFiber(fiberId2)));
@@ -12326,7 +11372,7 @@ var summary3 = (key) => {
12326
11372
  if (item != null) {
12327
11373
  const [t, v] = item;
12328
11374
  const age = millis(now - t);
12329
- if (greaterThanOrEqualTo3(age, zero2) && lessThanOrEqualTo3(age, maxAge)) {
11375
+ if (greaterThanOrEqualTo3(age, zero2) && age <= maxAge) {
12330
11376
  builder.push(v);
12331
11377
  }
12332
11378
  }
@@ -13290,16 +12336,11 @@ class Const {
13290
12336
  get value() {
13291
12337
  return this.effect;
13292
12338
  }
13293
- onStart(_context, _effect, _parent, _fiber) {
13294
- }
13295
- onEnd(_value, _fiber) {
13296
- }
13297
- onEffect(_fiber, _effect) {
13298
- }
13299
- onSuspend(_fiber) {
13300
- }
13301
- onResume(_fiber) {
13302
- }
12339
+ onStart(_context, _effect, _parent, _fiber) {}
12340
+ onEnd(_value, _fiber) {}
12341
+ onEffect(_fiber, _effect) {}
12342
+ onSuspend(_fiber) {}
12343
+ onResume(_fiber) {}
13303
12344
  map(f) {
13304
12345
  return new ProxySupervisor(this, pipe(this.value, map9(f)));
13305
12346
  }
@@ -13773,8 +12814,7 @@ class FiberRuntime extends Class {
13773
12814
  return whileLoop({
13774
12815
  while: () => !isDone3,
13775
12816
  body,
13776
- step: () => {
13777
- }
12817
+ step: () => {}
13778
12818
  });
13779
12819
  }
13780
12820
  return null;
@@ -23304,431 +22344,7 @@ class TrieIterator {
23304
22344
  }
23305
22345
  }
23306
22346
  var isTrie = (u) => hasProperty(u, TrieTypeId);
23307
- // src/binary.ts
23308
- var exports_binary = {};
23309
- __export(exports_binary, {
23310
- padLeft: () => padLeft,
23311
- normaliseToHex: () => normaliseToHex,
23312
- mustBeHex: () => mustBeHex,
23313
- bytesToHex: () => bytesToHex3,
23314
- bytesToBigInt: () => bytesToBigInt,
23315
- bytesFromHexString: () => bytesFromHexString,
23316
- bytes32ToBigint: () => bytes32ToBigint,
23317
- bufferToBigInt: () => bufferToBigInt,
23318
- bigintToBytes32: () => bigintToBytes32,
23319
- asBytes32: () => asBytes32,
23320
- HexString: () => HexString,
23321
- Bytes32: () => Bytes32
23322
- });
23323
-
23324
- // node_modules/viem/_esm/utils/encoding/toRlp.js
23325
- init_base();
23326
- init_cursor2();
23327
- init_toBytes();
23328
- init_toHex();
23329
- function toRlp(bytes, to = "hex") {
23330
- const encodable = getEncodable(bytes);
23331
- const cursor = createCursor(new Uint8Array(encodable.length));
23332
- encodable.encode(cursor);
23333
- if (to === "hex")
23334
- return bytesToHex2(cursor.bytes);
23335
- return cursor.bytes;
23336
- }
23337
- function getEncodable(bytes) {
23338
- if (Array.isArray(bytes))
23339
- return getEncodableList(bytes.map((x) => getEncodable(x)));
23340
- return getEncodableBytes(bytes);
23341
- }
23342
- function getEncodableList(list) {
23343
- const bodyLength = list.reduce((acc, x) => acc + x.length, 0);
23344
- const sizeOfBodyLength = getSizeOfLength(bodyLength);
23345
- const length4 = (() => {
23346
- if (bodyLength <= 55)
23347
- return 1 + bodyLength;
23348
- return 1 + sizeOfBodyLength + bodyLength;
23349
- })();
23350
- return {
23351
- length: length4,
23352
- encode(cursor) {
23353
- if (bodyLength <= 55) {
23354
- cursor.pushByte(192 + bodyLength);
23355
- } else {
23356
- cursor.pushByte(192 + 55 + sizeOfBodyLength);
23357
- if (sizeOfBodyLength === 1)
23358
- cursor.pushUint8(bodyLength);
23359
- else if (sizeOfBodyLength === 2)
23360
- cursor.pushUint16(bodyLength);
23361
- else if (sizeOfBodyLength === 3)
23362
- cursor.pushUint24(bodyLength);
23363
- else
23364
- cursor.pushUint32(bodyLength);
23365
- }
23366
- for (const { encode: encode6 } of list) {
23367
- encode6(cursor);
23368
- }
23369
- }
23370
- };
23371
- }
23372
- function getEncodableBytes(bytesOrHex) {
23373
- const bytes = typeof bytesOrHex === "string" ? hexToBytes(bytesOrHex) : bytesOrHex;
23374
- const sizeOfBytesLength = getSizeOfLength(bytes.length);
23375
- const length4 = (() => {
23376
- if (bytes.length === 1 && bytes[0] < 128)
23377
- return 1;
23378
- if (bytes.length <= 55)
23379
- return 1 + bytes.length;
23380
- return 1 + sizeOfBytesLength + bytes.length;
23381
- })();
23382
- return {
23383
- length: length4,
23384
- encode(cursor) {
23385
- if (bytes.length === 1 && bytes[0] < 128) {
23386
- cursor.pushBytes(bytes);
23387
- } else if (bytes.length <= 55) {
23388
- cursor.pushByte(128 + bytes.length);
23389
- cursor.pushBytes(bytes);
23390
- } else {
23391
- cursor.pushByte(128 + 55 + sizeOfBytesLength);
23392
- if (sizeOfBytesLength === 1)
23393
- cursor.pushUint8(bytes.length);
23394
- else if (sizeOfBytesLength === 2)
23395
- cursor.pushUint16(bytes.length);
23396
- else if (sizeOfBytesLength === 3)
23397
- cursor.pushUint24(bytes.length);
23398
- else
23399
- cursor.pushUint32(bytes.length);
23400
- cursor.pushBytes(bytes);
23401
- }
23402
- }
23403
- };
23404
- }
23405
- function getSizeOfLength(length4) {
23406
- if (length4 < 2 ** 8)
23407
- return 1;
23408
- if (length4 < 2 ** 16)
23409
- return 2;
23410
- if (length4 < 2 ** 24)
23411
- return 3;
23412
- if (length4 < 2 ** 32)
23413
- return 4;
23414
- throw new BaseError("Length is too large.");
23415
- }
23416
- // node_modules/viem/_esm/utils/formatters/transaction.js
23417
- init_fromHex();
23418
- var transactionType = {
23419
- "0x0": "legacy",
23420
- "0x1": "eip2930",
23421
- "0x2": "eip1559",
23422
- "0x3": "eip4844",
23423
- "0x4": "eip7702"
23424
- };
23425
- function formatTransaction(transaction) {
23426
- const transaction_ = {
23427
- ...transaction,
23428
- blockHash: transaction.blockHash ? transaction.blockHash : null,
23429
- blockNumber: transaction.blockNumber ? BigInt(transaction.blockNumber) : null,
23430
- chainId: transaction.chainId ? hexToNumber(transaction.chainId) : undefined,
23431
- gas: transaction.gas ? BigInt(transaction.gas) : undefined,
23432
- gasPrice: transaction.gasPrice ? BigInt(transaction.gasPrice) : undefined,
23433
- maxFeePerBlobGas: transaction.maxFeePerBlobGas ? BigInt(transaction.maxFeePerBlobGas) : undefined,
23434
- maxFeePerGas: transaction.maxFeePerGas ? BigInt(transaction.maxFeePerGas) : undefined,
23435
- maxPriorityFeePerGas: transaction.maxPriorityFeePerGas ? BigInt(transaction.maxPriorityFeePerGas) : undefined,
23436
- nonce: transaction.nonce ? hexToNumber(transaction.nonce) : undefined,
23437
- to: transaction.to ? transaction.to : null,
23438
- transactionIndex: transaction.transactionIndex ? Number(transaction.transactionIndex) : null,
23439
- type: transaction.type ? transactionType[transaction.type] : undefined,
23440
- typeHex: transaction.type ? transaction.type : undefined,
23441
- value: transaction.value ? BigInt(transaction.value) : undefined,
23442
- v: transaction.v ? BigInt(transaction.v) : undefined
23443
- };
23444
- if (transaction.authorizationList)
23445
- transaction_.authorizationList = formatAuthorizationList(transaction.authorizationList);
23446
- transaction_.yParity = (() => {
23447
- if (transaction.yParity)
23448
- return Number(transaction.yParity);
23449
- if (typeof transaction_.v === "bigint") {
23450
- if (transaction_.v === 0n || transaction_.v === 27n)
23451
- return 0;
23452
- if (transaction_.v === 1n || transaction_.v === 28n)
23453
- return 1;
23454
- if (transaction_.v >= 35n)
23455
- return transaction_.v % 2n === 0n ? 1 : 0;
23456
- }
23457
- return;
23458
- })();
23459
- if (transaction_.type === "legacy") {
23460
- delete transaction_.accessList;
23461
- delete transaction_.maxFeePerBlobGas;
23462
- delete transaction_.maxFeePerGas;
23463
- delete transaction_.maxPriorityFeePerGas;
23464
- delete transaction_.yParity;
23465
- }
23466
- if (transaction_.type === "eip2930") {
23467
- delete transaction_.maxFeePerBlobGas;
23468
- delete transaction_.maxFeePerGas;
23469
- delete transaction_.maxPriorityFeePerGas;
23470
- }
23471
- if (transaction_.type === "eip1559") {
23472
- delete transaction_.maxFeePerBlobGas;
23473
- }
23474
- return transaction_;
23475
- }
23476
- var defineTransaction = /* @__PURE__ */ defineFormatter("transaction", formatTransaction);
23477
- function formatAuthorizationList(authorizationList) {
23478
- return authorizationList.map((authorization) => ({
23479
- contractAddress: authorization.address,
23480
- chainId: Number(authorization.chainId),
23481
- nonce: Number(authorization.nonce),
23482
- r: authorization.r,
23483
- s: authorization.s,
23484
- yParity: Number(authorization.yParity)
23485
- }));
23486
- }
23487
-
23488
- // node_modules/viem/_esm/utils/formatters/block.js
23489
- function formatBlock(block) {
23490
- const transactions = (block.transactions ?? []).map((transaction) => {
23491
- if (typeof transaction === "string")
23492
- return transaction;
23493
- return formatTransaction(transaction);
23494
- });
23495
- return {
23496
- ...block,
23497
- baseFeePerGas: block.baseFeePerGas ? BigInt(block.baseFeePerGas) : null,
23498
- blobGasUsed: block.blobGasUsed ? BigInt(block.blobGasUsed) : undefined,
23499
- difficulty: block.difficulty ? BigInt(block.difficulty) : undefined,
23500
- excessBlobGas: block.excessBlobGas ? BigInt(block.excessBlobGas) : undefined,
23501
- gasLimit: block.gasLimit ? BigInt(block.gasLimit) : undefined,
23502
- gasUsed: block.gasUsed ? BigInt(block.gasUsed) : undefined,
23503
- hash: block.hash ? block.hash : null,
23504
- logsBloom: block.logsBloom ? block.logsBloom : null,
23505
- nonce: block.nonce ? block.nonce : null,
23506
- number: block.number ? BigInt(block.number) : null,
23507
- size: block.size ? BigInt(block.size) : undefined,
23508
- timestamp: block.timestamp ? BigInt(block.timestamp) : undefined,
23509
- transactions,
23510
- totalDifficulty: block.totalDifficulty ? BigInt(block.totalDifficulty) : null
23511
- };
23512
- }
23513
- var defineBlock = /* @__PURE__ */ defineFormatter("block", formatBlock);
23514
-
23515
- // node_modules/viem/_esm/utils/blob/blobsToCommitments.js
23516
- init_toBytes();
23517
- init_toHex();
23518
- function blobsToCommitments(parameters) {
23519
- const { kzg } = parameters;
23520
- const to = parameters.to ?? (typeof parameters.blobs[0] === "string" ? "hex" : "bytes");
23521
- const blobs = typeof parameters.blobs[0] === "string" ? parameters.blobs.map((x) => hexToBytes(x)) : parameters.blobs;
23522
- const commitments = [];
23523
- for (const blob of blobs)
23524
- commitments.push(Uint8Array.from(kzg.blobToKzgCommitment(blob)));
23525
- return to === "bytes" ? commitments : commitments.map((x) => bytesToHex2(x));
23526
- }
23527
-
23528
- // node_modules/viem/_esm/utils/blob/blobsToProofs.js
23529
- init_toBytes();
23530
- init_toHex();
23531
- function blobsToProofs(parameters) {
23532
- const { kzg } = parameters;
23533
- const to = parameters.to ?? (typeof parameters.blobs[0] === "string" ? "hex" : "bytes");
23534
- const blobs = typeof parameters.blobs[0] === "string" ? parameters.blobs.map((x) => hexToBytes(x)) : parameters.blobs;
23535
- const commitments = typeof parameters.commitments[0] === "string" ? parameters.commitments.map((x) => hexToBytes(x)) : parameters.commitments;
23536
- const proofs = [];
23537
- for (let i = 0;i < blobs.length; i++) {
23538
- const blob = blobs[i];
23539
- const commitment = commitments[i];
23540
- proofs.push(Uint8Array.from(kzg.computeBlobKzgProof(blob, commitment)));
23541
- }
23542
- return to === "bytes" ? proofs : proofs.map((x) => bytesToHex2(x));
23543
- }
23544
-
23545
- // node_modules/viem/_esm/utils/blob/commitmentToVersionedHash.js
23546
- init_toHex();
23547
-
23548
- // node_modules/viem/_esm/utils/hash/sha256.js
23549
- init_sha256();
23550
- init_toBytes();
23551
- init_toHex();
23552
- function sha2562(value6, to_) {
23553
- const to = to_ || "hex";
23554
- const bytes = sha256(isHex(value6, { strict: false }) ? toBytes(value6) : value6);
23555
- if (to === "bytes")
23556
- return bytes;
23557
- return toHex(bytes);
23558
- }
23559
-
23560
- // node_modules/viem/_esm/utils/blob/commitmentToVersionedHash.js
23561
- function commitmentToVersionedHash(parameters) {
23562
- const { commitment, version: version2 = 1 } = parameters;
23563
- const to = parameters.to ?? (typeof commitment === "string" ? "hex" : "bytes");
23564
- const versionedHash = sha2562(commitment, "bytes");
23565
- versionedHash.set([version2], 0);
23566
- return to === "bytes" ? versionedHash : bytesToHex2(versionedHash);
23567
- }
23568
-
23569
- // node_modules/viem/_esm/utils/blob/commitmentsToVersionedHashes.js
23570
- function commitmentsToVersionedHashes(parameters) {
23571
- const { commitments, version: version2 } = parameters;
23572
- const to = parameters.to ?? (typeof commitments[0] === "string" ? "hex" : "bytes");
23573
- const hashes = [];
23574
- for (const commitment of commitments) {
23575
- hashes.push(commitmentToVersionedHash({
23576
- commitment,
23577
- to,
23578
- version: version2
23579
- }));
23580
- }
23581
- return hashes;
23582
- }
23583
-
23584
- // node_modules/viem/_esm/constants/blob.js
23585
- var blobsPerTransaction = 6;
23586
- var bytesPerFieldElement = 32;
23587
- var fieldElementsPerBlob = 4096;
23588
- var bytesPerBlob = bytesPerFieldElement * fieldElementsPerBlob;
23589
- var maxBytesPerTransaction = bytesPerBlob * blobsPerTransaction - 1 - 1 * fieldElementsPerBlob * blobsPerTransaction;
23590
-
23591
- // node_modules/viem/_esm/constants/kzg.js
23592
- var versionedHashVersionKzg = 1;
23593
-
23594
- // node_modules/viem/_esm/errors/blob.js
23595
- init_base();
23596
-
23597
- class BlobSizeTooLargeError extends BaseError {
23598
- constructor({ maxSize, size: size22 }) {
23599
- super("Blob size is too large.", {
23600
- metaMessages: [`Max: ${maxSize} bytes`, `Given: ${size22} bytes`],
23601
- name: "BlobSizeTooLargeError"
23602
- });
23603
- }
23604
- }
23605
-
23606
- class EmptyBlobError extends BaseError {
23607
- constructor() {
23608
- super("Blob data must not be empty.", { name: "EmptyBlobError" });
23609
- }
23610
- }
23611
-
23612
- class InvalidVersionedHashSizeError extends BaseError {
23613
- constructor({ hash: hash2, size: size22 }) {
23614
- super(`Versioned hash "${hash2}" size is invalid.`, {
23615
- metaMessages: ["Expected: 32", `Received: ${size22}`],
23616
- name: "InvalidVersionedHashSizeError"
23617
- });
23618
- }
23619
- }
23620
-
23621
- class InvalidVersionedHashVersionError extends BaseError {
23622
- constructor({ hash: hash2, version: version2 }) {
23623
- super(`Versioned hash "${hash2}" version is invalid.`, {
23624
- metaMessages: [
23625
- `Expected: ${versionedHashVersionKzg}`,
23626
- `Received: ${version2}`
23627
- ],
23628
- name: "InvalidVersionedHashVersionError"
23629
- });
23630
- }
23631
- }
23632
-
23633
- // node_modules/viem/_esm/utils/blob/toBlobs.js
23634
- init_cursor2();
23635
- init_size();
23636
- init_toBytes();
23637
- init_toHex();
23638
- function toBlobs(parameters) {
23639
- const to = parameters.to ?? (typeof parameters.data === "string" ? "hex" : "bytes");
23640
- const data = typeof parameters.data === "string" ? hexToBytes(parameters.data) : parameters.data;
23641
- const size_ = size21(data);
23642
- if (!size_)
23643
- throw new EmptyBlobError;
23644
- if (size_ > maxBytesPerTransaction)
23645
- throw new BlobSizeTooLargeError({
23646
- maxSize: maxBytesPerTransaction,
23647
- size: size_
23648
- });
23649
- const blobs = [];
23650
- let active2 = true;
23651
- let position = 0;
23652
- while (active2) {
23653
- const blob = createCursor(new Uint8Array(bytesPerBlob));
23654
- let size22 = 0;
23655
- while (size22 < fieldElementsPerBlob) {
23656
- const bytes = data.slice(position, position + (bytesPerFieldElement - 1));
23657
- blob.pushByte(0);
23658
- blob.pushBytes(bytes);
23659
- if (bytes.length < 31) {
23660
- blob.pushByte(128);
23661
- active2 = false;
23662
- break;
23663
- }
23664
- size22++;
23665
- position += 31;
23666
- }
23667
- blobs.push(blob);
23668
- }
23669
- return to === "bytes" ? blobs.map((x) => x.bytes) : blobs.map((x) => bytesToHex2(x.bytes));
23670
- }
23671
-
23672
- // node_modules/viem/_esm/utils/blob/toBlobSidecars.js
23673
- function toBlobSidecars(parameters) {
23674
- const { data, kzg, to } = parameters;
23675
- const blobs = parameters.blobs ?? toBlobs({ data, to });
23676
- const commitments = parameters.commitments ?? blobsToCommitments({ blobs, kzg, to });
23677
- const proofs = parameters.proofs ?? blobsToProofs({ blobs, commitments, kzg, to });
23678
- const sidecars = [];
23679
- for (let i = 0;i < blobs.length; i++)
23680
- sidecars.push({
23681
- blob: blobs[i],
23682
- commitment: commitments[i],
23683
- proof: proofs[i]
23684
- });
23685
- return sidecars;
23686
- }
23687
-
23688
- // node_modules/viem/_esm/utils/transaction/getTransactionType.js
23689
- init_transaction();
23690
- function getTransactionType(transaction) {
23691
- if (transaction.type)
23692
- return transaction.type;
23693
- if (typeof transaction.authorizationList !== "undefined")
23694
- return "eip7702";
23695
- if (typeof transaction.blobs !== "undefined" || typeof transaction.blobVersionedHashes !== "undefined" || typeof transaction.maxFeePerBlobGas !== "undefined" || typeof transaction.sidecars !== "undefined")
23696
- return "eip4844";
23697
- if (typeof transaction.maxFeePerGas !== "undefined" || typeof transaction.maxPriorityFeePerGas !== "undefined") {
23698
- return "eip1559";
23699
- }
23700
- if (typeof transaction.gasPrice !== "undefined") {
23701
- if (typeof transaction.accessList !== "undefined")
23702
- return "eip2930";
23703
- return "legacy";
23704
- }
23705
- throw new InvalidSerializableTransactionError({ transaction });
23706
- }
23707
-
23708
- // node_modules/viem/_esm/utils/formatters/log.js
23709
- function formatLog(log3, { args: args2, eventName } = {}) {
23710
- return {
23711
- ...log3,
23712
- blockHash: log3.blockHash ? log3.blockHash : null,
23713
- blockNumber: log3.blockNumber ? BigInt(log3.blockNumber) : null,
23714
- logIndex: log3.logIndex ? Number(log3.logIndex) : null,
23715
- transactionHash: log3.transactionHash ? log3.transactionHash : null,
23716
- transactionIndex: log3.transactionIndex ? Number(log3.transactionIndex) : null,
23717
- ...eventName ? { args: args2, eventName } : {}
23718
- };
23719
- }
23720
-
23721
- // node_modules/viem/_esm/utils/chain/defineChain.js
23722
- function defineChain(chain) {
23723
- return {
23724
- formatters: undefined,
23725
- fees: undefined,
23726
- serializers: undefined,
23727
- ...chain
23728
- };
23729
- }
23730
-
23731
- // node_modules/viem/_esm/utils/abi/encodePacked.js
22347
+ // ../node_modules/viem/_esm/utils/abi/encodePacked.js
23732
22348
  init_abi();
23733
22349
  init_address();
23734
22350
  init_isAddress();
@@ -23797,358 +22413,10 @@ function encode6(type2, value6, isArray2 = false) {
23797
22413
  throw new UnsupportedPackedAbiType(type2);
23798
22414
  }
23799
22415
 
23800
- // node_modules/viem/_esm/utils/formatters/transactionReceipt.js
23801
- init_fromHex();
23802
- var receiptStatuses = {
23803
- "0x0": "reverted",
23804
- "0x1": "success"
23805
- };
23806
- function formatTransactionReceipt(transactionReceipt) {
23807
- const receipt = {
23808
- ...transactionReceipt,
23809
- blockNumber: transactionReceipt.blockNumber ? BigInt(transactionReceipt.blockNumber) : null,
23810
- contractAddress: transactionReceipt.contractAddress ? transactionReceipt.contractAddress : null,
23811
- cumulativeGasUsed: transactionReceipt.cumulativeGasUsed ? BigInt(transactionReceipt.cumulativeGasUsed) : null,
23812
- effectiveGasPrice: transactionReceipt.effectiveGasPrice ? BigInt(transactionReceipt.effectiveGasPrice) : null,
23813
- gasUsed: transactionReceipt.gasUsed ? BigInt(transactionReceipt.gasUsed) : null,
23814
- logs: transactionReceipt.logs ? transactionReceipt.logs.map((log3) => formatLog(log3)) : null,
23815
- to: transactionReceipt.to ? transactionReceipt.to : null,
23816
- transactionIndex: transactionReceipt.transactionIndex ? hexToNumber(transactionReceipt.transactionIndex) : null,
23817
- status: transactionReceipt.status ? receiptStatuses[transactionReceipt.status] : null,
23818
- type: transactionReceipt.type ? transactionType[transactionReceipt.type] || transactionReceipt.type : null
23819
- };
23820
- if (transactionReceipt.blobGasPrice)
23821
- receipt.blobGasPrice = BigInt(transactionReceipt.blobGasPrice);
23822
- if (transactionReceipt.blobGasUsed)
23823
- receipt.blobGasUsed = BigInt(transactionReceipt.blobGasUsed);
23824
- return receipt;
23825
- }
23826
- var defineTransactionReceipt = /* @__PURE__ */ defineFormatter("transactionReceipt", formatTransactionReceipt);
23827
-
23828
- // node_modules/viem/_esm/utils/transaction/assertTransaction.js
23829
- init_number();
23830
- init_address();
23831
- init_base();
23832
- init_chain();
23833
- init_node();
23834
- init_isAddress();
23835
- init_size();
23836
- init_slice();
23837
- init_fromHex();
23838
- function assertTransactionEIP7702(transaction) {
23839
- const { authorizationList } = transaction;
23840
- if (authorizationList) {
23841
- for (const authorization of authorizationList) {
23842
- const { contractAddress, chainId } = authorization;
23843
- if (!isAddress(contractAddress))
23844
- throw new InvalidAddressError({ address: contractAddress });
23845
- if (chainId < 0)
23846
- throw new InvalidChainIdError({ chainId });
23847
- }
23848
- }
23849
- assertTransactionEIP1559(transaction);
23850
- }
23851
- function assertTransactionEIP4844(transaction) {
23852
- const { blobVersionedHashes } = transaction;
23853
- if (blobVersionedHashes) {
23854
- if (blobVersionedHashes.length === 0)
23855
- throw new EmptyBlobError;
23856
- for (const hash2 of blobVersionedHashes) {
23857
- const size_ = size21(hash2);
23858
- const version2 = hexToNumber(slice(hash2, 0, 1));
23859
- if (size_ !== 32)
23860
- throw new InvalidVersionedHashSizeError({ hash: hash2, size: size_ });
23861
- if (version2 !== versionedHashVersionKzg)
23862
- throw new InvalidVersionedHashVersionError({
23863
- hash: hash2,
23864
- version: version2
23865
- });
23866
- }
23867
- }
23868
- assertTransactionEIP1559(transaction);
23869
- }
23870
- function assertTransactionEIP1559(transaction) {
23871
- const { chainId, maxPriorityFeePerGas, maxFeePerGas, to } = transaction;
23872
- if (chainId <= 0)
23873
- throw new InvalidChainIdError({ chainId });
23874
- if (to && !isAddress(to))
23875
- throw new InvalidAddressError({ address: to });
23876
- if (maxFeePerGas && maxFeePerGas > maxUint256)
23877
- throw new FeeCapTooHighError({ maxFeePerGas });
23878
- if (maxPriorityFeePerGas && maxFeePerGas && maxPriorityFeePerGas > maxFeePerGas)
23879
- throw new TipAboveFeeCapError({ maxFeePerGas, maxPriorityFeePerGas });
23880
- }
23881
- function assertTransactionEIP2930(transaction) {
23882
- const { chainId, maxPriorityFeePerGas, gasPrice, maxFeePerGas, to } = transaction;
23883
- if (chainId <= 0)
23884
- throw new InvalidChainIdError({ chainId });
23885
- if (to && !isAddress(to))
23886
- throw new InvalidAddressError({ address: to });
23887
- if (maxPriorityFeePerGas || maxFeePerGas)
23888
- throw new BaseError("`maxFeePerGas`/`maxPriorityFeePerGas` is not a valid EIP-2930 Transaction attribute.");
23889
- if (gasPrice && gasPrice > maxUint256)
23890
- throw new FeeCapTooHighError({ maxFeePerGas: gasPrice });
23891
- }
23892
- function assertTransactionLegacy(transaction) {
23893
- const { chainId, maxPriorityFeePerGas, gasPrice, maxFeePerGas, to } = transaction;
23894
- if (to && !isAddress(to))
23895
- throw new InvalidAddressError({ address: to });
23896
- if (typeof chainId !== "undefined" && chainId <= 0)
23897
- throw new InvalidChainIdError({ chainId });
23898
- if (maxPriorityFeePerGas || maxFeePerGas)
23899
- throw new BaseError("`maxFeePerGas`/`maxPriorityFeePerGas` is not a valid Legacy Transaction attribute.");
23900
- if (gasPrice && gasPrice > maxUint256)
23901
- throw new FeeCapTooHighError({ maxFeePerGas: gasPrice });
23902
- }
23903
-
23904
- // node_modules/viem/_esm/utils/transaction/serializeTransaction.js
23905
- init_transaction();
23906
- init_toHex();
23907
-
23908
- // node_modules/viem/_esm/experimental/eip7702/utils/serializeAuthorizationList.js
23909
- init_toHex();
23910
- function serializeAuthorizationList(authorizationList) {
23911
- if (!authorizationList || authorizationList.length === 0)
23912
- return [];
23913
- const serializedAuthorizationList = [];
23914
- for (const authorization of authorizationList) {
23915
- const { contractAddress, chainId, nonce, ...signature } = authorization;
23916
- serializedAuthorizationList.push([
23917
- chainId ? toHex(chainId) : "0x",
23918
- contractAddress,
23919
- nonce ? toHex(nonce) : "0x",
23920
- ...toYParitySignatureArray({}, signature)
23921
- ]);
23922
- }
23923
- return serializedAuthorizationList;
23924
- }
23925
-
23926
- // node_modules/viem/_esm/utils/transaction/serializeAccessList.js
23927
- init_address();
23928
- init_transaction();
23929
- init_isAddress();
23930
- function serializeAccessList(accessList) {
23931
- if (!accessList || accessList.length === 0)
23932
- return [];
23933
- const serializedAccessList = [];
23934
- for (let i = 0;i < accessList.length; i++) {
23935
- const { address, storageKeys } = accessList[i];
23936
- for (let j = 0;j < storageKeys.length; j++) {
23937
- if (storageKeys[j].length - 2 !== 64) {
23938
- throw new InvalidStorageKeySizeError({ storageKey: storageKeys[j] });
23939
- }
23940
- }
23941
- if (!isAddress(address, { strict: false })) {
23942
- throw new InvalidAddressError({ address });
23943
- }
23944
- serializedAccessList.push([address, storageKeys]);
23945
- }
23946
- return serializedAccessList;
23947
- }
23948
-
23949
- // node_modules/viem/_esm/utils/transaction/serializeTransaction.js
23950
- function serializeTransaction(transaction, signature) {
23951
- const type2 = getTransactionType(transaction);
23952
- if (type2 === "eip1559")
23953
- return serializeTransactionEIP1559(transaction, signature);
23954
- if (type2 === "eip2930")
23955
- return serializeTransactionEIP2930(transaction, signature);
23956
- if (type2 === "eip4844")
23957
- return serializeTransactionEIP4844(transaction, signature);
23958
- if (type2 === "eip7702")
23959
- return serializeTransactionEIP7702(transaction, signature);
23960
- return serializeTransactionLegacy(transaction, signature);
23961
- }
23962
- function serializeTransactionEIP7702(transaction, signature) {
23963
- const { authorizationList, chainId, gas, nonce, to, value: value6, maxFeePerGas, maxPriorityFeePerGas, accessList, data } = transaction;
23964
- assertTransactionEIP7702(transaction);
23965
- const serializedAccessList = serializeAccessList(accessList);
23966
- const serializedAuthorizationList = serializeAuthorizationList(authorizationList);
23967
- return concatHex([
23968
- "0x04",
23969
- toRlp([
23970
- toHex(chainId),
23971
- nonce ? toHex(nonce) : "0x",
23972
- maxPriorityFeePerGas ? toHex(maxPriorityFeePerGas) : "0x",
23973
- maxFeePerGas ? toHex(maxFeePerGas) : "0x",
23974
- gas ? toHex(gas) : "0x",
23975
- to ?? "0x",
23976
- value6 ? toHex(value6) : "0x",
23977
- data ?? "0x",
23978
- serializedAccessList,
23979
- serializedAuthorizationList,
23980
- ...toYParitySignatureArray(transaction, signature)
23981
- ])
23982
- ]);
23983
- }
23984
- function serializeTransactionEIP4844(transaction, signature) {
23985
- const { chainId, gas, nonce, to, value: value6, maxFeePerBlobGas, maxFeePerGas, maxPriorityFeePerGas, accessList, data } = transaction;
23986
- assertTransactionEIP4844(transaction);
23987
- let blobVersionedHashes = transaction.blobVersionedHashes;
23988
- let sidecars = transaction.sidecars;
23989
- if (transaction.blobs && (typeof blobVersionedHashes === "undefined" || typeof sidecars === "undefined")) {
23990
- const blobs2 = typeof transaction.blobs[0] === "string" ? transaction.blobs : transaction.blobs.map((x) => bytesToHex2(x));
23991
- const kzg = transaction.kzg;
23992
- const commitments2 = blobsToCommitments({
23993
- blobs: blobs2,
23994
- kzg
23995
- });
23996
- if (typeof blobVersionedHashes === "undefined")
23997
- blobVersionedHashes = commitmentsToVersionedHashes({
23998
- commitments: commitments2
23999
- });
24000
- if (typeof sidecars === "undefined") {
24001
- const proofs2 = blobsToProofs({ blobs: blobs2, commitments: commitments2, kzg });
24002
- sidecars = toBlobSidecars({ blobs: blobs2, commitments: commitments2, proofs: proofs2 });
24003
- }
24004
- }
24005
- const serializedAccessList = serializeAccessList(accessList);
24006
- const serializedTransaction = [
24007
- toHex(chainId),
24008
- nonce ? toHex(nonce) : "0x",
24009
- maxPriorityFeePerGas ? toHex(maxPriorityFeePerGas) : "0x",
24010
- maxFeePerGas ? toHex(maxFeePerGas) : "0x",
24011
- gas ? toHex(gas) : "0x",
24012
- to ?? "0x",
24013
- value6 ? toHex(value6) : "0x",
24014
- data ?? "0x",
24015
- serializedAccessList,
24016
- maxFeePerBlobGas ? toHex(maxFeePerBlobGas) : "0x",
24017
- blobVersionedHashes ?? [],
24018
- ...toYParitySignatureArray(transaction, signature)
24019
- ];
24020
- const blobs = [];
24021
- const commitments = [];
24022
- const proofs = [];
24023
- if (sidecars)
24024
- for (let i = 0;i < sidecars.length; i++) {
24025
- const { blob, commitment, proof } = sidecars[i];
24026
- blobs.push(blob);
24027
- commitments.push(commitment);
24028
- proofs.push(proof);
24029
- }
24030
- return concatHex([
24031
- "0x03",
24032
- sidecars ? toRlp([serializedTransaction, blobs, commitments, proofs]) : toRlp(serializedTransaction)
24033
- ]);
24034
- }
24035
- function serializeTransactionEIP1559(transaction, signature) {
24036
- const { chainId, gas, nonce, to, value: value6, maxFeePerGas, maxPriorityFeePerGas, accessList, data } = transaction;
24037
- assertTransactionEIP1559(transaction);
24038
- const serializedAccessList = serializeAccessList(accessList);
24039
- const serializedTransaction = [
24040
- toHex(chainId),
24041
- nonce ? toHex(nonce) : "0x",
24042
- maxPriorityFeePerGas ? toHex(maxPriorityFeePerGas) : "0x",
24043
- maxFeePerGas ? toHex(maxFeePerGas) : "0x",
24044
- gas ? toHex(gas) : "0x",
24045
- to ?? "0x",
24046
- value6 ? toHex(value6) : "0x",
24047
- data ?? "0x",
24048
- serializedAccessList,
24049
- ...toYParitySignatureArray(transaction, signature)
24050
- ];
24051
- return concatHex([
24052
- "0x02",
24053
- toRlp(serializedTransaction)
24054
- ]);
24055
- }
24056
- function serializeTransactionEIP2930(transaction, signature) {
24057
- const { chainId, gas, data, nonce, to, value: value6, accessList, gasPrice } = transaction;
24058
- assertTransactionEIP2930(transaction);
24059
- const serializedAccessList = serializeAccessList(accessList);
24060
- const serializedTransaction = [
24061
- toHex(chainId),
24062
- nonce ? toHex(nonce) : "0x",
24063
- gasPrice ? toHex(gasPrice) : "0x",
24064
- gas ? toHex(gas) : "0x",
24065
- to ?? "0x",
24066
- value6 ? toHex(value6) : "0x",
24067
- data ?? "0x",
24068
- serializedAccessList,
24069
- ...toYParitySignatureArray(transaction, signature)
24070
- ];
24071
- return concatHex([
24072
- "0x01",
24073
- toRlp(serializedTransaction)
24074
- ]);
24075
- }
24076
- function serializeTransactionLegacy(transaction, signature) {
24077
- const { chainId = 0, gas, data, nonce, to, value: value6, gasPrice } = transaction;
24078
- assertTransactionLegacy(transaction);
24079
- let serializedTransaction = [
24080
- nonce ? toHex(nonce) : "0x",
24081
- gasPrice ? toHex(gasPrice) : "0x",
24082
- gas ? toHex(gas) : "0x",
24083
- to ?? "0x",
24084
- value6 ? toHex(value6) : "0x",
24085
- data ?? "0x"
24086
- ];
24087
- if (signature) {
24088
- const v = (() => {
24089
- if (signature.v >= 35n) {
24090
- const inferredChainId = (signature.v - 35n) / 2n;
24091
- if (inferredChainId > 0)
24092
- return signature.v;
24093
- return 27n + (signature.v === 35n ? 0n : 1n);
24094
- }
24095
- if (chainId > 0)
24096
- return BigInt(chainId * 2) + BigInt(35n + signature.v - 27n);
24097
- const v2 = 27n + (signature.v === 27n ? 0n : 1n);
24098
- if (signature.v !== v2)
24099
- throw new InvalidLegacyVError({ v: signature.v });
24100
- return v2;
24101
- })();
24102
- const r = trim(signature.r);
24103
- const s = trim(signature.s);
24104
- serializedTransaction = [
24105
- ...serializedTransaction,
24106
- toHex(v),
24107
- r === "0x00" ? "0x" : r,
24108
- s === "0x00" ? "0x" : s
24109
- ];
24110
- } else if (chainId > 0) {
24111
- serializedTransaction = [
24112
- ...serializedTransaction,
24113
- toHex(chainId),
24114
- "0x",
24115
- "0x"
24116
- ];
24117
- }
24118
- return toRlp(serializedTransaction);
24119
- }
24120
- function toYParitySignatureArray(transaction, signature_) {
24121
- const signature = signature_ ?? transaction;
24122
- const { v, yParity } = signature;
24123
- if (typeof signature.r === "undefined")
24124
- return [];
24125
- if (typeof signature.s === "undefined")
24126
- return [];
24127
- if (typeof v === "undefined" && typeof yParity === "undefined")
24128
- return [];
24129
- const r = trim(signature.r);
24130
- const s = trim(signature.s);
24131
- const yParity_ = (() => {
24132
- if (typeof yParity === "number")
24133
- return yParity ? toHex(1) : "0x";
24134
- if (v === 0n)
24135
- return "0x";
24136
- if (v === 1n)
24137
- return toHex(1);
24138
- return v === 27n ? "0x" : toHex(1);
24139
- })();
24140
- return [yParity_, r === "0x00" ? "0x" : r, s === "0x00" ? "0x" : s];
24141
- }
24142
-
24143
- // node_modules/viem/_esm/index.js
22416
+ // ../node_modules/viem/_esm/index.js
24144
22417
  init_toBytes();
24145
22418
  init_toHex();
24146
22419
  // src/schema.ts
24147
- var exports_schema = {};
24148
- __export(exports_schema, {
24149
- parseJson: () => parseJson2,
24150
- parse: () => parse3
24151
- });
24152
22420
  function parse3(schema, obj, options) {
24153
22421
  return exports_Schema.decodeUnknownSync(schema)(obj, options);
24154
22422
  }
@@ -24208,251 +22476,11 @@ function asBytes32(x) {
24208
22476
  return parse3(Bytes32, x);
24209
22477
  }
24210
22478
 
24211
- // node_modules/viem/_esm/op-stack/contracts.js
24212
- var contracts = {
24213
- gasPriceOracle: { address: "0x420000000000000000000000000000000000000F" },
24214
- l1Block: { address: "0x4200000000000000000000000000000000000015" },
24215
- l2CrossDomainMessenger: {
24216
- address: "0x4200000000000000000000000000000000000007"
24217
- },
24218
- l2Erc721Bridge: { address: "0x4200000000000000000000000000000000000014" },
24219
- l2StandardBridge: { address: "0x4200000000000000000000000000000000000010" },
24220
- l2ToL1MessagePasser: {
24221
- address: "0x4200000000000000000000000000000000000016"
24222
- }
24223
- };
24224
-
24225
- // node_modules/viem/_esm/op-stack/formatters.js
24226
- init_fromHex();
24227
- var formatters = {
24228
- block: /* @__PURE__ */ defineBlock({
24229
- format(args2) {
24230
- const transactions = args2.transactions?.map((transaction) => {
24231
- if (typeof transaction === "string")
24232
- return transaction;
24233
- const formatted = formatTransaction(transaction);
24234
- if (formatted.typeHex === "0x7e") {
24235
- formatted.isSystemTx = transaction.isSystemTx;
24236
- formatted.mint = transaction.mint ? hexToBigInt(transaction.mint) : undefined;
24237
- formatted.sourceHash = transaction.sourceHash;
24238
- formatted.type = "deposit";
24239
- }
24240
- return formatted;
24241
- });
24242
- return {
24243
- transactions,
24244
- stateRoot: args2.stateRoot
24245
- };
24246
- }
24247
- }),
24248
- transaction: /* @__PURE__ */ defineTransaction({
24249
- format(args2) {
24250
- const transaction = {};
24251
- if (args2.type === "0x7e") {
24252
- transaction.isSystemTx = args2.isSystemTx;
24253
- transaction.mint = args2.mint ? hexToBigInt(args2.mint) : undefined;
24254
- transaction.sourceHash = args2.sourceHash;
24255
- transaction.type = "deposit";
24256
- }
24257
- return transaction;
24258
- }
24259
- }),
24260
- transactionReceipt: /* @__PURE__ */ defineTransactionReceipt({
24261
- format(args2) {
24262
- return {
24263
- l1GasPrice: args2.l1GasPrice ? hexToBigInt(args2.l1GasPrice) : null,
24264
- l1GasUsed: args2.l1GasUsed ? hexToBigInt(args2.l1GasUsed) : null,
24265
- l1Fee: args2.l1Fee ? hexToBigInt(args2.l1Fee) : null,
24266
- l1FeeScalar: args2.l1FeeScalar ? Number(args2.l1FeeScalar) : null
24267
- };
24268
- }
24269
- })
24270
- };
24271
-
24272
- // node_modules/viem/_esm/op-stack/serializers.js
24273
- init_address();
24274
- init_isAddress();
24275
- init_toHex();
24276
- function serializeTransaction2(transaction, signature) {
24277
- if (isDeposit(transaction))
24278
- return serializeTransactionDeposit(transaction);
24279
- return serializeTransaction(transaction, signature);
24280
- }
24281
- var serializers = {
24282
- transaction: serializeTransaction2
24283
- };
24284
- function serializeTransactionDeposit(transaction) {
24285
- assertTransactionDeposit(transaction);
24286
- const { sourceHash, data, from, gas, isSystemTx, mint, to, value: value6 } = transaction;
24287
- const serializedTransaction = [
24288
- sourceHash,
24289
- from,
24290
- to ?? "0x",
24291
- mint ? toHex(mint) : "0x",
24292
- value6 ? toHex(value6) : "0x",
24293
- gas ? toHex(gas) : "0x",
24294
- isSystemTx ? "0x1" : "0x",
24295
- data ?? "0x"
24296
- ];
24297
- return concatHex([
24298
- "0x7e",
24299
- toRlp(serializedTransaction)
24300
- ]);
24301
- }
24302
- function isDeposit(transaction) {
24303
- if (transaction.type === "deposit")
24304
- return true;
24305
- if (typeof transaction.sourceHash !== "undefined")
24306
- return true;
24307
- return false;
24308
- }
24309
- function assertTransactionDeposit(transaction) {
24310
- const { from, to } = transaction;
24311
- if (from && !isAddress(from))
24312
- throw new InvalidAddressError({ address: from });
24313
- if (to && !isAddress(to))
24314
- throw new InvalidAddressError({ address: to });
24315
- }
24316
-
24317
- // node_modules/viem/_esm/op-stack/chainConfig.js
24318
- var chainConfig = {
24319
- contracts,
24320
- formatters,
24321
- serializers
24322
- };
24323
-
24324
- // node_modules/viem/_esm/chains/definitions/anvil.js
24325
- var anvil = /* @__PURE__ */ defineChain({
24326
- id: 31337,
24327
- name: "Anvil",
24328
- nativeCurrency: {
24329
- decimals: 18,
24330
- name: "Ether",
24331
- symbol: "ETH"
24332
- },
24333
- rpcUrls: {
24334
- default: {
24335
- http: ["http://127.0.0.1:8545"],
24336
- webSocket: ["ws://127.0.0.1:8545"]
24337
- }
24338
- }
24339
- });
24340
- // node_modules/viem/_esm/chains/definitions/baseSepolia.js
24341
- var sourceId = 11155111;
24342
- var baseSepolia = /* @__PURE__ */ defineChain({
24343
- ...chainConfig,
24344
- id: 84532,
24345
- network: "base-sepolia",
24346
- name: "Base Sepolia",
24347
- nativeCurrency: { name: "Sepolia Ether", symbol: "ETH", decimals: 18 },
24348
- rpcUrls: {
24349
- default: {
24350
- http: ["https://sepolia.base.org"]
24351
- }
24352
- },
24353
- blockExplorers: {
24354
- default: {
24355
- name: "Basescan",
24356
- url: "https://sepolia.basescan.org",
24357
- apiUrl: "https://api-sepolia.basescan.org/api"
24358
- }
24359
- },
24360
- contracts: {
24361
- ...chainConfig.contracts,
24362
- disputeGameFactory: {
24363
- [sourceId]: {
24364
- address: "0xd6E6dBf4F7EA0ac412fD8b65ED297e64BB7a06E1"
24365
- }
24366
- },
24367
- l2OutputOracle: {
24368
- [sourceId]: {
24369
- address: "0x84457ca9D0163FbC4bbfe4Dfbb20ba46e48DF254"
24370
- }
24371
- },
24372
- portal: {
24373
- [sourceId]: {
24374
- address: "0x49f53e41452c74589e85ca1677426ba426459e85",
24375
- blockCreated: 4446677
24376
- }
24377
- },
24378
- l1StandardBridge: {
24379
- [sourceId]: {
24380
- address: "0xfd0Bf71F60660E2f608ed56e1659C450eB113120",
24381
- blockCreated: 4446677
24382
- }
24383
- },
24384
- multicall3: {
24385
- address: "0xca11bde05977b3631167028862be2a173976ca11",
24386
- blockCreated: 1059647
24387
- }
24388
- },
24389
- testnet: true,
24390
- sourceId
24391
- });
24392
- // node_modules/viem/_esm/chains/definitions/monadTestnet.js
24393
- var monadTestnet = /* @__PURE__ */ defineChain({
24394
- id: 10143,
24395
- name: "Monad Testnet",
24396
- nativeCurrency: {
24397
- name: "Testnet MON Token",
24398
- symbol: "MON",
24399
- decimals: 18
24400
- },
24401
- rpcUrls: {
24402
- default: {
24403
- http: ["https://testnet-rpc.monad.xyz"]
24404
- }
24405
- },
24406
- blockExplorers: {
24407
- default: {
24408
- name: "Monad Testnet explorer",
24409
- url: "https://testnet.monadexplorer.com"
24410
- }
24411
- },
24412
- contracts: {
24413
- multicall3: {
24414
- address: "0xcA11bde05977b3631167028862bE2a173976CA11",
24415
- blockCreated: 251449
24416
- }
24417
- },
24418
- testnet: true
24419
- });
24420
- // node_modules/viem/_esm/chains/definitions/sepolia.js
24421
- var sepolia = /* @__PURE__ */ defineChain({
24422
- id: 11155111,
24423
- name: "Sepolia",
24424
- nativeCurrency: { name: "Sepolia Ether", symbol: "ETH", decimals: 18 },
24425
- rpcUrls: {
24426
- default: {
24427
- http: ["https://sepolia.drpc.org"]
24428
- }
24429
- },
24430
- blockExplorers: {
24431
- default: {
24432
- name: "Etherscan",
24433
- url: "https://sepolia.etherscan.io",
24434
- apiUrl: "https://api-sepolia.etherscan.io/api"
24435
- }
24436
- },
24437
- contracts: {
24438
- multicall3: {
24439
- address: "0xca11bde05977b3631167028862be2a173976ca11",
24440
- blockCreated: 751532
24441
- },
24442
- ensRegistry: { address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e" },
24443
- ensUniversalResolver: {
24444
- address: "0xc8Af999e38273D658BE1b921b88A9Ddf005769cC",
24445
- blockCreated: 5317080
24446
- }
24447
- },
24448
- testnet: true
24449
- });
24450
22479
  // src/chain.ts
24451
22480
  var supportedChains = {
24452
- baseSepolia: baseSepolia.id,
24453
- sepolia: sepolia.id,
24454
- monadTestnet: monadTestnet.id,
24455
- anvil: anvil.id
22481
+ baseSepolia: 84532,
22482
+ sepolia: 11155111,
22483
+ monadTestnet: 10143
24456
22484
  };
24457
22485
  var fheSupportedChains = { baseSepolia: 84532, sepolia: 11155111 };
24458
22486
  function getSupportedChain(chainish) {
@@ -24467,262 +22495,147 @@ function getSupportedChain(chainish) {
24467
22495
  // src/generated/lightning.ts
24468
22496
  var lightningDeployments = [
24469
22497
  {
24470
- name: "incoLightning_0_1_25__986372984",
24471
- executorAddress: "0xc3c81F7Bf86Af7ed3a5f5Bb1924A063a1c126cDd",
24472
- deployer: "0x8202D2D747784Cb7D48868E44C42C4bf162a70BC",
24473
- pepper: "devnet",
24474
- version: {
24475
- major: 0,
24476
- minor: 1,
24477
- patch: 25,
24478
- shortSalt: "986372984"
24479
- },
24480
- salt: "0x8202d2d747784cb7d48868e44c42c4bf162a70bc0049a1295d7ede1f6ae76978",
24481
- decryptSigner: "0x2581773F31B13CeEd15413975089768EEA74dCE2",
24482
- eciesPublicKey: "0x000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000babe",
24483
- chainId: "31337",
24484
- blockNumber: "5",
24485
- chainName: "Foundry",
24486
- active: true,
24487
- deployDate: "2025-04-21T20:48:53.167Z",
24488
- commit: "v3-24-g20f55870-dirty",
24489
- sessionVerifierAddress: "0x359D300756aBf9dF80A4865399D5B3Ed29c7AE8B",
24490
- addTwoAddress: "0x723c2be5E61e7bBec4684DEfEaE63656ad3eaa10"
24491
- },
24492
- {
24493
- name: "incoLightning_0_1_25__986372984",
24494
- executorAddress: "0xc3c81F7Bf86Af7ed3a5f5Bb1924A063a1c126cDd",
22498
+ name: "incoLightning_0_1_26__18043964",
22499
+ executorAddress: "0x69Ef6a59f9eE2d6f3b49eA3F79bcF1553512DF0e",
24495
22500
  deployer: "0x8202D2D747784Cb7D48868E44C42C4bf162a70BC",
24496
- pepper: "devnet",
22501
+ pepper: "testnet",
24497
22502
  version: {
24498
22503
  major: 0,
24499
22504
  minor: 1,
24500
- patch: 25,
24501
- shortSalt: "986372984"
22505
+ patch: 26,
22506
+ shortSalt: "18043964"
24502
22507
  },
24503
- salt: "0x8202d2d747784cb7d48868e44c42c4bf162a70bc0049a1295d7ede1f6ae76978",
22508
+ salt: "0x8202d2d747784cb7d48868e44c42c4bf162a70bc00858064cb0f58c7ef7a843c",
24504
22509
  decryptSigner: "0x000000000000000000000000000000000000baBe",
24505
22510
  eciesPublicKey: "0x000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000babe",
24506
22511
  chainId: "7311099111",
24507
22512
  blockNumber: "1",
24508
22513
  chainName: "Inco Release Chain",
24509
22514
  active: true,
24510
- deployDate: "2025-04-21T20:48:48.403Z",
24511
- commit: "v3-24-g20f55870-dirty",
24512
- sessionVerifierAddress: "0x359D300756aBf9dF80A4865399D5B3Ed29c7AE8B",
22515
+ deployDate: "2025-04-22T12:14:50.447Z",
22516
+ commit: "v3-26-g623cec72-dirty",
22517
+ sessionVerifierAddress: "0x0F508B0Fb940595046AB0eceB7A4C8b3e20Cb674",
24513
22518
  addTwoAddress: "0x70fC34B18B12E945cb2204FA77E5f8e1581890C3"
24514
22519
  },
24515
22520
  {
24516
- name: "incoLightning_0_1_25__986372984",
24517
- executorAddress: "0xc3c81F7Bf86Af7ed3a5f5Bb1924A063a1c126cDd",
22521
+ name: "incoLightning_0_1_26__18043964",
22522
+ executorAddress: "0x69Ef6a59f9eE2d6f3b49eA3F79bcF1553512DF0e",
24518
22523
  deployer: "0x8202D2D747784Cb7D48868E44C42C4bf162a70BC",
24519
- pepper: "devnet",
22524
+ pepper: "testnet",
24520
22525
  version: {
24521
22526
  major: 0,
24522
22527
  minor: 1,
24523
- patch: 25,
24524
- shortSalt: "986372984"
22528
+ patch: 26,
22529
+ shortSalt: "18043964"
24525
22530
  },
24526
- salt: "0x8202d2d747784cb7d48868e44c42c4bf162a70bc0049a1295d7ede1f6ae76978",
22531
+ salt: "0x8202d2d747784cb7d48868e44c42c4bf162a70bc00858064cb0f58c7ef7a843c",
24527
22532
  decryptSigner: "0xA8822DE8910f66D3d03F1eAfe2C0141dBc327Ee0",
24528
22533
  eciesPublicKey: "0x048a582d29083c2f3fefe024bf4dd9ab913ab8973716977da5f01106e0b84095b1e647a9e377175fcb66bda05087c93b05e1fd53a704d0914bb23a0b2a69e9f235",
24529
22534
  chainId: "10143",
24530
- blockNumber: "13334835",
22535
+ blockNumber: "13439069",
24531
22536
  chainName: "Monad Testnet",
24532
22537
  active: true,
24533
- deployDate: "2025-04-21T20:48:40.573Z",
24534
- commit: "v3-24-g20f55870-dirty",
24535
- sessionVerifierAddress: "0x359D300756aBf9dF80A4865399D5B3Ed29c7AE8B",
24536
- addTwoAddress: "0x4728b934D6ee821449d65b5aBBa9e41d274ef1B9"
22538
+ deployDate: "2025-04-22T12:14:42.391Z",
22539
+ commit: "v3-26-g623cec72-dirty",
22540
+ sessionVerifierAddress: "0x0F508B0Fb940595046AB0eceB7A4C8b3e20Cb674",
22541
+ addTwoAddress: "0x4A49112FB866F6d5D05845D264b430cD3bbAb9f6"
24537
22542
  },
24538
22543
  {
24539
- name: "incoLightning_0_1_25__986372984",
24540
- executorAddress: "0xc3c81F7Bf86Af7ed3a5f5Bb1924A063a1c126cDd",
22544
+ name: "incoLightning_0_1_26__18043964",
22545
+ executorAddress: "0x69Ef6a59f9eE2d6f3b49eA3F79bcF1553512DF0e",
24541
22546
  deployer: "0x8202D2D747784Cb7D48868E44C42C4bf162a70BC",
24542
- pepper: "devnet",
22547
+ pepper: "testnet",
24543
22548
  version: {
24544
22549
  major: 0,
24545
22550
  minor: 1,
24546
- patch: 25,
24547
- shortSalt: "986372984"
22551
+ patch: 26,
22552
+ shortSalt: "18043964"
24548
22553
  },
24549
- salt: "0x8202d2d747784cb7d48868e44c42c4bf162a70bc0049a1295d7ede1f6ae76978",
22554
+ salt: "0x8202d2d747784cb7d48868e44c42c4bf162a70bc00858064cb0f58c7ef7a843c",
24550
22555
  decryptSigner: "0xA8822DE8910f66D3d03F1eAfe2C0141dBc327Ee0",
24551
22556
  eciesPublicKey: "0x048a582d29083c2f3fefe024bf4dd9ab913ab8973716977da5f01106e0b84095b1e647a9e377175fcb66bda05087c93b05e1fd53a704d0914bb23a0b2a69e9f235",
24552
22557
  chainId: "84532",
24553
- blockNumber: "24750079",
22558
+ blockNumber: "24777885",
24554
22559
  chainName: "Base Sepolia",
24555
22560
  active: true,
24556
- deployDate: "2025-04-21T20:47:33.893Z",
24557
- commit: "v3-24-g20f55870-dirty",
24558
- sessionVerifierAddress: "0x359D300756aBf9dF80A4865399D5B3Ed29c7AE8B",
24559
- addTwoAddress: "0x934338c79f7c5aC024D82a7FeDCeab3655B1f462"
24560
- },
24561
- {
24562
- name: "incoLightning_0_1_24__266705097",
24563
- executorAddress: "0x533Ee5a3cC09DD08Ac1a53F24642fECb88EaFBca",
24564
- deployer: "0x8202D2D747784Cb7D48868E44C42C4bf162a70BC",
24565
- pepper: "devnet",
24566
- version: {
24567
- major: 0,
24568
- minor: 1,
24569
- patch: 24,
24570
- shortSalt: "266705097"
24571
- },
24572
- salt: "0x8202d2d747784cb7d48868e44c42c4bf162a70bc00d3722970b402050333d4c9",
24573
- decryptSigner: "0x5437Fc296B2aC57dD321196A58F4A8Db8bF2a335",
24574
- eciesPublicKey: "0x000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000babe",
24575
- chainId: "31337",
24576
- blockNumber: "5",
24577
- chainName: "Foundry",
24578
- active: true,
24579
- deployDate: "2025-04-21T20:43:27.984Z",
24580
- commit: "v3-24-g20f55870-dirty",
24581
- sessionVerifierAddress: "0xC81bfB1fF4FC6bE913d97928Fa776F80F637c54c",
24582
- addTwoAddress: "0x723c2be5E61e7bBec4684DEfEaE63656ad3eaa10"
22561
+ deployDate: "2025-04-22T12:14:25.354Z",
22562
+ commit: "v3-26-g623cec72-dirty",
22563
+ sessionVerifierAddress: "0x0F508B0Fb940595046AB0eceB7A4C8b3e20Cb674",
22564
+ addTwoAddress: "0x2b5E34844997681168049783D30CD84B5962cb50"
24583
22565
  },
24584
22566
  {
24585
- name: "incoLightning_0_1_24__266705097",
24586
- executorAddress: "0x533Ee5a3cC09DD08Ac1a53F24642fECb88EaFBca",
22567
+ name: "incoLightning_0_1_26__444235330",
22568
+ executorAddress: "0xdc8eD938ff2eB900bD5f86A88555a9f1956994fC",
24587
22569
  deployer: "0x8202D2D747784Cb7D48868E44C42C4bf162a70BC",
24588
22570
  pepper: "devnet",
24589
22571
  version: {
24590
22572
  major: 0,
24591
22573
  minor: 1,
24592
- patch: 24,
24593
- shortSalt: "266705097"
22574
+ patch: 26,
22575
+ shortSalt: "444235330"
24594
22576
  },
24595
- salt: "0x8202d2d747784cb7d48868e44c42c4bf162a70bc00d3722970b402050333d4c9",
22577
+ salt: "0x8202d2d747784cb7d48868e44c42c4bf162a70bc001bab4c5927c52fbea0d042",
24596
22578
  decryptSigner: "0x000000000000000000000000000000000000baBe",
24597
22579
  eciesPublicKey: "0x000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000babe",
24598
22580
  chainId: "7311099111",
24599
22581
  blockNumber: "1",
24600
22582
  chainName: "Inco Release Chain",
24601
22583
  active: true,
24602
- deployDate: "2025-04-21T20:43:21.788Z",
24603
- commit: "v3-24-g20f55870-dirty",
24604
- sessionVerifierAddress: "0xC81bfB1fF4FC6bE913d97928Fa776F80F637c54c",
22584
+ deployDate: "2025-04-22T09:11:15.398Z",
22585
+ commit: "v3-24-gc9716e6c-dirty",
22586
+ sessionVerifierAddress: "0x3D4eB5f90E6d996c2b45b0BEb4110b5be98e243F",
24605
22587
  addTwoAddress: "0x70fC34B18B12E945cb2204FA77E5f8e1581890C3"
24606
22588
  },
24607
22589
  {
24608
- name: "incoLightning_0_1_23__830342853",
24609
- executorAddress: "0xF167b01eeE3eB16809D115a3476073121ACbA67C",
24610
- deployer: "0x8202D2D747784Cb7D48868E44C42C4bf162a70BC",
24611
- pepper: "",
24612
- version: {
24613
- major: 0,
24614
- minor: 1,
24615
- patch: 23,
24616
- shortSalt: "830342853"
24617
- },
24618
- salt: "0x8202d2d747784cb7d48868e44c42c4bf162a70bc00ae982ce1d0aa3cd80660c5",
24619
- decryptSigner: "0x000000000000000000000000000000000000baBe",
24620
- eciesPublicKey: "0x000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000babe",
24621
- chainId: "31337",
24622
- blockNumber: "0",
24623
- chainName: "Foundry",
24624
- active: true,
24625
- deployDate: "2025-04-21T15:51:33.222Z",
24626
- commit: "v3-23-g2694ffde-dirty",
24627
- sessionVerifierAddress: "0xe9d19e6680F15498B5963E7808048D644db2575b",
24628
- addTwoAddress: "0x723c2be5E61e7bBec4684DEfEaE63656ad3eaa10"
24629
- },
24630
- {
24631
- name: "incoLightning_0_1_23__830342853",
24632
- executorAddress: "0xF167b01eeE3eB16809D115a3476073121ACbA67C",
24633
- deployer: "0x8202D2D747784Cb7D48868E44C42C4bf162a70BC",
24634
- pepper: "",
24635
- version: {
24636
- major: 0,
24637
- minor: 1,
24638
- patch: 23,
24639
- shortSalt: "830342853"
24640
- },
24641
- salt: "0x8202d2d747784cb7d48868e44c42c4bf162a70bc00ae982ce1d0aa3cd80660c5",
24642
- decryptSigner: "0x000000000000000000000000000000000000baBe",
24643
- eciesPublicKey: "0x000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000babe",
24644
- chainId: "7311099111",
24645
- blockNumber: "1",
24646
- chainName: "Inco Release Chain",
24647
- active: true,
24648
- deployDate: "2025-04-21T15:51:26.472Z",
24649
- commit: "v3-23-g2694ffde-dirty",
24650
- sessionVerifierAddress: "0xe9d19e6680F15498B5963E7808048D644db2575b",
24651
- addTwoAddress: "0x70fC34B18B12E945cb2204FA77E5f8e1581890C3"
24652
- },
24653
- {
24654
- name: "incoLightning_0_1_23__547622051",
24655
- executorAddress: "0x022c0878EE7D09D385b0B97e6A6539FF2CaF31e6",
22590
+ name: "incoLightning_0_1_26__444235330",
22591
+ executorAddress: "0xdc8eD938ff2eB900bD5f86A88555a9f1956994fC",
24656
22592
  deployer: "0x8202D2D747784Cb7D48868E44C42C4bf162a70BC",
24657
22593
  pepper: "devnet",
24658
22594
  version: {
24659
22595
  major: 0,
24660
22596
  minor: 1,
24661
- patch: 23,
24662
- shortSalt: "547622051"
22597
+ patch: 26,
22598
+ shortSalt: "444235330"
24663
22599
  },
24664
- salt: "0x8202d2d747784cb7d48868e44c42c4bf162a70bc00a51354000c92f7911c34a3",
24665
- decryptSigner: "0x000000000000000000000000000000000000baBe",
24666
- eciesPublicKey: "0x000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000babe",
24667
- chainId: "7311099111",
24668
- blockNumber: "1",
24669
- chainName: "Inco Release Chain",
22600
+ salt: "0x8202d2d747784cb7d48868e44c42c4bf162a70bc001bab4c5927c52fbea0d042",
22601
+ decryptSigner: "0xA8822DE8910f66D3d03F1eAfe2C0141dBc327Ee0",
22602
+ eciesPublicKey: "0x048a582d29083c2f3fefe024bf4dd9ab913ab8973716977da5f01106e0b84095b1e647a9e377175fcb66bda05087c93b05e1fd53a704d0914bb23a0b2a69e9f235",
22603
+ chainId: "10143",
22604
+ blockNumber: "13418528",
22605
+ chainName: "Monad Testnet",
24670
22606
  active: true,
24671
- deployDate: "2025-04-21T20:42:37.381Z",
24672
- commit: "v3-24-g20f55870-dirty",
24673
- sessionVerifierAddress: "0xC81bfB1fF4FC6bE913d97928Fa776F80F637c54c",
24674
- addTwoAddress: "0x70fC34B18B12E945cb2204FA77E5f8e1581890C3"
22607
+ deployDate: "2025-04-22T09:11:06.223Z",
22608
+ commit: "v3-24-gc9716e6c-dirty",
22609
+ sessionVerifierAddress: "0x3D4eB5f90E6d996c2b45b0BEb4110b5be98e243F",
22610
+ addTwoAddress: "0xfeE9C1E41b2268a4ad8EaDA35f510b8d89Cd041c"
24675
22611
  },
24676
22612
  {
24677
- name: "incoLightning_0_1_23__547622051",
24678
- executorAddress: "0x022c0878EE7D09D385b0B97e6A6539FF2CaF31e6",
22613
+ name: "incoLightning_0_1_26__444235330",
22614
+ executorAddress: "0xdc8eD938ff2eB900bD5f86A88555a9f1956994fC",
24679
22615
  deployer: "0x8202D2D747784Cb7D48868E44C42C4bf162a70BC",
24680
22616
  pepper: "devnet",
24681
22617
  version: {
24682
22618
  major: 0,
24683
22619
  minor: 1,
24684
- patch: 23,
24685
- shortSalt: "547622051"
22620
+ patch: 26,
22621
+ shortSalt: "444235330"
24686
22622
  },
24687
- salt: "0x8202d2d747784cb7d48868e44c42c4bf162a70bc00a51354000c92f7911c34a3",
24688
- decryptSigner: "0x000000000000000000000000000000000000baBe",
24689
- eciesPublicKey: "0x000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000babe",
22623
+ salt: "0x8202d2d747784cb7d48868e44c42c4bf162a70bc001bab4c5927c52fbea0d042",
22624
+ decryptSigner: "0xA8822DE8910f66D3d03F1eAfe2C0141dBc327Ee0",
22625
+ eciesPublicKey: "0x048a582d29083c2f3fefe024bf4dd9ab913ab8973716977da5f01106e0b84095b1e647a9e377175fcb66bda05087c93b05e1fd53a704d0914bb23a0b2a69e9f235",
24690
22626
  chainId: "84532",
24691
- blockNumber: "24746162",
22627
+ blockNumber: "24772369",
24692
22628
  chainName: "Base Sepolia",
24693
22629
  active: true,
24694
- deployDate: "2025-04-21T18:36:58.672Z",
24695
- commit: "v3-24-g87309821-dirty",
24696
- sessionVerifierAddress: "0xC81bfB1fF4FC6bE913d97928Fa776F80F637c54c",
24697
- addTwoAddress: "0x5Bf736A106E32198566BE75D1f80e9a2E28698b1"
24698
- },
24699
- {
24700
- name: "incoLightning_0_1_23__547622051",
24701
- executorAddress: "0x022c0878EE7D09D385b0B97e6A6539FF2CaF31e6",
24702
- deployer: "0x8202D2D747784Cb7D48868E44C42C4bf162a70BC",
24703
- pepper: "devnet",
24704
- version: {
24705
- major: 0,
24706
- minor: 1,
24707
- patch: 23,
24708
- shortSalt: "547622051"
24709
- },
24710
- salt: "0x8202d2d747784cb7d48868e44c42c4bf162a70bc00a51354000c92f7911c34a3",
24711
- decryptSigner: "0xbff4525eeb0C96f67f2AeB8a1eF3cF53f7996742",
24712
- eciesPublicKey: "0x000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000babe",
24713
- chainId: "31337",
24714
- blockNumber: "5",
24715
- chainName: "Foundry",
24716
- active: true,
24717
- deployDate: "2025-04-21T18:36:33.385Z",
24718
- commit: "v3-24-g87309821-dirty",
24719
- sessionVerifierAddress: "0xC81bfB1fF4FC6bE913d97928Fa776F80F637c54c",
24720
- addTwoAddress: "0x723c2be5E61e7bBec4684DEfEaE63656ad3eaa10"
22630
+ deployDate: "2025-04-22T09:10:33.275Z",
22631
+ commit: "v3-24-gc9716e6c-dirty",
22632
+ sessionVerifierAddress: "0x3D4eB5f90E6d996c2b45b0BEb4110b5be98e243F",
22633
+ addTwoAddress: "0xeEa387f7c866A81c2AF532D9ed48c60F179C9827"
24721
22634
  }
24722
22635
  ];
24723
22636
 
24724
22637
  // src/lite/deployments.ts
24725
- function getActiveIncoLiteDeployment(chain) {
22638
+ function getActiveLightningDeployment(chain) {
24726
22639
  const supportedChain = getSupportedChain(chain);
24727
22640
  const deployments = lightningDeployments.filter((d) => d.chainId === String(supportedChain.id));
24728
22641
  if (!deployments?.length) {
@@ -24730,7 +22643,7 @@ function getActiveIncoLiteDeployment(chain) {
24730
22643
  }
24731
22644
  return deployments[0];
24732
22645
  }
24733
- function getIncoLiteDeployments(chainId) {
22646
+ function getLightningDeployments(chainId) {
24734
22647
  const supportedChain = getSupportedChain(chainId);
24735
22648
  const deployments = lightningDeployments.filter((d) => d.chainId === String(supportedChain.id));
24736
22649
  return deployments ?? [];
@@ -24784,7 +22697,7 @@ function createEIP712Payload({
24784
22697
  }
24785
22698
  }
24786
22699
  if (!domainVersion) {
24787
- const incoLite = getActiveIncoLiteDeployment(chainId);
22700
+ const incoLite = getActiveLightningDeployment(chainId);
24788
22701
  domainVersion = `${incoLite.version.major}_${incoLite.version.minor}_${incoLite.version.patch}`;
24789
22702
  }
24790
22703
  const msgParams = {