@zoralabs/protocol-deployments 0.4.0-DEV.0 → 0.4.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zoralabs/protocol-deployments",
3
- "version": "0.4.0-DEV.0",
3
+ "version": "0.4.0",
4
4
  "repository": "https://github.com/ourzora/zora-protocol",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -87,10 +87,14 @@ export const addresses = {
87
87
  SPONSORED_SPARKS_SPENDER_VERSION: "2.0.0",
88
88
  },
89
89
  8453: {
90
+ MINTS_1155: "0x0000000000000000000000000000000000000000",
90
91
  MINTS_ETH_UNWRAPPER_AND_CALLER:
91
92
  "0x0000000000000000000000000000000000000000",
92
- SPARKS_MANAGER_IMPL: "0x0000000000000000000000000000000000000000",
93
- SPARKS_MANAGER_IMPL_VERSION: "",
93
+ MINTS_MANAGER: "0x0000000000000000000000000000000000000000",
94
+ SPARKS_1155: "0x7777777b3eA6C126942BB14dD5C3C11D365C385D",
95
+ SPARKS_MANAGER: "0x77777779acd6a96C0c57272112921A0b833c38fD",
96
+ SPARKS_MANAGER_IMPL: "0x122648369E390009F18c1B2b9B100AfB09B982fc",
97
+ SPARKS_MANAGER_IMPL_VERSION: "0.2.4",
94
98
  SPONSORED_SPARKS_SPENDER: "0x6958A8866A40118e2CC21ab4752353835321b5e6",
95
99
  SPONSORED_SPARKS_SPENDER_VERSION: "2.0.0",
96
100
  },
@@ -111,10 +115,14 @@ export const addresses = {
111
115
  SPONSORED_SPARKS_SPENDER_VERSION: "2.0.0",
112
116
  },
113
117
  84532: {
118
+ MINTS_1155: "0x0000000000000000000000000000000000000000",
114
119
  MINTS_ETH_UNWRAPPER_AND_CALLER:
115
120
  "0x0000000000000000000000000000000000000000",
116
- SPARKS_MANAGER_IMPL: "0x0000000000000000000000000000000000000000",
117
- SPARKS_MANAGER_IMPL_VERSION: "",
121
+ MINTS_MANAGER: "0x0000000000000000000000000000000000000000",
122
+ SPARKS_1155: "0x7777777b3eA6C126942BB14dD5C3C11D365C385D",
123
+ SPARKS_MANAGER: "0x77777779acd6a96C0c57272112921A0b833c38fD",
124
+ SPARKS_MANAGER_IMPL: "0x122648369E390009F18c1B2b9B100AfB09B982fc",
125
+ SPARKS_MANAGER_IMPL_VERSION: "0.2.4",
118
126
  SPONSORED_SPARKS_SPENDER: "0x23150f60E233F519A01C735C29c1591f9E8353dE",
119
127
  SPONSORED_SPARKS_SPENDER_VERSION: "2.0.0",
120
128
  },
@@ -1083,8 +1083,9 @@ export const cointagABI = [
1083
1083
  {
1084
1084
  type: 'constructor',
1085
1085
  inputs: [
1086
- { name: '_protocolRewards', internalType: 'address', type: 'address' },
1087
- { name: '_weth', internalType: 'address', type: 'address' },
1086
+ { name: 'protocolRewards_', internalType: 'address', type: 'address' },
1087
+ { name: 'weth_', internalType: 'address', type: 'address' },
1088
+ { name: 'upgradeGate_', internalType: 'address', type: 'address' },
1088
1089
  ],
1089
1090
  stateMutability: 'nonpayable',
1090
1091
  },
@@ -1099,42 +1100,66 @@ export const cointagABI = [
1099
1100
  {
1100
1101
  type: 'function',
1101
1102
  inputs: [],
1102
- name: 'REQUIRED_OBSERVATION_CARDINALITY',
1103
- outputs: [{ name: '', internalType: 'uint16', type: 'uint16' }],
1103
+ name: 'UPGRADE_INTERFACE_VERSION',
1104
+ outputs: [{ name: '', internalType: 'string', type: 'string' }],
1104
1105
  stateMutability: 'view',
1105
1106
  },
1106
1107
  {
1107
1108
  type: 'function',
1108
1109
  inputs: [],
1109
- name: 'SLIPPAGE',
1110
- outputs: [{ name: '', internalType: 'uint256', type: 'uint256' }],
1111
- stateMutability: 'view',
1110
+ name: 'acceptOwnership',
1111
+ outputs: [],
1112
+ stateMutability: 'nonpayable',
1112
1113
  },
1113
1114
  {
1114
1115
  type: 'function',
1115
1116
  inputs: [],
1116
- name: 'TIME_WEIGHTED_PRICE_PERIOD',
1117
- outputs: [{ name: '', internalType: 'uint32', type: 'uint32' }],
1118
- stateMutability: 'view',
1117
+ name: 'config',
1118
+ outputs: [
1119
+ {
1120
+ name: 'cointagStorage',
1121
+ internalType: 'struct ICointag.CointagStorageV1',
1122
+ type: 'tuple',
1123
+ components: [
1124
+ {
1125
+ name: 'creatorRewardRecipient',
1126
+ internalType: 'address',
1127
+ type: 'address',
1128
+ },
1129
+ { name: 'erc20', internalType: 'contract IERC20', type: 'address' },
1130
+ {
1131
+ name: 'pool',
1132
+ internalType: 'contract IUniswapV3Pool',
1133
+ type: 'address',
1134
+ },
1135
+ {
1136
+ name: 'percentageToBuyBurn',
1137
+ internalType: 'uint256',
1138
+ type: 'uint256',
1139
+ },
1140
+ ],
1141
+ },
1142
+ ],
1143
+ stateMutability: 'pure',
1119
1144
  },
1120
1145
  {
1121
1146
  type: 'function',
1122
1147
  inputs: [],
1123
- name: 'contractVersion',
1148
+ name: 'contractName',
1124
1149
  outputs: [{ name: '', internalType: 'string', type: 'string' }],
1125
1150
  stateMutability: 'pure',
1126
1151
  },
1127
1152
  {
1128
1153
  type: 'function',
1129
1154
  inputs: [],
1130
- name: 'creatorRewardRecipient',
1131
- outputs: [{ name: '', internalType: 'address', type: 'address' }],
1132
- stateMutability: 'view',
1155
+ name: 'contractVersion',
1156
+ outputs: [{ name: '', internalType: 'string', type: 'string' }],
1157
+ stateMutability: 'pure',
1133
1158
  },
1134
1159
  {
1135
1160
  type: 'function',
1136
1161
  inputs: [],
1137
- name: 'ensureObservationCardinality',
1162
+ name: 'distribute',
1138
1163
  outputs: [],
1139
1164
  stateMutability: 'nonpayable',
1140
1165
  },
@@ -1142,35 +1167,26 @@ export const cointagABI = [
1142
1167
  type: 'function',
1143
1168
  inputs: [],
1144
1169
  name: 'erc20',
1145
- outputs: [
1146
- { name: '', internalType: 'contract IBurnableERC20', type: 'address' },
1147
- ],
1170
+ outputs: [{ name: '', internalType: 'contract IERC20', type: 'address' }],
1148
1171
  stateMutability: 'view',
1149
1172
  },
1150
1173
  {
1151
1174
  type: 'function',
1152
1175
  inputs: [],
1153
- name: 'hasEnoughObservationCardinality',
1154
- outputs: [
1155
- { name: '', internalType: 'bool', type: 'bool' },
1156
- { name: '', internalType: 'uint256', type: 'uint256' },
1157
- ],
1176
+ name: 'implementation',
1177
+ outputs: [{ name: '', internalType: 'address', type: 'address' }],
1158
1178
  stateMutability: 'view',
1159
1179
  },
1160
1180
  {
1161
1181
  type: 'function',
1162
1182
  inputs: [
1163
1183
  {
1164
- name: '_creatorRewardRecipient',
1184
+ name: 'creatorRewardRecipient',
1165
1185
  internalType: 'address',
1166
1186
  type: 'address',
1167
1187
  },
1168
- { name: '_pool', internalType: 'address', type: 'address' },
1169
- {
1170
- name: '_percentageToBuyBurn',
1171
- internalType: 'uint256',
1172
- type: 'uint256',
1173
- },
1188
+ { name: 'pool_', internalType: 'address', type: 'address' },
1189
+ { name: 'percentageToBuyBurn', internalType: 'uint256', type: 'uint256' },
1174
1190
  ],
1175
1191
  name: 'initialize',
1176
1192
  outputs: [],
@@ -1179,8 +1195,15 @@ export const cointagABI = [
1179
1195
  {
1180
1196
  type: 'function',
1181
1197
  inputs: [],
1182
- name: 'percentageToBuyBurn',
1183
- outputs: [{ name: '', internalType: 'uint256', type: 'uint256' }],
1198
+ name: 'owner',
1199
+ outputs: [{ name: '', internalType: 'address', type: 'address' }],
1200
+ stateMutability: 'view',
1201
+ },
1202
+ {
1203
+ type: 'function',
1204
+ inputs: [],
1205
+ name: 'pendingOwner',
1206
+ outputs: [{ name: '', internalType: 'address', type: 'address' }],
1184
1207
  stateMutability: 'view',
1185
1208
  },
1186
1209
  {
@@ -1201,6 +1224,13 @@ export const cointagABI = [
1201
1224
  ],
1202
1225
  stateMutability: 'view',
1203
1226
  },
1227
+ {
1228
+ type: 'function',
1229
+ inputs: [],
1230
+ name: 'proxiableUUID',
1231
+ outputs: [{ name: '', internalType: 'bytes32', type: 'bytes32' }],
1232
+ stateMutability: 'view',
1233
+ },
1204
1234
  {
1205
1235
  type: 'function',
1206
1236
  inputs: [],
@@ -1208,6 +1238,20 @@ export const cointagABI = [
1208
1238
  outputs: [],
1209
1239
  stateMutability: 'nonpayable',
1210
1240
  },
1241
+ {
1242
+ type: 'function',
1243
+ inputs: [],
1244
+ name: 'renounceOwnership',
1245
+ outputs: [],
1246
+ stateMutability: 'nonpayable',
1247
+ },
1248
+ {
1249
+ type: 'function',
1250
+ inputs: [{ name: 'newOwner', internalType: 'address', type: 'address' }],
1251
+ name: 'transferOwnership',
1252
+ outputs: [],
1253
+ stateMutability: 'nonpayable',
1254
+ },
1211
1255
  {
1212
1256
  type: 'function',
1213
1257
  inputs: [
@@ -1219,6 +1263,25 @@ export const cointagABI = [
1219
1263
  outputs: [],
1220
1264
  stateMutability: 'nonpayable',
1221
1265
  },
1266
+ {
1267
+ type: 'function',
1268
+ inputs: [],
1269
+ name: 'upgradeGate',
1270
+ outputs: [
1271
+ { name: '', internalType: 'contract IUpgradeGate', type: 'address' },
1272
+ ],
1273
+ stateMutability: 'view',
1274
+ },
1275
+ {
1276
+ type: 'function',
1277
+ inputs: [
1278
+ { name: 'newImplementation', internalType: 'address', type: 'address' },
1279
+ { name: 'data', internalType: 'bytes', type: 'bytes' },
1280
+ ],
1281
+ name: 'upgradeToAndCall',
1282
+ outputs: [],
1283
+ stateMutability: 'payable',
1284
+ },
1222
1285
  {
1223
1286
  type: 'function',
1224
1287
  inputs: [],
@@ -1231,31 +1294,31 @@ export const cointagABI = [
1231
1294
  anonymous: false,
1232
1295
  inputs: [
1233
1296
  {
1234
- name: 'amountERc20Received',
1297
+ name: 'amountERC20Received',
1235
1298
  internalType: 'uint256',
1236
1299
  type: 'uint256',
1237
1300
  indexed: false,
1238
1301
  },
1239
1302
  {
1240
- name: 'amountERc20Burned',
1303
+ name: 'amountERC20Burned',
1241
1304
  internalType: 'uint256',
1242
1305
  type: 'uint256',
1243
1306
  indexed: false,
1244
1307
  },
1245
1308
  {
1246
- name: 'amountEthSpent',
1309
+ name: 'amountETHSpent',
1247
1310
  internalType: 'uint256',
1248
1311
  type: 'uint256',
1249
1312
  indexed: false,
1250
1313
  },
1251
1314
  {
1252
- name: 'amountEthToCreator',
1315
+ name: 'amountETHToCreator',
1253
1316
  internalType: 'uint256',
1254
1317
  type: 'uint256',
1255
1318
  indexed: false,
1256
1319
  },
1257
1320
  {
1258
- name: 'totalEthReceived',
1321
+ name: 'totalETHReceived',
1259
1322
  internalType: 'uint256',
1260
1323
  type: 'uint256',
1261
1324
  indexed: false,
@@ -1275,6 +1338,25 @@ export const cointagABI = [
1275
1338
  ],
1276
1339
  name: 'BuyBurn',
1277
1340
  },
1341
+ {
1342
+ type: 'event',
1343
+ anonymous: false,
1344
+ inputs: [
1345
+ {
1346
+ name: 'amount',
1347
+ internalType: 'uint256',
1348
+ type: 'uint256',
1349
+ indexed: true,
1350
+ },
1351
+ {
1352
+ name: 'sender',
1353
+ internalType: 'address',
1354
+ type: 'address',
1355
+ indexed: true,
1356
+ },
1357
+ ],
1358
+ name: 'EthReceived',
1359
+ },
1278
1360
  {
1279
1361
  type: 'event',
1280
1362
  anonymous: false,
@@ -1319,6 +1401,57 @@ export const cointagABI = [
1319
1401
  ],
1320
1402
  name: 'Initialized',
1321
1403
  },
1404
+ {
1405
+ type: 'event',
1406
+ anonymous: false,
1407
+ inputs: [
1408
+ {
1409
+ name: 'previousOwner',
1410
+ internalType: 'address',
1411
+ type: 'address',
1412
+ indexed: true,
1413
+ },
1414
+ {
1415
+ name: 'newOwner',
1416
+ internalType: 'address',
1417
+ type: 'address',
1418
+ indexed: true,
1419
+ },
1420
+ ],
1421
+ name: 'OwnershipTransferStarted',
1422
+ },
1423
+ {
1424
+ type: 'event',
1425
+ anonymous: false,
1426
+ inputs: [
1427
+ {
1428
+ name: 'previousOwner',
1429
+ internalType: 'address',
1430
+ type: 'address',
1431
+ indexed: true,
1432
+ },
1433
+ {
1434
+ name: 'newOwner',
1435
+ internalType: 'address',
1436
+ type: 'address',
1437
+ indexed: true,
1438
+ },
1439
+ ],
1440
+ name: 'OwnershipTransferred',
1441
+ },
1442
+ {
1443
+ type: 'event',
1444
+ anonymous: false,
1445
+ inputs: [
1446
+ {
1447
+ name: 'implementation',
1448
+ internalType: 'address',
1449
+ type: 'address',
1450
+ indexed: true,
1451
+ },
1452
+ ],
1453
+ name: 'Upgraded',
1454
+ },
1322
1455
  {
1323
1456
  type: 'error',
1324
1457
  inputs: [{ name: 'target', internalType: 'address', type: 'address' }],
@@ -1329,32 +1462,60 @@ export const cointagABI = [
1329
1462
  inputs: [{ name: 'account', internalType: 'address', type: 'address' }],
1330
1463
  name: 'AddressInsufficientBalance',
1331
1464
  },
1465
+ { type: 'error', inputs: [], name: 'AddressZero' },
1332
1466
  {
1333
1467
  type: 'error',
1334
1468
  inputs: [
1335
- { name: 'amountOut', internalType: 'uint256', type: 'uint256' },
1336
- { name: 'amountOutMinimum', internalType: 'uint256', type: 'uint256' },
1469
+ { name: 'implementation', internalType: 'address', type: 'address' },
1337
1470
  ],
1338
- name: 'AmountOutLessThanMinimum',
1471
+ name: 'ERC1967InvalidImplementation',
1339
1472
  },
1473
+ { type: 'error', inputs: [], name: 'ERC1967NonPayable' },
1340
1474
  { type: 'error', inputs: [], name: 'FailedInnerCall' },
1341
1475
  { type: 'error', inputs: [], name: 'InvalidInitialization' },
1342
1476
  {
1343
1477
  type: 'error',
1344
1478
  inputs: [
1345
- { name: 'requiredCardinality', internalType: 'uint256', type: 'uint256' },
1346
- { name: 'currentCardinality', internalType: 'uint256', type: 'uint256' },
1479
+ { name: 'oldImpl', internalType: 'address', type: 'address' },
1480
+ { name: 'newImpl', internalType: 'address', type: 'address' },
1347
1481
  ],
1348
- name: 'NotEnoughObservationCardinality',
1482
+ name: 'InvalidUpgradePath',
1349
1483
  },
1350
1484
  { type: 'error', inputs: [], name: 'NotInitializing' },
1351
1485
  { type: 'error', inputs: [], name: 'OnlyPool' },
1352
1486
  { type: 'error', inputs: [], name: 'OnlyProtocolRewardsOrWeth' },
1487
+ {
1488
+ type: 'error',
1489
+ inputs: [{ name: 'owner', internalType: 'address', type: 'address' }],
1490
+ name: 'OwnableInvalidOwner',
1491
+ },
1492
+ {
1493
+ type: 'error',
1494
+ inputs: [{ name: 'account', internalType: 'address', type: 'address' }],
1495
+ name: 'OwnableUnauthorizedAccount',
1496
+ },
1497
+ { type: 'error', inputs: [], name: 'PoolNeedsOneTokenToBeWETH' },
1353
1498
  {
1354
1499
  type: 'error',
1355
1500
  inputs: [{ name: 'token', internalType: 'address', type: 'address' }],
1356
1501
  name: 'SafeERC20FailedOperation',
1357
1502
  },
1503
+ { type: 'error', inputs: [], name: 'UUPSUnauthorizedCallContext' },
1504
+ {
1505
+ type: 'error',
1506
+ inputs: [{ name: 'slot', internalType: 'bytes32', type: 'bytes32' }],
1507
+ name: 'UUPSUnsupportedProxiableUUID',
1508
+ },
1509
+ { type: 'error', inputs: [], name: 'UnknownBurnError' },
1510
+ { type: 'error', inputs: [], name: 'UnknownSwapError' },
1511
+ {
1512
+ type: 'error',
1513
+ inputs: [
1514
+ { name: 'current', internalType: 'string', type: 'string' },
1515
+ { name: 'newName', internalType: 'string', type: 'string' },
1516
+ ],
1517
+ name: 'UpgradeToMismatchedContractName',
1518
+ },
1358
1519
  ] as const
1359
1520
 
1360
1521
  //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
@@ -1365,6 +1526,7 @@ export const cointagABI = [
1365
1526
  * - [__View Contract on Base Basescan__](https://basescan.org/address/0x7777777BbD0b88aD5F3b5f4c89C6B60D74b9774F)
1366
1527
  * - [__View Contract on Base Sepolia Basescan__](https://sepolia.basescan.org/address/0x7777777BbD0b88aD5F3b5f4c89C6B60D74b9774F)
1367
1528
  * - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x7777777BbD0b88aD5F3b5f4c89C6B60D74b9774F)
1529
+ * - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x77777773Bd7Cccb7E704315CA51245707E19B0DE)
1368
1530
  */
1369
1531
  export const cointagFactoryABI = [
1370
1532
  {
@@ -1440,27 +1602,6 @@ export const cointagFactoryABI = [
1440
1602
  outputs: [{ name: '', internalType: 'address', type: 'address' }],
1441
1603
  stateMutability: 'view',
1442
1604
  },
1443
- {
1444
- type: 'function',
1445
- inputs: [
1446
- { name: '_implementation', internalType: 'address', type: 'address' },
1447
- {
1448
- name: '_creatorRewardRecipient',
1449
- internalType: 'address',
1450
- type: 'address',
1451
- },
1452
- { name: '_pool', internalType: 'address', type: 'address' },
1453
- {
1454
- name: '_percentageToBuyBurn',
1455
- internalType: 'uint256',
1456
- type: 'uint256',
1457
- },
1458
- { name: 'saltSource', internalType: 'bytes', type: 'bytes' },
1459
- ],
1460
- name: 'getCointagAddressForImpl',
1461
- outputs: [{ name: '', internalType: 'address', type: 'address' }],
1462
- stateMutability: 'view',
1463
- },
1464
1605
  {
1465
1606
  type: 'function',
1466
1607
  inputs: [
@@ -1553,6 +1694,15 @@ export const cointagFactoryABI = [
1553
1694
  outputs: [],
1554
1695
  stateMutability: 'nonpayable',
1555
1696
  },
1697
+ {
1698
+ type: 'function',
1699
+ inputs: [],
1700
+ name: 'upgradeGate',
1701
+ outputs: [
1702
+ { name: '', internalType: 'contract IUpgradeGate', type: 'address' },
1703
+ ],
1704
+ stateMutability: 'view',
1705
+ },
1556
1706
  {
1557
1707
  type: 'function',
1558
1708
  inputs: [
@@ -1676,7 +1826,6 @@ export const cointagFactoryABI = [
1676
1826
  name: 'AddressEmptyCode',
1677
1827
  },
1678
1828
  { type: 'error', inputs: [], name: 'AddressZero' },
1679
- { type: 'error', inputs: [], name: 'ERC1167FailedCreateClone' },
1680
1829
  {
1681
1830
  type: 'error',
1682
1831
  inputs: [
@@ -1726,17 +1875,20 @@ export const cointagFactoryABI = [
1726
1875
  * - [__View Contract on Base Basescan__](https://basescan.org/address/0x7777777BbD0b88aD5F3b5f4c89C6B60D74b9774F)
1727
1876
  * - [__View Contract on Base Sepolia Basescan__](https://sepolia.basescan.org/address/0x7777777BbD0b88aD5F3b5f4c89C6B60D74b9774F)
1728
1877
  * - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x7777777BbD0b88aD5F3b5f4c89C6B60D74b9774F)
1878
+ * - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x77777773Bd7Cccb7E704315CA51245707E19B0DE)
1729
1879
  */
1730
1880
  export const cointagFactoryAddress = {
1731
1881
  8453: '0x7777777BbD0b88aD5F3b5f4c89C6B60D74b9774F',
1732
1882
  84532: '0x7777777BbD0b88aD5F3b5f4c89C6B60D74b9774F',
1733
1883
  7777777: '0x7777777BbD0b88aD5F3b5f4c89C6B60D74b9774F',
1884
+ 999999999: '0x77777773Bd7Cccb7E704315CA51245707E19B0DE',
1734
1885
  } as const
1735
1886
 
1736
1887
  /**
1737
1888
  * - [__View Contract on Base Basescan__](https://basescan.org/address/0x7777777BbD0b88aD5F3b5f4c89C6B60D74b9774F)
1738
1889
  * - [__View Contract on Base Sepolia Basescan__](https://sepolia.basescan.org/address/0x7777777BbD0b88aD5F3b5f4c89C6B60D74b9774F)
1739
1890
  * - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x7777777BbD0b88aD5F3b5f4c89C6B60D74b9774F)
1891
+ * - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x77777773Bd7Cccb7E704315CA51245707E19B0DE)
1740
1892
  */
1741
1893
  export const cointagFactoryConfig = {
1742
1894
  address: cointagFactoryAddress,
@@ -5276,7 +5428,7 @@ export const secondarySwapABI = [
5276
5428
  indexed: true,
5277
5429
  },
5278
5430
  {
5279
- name: 'amountEthSold',
5431
+ name: 'amountETHSold',
5280
5432
  internalType: 'uint256',
5281
5433
  type: 'uint256',
5282
5434
  indexed: false,
@@ -5356,7 +5508,7 @@ export const secondarySwapABI = [
5356
5508
  indexed: true,
5357
5509
  },
5358
5510
  {
5359
- name: 'amountEthPurchased',
5511
+ name: 'amountETHPurchased',
5360
5512
  internalType: 'uint256',
5361
5513
  type: 'uint256',
5362
5514
  indexed: false,
@@ -12555,6 +12707,8 @@ export const zoraMintsManagerImplConfig = {
12555
12707
  //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
12556
12708
 
12557
12709
  /**
12710
+ * - [__View Contract on Base Basescan__](https://basescan.org/address/0x7777777b3eA6C126942BB14dD5C3C11D365C385D)
12711
+ * - [__View Contract on Base Sepolia Basescan__](https://sepolia.basescan.org/address/0x7777777b3eA6C126942BB14dD5C3C11D365C385D)
12558
12712
  * - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x7777777b3eA6C126942BB14dD5C3C11D365C385D)
12559
12713
  * - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x7777777b3eA6C126942BB14dD5C3C11D365C385D)
12560
12714
  */
@@ -13358,15 +13512,21 @@ export const zoraSparks1155ABI = [
13358
13512
  ] as const
13359
13513
 
13360
13514
  /**
13515
+ * - [__View Contract on Base Basescan__](https://basescan.org/address/0x7777777b3eA6C126942BB14dD5C3C11D365C385D)
13516
+ * - [__View Contract on Base Sepolia Basescan__](https://sepolia.basescan.org/address/0x7777777b3eA6C126942BB14dD5C3C11D365C385D)
13361
13517
  * - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x7777777b3eA6C126942BB14dD5C3C11D365C385D)
13362
13518
  * - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x7777777b3eA6C126942BB14dD5C3C11D365C385D)
13363
13519
  */
13364
13520
  export const zoraSparks1155Address = {
13521
+ 8453: '0x7777777b3eA6C126942BB14dD5C3C11D365C385D',
13522
+ 84532: '0x7777777b3eA6C126942BB14dD5C3C11D365C385D',
13365
13523
  7777777: '0x7777777b3eA6C126942BB14dD5C3C11D365C385D',
13366
13524
  999999999: '0x7777777b3eA6C126942BB14dD5C3C11D365C385D',
13367
13525
  } as const
13368
13526
 
13369
13527
  /**
13528
+ * - [__View Contract on Base Basescan__](https://basescan.org/address/0x7777777b3eA6C126942BB14dD5C3C11D365C385D)
13529
+ * - [__View Contract on Base Sepolia Basescan__](https://sepolia.basescan.org/address/0x7777777b3eA6C126942BB14dD5C3C11D365C385D)
13370
13530
  * - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x7777777b3eA6C126942BB14dD5C3C11D365C385D)
13371
13531
  * - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x7777777b3eA6C126942BB14dD5C3C11D365C385D)
13372
13532
  */
@@ -13380,6 +13540,8 @@ export const zoraSparks1155Config = {
13380
13540
  //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
13381
13541
 
13382
13542
  /**
13543
+ * - [__View Contract on Base Basescan__](https://basescan.org/address/0x77777779acd6a96C0c57272112921A0b833c38fD)
13544
+ * - [__View Contract on Base Sepolia Basescan__](https://sepolia.basescan.org/address/0x77777779acd6a96C0c57272112921A0b833c38fD)
13383
13545
  * - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x77777779acd6a96C0c57272112921A0b833c38fD)
13384
13546
  * - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x77777779acd6a96C0c57272112921A0b833c38fD)
13385
13547
  */
@@ -13766,15 +13928,21 @@ export const zoraSparksManagerImplABI = [
13766
13928
  ] as const
13767
13929
 
13768
13930
  /**
13931
+ * - [__View Contract on Base Basescan__](https://basescan.org/address/0x77777779acd6a96C0c57272112921A0b833c38fD)
13932
+ * - [__View Contract on Base Sepolia Basescan__](https://sepolia.basescan.org/address/0x77777779acd6a96C0c57272112921A0b833c38fD)
13769
13933
  * - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x77777779acd6a96C0c57272112921A0b833c38fD)
13770
13934
  * - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x77777779acd6a96C0c57272112921A0b833c38fD)
13771
13935
  */
13772
13936
  export const zoraSparksManagerImplAddress = {
13937
+ 8453: '0x77777779acd6a96C0c57272112921A0b833c38fD',
13938
+ 84532: '0x77777779acd6a96C0c57272112921A0b833c38fD',
13773
13939
  7777777: '0x77777779acd6a96C0c57272112921A0b833c38fD',
13774
13940
  999999999: '0x77777779acd6a96C0c57272112921A0b833c38fD',
13775
13941
  } as const
13776
13942
 
13777
13943
  /**
13944
+ * - [__View Contract on Base Basescan__](https://basescan.org/address/0x77777779acd6a96C0c57272112921A0b833c38fD)
13945
+ * - [__View Contract on Base Sepolia Basescan__](https://sepolia.basescan.org/address/0x77777779acd6a96C0c57272112921A0b833c38fD)
13778
13946
  * - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x77777779acd6a96C0c57272112921A0b833c38fD)
13779
13947
  * - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x77777779acd6a96C0c57272112921A0b833c38fD)
13780
13948
  */