@zoralabs/protocol-deployments 0.1.11 → 0.1.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.cjs CHANGED
@@ -113,7 +113,7 @@ var init_exports = __esm({
113
113
  }
114
114
  });
115
115
 
116
- // node_modules/viem/_esm/utils/abi/formatAbiItem.js
116
+ // ../../node_modules/viem/_esm/utils/abi/formatAbiItem.js
117
117
  function formatAbiItem2(abiItem, { includeName = false } = {}) {
118
118
  if (abiItem.type !== "function" && abiItem.type !== "event" && abiItem.type !== "error")
119
119
  throw new InvalidDefinitionTypeError(abiItem.type);
@@ -131,13 +131,13 @@ function formatAbiParam(param, { includeName }) {
131
131
  return param.type + (includeName && param.name ? ` ${param.name}` : "");
132
132
  }
133
133
  var init_formatAbiItem2 = __esm({
134
- "node_modules/viem/_esm/utils/abi/formatAbiItem.js"() {
134
+ "../../node_modules/viem/_esm/utils/abi/formatAbiItem.js"() {
135
135
  "use strict";
136
136
  init_abi();
137
137
  }
138
138
  });
139
139
 
140
- // node_modules/viem/_esm/utils/data/isHex.js
140
+ // ../../node_modules/viem/_esm/utils/data/isHex.js
141
141
  function isHex(value, { strict = true } = {}) {
142
142
  if (!value)
143
143
  return false;
@@ -146,44 +146,44 @@ function isHex(value, { strict = true } = {}) {
146
146
  return strict ? /^0x[0-9a-fA-F]*$/.test(value) : value.startsWith("0x");
147
147
  }
148
148
  var init_isHex = __esm({
149
- "node_modules/viem/_esm/utils/data/isHex.js"() {
149
+ "../../node_modules/viem/_esm/utils/data/isHex.js"() {
150
150
  "use strict";
151
151
  }
152
152
  });
153
153
 
154
- // node_modules/viem/_esm/utils/data/size.js
154
+ // ../../node_modules/viem/_esm/utils/data/size.js
155
155
  function size(value) {
156
156
  if (isHex(value, { strict: false }))
157
157
  return Math.ceil((value.length - 2) / 2);
158
158
  return value.length;
159
159
  }
160
160
  var init_size = __esm({
161
- "node_modules/viem/_esm/utils/data/size.js"() {
161
+ "../../node_modules/viem/_esm/utils/data/size.js"() {
162
162
  "use strict";
163
163
  init_isHex();
164
164
  }
165
165
  });
166
166
 
167
- // node_modules/viem/_esm/errors/version.js
167
+ // ../../node_modules/viem/_esm/errors/version.js
168
168
  var version;
169
169
  var init_version = __esm({
170
- "node_modules/viem/_esm/errors/version.js"() {
170
+ "../../node_modules/viem/_esm/errors/version.js"() {
171
171
  "use strict";
172
- version = "2.9.18";
172
+ version = "2.12.1";
173
173
  }
174
174
  });
175
175
 
176
- // node_modules/viem/_esm/errors/utils.js
176
+ // ../../node_modules/viem/_esm/errors/utils.js
177
177
  var getVersion;
178
178
  var init_utils = __esm({
179
- "node_modules/viem/_esm/errors/utils.js"() {
179
+ "../../node_modules/viem/_esm/errors/utils.js"() {
180
180
  "use strict";
181
181
  init_version();
182
182
  getVersion = () => `viem@${version}`;
183
183
  }
184
184
  });
185
185
 
186
- // node_modules/viem/_esm/errors/base.js
186
+ // ../../node_modules/viem/_esm/errors/base.js
187
187
  function walk(err, fn) {
188
188
  if (fn?.(err))
189
189
  return err;
@@ -193,7 +193,7 @@ function walk(err, fn) {
193
193
  }
194
194
  var BaseError;
195
195
  var init_base = __esm({
196
- "node_modules/viem/_esm/errors/base.js"() {
196
+ "../../node_modules/viem/_esm/errors/base.js"() {
197
197
  "use strict";
198
198
  init_utils();
199
199
  BaseError = class _BaseError extends Error {
@@ -261,10 +261,10 @@ var init_base = __esm({
261
261
  }
262
262
  });
263
263
 
264
- // node_modules/viem/_esm/errors/abi.js
264
+ // ../../node_modules/viem/_esm/errors/abi.js
265
265
  var AbiEncodingArrayLengthMismatchError, AbiEncodingBytesSizeMismatchError, AbiEncodingLengthMismatchError, AbiItemAmbiguityError, InvalidAbiEncodingTypeError, InvalidArrayError, InvalidDefinitionTypeError;
266
266
  var init_abi = __esm({
267
- "node_modules/viem/_esm/errors/abi.js"() {
267
+ "../../node_modules/viem/_esm/errors/abi.js"() {
268
268
  "use strict";
269
269
  init_formatAbiItem2();
270
270
  init_size();
@@ -371,10 +371,10 @@ var init_abi = __esm({
371
371
  }
372
372
  });
373
373
 
374
- // node_modules/viem/_esm/errors/data.js
374
+ // ../../node_modules/viem/_esm/errors/data.js
375
375
  var SliceOffsetOutOfBoundsError, SizeExceedsPaddingSizeError;
376
376
  var init_data = __esm({
377
- "node_modules/viem/_esm/errors/data.js"() {
377
+ "../../node_modules/viem/_esm/errors/data.js"() {
378
378
  "use strict";
379
379
  init_base();
380
380
  SliceOffsetOutOfBoundsError = class extends BaseError {
@@ -402,7 +402,7 @@ var init_data = __esm({
402
402
  }
403
403
  });
404
404
 
405
- // node_modules/viem/_esm/utils/data/pad.js
405
+ // ../../node_modules/viem/_esm/utils/data/pad.js
406
406
  function pad(hexOrBytes, { dir, size: size2 = 32 } = {}) {
407
407
  if (typeof hexOrBytes === "string")
408
408
  return padHex(hexOrBytes, { dir, size: size2 });
@@ -437,16 +437,16 @@ function padBytes(bytes2, { dir, size: size2 = 32 } = {}) {
437
437
  return paddedBytes;
438
438
  }
439
439
  var init_pad = __esm({
440
- "node_modules/viem/_esm/utils/data/pad.js"() {
440
+ "../../node_modules/viem/_esm/utils/data/pad.js"() {
441
441
  "use strict";
442
442
  init_data();
443
443
  }
444
444
  });
445
445
 
446
- // node_modules/viem/_esm/errors/encoding.js
446
+ // ../../node_modules/viem/_esm/errors/encoding.js
447
447
  var IntegerOutOfRangeError, SizeOverflowError;
448
448
  var init_encoding = __esm({
449
- "node_modules/viem/_esm/errors/encoding.js"() {
449
+ "../../node_modules/viem/_esm/errors/encoding.js"() {
450
450
  "use strict";
451
451
  init_base();
452
452
  IntegerOutOfRangeError = class extends BaseError {
@@ -474,7 +474,7 @@ var init_encoding = __esm({
474
474
  }
475
475
  });
476
476
 
477
- // node_modules/viem/_esm/utils/encoding/fromHex.js
477
+ // ../../node_modules/viem/_esm/utils/encoding/fromHex.js
478
478
  function assertSize(hexOrBytes, { size: size2 }) {
479
479
  if (size(hexOrBytes) > size2)
480
480
  throw new SizeOverflowError({
@@ -483,14 +483,14 @@ function assertSize(hexOrBytes, { size: size2 }) {
483
483
  });
484
484
  }
485
485
  var init_fromHex = __esm({
486
- "node_modules/viem/_esm/utils/encoding/fromHex.js"() {
486
+ "../../node_modules/viem/_esm/utils/encoding/fromHex.js"() {
487
487
  "use strict";
488
488
  init_encoding();
489
489
  init_size();
490
490
  }
491
491
  });
492
492
 
493
- // node_modules/viem/_esm/utils/encoding/toHex.js
493
+ // ../../node_modules/viem/_esm/utils/encoding/toHex.js
494
494
  function toHex(value, opts = {}) {
495
495
  if (typeof value === "number" || typeof value === "bigint")
496
496
  return numberToHex(value, opts);
@@ -555,7 +555,7 @@ function stringToHex(value_, opts = {}) {
555
555
  }
556
556
  var hexes, encoder;
557
557
  var init_toHex = __esm({
558
- "node_modules/viem/_esm/utils/encoding/toHex.js"() {
558
+ "../../node_modules/viem/_esm/utils/encoding/toHex.js"() {
559
559
  "use strict";
560
560
  init_encoding();
561
561
  init_pad();
@@ -565,7 +565,7 @@ var init_toHex = __esm({
565
565
  }
566
566
  });
567
567
 
568
- // node_modules/viem/_esm/utils/encoding/toBytes.js
568
+ // ../../node_modules/viem/_esm/utils/encoding/toBytes.js
569
569
  function toBytes(value, opts = {}) {
570
570
  if (typeof value === "number" || typeof value === "bigint")
571
571
  return numberToBytes(value, opts);
@@ -628,7 +628,7 @@ function stringToBytes(value, opts = {}) {
628
628
  }
629
629
  var encoder2, charCodeMap;
630
630
  var init_toBytes = __esm({
631
- "node_modules/viem/_esm/utils/encoding/toBytes.js"() {
631
+ "../../node_modules/viem/_esm/utils/encoding/toBytes.js"() {
632
632
  "use strict";
633
633
  init_base();
634
634
  init_isHex();
@@ -942,7 +942,7 @@ var init_sha3 = __esm({
942
942
  }
943
943
  });
944
944
 
945
- // node_modules/viem/_esm/utils/hash/keccak256.js
945
+ // ../../node_modules/viem/_esm/utils/hash/keccak256.js
946
946
  function keccak256(value, to_) {
947
947
  const to = to_ || "hex";
948
948
  const bytes2 = keccak_256(isHex(value, { strict: false }) ? toBytes(value) : value);
@@ -951,7 +951,7 @@ function keccak256(value, to_) {
951
951
  return toHex(bytes2);
952
952
  }
953
953
  var init_keccak256 = __esm({
954
- "node_modules/viem/_esm/utils/hash/keccak256.js"() {
954
+ "../../node_modules/viem/_esm/utils/hash/keccak256.js"() {
955
955
  "use strict";
956
956
  init_sha3();
957
957
  init_isHex();
@@ -960,13 +960,13 @@ var init_keccak256 = __esm({
960
960
  }
961
961
  });
962
962
 
963
- // node_modules/viem/_esm/utils/hash/hashSignature.js
963
+ // ../../node_modules/viem/_esm/utils/hash/hashSignature.js
964
964
  function hashSignature(sig) {
965
965
  return hash(sig);
966
966
  }
967
967
  var hash;
968
968
  var init_hashSignature = __esm({
969
- "node_modules/viem/_esm/utils/hash/hashSignature.js"() {
969
+ "../../node_modules/viem/_esm/utils/hash/hashSignature.js"() {
970
970
  "use strict";
971
971
  init_toBytes();
972
972
  init_keccak256();
@@ -974,7 +974,7 @@ var init_hashSignature = __esm({
974
974
  }
975
975
  });
976
976
 
977
- // node_modules/viem/_esm/utils/hash/normalizeSignature.js
977
+ // ../../node_modules/viem/_esm/utils/hash/normalizeSignature.js
978
978
  function normalizeSignature(signature) {
979
979
  let active = true;
980
980
  let current = "";
@@ -1018,16 +1018,16 @@ function normalizeSignature(signature) {
1018
1018
  return result;
1019
1019
  }
1020
1020
  var init_normalizeSignature = __esm({
1021
- "node_modules/viem/_esm/utils/hash/normalizeSignature.js"() {
1021
+ "../../node_modules/viem/_esm/utils/hash/normalizeSignature.js"() {
1022
1022
  "use strict";
1023
1023
  init_base();
1024
1024
  }
1025
1025
  });
1026
1026
 
1027
- // node_modules/viem/_esm/utils/hash/toSignature.js
1027
+ // ../../node_modules/viem/_esm/utils/hash/toSignature.js
1028
1028
  var toSignature;
1029
1029
  var init_toSignature = __esm({
1030
- "node_modules/viem/_esm/utils/hash/toSignature.js"() {
1030
+ "../../node_modules/viem/_esm/utils/hash/toSignature.js"() {
1031
1031
  "use strict";
1032
1032
  init_exports();
1033
1033
  init_normalizeSignature();
@@ -1042,32 +1042,32 @@ var init_toSignature = __esm({
1042
1042
  }
1043
1043
  });
1044
1044
 
1045
- // node_modules/viem/_esm/utils/hash/toSignatureHash.js
1045
+ // ../../node_modules/viem/_esm/utils/hash/toSignatureHash.js
1046
1046
  function toSignatureHash(fn) {
1047
1047
  return hashSignature(toSignature(fn));
1048
1048
  }
1049
1049
  var init_toSignatureHash = __esm({
1050
- "node_modules/viem/_esm/utils/hash/toSignatureHash.js"() {
1050
+ "../../node_modules/viem/_esm/utils/hash/toSignatureHash.js"() {
1051
1051
  "use strict";
1052
1052
  init_hashSignature();
1053
1053
  init_toSignature();
1054
1054
  }
1055
1055
  });
1056
1056
 
1057
- // node_modules/viem/_esm/utils/hash/toEventSelector.js
1057
+ // ../../node_modules/viem/_esm/utils/hash/toEventSelector.js
1058
1058
  var toEventSelector;
1059
1059
  var init_toEventSelector = __esm({
1060
- "node_modules/viem/_esm/utils/hash/toEventSelector.js"() {
1060
+ "../../node_modules/viem/_esm/utils/hash/toEventSelector.js"() {
1061
1061
  "use strict";
1062
1062
  init_toSignatureHash();
1063
1063
  toEventSelector = toSignatureHash;
1064
1064
  }
1065
1065
  });
1066
1066
 
1067
- // node_modules/viem/_esm/errors/address.js
1067
+ // ../../node_modules/viem/_esm/errors/address.js
1068
1068
  var InvalidAddressError;
1069
1069
  var init_address = __esm({
1070
- "node_modules/viem/_esm/errors/address.js"() {
1070
+ "../../node_modules/viem/_esm/errors/address.js"() {
1071
1071
  "use strict";
1072
1072
  init_base();
1073
1073
  InvalidAddressError = class extends BaseError {
@@ -1089,10 +1089,10 @@ var init_address = __esm({
1089
1089
  }
1090
1090
  });
1091
1091
 
1092
- // node_modules/viem/_esm/utils/lru.js
1092
+ // ../../node_modules/viem/_esm/utils/lru.js
1093
1093
  var LruMap;
1094
1094
  var init_lru = __esm({
1095
- "node_modules/viem/_esm/utils/lru.js"() {
1095
+ "../../node_modules/viem/_esm/utils/lru.js"() {
1096
1096
  "use strict";
1097
1097
  LruMap = class extends Map {
1098
1098
  constructor(size2) {
@@ -1115,8 +1115,10 @@ var init_lru = __esm({
1115
1115
  }
1116
1116
  });
1117
1117
 
1118
- // node_modules/viem/_esm/utils/address/getAddress.js
1118
+ // ../../node_modules/viem/_esm/utils/address/getAddress.js
1119
1119
  function checksumAddress(address_, chainId) {
1120
+ if (checksumAddressCache.has(`${address_}.${chainId}`))
1121
+ return checksumAddressCache.get(`${address_}.${chainId}`);
1120
1122
  const hexAddress = chainId ? `${chainId}${address_.toLowerCase()}` : address_.substring(2).toLowerCase();
1121
1123
  const hash2 = keccak256(stringToBytes(hexAddress), "bytes");
1122
1124
  const address = (chainId ? hexAddress.substring(`${chainId}0x`.length) : hexAddress).split("");
@@ -1128,21 +1130,27 @@ function checksumAddress(address_, chainId) {
1128
1130
  address[i + 1] = address[i + 1].toUpperCase();
1129
1131
  }
1130
1132
  }
1131
- return `0x${address.join("")}`;
1133
+ const result = `0x${address.join("")}`;
1134
+ checksumAddressCache.set(`${address_}.${chainId}`, result);
1135
+ return result;
1132
1136
  }
1137
+ var checksumAddressCache;
1133
1138
  var init_getAddress = __esm({
1134
- "node_modules/viem/_esm/utils/address/getAddress.js"() {
1139
+ "../../node_modules/viem/_esm/utils/address/getAddress.js"() {
1135
1140
  "use strict";
1136
1141
  init_toBytes();
1137
1142
  init_keccak256();
1143
+ init_lru();
1144
+ checksumAddressCache = /* @__PURE__ */ new LruMap(8192);
1138
1145
  }
1139
1146
  });
1140
1147
 
1141
- // node_modules/viem/_esm/utils/address/isAddress.js
1148
+ // ../../node_modules/viem/_esm/utils/address/isAddress.js
1142
1149
  function isAddress(address, options) {
1143
1150
  const { strict = true } = options ?? {};
1144
- if (isAddressCache.has(address))
1145
- return isAddressCache.get(address);
1151
+ const cacheKey = `${address}.${strict}`;
1152
+ if (isAddressCache.has(cacheKey))
1153
+ return isAddressCache.get(cacheKey);
1146
1154
  const result = (() => {
1147
1155
  if (!addressRegex.test(address))
1148
1156
  return false;
@@ -1152,12 +1160,12 @@ function isAddress(address, options) {
1152
1160
  return checksumAddress(address) === address;
1153
1161
  return true;
1154
1162
  })();
1155
- isAddressCache.set(address, result);
1163
+ isAddressCache.set(cacheKey, result);
1156
1164
  return result;
1157
1165
  }
1158
1166
  var addressRegex, isAddressCache;
1159
1167
  var init_isAddress = __esm({
1160
- "node_modules/viem/_esm/utils/address/isAddress.js"() {
1168
+ "../../node_modules/viem/_esm/utils/address/isAddress.js"() {
1161
1169
  "use strict";
1162
1170
  init_lru();
1163
1171
  init_getAddress();
@@ -1166,7 +1174,7 @@ var init_isAddress = __esm({
1166
1174
  }
1167
1175
  });
1168
1176
 
1169
- // node_modules/viem/_esm/utils/data/concat.js
1177
+ // ../../node_modules/viem/_esm/utils/data/concat.js
1170
1178
  function concat(values) {
1171
1179
  if (typeof values[0] === "string")
1172
1180
  return concatHex(values);
@@ -1189,12 +1197,12 @@ function concatHex(values) {
1189
1197
  return `0x${values.reduce((acc, x) => acc + x.replace("0x", ""), "")}`;
1190
1198
  }
1191
1199
  var init_concat = __esm({
1192
- "node_modules/viem/_esm/utils/data/concat.js"() {
1200
+ "../../node_modules/viem/_esm/utils/data/concat.js"() {
1193
1201
  "use strict";
1194
1202
  }
1195
1203
  });
1196
1204
 
1197
- // node_modules/viem/_esm/utils/data/slice.js
1205
+ // ../../node_modules/viem/_esm/utils/data/slice.js
1198
1206
  function slice(value, start, end, { strict } = {}) {
1199
1207
  if (isHex(value, { strict: false }))
1200
1208
  return sliceHex(value, start, end, {
@@ -1236,7 +1244,7 @@ function sliceHex(value_, start, end, { strict } = {}) {
1236
1244
  return value;
1237
1245
  }
1238
1246
  var init_slice = __esm({
1239
- "node_modules/viem/_esm/utils/data/slice.js"() {
1247
+ "../../node_modules/viem/_esm/utils/data/slice.js"() {
1240
1248
  "use strict";
1241
1249
  init_data();
1242
1250
  init_isHex();
@@ -1244,7 +1252,7 @@ var init_slice = __esm({
1244
1252
  }
1245
1253
  });
1246
1254
 
1247
- // node_modules/viem/_esm/utils/abi/encodeAbiParameters.js
1255
+ // ../../node_modules/viem/_esm/utils/abi/encodeAbiParameters.js
1248
1256
  function encodeAbiParameters(params, values) {
1249
1257
  if (params.length !== values.length)
1250
1258
  throw new AbiEncodingLengthMismatchError({
@@ -1377,9 +1385,9 @@ function encodeBytes(value, { param }) {
1377
1385
  encoded: concat([padHex(numberToHex(bytesSize, { size: 32 })), value_])
1378
1386
  };
1379
1387
  }
1380
- if (bytesSize !== parseInt(paramSize))
1388
+ if (bytesSize !== Number.parseInt(paramSize))
1381
1389
  throw new AbiEncodingBytesSizeMismatchError({
1382
- expectedSize: parseInt(paramSize),
1390
+ expectedSize: Number.parseInt(paramSize),
1383
1391
  value
1384
1392
  });
1385
1393
  return { dynamic: false, encoded: padHex(value, { dir: "right" }) };
@@ -1442,7 +1450,7 @@ function getArrayComponents(type) {
1442
1450
  ) : void 0;
1443
1451
  }
1444
1452
  var init_encodeAbiParameters = __esm({
1445
- "node_modules/viem/_esm/utils/abi/encodeAbiParameters.js"() {
1453
+ "../../node_modules/viem/_esm/utils/abi/encodeAbiParameters.js"() {
1446
1454
  "use strict";
1447
1455
  init_abi();
1448
1456
  init_address();
@@ -1456,10 +1464,10 @@ var init_encodeAbiParameters = __esm({
1456
1464
  }
1457
1465
  });
1458
1466
 
1459
- // node_modules/viem/_esm/utils/hash/toFunctionSelector.js
1467
+ // ../../node_modules/viem/_esm/utils/hash/toFunctionSelector.js
1460
1468
  var toFunctionSelector;
1461
1469
  var init_toFunctionSelector = __esm({
1462
- "node_modules/viem/_esm/utils/hash/toFunctionSelector.js"() {
1470
+ "../../node_modules/viem/_esm/utils/hash/toFunctionSelector.js"() {
1463
1471
  "use strict";
1464
1472
  init_slice();
1465
1473
  init_toSignatureHash();
@@ -1467,7 +1475,7 @@ var init_toFunctionSelector = __esm({
1467
1475
  }
1468
1476
  });
1469
1477
 
1470
- // node_modules/viem/_esm/utils/abi/getAbiItem.js
1478
+ // ../../node_modules/viem/_esm/utils/abi/getAbiItem.js
1471
1479
  function getAbiItem(parameters) {
1472
1480
  const { abi, args = [], name } = parameters;
1473
1481
  const isSelector = isHex(name, { strict: false });
@@ -1579,7 +1587,7 @@ function getAmbiguousTypes(sourceParameters, targetParameters, args) {
1579
1587
  return;
1580
1588
  }
1581
1589
  var init_getAbiItem = __esm({
1582
- "node_modules/viem/_esm/utils/abi/getAbiItem.js"() {
1590
+ "../../node_modules/viem/_esm/utils/abi/getAbiItem.js"() {
1583
1591
  "use strict";
1584
1592
  init_abi();
1585
1593
  init_isHex();
@@ -1612,6 +1620,9 @@ __export(src_exports, {
1612
1620
  protocolRewardsABI: () => protocolRewardsABI,
1613
1621
  protocolRewardsAddress: () => protocolRewardsAddress,
1614
1622
  protocolRewardsConfig: () => protocolRewardsConfig,
1623
+ upgradeGateABI: () => upgradeGateABI,
1624
+ upgradeGateAddress: () => upgradeGateAddress,
1625
+ upgradeGateConfig: () => upgradeGateConfig,
1615
1626
  zoraCreator1155FactoryImplABI: () => zoraCreator1155FactoryImplABI,
1616
1627
  zoraCreator1155FactoryImplAddress: () => zoraCreator1155FactoryImplAddress,
1617
1628
  zoraCreator1155FactoryImplConfig: () => zoraCreator1155FactoryImplConfig,
@@ -2563,8 +2574,15 @@ var mintsEthUnwrapperAndCallerABI = [
2563
2574
  { type: "error", inputs: [], name: "UnknownUserAction" }
2564
2575
  ];
2565
2576
  var mintsEthUnwrapperAndCallerAddress = {
2577
+ 1: "0xb0994EB9520C98C97e1F3953a5964535C2bd271A",
2578
+ 10: "0xb0994EB9520C98C97e1F3953a5964535C2bd271A",
2579
+ 8453: "0xb0994EB9520C98C97e1F3953a5964535C2bd271A",
2580
+ 42161: "0xb0994EB9520C98C97e1F3953a5964535C2bd271A",
2581
+ 81457: "0xb0994EB9520C98C97e1F3953a5964535C2bd271A",
2566
2582
  84532: "0xb0994EB9520C98C97e1F3953a5964535C2bd271A",
2583
+ 421614: "0xb0994EB9520C98C97e1F3953a5964535C2bd271A",
2567
2584
  7777777: "0xb0994EB9520C98C97e1F3953a5964535C2bd271A",
2585
+ 11155111: "0xb0994EB9520C98C97e1F3953a5964535C2bd271A",
2568
2586
  999999999: "0xb0994EB9520C98C97e1F3953a5964535C2bd271A"
2569
2587
  };
2570
2588
  var mintsEthUnwrapperAndCallerConfig = {
@@ -2839,6 +2857,254 @@ var protocolRewardsConfig = {
2839
2857
  address: protocolRewardsAddress,
2840
2858
  abi: protocolRewardsABI
2841
2859
  };
2860
+ var upgradeGateABI = [
2861
+ { stateMutability: "nonpayable", type: "constructor", inputs: [] },
2862
+ {
2863
+ stateMutability: "nonpayable",
2864
+ type: "function",
2865
+ inputs: [],
2866
+ name: "acceptOwnership",
2867
+ outputs: []
2868
+ },
2869
+ {
2870
+ stateMutability: "nonpayable",
2871
+ type: "function",
2872
+ inputs: [],
2873
+ name: "cancelOwnershipTransfer",
2874
+ outputs: []
2875
+ },
2876
+ {
2877
+ stateMutability: "pure",
2878
+ type: "function",
2879
+ inputs: [],
2880
+ name: "contractName",
2881
+ outputs: [{ name: "", internalType: "string", type: "string" }]
2882
+ },
2883
+ {
2884
+ stateMutability: "pure",
2885
+ type: "function",
2886
+ inputs: [],
2887
+ name: "contractURI",
2888
+ outputs: [{ name: "", internalType: "string", type: "string" }]
2889
+ },
2890
+ {
2891
+ stateMutability: "nonpayable",
2892
+ type: "function",
2893
+ inputs: [
2894
+ { name: "_initialOwner", internalType: "address", type: "address" }
2895
+ ],
2896
+ name: "initialize",
2897
+ outputs: []
2898
+ },
2899
+ {
2900
+ stateMutability: "view",
2901
+ type: "function",
2902
+ inputs: [
2903
+ { name: "", internalType: "address", type: "address" },
2904
+ { name: "", internalType: "address", type: "address" }
2905
+ ],
2906
+ name: "isAllowedUpgrade",
2907
+ outputs: [{ name: "", internalType: "bool", type: "bool" }]
2908
+ },
2909
+ {
2910
+ stateMutability: "view",
2911
+ type: "function",
2912
+ inputs: [
2913
+ { name: "baseImpl", internalType: "address", type: "address" },
2914
+ { name: "upgradeImpl", internalType: "address", type: "address" }
2915
+ ],
2916
+ name: "isRegisteredUpgradePath",
2917
+ outputs: [{ name: "", internalType: "bool", type: "bool" }]
2918
+ },
2919
+ {
2920
+ stateMutability: "view",
2921
+ type: "function",
2922
+ inputs: [],
2923
+ name: "owner",
2924
+ outputs: [{ name: "", internalType: "address", type: "address" }]
2925
+ },
2926
+ {
2927
+ stateMutability: "view",
2928
+ type: "function",
2929
+ inputs: [],
2930
+ name: "pendingOwner",
2931
+ outputs: [{ name: "", internalType: "address", type: "address" }]
2932
+ },
2933
+ {
2934
+ stateMutability: "nonpayable",
2935
+ type: "function",
2936
+ inputs: [
2937
+ { name: "baseImpls", internalType: "address[]", type: "address[]" },
2938
+ { name: "upgradeImpl", internalType: "address", type: "address" }
2939
+ ],
2940
+ name: "registerUpgradePath",
2941
+ outputs: []
2942
+ },
2943
+ {
2944
+ stateMutability: "nonpayable",
2945
+ type: "function",
2946
+ inputs: [
2947
+ { name: "baseImpl", internalType: "address", type: "address" },
2948
+ { name: "upgradeImpl", internalType: "address", type: "address" }
2949
+ ],
2950
+ name: "removeUpgradePath",
2951
+ outputs: []
2952
+ },
2953
+ {
2954
+ stateMutability: "nonpayable",
2955
+ type: "function",
2956
+ inputs: [],
2957
+ name: "resignOwnership",
2958
+ outputs: []
2959
+ },
2960
+ {
2961
+ stateMutability: "nonpayable",
2962
+ type: "function",
2963
+ inputs: [{ name: "_newOwner", internalType: "address", type: "address" }],
2964
+ name: "safeTransferOwnership",
2965
+ outputs: []
2966
+ },
2967
+ {
2968
+ stateMutability: "nonpayable",
2969
+ type: "function",
2970
+ inputs: [{ name: "_newOwner", internalType: "address", type: "address" }],
2971
+ name: "transferOwnership",
2972
+ outputs: []
2973
+ },
2974
+ {
2975
+ type: "event",
2976
+ anonymous: false,
2977
+ inputs: [
2978
+ { name: "version", internalType: "uint8", type: "uint8", indexed: false }
2979
+ ],
2980
+ name: "Initialized"
2981
+ },
2982
+ {
2983
+ type: "event",
2984
+ anonymous: false,
2985
+ inputs: [
2986
+ {
2987
+ name: "owner",
2988
+ internalType: "address",
2989
+ type: "address",
2990
+ indexed: true
2991
+ },
2992
+ {
2993
+ name: "canceledOwner",
2994
+ internalType: "address",
2995
+ type: "address",
2996
+ indexed: true
2997
+ }
2998
+ ],
2999
+ name: "OwnerCanceled"
3000
+ },
3001
+ {
3002
+ type: "event",
3003
+ anonymous: false,
3004
+ inputs: [
3005
+ {
3006
+ name: "owner",
3007
+ internalType: "address",
3008
+ type: "address",
3009
+ indexed: true
3010
+ },
3011
+ {
3012
+ name: "pendingOwner",
3013
+ internalType: "address",
3014
+ type: "address",
3015
+ indexed: true
3016
+ }
3017
+ ],
3018
+ name: "OwnerPending"
3019
+ },
3020
+ {
3021
+ type: "event",
3022
+ anonymous: false,
3023
+ inputs: [
3024
+ {
3025
+ name: "prevOwner",
3026
+ internalType: "address",
3027
+ type: "address",
3028
+ indexed: true
3029
+ },
3030
+ {
3031
+ name: "newOwner",
3032
+ internalType: "address",
3033
+ type: "address",
3034
+ indexed: true
3035
+ }
3036
+ ],
3037
+ name: "OwnerUpdated"
3038
+ },
3039
+ { type: "event", anonymous: false, inputs: [], name: "UpgradeGateSetup" },
3040
+ {
3041
+ type: "event",
3042
+ anonymous: false,
3043
+ inputs: [
3044
+ {
3045
+ name: "baseImpl",
3046
+ internalType: "address",
3047
+ type: "address",
3048
+ indexed: true
3049
+ },
3050
+ {
3051
+ name: "upgradeImpl",
3052
+ internalType: "address",
3053
+ type: "address",
3054
+ indexed: true
3055
+ }
3056
+ ],
3057
+ name: "UpgradeRegistered"
3058
+ },
3059
+ {
3060
+ type: "event",
3061
+ anonymous: false,
3062
+ inputs: [
3063
+ {
3064
+ name: "baseImpl",
3065
+ internalType: "address",
3066
+ type: "address",
3067
+ indexed: true
3068
+ },
3069
+ {
3070
+ name: "upgradeImpl",
3071
+ internalType: "address",
3072
+ type: "address",
3073
+ indexed: true
3074
+ }
3075
+ ],
3076
+ name: "UpgradeRemoved"
3077
+ },
3078
+ {
3079
+ type: "error",
3080
+ inputs: [],
3081
+ name: "INITIALIZABLE_CONTRACT_ALREADY_INITIALIZED"
3082
+ },
3083
+ {
3084
+ type: "error",
3085
+ inputs: [],
3086
+ name: "INITIALIZABLE_CONTRACT_IS_NOT_INITIALIZING"
3087
+ },
3088
+ { type: "error", inputs: [], name: "ONLY_OWNER" },
3089
+ { type: "error", inputs: [], name: "ONLY_PENDING_OWNER" },
3090
+ { type: "error", inputs: [], name: "OWNER_CANNOT_BE_ZERO_ADDRESS" }
3091
+ ];
3092
+ var upgradeGateAddress = {
3093
+ 1: "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900",
3094
+ 10: "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900",
3095
+ 8453: "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900",
3096
+ 42161: "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900",
3097
+ 81457: "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900",
3098
+ 84532: "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900",
3099
+ 421614: "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900",
3100
+ 7777777: "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900",
3101
+ 11155111: "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900",
3102
+ 168587773: "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900"
3103
+ };
3104
+ var upgradeGateConfig = {
3105
+ address: upgradeGateAddress,
3106
+ abi: upgradeGateABI
3107
+ };
2842
3108
  var zoraCreator1155FactoryImplABI = [
2843
3109
  {
2844
3110
  stateMutability: "nonpayable",
@@ -7100,8 +7366,15 @@ var zoraMints1155ABI = [
7100
7366
  { type: "error", inputs: [], name: "TokenNotMintable" }
7101
7367
  ];
7102
7368
  var zoraMints1155Address = {
7369
+ 1: "0x7777777d57c1C6e472fa379b7b3B6c6ba3835073",
7370
+ 10: "0x7777777d57c1C6e472fa379b7b3B6c6ba3835073",
7371
+ 8453: "0x7777777d57c1C6e472fa379b7b3B6c6ba3835073",
7372
+ 42161: "0x7777777d57c1C6e472fa379b7b3B6c6ba3835073",
7373
+ 81457: "0x7777777d57c1C6e472fa379b7b3B6c6ba3835073",
7103
7374
  84532: "0x7777777d57c1C6e472fa379b7b3B6c6ba3835073",
7375
+ 421614: "0x7777777d57c1C6e472fa379b7b3B6c6ba3835073",
7104
7376
  7777777: "0x7777777d57c1C6e472fa379b7b3B6c6ba3835073",
7377
+ 11155111: "0x7777777d57c1C6e472fa379b7b3B6c6ba3835073",
7105
7378
  999999999: "0x7777777d57c1C6e472fa379b7b3B6c6ba3835073"
7106
7379
  };
7107
7380
  var zoraMints1155Config = {
@@ -7244,6 +7517,7 @@ var zoraMintsManagerImplABI = [
7244
7517
  }
7245
7518
  ]
7246
7519
  },
7520
+ { name: "firstMinter", internalType: "address", type: "address" },
7247
7521
  { name: "signerContract", internalType: "address", type: "address" }
7248
7522
  ],
7249
7523
  name: "collectPremint",
@@ -7995,8 +8269,15 @@ var zoraMintsManagerImplABI = [
7995
8269
  { type: "error", inputs: [], name: "premintSignerContractNotAContract" }
7996
8270
  ];
7997
8271
  var zoraMintsManagerImplAddress = {
8272
+ 1: "0x77777770cA269366c7208aFcF36FE2C6F7f7608B",
8273
+ 10: "0x77777770cA269366c7208aFcF36FE2C6F7f7608B",
8274
+ 8453: "0x77777770cA269366c7208aFcF36FE2C6F7f7608B",
8275
+ 42161: "0x77777770cA269366c7208aFcF36FE2C6F7f7608B",
8276
+ 81457: "0x77777770cA269366c7208aFcF36FE2C6F7f7608B",
7998
8277
  84532: "0x77777770cA269366c7208aFcF36FE2C6F7f7608B",
8278
+ 421614: "0x77777770cA269366c7208aFcF36FE2C6F7f7608B",
7999
8279
  7777777: "0x77777770cA269366c7208aFcF36FE2C6F7f7608B",
8280
+ 11155111: "0x77777770cA269366c7208aFcF36FE2C6F7f7608B",
8000
8281
  999999999: "0x77777770cA269366c7208aFcF36FE2C6F7f7608B"
8001
8282
  };
8002
8283
  var zoraMintsManagerImplConfig = {
@@ -8004,7 +8285,7 @@ var zoraMintsManagerImplConfig = {
8004
8285
  abi: zoraMintsManagerImplABI
8005
8286
  };
8006
8287
 
8007
- // node_modules/viem/_esm/index.js
8288
+ // ../../node_modules/viem/_esm/index.js
8008
8289
  init_encodeAbiParameters();
8009
8290
  init_getAbiItem();
8010
8291
  init_toHex();
@@ -8320,32 +8601,32 @@ var chainConfigs = {
8320
8601
  };
8321
8602
  var addresses = {
8322
8603
  1: {
8323
- CONTRACT_1155_IMPL: "0x32006e298C19818CD5e8000E26439691f0ac2128",
8324
- CONTRACT_1155_IMPL_VERSION: "2.7.0",
8325
- FACTORY_IMPL: "0xD662FB0fB00261C039441EF49Dbab154d7c533bD",
8604
+ CONTRACT_1155_IMPL: "0xAeAA622E522130676A8d5a4D04e28aC9Afb84536",
8605
+ CONTRACT_1155_IMPL_VERSION: "2.9.0",
8606
+ ERC20_MINTER: "0x777777E8850d8D6d98De2B5f64fae401F96eFF31",
8607
+ FACTORY_IMPL: "0x8f5B2dd6160D96B48a35F0619BC32b4b997cA37F",
8326
8608
  FACTORY_PROXY: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021",
8327
8609
  FIXED_PRICE_SALE_STRATEGY: "0x04E2516A2c207E84a1839755675dfd8eF6302F0a",
8328
8610
  MERKLE_MINT_SALE_STRATEGY: "0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7",
8329
- PREMINTER_IMPL: "0x6f4f0c7748050d178b50cB000c94d54ea54A82aA",
8611
+ PREMINTER_IMPL: "0xD754417BDABFCc3a3997B9A15E9F6922a8131Ac1",
8330
8612
  PREMINTER_PROXY: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340",
8331
8613
  REDEEM_MINTER_FACTORY: "0x78964965cF77850224513a367f899435C5B69174",
8332
8614
  UPGRADE_GATE: "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900",
8333
- ERC20_MINTER: "0x777777E8850d8D6d98De2B5f64fae401F96eFF31",
8334
- timestamp: 1706664239
8615
+ timestamp: 1713899416
8335
8616
  },
8336
8617
  10: {
8337
- CONTRACT_1155_IMPL: "0xECfbCf718E17B6e76A675dDB936a9249C69DD2aA",
8338
- CONTRACT_1155_IMPL_VERSION: "2.7.0",
8339
- FACTORY_IMPL: "0x32006e298C19818CD5e8000E26439691f0ac2128",
8618
+ CONTRACT_1155_IMPL: "0xd43f38e67beb199fd6594cCe4Bed31510414e6ab",
8619
+ CONTRACT_1155_IMPL_VERSION: "2.10.1",
8620
+ ERC20_MINTER: "0x777777E8850d8D6d98De2B5f64fae401F96eFF31",
8621
+ FACTORY_IMPL: "0x6A864E792029843A47f584293E2cAB8a86B9c533",
8340
8622
  FACTORY_PROXY: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021",
8341
8623
  FIXED_PRICE_SALE_STRATEGY: "0x3678862f04290E565cCA2EF163BAeb92Bb76790C",
8342
8624
  MERKLE_MINT_SALE_STRATEGY: "0x899ce31dF6C6Af81203AcAaD285bF539234eF4b8",
8343
- PREMINTER_IMPL: "0x6f4f0c7748050d178b50cB000c94d54ea54A82aA",
8625
+ PREMINTER_IMPL: "0xD8f6cf234eE4B689099677Bd94FbA0b1E005181d",
8344
8626
  PREMINTER_PROXY: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340",
8345
8627
  REDEEM_MINTER_FACTORY: "0x1B28A04b7eB7b93f920ddF2021aa3fAE065395f2",
8346
8628
  UPGRADE_GATE: "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900",
8347
- ERC20_MINTER: "0x777777E8850d8D6d98De2B5f64fae401F96eFF31",
8348
- timestamp: 1706664035
8629
+ timestamp: 1717194758
8349
8630
  },
8350
8631
  999: {
8351
8632
  CONTRACT_1155_IMPL: "0x2022AdEF470DA3543a19fac8c9be80618112704D",
@@ -8361,102 +8642,102 @@ var addresses = {
8361
8642
  timestamp: 1704399834
8362
8643
  },
8363
8644
  8453: {
8364
- CONTRACT_1155_IMPL: "0xAF5A4F6F6640734d7D000321Bb27De40D4Ae91f6",
8365
- CONTRACT_1155_IMPL_VERSION: "2.7.0",
8366
- FACTORY_IMPL: "0x7B59c0378F540c0356A5DAEF7574255A7C74EC76",
8645
+ CONTRACT_1155_IMPL: "0x1Eb7Bf3a08784D7cB08CC2AE1448012C0c02bDa2",
8646
+ CONTRACT_1155_IMPL_VERSION: "2.10.1",
8647
+ ERC20_MINTER: "0x777777E8850d8D6d98De2B5f64fae401F96eFF31",
8648
+ FACTORY_IMPL: "0x961b527B5E298569dbD7B1d90630cC515Eb17A4A",
8367
8649
  FACTORY_PROXY: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021",
8368
8650
  FIXED_PRICE_SALE_STRATEGY: "0x04E2516A2c207E84a1839755675dfd8eF6302F0a",
8369
8651
  MERKLE_MINT_SALE_STRATEGY: "0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7",
8370
- PREMINTER_IMPL: "0x6f4f0c7748050d178b50cB000c94d54ea54A82aA",
8652
+ PREMINTER_IMPL: "0xD8f6cf234eE4B689099677Bd94FbA0b1E005181d",
8371
8653
  PREMINTER_PROXY: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340",
8372
8654
  REDEEM_MINTER_FACTORY: "0x78964965cF77850224513a367f899435C5B69174",
8373
8655
  UPGRADE_GATE: "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900",
8374
- ERC20_MINTER: "0x777777E8850d8D6d98De2B5f64fae401F96eFF31",
8375
- timestamp: 1706663976
8656
+ timestamp: 1717194106
8376
8657
  },
8377
8658
  42161: {
8378
- CONTRACT_1155_IMPL: "0x97eb05B8db496B12244BCcf17CF377d00a99b67a",
8379
- CONTRACT_1155_IMPL_VERSION: "2.7.0",
8380
- FACTORY_IMPL: "0x48d8db63724444C6270749fEe80bBDB6CF33677f",
8659
+ CONTRACT_1155_IMPL: "0xf4bf58F869c42d99d7F7AC3868B606239a634526",
8660
+ CONTRACT_1155_IMPL_VERSION: "2.10.1",
8661
+ ERC20_MINTER: "0x777777E8850d8D6d98De2B5f64fae401F96eFF31",
8662
+ FACTORY_IMPL: "0x584BDE6B1442Aa6C572368D206Fe656c01FF1f1F",
8381
8663
  FACTORY_PROXY: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021",
8382
8664
  FIXED_PRICE_SALE_STRATEGY: "0x1Cd1C1f3b8B779B50Db23155F2Cb244FCcA06B21",
8383
8665
  MERKLE_MINT_SALE_STRATEGY: "0xe770E6f19aecF8ef3145A50087999b5556aB3610",
8384
- PREMINTER_IMPL: "0x6f4f0c7748050d178b50cB000c94d54ea54A82aA",
8666
+ PREMINTER_IMPL: "0xD8f6cf234eE4B689099677Bd94FbA0b1E005181d",
8385
8667
  PREMINTER_PROXY: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340",
8386
8668
  REDEEM_MINTER_FACTORY: "0x69bB4A24EBD8b1B87AF4538E0Ca3075b7E398c3D",
8387
8669
  UPGRADE_GATE: "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900",
8388
- ERC20_MINTER: "0x777777E8850d8D6d98De2B5f64fae401F96eFF31",
8389
- timestamp: 1706664653
8670
+ timestamp: 1717194346
8390
8671
  },
8391
8672
  81457: {
8392
- CONTRACT_1155_IMPL: "0x97eb05B8db496B12244BCcf17CF377d00a99b67a",
8393
- CONTRACT_1155_IMPL_VERSION: "2.7.1",
8394
- FACTORY_IMPL: "0x48d8db63724444C6270749fEe80bBDB6CF33677f",
8673
+ CONTRACT_1155_IMPL: "0x370A413874Bde3F40028A3E9BBFC4cA19666F94D",
8674
+ CONTRACT_1155_IMPL_VERSION: "2.10.1",
8675
+ ERC20_MINTER: "0x777777E8850d8D6d98De2B5f64fae401F96eFF31",
8676
+ FACTORY_IMPL: "0xf4bf58F869c42d99d7F7AC3868B606239a634526",
8395
8677
  FACTORY_PROXY: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021",
8396
8678
  FIXED_PRICE_SALE_STRATEGY: "0x3EB144aee170BF62FdA1536e38aF51f08e34A5D0",
8397
8679
  MERKLE_MINT_SALE_STRATEGY: "0xB9C997FcC46a27331CC986cc2416ee99C1d506c3",
8398
- PREMINTER_IMPL: "0xe3150ab94e3730D4B157ffD31Ad042323E122b4C",
8680
+ PREMINTER_IMPL: "0xD8f6cf234eE4B689099677Bd94FbA0b1E005181d",
8399
8681
  PREMINTER_PROXY: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340",
8400
8682
  REDEEM_MINTER_FACTORY: "0x7A0dE1B1f5420Df5D946878fBe2cF109011BE614",
8401
8683
  UPGRADE_GATE: "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900",
8402
- ERC20_MINTER: "0x777777E8850d8D6d98De2B5f64fae401F96eFF31",
8403
- timestamp: 1709235955
8684
+ timestamp: 1717194549
8404
8685
  },
8405
8686
  84532: {
8406
- CONTRACT_1155_IMPL: "0x2C49E95303734eE3826307783d5fDD180B2131D3",
8407
- CONTRACT_1155_IMPL_VERSION: "2.9.0",
8408
- FACTORY_IMPL: "0xB2696570215c3158eB1D218FB1a3DF92a418B034",
8687
+ CONTRACT_1155_IMPL: "0x0ef82DaB14798E63F1B99479Ba689e3f6A6fEb6C",
8688
+ CONTRACT_1155_IMPL_VERSION: "2.10.1",
8689
+ ERC20_MINTER: "0x777777E8850d8D6d98De2B5f64fae401F96eFF31",
8690
+ FACTORY_IMPL: "0x97eb05B8db496B12244BCcf17CF377d00a99b67a",
8409
8691
  FACTORY_PROXY: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021",
8410
8692
  FIXED_PRICE_SALE_STRATEGY: "0xd34872BE0cdb6b09d45FCa067B07f04a1A9aE1aE",
8411
8693
  MERKLE_MINT_SALE_STRATEGY: "0x3E8524770adD176bE381a0529E09f1c6c3502A5a",
8412
- PREMINTER_IMPL: "0xD754417BDABFCc3a3997B9A15E9F6922a8131Ac1",
8694
+ PREMINTER_IMPL: "0xD8f6cf234eE4B689099677Bd94FbA0b1E005181d",
8413
8695
  PREMINTER_PROXY: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340",
8414
8696
  REDEEM_MINTER_FACTORY: "0x805E0a08dE70f85C01F7848370d5e3fc08aAd0ea",
8415
8697
  UPGRADE_GATE: "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900",
8416
- ERC20_MINTER: "0x777777E8850d8D6d98De2B5f64fae401F96eFF31",
8417
- timestamp: 1713468185
8698
+ timestamp: 1717189193
8418
8699
  },
8419
8700
  421614: {
8420
- CONTRACT_1155_IMPL: "0xc288fe9B145fC31D9aFBa771d0FeB986F6eb49e3",
8421
- CONTRACT_1155_IMPL_VERSION: "2.7.0",
8422
- FACTORY_IMPL: "0x314E552b55DFbDfD4d76623E1D45E5056723998B",
8701
+ CONTRACT_1155_IMPL: "0x55B53DBE22859d538E3b44DD06C9FAE292409E3c",
8702
+ CONTRACT_1155_IMPL_VERSION: "2.10.1",
8703
+ ERC20_MINTER: "0x777777E8850d8D6d98De2B5f64fae401F96eFF31",
8704
+ FACTORY_IMPL: "0xAF5A4F6F6640734d7D000321Bb27De40D4Ae91f6",
8423
8705
  FACTORY_PROXY: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021",
8424
8706
  FIXED_PRICE_SALE_STRATEGY: "0x1Cd1C1f3b8B779B50Db23155F2Cb244FCcA06B21",
8425
8707
  MERKLE_MINT_SALE_STRATEGY: "0xe770E6f19aecF8ef3145A50087999b5556aB3610",
8426
- PREMINTER_IMPL: "0x6f4f0c7748050d178b50cB000c94d54ea54A82aA",
8708
+ PREMINTER_IMPL: "0xD8f6cf234eE4B689099677Bd94FbA0b1E005181d",
8427
8709
  PREMINTER_PROXY: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340",
8428
8710
  REDEEM_MINTER_FACTORY: "0x69bB4A24EBD8b1B87AF4538E0Ca3075b7E398c3D",
8429
8711
  UPGRADE_GATE: "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900",
8430
- ERC20_MINTER: "0x777777E8850d8D6d98De2B5f64fae401F96eFF31",
8431
- timestamp: 1706661669
8712
+ timestamp: 1717195052
8432
8713
  },
8433
8714
  7777777: {
8434
- CONTRACT_1155_IMPL: "0x2C49E95303734eE3826307783d5fDD180B2131D3",
8435
- CONTRACT_1155_IMPL_VERSION: "2.9.0",
8436
- FACTORY_IMPL: "0xB2696570215c3158eB1D218FB1a3DF92a418B034",
8715
+ CONTRACT_1155_IMPL: "0xA0CFBEA2fe941EaE373aEB3359b0171f3F194c35",
8716
+ CONTRACT_1155_IMPL_VERSION: "2.10.1",
8717
+ ERC20_MINTER: "0x777777E8850d8D6d98De2B5f64fae401F96eFF31",
8718
+ FACTORY_IMPL: "0xDAeF162cfF8Abd646190Fe02E70B2956304C552c",
8437
8719
  FACTORY_PROXY: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021",
8438
8720
  FIXED_PRICE_SALE_STRATEGY: "0x04E2516A2c207E84a1839755675dfd8eF6302F0a",
8439
8721
  MERKLE_MINT_SALE_STRATEGY: "0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7",
8440
- PREMINTER_IMPL: "0xD754417BDABFCc3a3997B9A15E9F6922a8131Ac1",
8722
+ PREMINTER_IMPL: "0xD8f6cf234eE4B689099677Bd94FbA0b1E005181d",
8441
8723
  PREMINTER_PROXY: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340",
8442
8724
  REDEEM_MINTER_FACTORY: "0x78964965cF77850224513a367f899435C5B69174",
8443
8725
  UPGRADE_GATE: "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900",
8444
- ERC20_MINTER: "0x777777E8850d8D6d98De2B5f64fae401F96eFF31",
8445
- timestamp: 1712349677
8726
+ timestamp: 1717181333
8446
8727
  },
8447
8728
  11155111: {
8448
- CONTRACT_1155_IMPL: "0x437A762fc2a8f898Aa7a2575Be21c41753DC4797",
8449
- CONTRACT_1155_IMPL_VERSION: "2.7.0",
8450
- FACTORY_IMPL: "0xF82286760a953D2Bad7D6F2F0da458Ac20f955D3",
8729
+ CONTRACT_1155_IMPL: "0xFc40F9BFE1289F27F89BAEfb4DB97CC2D8eF6a38",
8730
+ CONTRACT_1155_IMPL_VERSION: "2.10.1",
8731
+ ERC20_MINTER: "0x777777E8850d8D6d98De2B5f64fae401F96eFF31",
8732
+ FACTORY_IMPL: "0xC7598f8eAA1455f5b2B3f206A9af55B2BA248e3E",
8451
8733
  FACTORY_PROXY: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021",
8452
8734
  FIXED_PRICE_SALE_STRATEGY: "0x1Cd1C1f3b8B779B50Db23155F2Cb244FCcA06B21",
8453
8735
  MERKLE_MINT_SALE_STRATEGY: "0xe770E6f19aecF8ef3145A50087999b5556aB3610",
8454
- PREMINTER_IMPL: "0x795Efc066f89DFB03048dDd0598F2D8521c99Df6",
8736
+ PREMINTER_IMPL: "0xD8f6cf234eE4B689099677Bd94FbA0b1E005181d",
8455
8737
  PREMINTER_PROXY: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340",
8456
8738
  REDEEM_MINTER_FACTORY: "0x69bB4A24EBD8b1B87AF4538E0Ca3075b7E398c3D",
8457
8739
  UPGRADE_GATE: "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900",
8458
- ERC20_MINTER: "0x777777E8850d8D6d98De2B5f64fae401F96eFF31",
8459
- timestamp: 1704336497
8740
+ timestamp: 1717195426
8460
8741
  },
8461
8742
  168587773: {
8462
8743
  CONTRACT_1155_IMPL: "0x437A762fc2a8f898Aa7a2575Be21c41753DC4797",
@@ -8472,18 +8753,18 @@ var addresses = {
8472
8753
  timestamp: 1709234007
8473
8754
  },
8474
8755
  999999999: {
8475
- CONTRACT_1155_IMPL: "0xaDf7F654d8E416aaD85d4f06fDf4cA3D05BDA1A1",
8476
- CONTRACT_1155_IMPL_VERSION: "2.9.0",
8756
+ CONTRACT_1155_IMPL: "0x1120b10c14d38C85B610292170a784784ED9658E",
8757
+ CONTRACT_1155_IMPL_VERSION: "2.10.1",
8477
8758
  ERC20_MINTER: "0x8Ec7f068A77fa5FC1925110f82381374BA054Ff2",
8478
- FACTORY_IMPL: "0x7228C5BE6093cf57BC085aaFFB18D0b7886f0651",
8759
+ FACTORY_IMPL: "0x74Fc9A34AebAc1D78Aad0C85FAfcDAbD972FC1B0",
8479
8760
  FACTORY_PROXY: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021",
8480
8761
  FIXED_PRICE_SALE_STRATEGY: "0x6d28164C3CE04A190D5F9f0f8881fc807EAD975A",
8481
8762
  MERKLE_MINT_SALE_STRATEGY: "0x5e5fD4b758076BAD940db0284b711A67E8a3B88c",
8482
- PREMINTER_IMPL: "0xdABa152A152a14844E627444B55a543beF7c4365",
8763
+ PREMINTER_IMPL: "0xD8f6cf234eE4B689099677Bd94FbA0b1E005181d",
8483
8764
  PREMINTER_PROXY: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340",
8484
8765
  REDEEM_MINTER_FACTORY: "0x25cFb6dd9cDE8425e781d6718a29Ccbca3F038d6",
8485
8766
  UPGRADE_GATE: "0x0000000000000000000000000000000000000000",
8486
- timestamp: 1715977010
8767
+ timestamp: 1717181506
8487
8768
  }
8488
8769
  };
8489
8770
 
@@ -8494,59 +8775,69 @@ __export(mints_exports, {
8494
8775
  chainConfigs: () => chainConfigs2
8495
8776
  });
8496
8777
  var chainConfigs2 = {
8778
+ 1: { PROXY_ADMIN: "0xDB392f4391462d60B8B4413ef72018Ab595Af9D0" },
8779
+ 10: { PROXY_ADMIN: "0x4c7f7b6067fac9a737ecf2ca1a733fc85dd65a2b" },
8780
+ 420: { PROXY_ADMIN: "0xbb45052B2260707655Dfd916a416264f5981192c" },
8781
+ 8453: { PROXY_ADMIN: "0x004d6611884B4A661749B64b2ADc78505c3e1AB3" },
8782
+ 42161: { PROXY_ADMIN: "0xF7DafC329C93D84267c0E7B146C0bD68807f6A03" },
8783
+ 81457: { PROXY_ADMIN: "0x5b297B1b87f8De28C9fA7AFe183Db9F9e6295523" },
8784
+ 84531: { PROXY_ADMIN: "0x02539E813cA450C2c7334e885423f4A899a063Fe" },
8785
+ 84532: { PROXY_ADMIN: "0x5F14C23983c9e0840Dc60dA880349622f0785420" },
8786
+ 421614: { PROXY_ADMIN: "0x256537b56007b32BabEB44E868EC8AA5cBF03D30" },
8787
+ 7777777: { PROXY_ADMIN: "0xdEA20c96253dc2d64897D2b8d27A8d935dE74955" },
8788
+ 11155111: { PROXY_ADMIN: "0xCE9F2e8EaFa11637F8A1CB60AE8AaC601Ae30f2D" },
8789
+ 999999999: { PROXY_ADMIN: "0xdae22ce69Afcb7f4bc37D32E267645722949DE0E" }
8790
+ };
8791
+ var addresses2 = {
8497
8792
  1: {
8498
- PROXY_ADMIN: "0xDB392f4391462d60B8B4413ef72018Ab595Af9D0",
8499
- MINTS_OWNER: "0xd1d1D4e36117aB794ec5d4c78cBD3a8904E691D0"
8793
+ MINTS_ETH_UNWRAPPER_AND_CALLER: "0x0000000000000000000000000000000000000000",
8794
+ MINTS_MANAGER_IMPL: "0x32C49770cC95F6A606Ae5a22A0a70e8F8ff64C75",
8795
+ MINTS_MANAGER_IMPL_VERSION: "0.1.3"
8500
8796
  },
8501
8797
  10: {
8502
- PROXY_ADMIN: "0x4c7f7b6067fac9a737ecf2ca1a733fc85dd65a2b",
8503
- MINTS_OWNER: "0x7A810DCd0f8d83B20212326813Db6EF7E9FD030c"
8504
- },
8505
- 420: {
8506
- PROXY_ADMIN: "0xbb45052B2260707655Dfd916a416264f5981192c",
8507
- MINTS_OWNER: "0x5dEe21327CD7CD6725C2578DA1c3E5bb2D2D34b2"
8508
- },
8509
- 999: {
8510
- PROXY_ADMIN: "0xE84DBB2B25F761751231a9D0DAfbdD4dC3aa8252",
8511
- MINTS_OWNER: "0xE84DBB2B25F761751231a9D0DAfbdD4dC3aa8252"
8798
+ MINTS_ETH_UNWRAPPER_AND_CALLER: "0x0000000000000000000000000000000000000000",
8799
+ MINTS_MANAGER_IMPL: "0x66a48d99A349e228618BB68f41496923958D5543",
8800
+ MINTS_MANAGER_IMPL_VERSION: "0.1.4"
8512
8801
  },
8513
8802
  8453: {
8514
- PROXY_ADMIN: "0x004d6611884B4A661749B64b2ADc78505c3e1AB3",
8515
- MINTS_OWNER: "0x7bf90111Ad7C22bec9E9dFf8A01A44713CC1b1B6"
8516
- },
8517
- 84531: {
8518
- PROXY_ADMIN: "0x02539E813cA450C2c7334e885423f4A899a063Fe",
8519
- MINTS_OWNER: "0x02539E813cA450C2c7334e885423f4A899a063Fe"
8803
+ MINTS_ETH_UNWRAPPER_AND_CALLER: "0x0000000000000000000000000000000000000000",
8804
+ MINTS_MANAGER_IMPL: "0x66a48d99A349e228618BB68f41496923958D5543",
8805
+ MINTS_MANAGER_IMPL_VERSION: "0.1.4"
8520
8806
  },
8521
- 84532: { PROXY_ADMIN: "0x5F14C23983c9e0840Dc60dA880349622f0785420" },
8522
- 7777777: {
8523
- PROXY_ADMIN: "0xdEA20c96253dc2d64897D2b8d27A8d935dE74955",
8524
- MINTS_OWNER: "0xEcfc2ee50409E459c554a2b0376F882Ce916D853"
8807
+ 42161: {
8808
+ MINTS_ETH_UNWRAPPER_AND_CALLER: "0x0000000000000000000000000000000000000000",
8809
+ MINTS_MANAGER_IMPL: "0x66a48d99A349e228618BB68f41496923958D5543",
8810
+ MINTS_MANAGER_IMPL_VERSION: "0.1.4"
8525
8811
  },
8526
- 11155111: {
8527
- PROXY_ADMIN: "0xCE9F2e8EaFa11637F8A1CB60AE8AaC601Ae30f2D",
8528
- MINTS_OWNER: "0xCE9F2e8EaFa11637F8A1CB60AE8AaC601Ae30f2D"
8812
+ 81457: {
8813
+ MINTS_ETH_UNWRAPPER_AND_CALLER: "0x0000000000000000000000000000000000000000",
8814
+ MINTS_MANAGER_IMPL: "0x66a48d99A349e228618BB68f41496923958D5543",
8815
+ MINTS_MANAGER_IMPL_VERSION: "0.1.4"
8529
8816
  },
8530
- 999999999: {
8531
- PROXY_ADMIN: "0xdae22ce69Afcb7f4bc37D32E267645722949DE0E",
8532
- MINTS_OWNER: "0xdae22ce69Afcb7f4bc37D32E267645722949DE0E"
8533
- }
8534
- };
8535
- var addresses2 = {
8536
8817
  84532: {
8537
8818
  MINTS_ETH_UNWRAPPER_AND_CALLER: "0x0000000000000000000000000000000000000000",
8538
- MINTS_MANAGER_IMPL: "0x32C49770cC95F6A606Ae5a22A0a70e8F8ff64C75",
8539
- MINTS_MANAGER_IMPL_VERSION: "0.1.3"
8819
+ MINTS_MANAGER_IMPL: "0x66a48d99A349e228618BB68f41496923958D5543",
8820
+ MINTS_MANAGER_IMPL_VERSION: "0.1.4"
8821
+ },
8822
+ 421614: {
8823
+ MINTS_ETH_UNWRAPPER_AND_CALLER: "0x0000000000000000000000000000000000000000",
8824
+ MINTS_MANAGER_IMPL: "0x66a48d99A349e228618BB68f41496923958D5543",
8825
+ MINTS_MANAGER_IMPL_VERSION: "0.1.4"
8540
8826
  },
8541
8827
  7777777: {
8542
8828
  MINTS_ETH_UNWRAPPER_AND_CALLER: "0xb0994EB9520C98C97e1F3953a5964535C2bd271A",
8543
- MINTS_MANAGER_IMPL: "0x978685ad10B829F17e6c2C6E8EeABd7dFDdC1678",
8544
- MINTS_MANAGER_IMPL_VERSION: "0.1.2"
8829
+ MINTS_MANAGER_IMPL: "0x66a48d99A349e228618BB68f41496923958D5543",
8830
+ MINTS_MANAGER_IMPL_VERSION: "0.1.4"
8831
+ },
8832
+ 11155111: {
8833
+ MINTS_ETH_UNWRAPPER_AND_CALLER: "0x0000000000000000000000000000000000000000",
8834
+ MINTS_MANAGER_IMPL: "0x66a48d99A349e228618BB68f41496923958D5543",
8835
+ MINTS_MANAGER_IMPL_VERSION: "0.1.4"
8545
8836
  },
8546
8837
  999999999: {
8547
8838
  MINTS_ETH_UNWRAPPER_AND_CALLER: "0xb0994EB9520C98C97e1F3953a5964535C2bd271A",
8548
- MINTS_MANAGER_IMPL: "0x65690B699591aDE72b30aa10B0c34BB78cAc61c0",
8549
- MINTS_MANAGER_IMPL_VERSION: "0.1.3"
8839
+ MINTS_MANAGER_IMPL: "0x66a48d99A349e228618BB68f41496923958D5543",
8840
+ MINTS_MANAGER_IMPL_VERSION: "0.1.4"
8550
8841
  }
8551
8842
  };
8552
8843
  // Annotate the CommonJS export names for ESM import in node:
@@ -8571,6 +8862,9 @@ var addresses2 = {
8571
8862
  protocolRewardsABI,
8572
8863
  protocolRewardsAddress,
8573
8864
  protocolRewardsConfig,
8865
+ upgradeGateABI,
8866
+ upgradeGateAddress,
8867
+ upgradeGateConfig,
8574
8868
  zoraCreator1155FactoryImplABI,
8575
8869
  zoraCreator1155FactoryImplAddress,
8576
8870
  zoraCreator1155FactoryImplConfig,