@zoralabs/protocol-deployments 0.0.11 → 0.0.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.
Files changed (38) hide show
  1. package/.turbo/turbo-build.log +14 -15
  2. package/CHANGELOG.md +7 -0
  3. package/README.md +1 -1
  4. package/addresses/1.json +5 -6
  5. package/addresses/10.json +5 -6
  6. package/addresses/11155111.json +11 -7
  7. package/addresses/420.json +6 -7
  8. package/addresses/5.json +6 -6
  9. package/addresses/7777777.json +5 -7
  10. package/addresses/8453.json +5 -6
  11. package/addresses/84531.json +7 -7
  12. package/addresses/999.json +6 -8
  13. package/addresses/999999999.json +6 -6
  14. package/chainConfigs/11155111.json +3 -2
  15. package/deterministicConfig/factoryProxy/signatures.json +1 -1
  16. package/deterministicConfig/premintExecutorProxy/signatures.json +1 -0
  17. package/deterministicConfig/upgradeGate/signatures.json +1 -1
  18. package/dist/index.cjs +42 -66
  19. package/dist/index.cjs.map +1 -1
  20. package/dist/index.js +42 -66
  21. package/dist/index.js.map +1 -1
  22. package/dist/package/batchPublish.test.d.ts +19 -18
  23. package/dist/package/batchPublish.test.d.ts.map +1 -1
  24. package/dist/package/chainConfigs.d.ts +1 -0
  25. package/dist/package/chainConfigs.d.ts.map +1 -1
  26. package/dist/package/wagmiGenerated.d.ts +64 -48
  27. package/dist/package/wagmiGenerated.d.ts.map +1 -1
  28. package/foundry.toml +6 -6
  29. package/package/batchPublish.test.ts +4 -4
  30. package/package/wagmiGenerated.ts +59 -42
  31. package/package.json +21 -21
  32. package/remappings.txt +9 -9
  33. package/script/DeployMintersAndImplementations.s.sol +0 -2
  34. package/script/copy-deployed-contracts.ts +38 -18
  35. package/script/signDeploymentTransactions.ts +83 -58
  36. package/src/ZoraDeployerBase.sol +0 -1
  37. package/wagmi.config.ts +1 -1
  38. package/package/chainConfigs.ts +0 -60
@@ -26,18 +26,19 @@ export declare const walletClientWithAccount: {
26
26
  readonly webSocket: readonly ["ws://127.0.0.1:8545"];
27
27
  };
28
28
  };
29
- }, import("viem/_types/types/chain").ChainConfig<import("viem").ChainFormatters>>;
29
+ }, import("viem/_types/types/chain").ChainConfig<undefined>>;
30
30
  key: string;
31
31
  name: string;
32
32
  pollingInterval: number;
33
33
  request: import("viem").EIP1193RequestFn<import("viem").WalletRpcSchema>;
34
34
  transport: import("viem").TransportConfig<"http", import("viem").EIP1193RequestFn> & {
35
+ fetchOptions?: Omit<RequestInit, "body"> | undefined;
35
36
  url?: string | undefined;
36
37
  };
37
38
  type: string;
38
39
  uid: string;
39
40
  addChain: (args: import("viem").AddChainParameters) => Promise<void>;
40
- deployContract: <const TAbi extends import("viem").Abi | readonly unknown[], TChainOverride extends import("viem").Chain | undefined>(args: import("viem").DeployContractParameters<TAbi, import("viem/_types/types/utils").Assign<{
41
+ deployContract: <const TAbi extends import("viem").Abi | readonly unknown[], TChainOverride extends import("viem").Chain | undefined = undefined>(args: import("viem").DeployContractParameters<TAbi, import("viem/_types/types/utils").Assign<{
41
42
  readonly id: 31337;
42
43
  readonly name: "Foundry";
43
44
  readonly network: "foundry";
@@ -56,11 +57,11 @@ export declare const walletClientWithAccount: {
56
57
  readonly webSocket: readonly ["ws://127.0.0.1:8545"];
57
58
  };
58
59
  };
59
- }, import("viem/_types/types/chain").ChainConfig<import("viem").ChainFormatters>>, undefined, TChainOverride>) => Promise<`0x${string}`>;
60
+ }, import("viem/_types/types/chain").ChainConfig<undefined>>, undefined, TChainOverride>) => Promise<`0x${string}`>;
60
61
  getAddresses: () => Promise<import("viem").GetAddressesReturnType>;
61
62
  getChainId: () => Promise<number>;
62
63
  getPermissions: () => Promise<import("viem").GetPermissionsReturnType>;
63
- prepareTransactionRequest: <TChainOverride_1 extends import("viem").Chain | undefined>(args: import("viem").PrepareTransactionRequestParameters<import("viem/_types/types/utils").Assign<{
64
+ prepareTransactionRequest: <TChainOverride_1 extends import("viem").Chain | undefined = undefined>(args: import("viem").PrepareTransactionRequestParameters<import("viem/_types/types/utils").Assign<{
64
65
  readonly id: 31337;
65
66
  readonly name: "Foundry";
66
67
  readonly network: "foundry";
@@ -79,14 +80,14 @@ export declare const walletClientWithAccount: {
79
80
  readonly webSocket: readonly ["ws://127.0.0.1:8545"];
80
81
  };
81
82
  };
82
- }, import("viem/_types/types/chain").ChainConfig<import("viem").ChainFormatters>>, undefined, TChainOverride_1>) => Promise<import("viem").PrepareTransactionRequestReturnType>;
83
+ }, import("viem/_types/types/chain").ChainConfig<undefined>>, undefined, TChainOverride_1>) => Promise<import("viem").PrepareTransactionRequestReturnType>;
83
84
  requestAddresses: () => Promise<import("viem").RequestAddressesReturnType>;
84
85
  requestPermissions: (args: {
85
86
  [x: string]: Record<string, any>;
86
87
  eth_accounts: Record<string, any>;
87
88
  }) => Promise<import("viem").RequestPermissionsReturnType>;
88
89
  sendRawTransaction: (args: import("viem/_types/actions/wallet/sendRawTransaction").SendRawTransactionParameters) => Promise<`0x${string}`>;
89
- sendTransaction: <TChainOverride_2 extends import("viem").Chain | undefined>(args: import("viem").SendTransactionParameters<import("viem/_types/types/utils").Assign<{
90
+ sendTransaction: <TChainOverride_2 extends import("viem").Chain | undefined = undefined>(args: import("viem").SendTransactionParameters<import("viem/_types/types/utils").Assign<{
90
91
  readonly id: 31337;
91
92
  readonly name: "Foundry";
92
93
  readonly network: "foundry";
@@ -105,9 +106,9 @@ export declare const walletClientWithAccount: {
105
106
  readonly webSocket: readonly ["ws://127.0.0.1:8545"];
106
107
  };
107
108
  };
108
- }, import("viem/_types/types/chain").ChainConfig<import("viem").ChainFormatters>>, undefined, TChainOverride_2>) => Promise<`0x${string}`>;
109
+ }, import("viem/_types/types/chain").ChainConfig<undefined>>, undefined, TChainOverride_2>) => Promise<`0x${string}`>;
109
110
  signMessage: (args: import("viem").SignMessageParameters<undefined>) => Promise<`0x${string}`>;
110
- signTransaction: <TChainOverride_3 extends import("viem").Chain | undefined>(args: import("viem/_types/actions/wallet/signTransaction").SignTransactionParameters<import("viem/_types/types/utils").Assign<{
111
+ signTransaction: <TChainOverride_3 extends import("viem").Chain | undefined = undefined>(args: import("viem/_types/actions/wallet/signTransaction").SignTransactionParameters<import("viem/_types/types/utils").Assign<{
111
112
  readonly id: 31337;
112
113
  readonly name: "Foundry";
113
114
  readonly network: "foundry";
@@ -126,7 +127,7 @@ export declare const walletClientWithAccount: {
126
127
  readonly webSocket: readonly ["ws://127.0.0.1:8545"];
127
128
  };
128
129
  };
129
- }, import("viem/_types/types/chain").ChainConfig<import("viem").ChainFormatters>>, undefined, TChainOverride_3>) => Promise<`0x${string}`>;
130
+ }, import("viem/_types/types/chain").ChainConfig<undefined>>, undefined, TChainOverride_3>) => Promise<`0x${string}`>;
130
131
  signTypedData: <const TTypedData extends {
131
132
  [x: string]: readonly import("viem").TypedDataParameter[];
132
133
  [x: `string[${string}]`]: undefined;
@@ -137,9 +138,9 @@ export declare const walletClientWithAccount: {
137
138
  [x: `bytes[${string}]`]: undefined;
138
139
  [x: `uint8[${string}]`]: undefined;
139
140
  [x: `uint256[${string}]`]: undefined;
140
- [x: `bytes4[${string}]`]: undefined;
141
141
  [x: `uint96[${string}]`]: undefined;
142
142
  [x: `bool[${string}]`]: undefined;
143
+ [x: `bytes4[${string}]`]: undefined;
143
144
  [x: `uint64[${string}]`]: undefined;
144
145
  [x: `bytes1[${string}]`]: undefined;
145
146
  [x: `bytes3[${string}]`]: undefined;
@@ -239,9 +240,9 @@ export declare const walletClientWithAccount: {
239
240
  bytes?: undefined;
240
241
  uint8?: undefined;
241
242
  uint256?: undefined;
242
- bytes4?: undefined;
243
243
  uint96?: undefined;
244
244
  bool?: undefined;
245
+ bytes4?: undefined;
245
246
  uint64?: undefined;
246
247
  bytes1?: undefined;
247
248
  bytes3?: undefined;
@@ -337,7 +338,7 @@ export declare const walletClientWithAccount: {
337
338
  }, TPrimaryType extends string>(args: import("viem").SignTypedDataParameters<TTypedData, TPrimaryType, undefined>) => Promise<`0x${string}`>;
338
339
  switchChain: (args: import("viem").SwitchChainParameters) => Promise<void>;
339
340
  watchAsset: (args: import("viem").WatchAssetParams) => Promise<boolean>;
340
- writeContract: <const TAbi_1 extends import("viem").Abi | readonly unknown[], TFunctionName extends string, TChainOverride_4 extends import("viem").Chain | undefined>(args: import("viem").WriteContractParameters<TAbi_1, TFunctionName, import("viem/_types/types/utils").Assign<{
341
+ writeContract: <const TAbi_1 extends import("viem").Abi | readonly unknown[], TFunctionName extends string, TChainOverride_4 extends import("viem").Chain | undefined = undefined>(args: import("viem").WriteContractParameters<TAbi_1, TFunctionName, import("viem/_types/types/utils").Assign<{
341
342
  readonly id: 31337;
342
343
  readonly name: "Foundry";
343
344
  readonly network: "foundry";
@@ -356,7 +357,7 @@ export declare const walletClientWithAccount: {
356
357
  readonly webSocket: readonly ["ws://127.0.0.1:8545"];
357
358
  };
358
359
  };
359
- }, import("viem/_types/types/chain").ChainConfig<import("viem").ChainFormatters>>, undefined, TChainOverride_4>) => Promise<`0x${string}`>;
360
+ }, import("viem/_types/types/chain").ChainConfig<undefined>>, undefined, TChainOverride_4>) => Promise<`0x${string}`>;
360
361
  extend: <const client extends {
361
362
  [x: string]: unknown;
362
363
  account?: undefined;
@@ -370,7 +371,7 @@ export declare const walletClientWithAccount: {
370
371
  transport?: undefined;
371
372
  type?: undefined;
372
373
  uid?: undefined;
373
- }>(fn: (client: import("viem").Client<import("viem").HttpTransport, import("viem/_types/types/utils").Assign<{
374
+ } & Partial<Pick<import("viem").PublicActions, "call" | "createContractEventFilter" | "createEventFilter" | "estimateContractGas" | "estimateGas" | "getBlock" | "getBlockNumber" | "getChainId" | "getContractEvents" | "getEnsText" | "getFilterChanges" | "getGasPrice" | "getLogs" | "getTransaction" | "getTransactionCount" | "getTransactionReceipt" | "prepareTransactionRequest" | "readContract" | "sendRawTransaction" | "simulateContract" | "uninstallFilter" | "watchBlockNumber" | "watchContractEvent"> & Pick<import("viem").WalletActions, "sendTransaction" | "writeContract">>>(fn: (client: import("viem").Client<import("viem").HttpTransport, import("viem/_types/types/utils").Assign<{
374
375
  readonly id: 31337;
375
376
  readonly name: "Foundry";
376
377
  readonly network: "foundry";
@@ -389,7 +390,7 @@ export declare const walletClientWithAccount: {
389
390
  readonly webSocket: readonly ["ws://127.0.0.1:8545"];
390
391
  };
391
392
  };
392
- }, import("viem/_types/types/chain").ChainConfig<import("viem").ChainFormatters>>, undefined, import("viem").WalletRpcSchema, import("viem").WalletActions<import("viem/_types/types/utils").Assign<{
393
+ }, import("viem/_types/types/chain").ChainConfig<undefined>>, undefined, import("viem").WalletRpcSchema, import("viem").WalletActions<import("viem/_types/types/utils").Assign<{
393
394
  readonly id: 31337;
394
395
  readonly name: "Foundry";
395
396
  readonly network: "foundry";
@@ -408,7 +409,7 @@ export declare const walletClientWithAccount: {
408
409
  readonly webSocket: readonly ["ws://127.0.0.1:8545"];
409
410
  };
410
411
  };
411
- }, import("viem/_types/types/chain").ChainConfig<import("viem").ChainFormatters>>, undefined>>) => client) => import("viem").Client<import("viem").HttpTransport, import("viem/_types/types/utils").Assign<{
412
+ }, import("viem/_types/types/chain").ChainConfig<undefined>>, undefined>>) => client) => import("viem").Client<import("viem").HttpTransport, import("viem/_types/types/utils").Assign<{
412
413
  readonly id: 31337;
413
414
  readonly name: "Foundry";
414
415
  readonly network: "foundry";
@@ -427,7 +428,7 @@ export declare const walletClientWithAccount: {
427
428
  readonly webSocket: readonly ["ws://127.0.0.1:8545"];
428
429
  };
429
430
  };
430
- }, import("viem/_types/types/chain").ChainConfig<import("viem").ChainFormatters>>, undefined, import("viem").WalletRpcSchema, { [K in keyof client]: client[K]; } & import("viem").WalletActions<import("viem/_types/types/utils").Assign<{
431
+ }, import("viem/_types/types/chain").ChainConfig<undefined>>, undefined, import("viem").WalletRpcSchema, { [K in keyof client]: client[K]; } & import("viem").WalletActions<import("viem/_types/types/utils").Assign<{
431
432
  readonly id: 31337;
432
433
  readonly name: "Foundry";
433
434
  readonly network: "foundry";
@@ -446,6 +447,6 @@ export declare const walletClientWithAccount: {
446
447
  readonly webSocket: readonly ["ws://127.0.0.1:8545"];
447
448
  };
448
449
  };
449
- }, import("viem/_types/types/chain").ChainConfig<import("viem").ChainFormatters>>, undefined>>;
450
+ }, import("viem/_types/types/chain").ChainConfig<undefined>>, undefined>>;
450
451
  };
451
452
  //# sourceMappingURL=batchPublish.test.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"batchPublish.test.d.ts","sourceRoot":"","sources":["../../package/batchPublish.test.ts"],"names":[],"mappings":"AAwBA,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAGlC,CAAC"}
1
+ {"version":3,"file":"batchPublish.test.d.ts","sourceRoot":"","sources":["../../package/batchPublish.test.ts"],"names":[],"mappings":"AAwBA,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAGlC,CAAC"}
@@ -12,6 +12,7 @@ export declare const chainConfigs: {
12
12
  11155111: {
13
13
  FACTORY_OWNER: string;
14
14
  MINT_FEE_RECIPIENT: string;
15
+ PROTOCOL_REWARDS: string;
15
16
  };
16
17
  420: {
17
18
  FACTORY_OWNER: string;
@@ -1 +1 @@
1
- {"version":3,"file":"chainConfigs.d.ts","sourceRoot":"","sources":["../../package/chainConfigs.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA2DxB,CAAC"}
1
+ {"version":3,"file":"chainConfigs.d.ts","sourceRoot":"","sources":["../../package/chainConfigs.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAiDtB,CAAC"}
@@ -3,11 +3,14 @@
3
3
  * - [__View Contract on Goerli Etherscan__](https://goerli.etherscan.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
4
4
  * - [__View Contract on Op Mainnet Optimism Explorer__](https://explorer.optimism.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
5
5
  * - [__View Contract on Optimism Goerli Etherscan__](https://goerli-optimism.etherscan.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
6
+ * - [__View Contract on Pgn Pgn Explorer__](https://explorer.publicgoods.network/address/0x6E742921602a5195f6439c8b8b827E85902E1B2D)
6
7
  * - [__View Contract on Zora Goerli Testnet Explorer__](https://testnet.explorer.zora.energy/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
7
8
  * - [__View Contract on Base Basescan__](https://basescan.org/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
9
+ * - [__View Contract on Pgn Pgn Testnet Explorer__](https://explorer.sepolia.publicgoods.network/address/0x6E742921602a5195f6439c8b8b827E85902E1B2D)
8
10
  * - [__View Contract on Base Goerli Basescan__](https://goerli.basescan.org/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
9
11
  * - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
10
- * - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x13dAA8E9e3f68deDE7b1386ACdc12eA98F2FB688)
12
+ * - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
13
+ * - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
11
14
  */
12
15
  export declare const zoraCreator1155FactoryImplABI: readonly [{
13
16
  readonly stateMutability: "nonpayable";
@@ -550,11 +553,14 @@ export declare const zoraCreator1155FactoryImplABI: readonly [{
550
553
  * - [__View Contract on Goerli Etherscan__](https://goerli.etherscan.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
551
554
  * - [__View Contract on Op Mainnet Optimism Explorer__](https://explorer.optimism.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
552
555
  * - [__View Contract on Optimism Goerli Etherscan__](https://goerli-optimism.etherscan.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
556
+ * - [__View Contract on Pgn Pgn Explorer__](https://explorer.publicgoods.network/address/0x6E742921602a5195f6439c8b8b827E85902E1B2D)
553
557
  * - [__View Contract on Zora Goerli Testnet Explorer__](https://testnet.explorer.zora.energy/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
554
558
  * - [__View Contract on Base Basescan__](https://basescan.org/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
559
+ * - [__View Contract on Pgn Pgn Testnet Explorer__](https://explorer.sepolia.publicgoods.network/address/0x6E742921602a5195f6439c8b8b827E85902E1B2D)
555
560
  * - [__View Contract on Base Goerli Basescan__](https://goerli.basescan.org/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
556
561
  * - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
557
- * - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x13dAA8E9e3f68deDE7b1386ACdc12eA98F2FB688)
562
+ * - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
563
+ * - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
558
564
  */
559
565
  export declare const zoraCreator1155FactoryImplAddress: {
560
566
  readonly 1: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021";
@@ -567,7 +573,7 @@ export declare const zoraCreator1155FactoryImplAddress: {
567
573
  readonly 58008: "0x6E742921602a5195f6439c8b8b827E85902E1B2D";
568
574
  readonly 84531: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021";
569
575
  readonly 7777777: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021";
570
- readonly 11155111: "0x13dAA8E9e3f68deDE7b1386ACdc12eA98F2FB688";
576
+ readonly 11155111: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021";
571
577
  readonly 999999999: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021";
572
578
  };
573
579
  /**
@@ -575,11 +581,14 @@ export declare const zoraCreator1155FactoryImplAddress: {
575
581
  * - [__View Contract on Goerli Etherscan__](https://goerli.etherscan.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
576
582
  * - [__View Contract on Op Mainnet Optimism Explorer__](https://explorer.optimism.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
577
583
  * - [__View Contract on Optimism Goerli Etherscan__](https://goerli-optimism.etherscan.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
584
+ * - [__View Contract on Pgn Pgn Explorer__](https://explorer.publicgoods.network/address/0x6E742921602a5195f6439c8b8b827E85902E1B2D)
578
585
  * - [__View Contract on Zora Goerli Testnet Explorer__](https://testnet.explorer.zora.energy/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
579
586
  * - [__View Contract on Base Basescan__](https://basescan.org/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
587
+ * - [__View Contract on Pgn Pgn Testnet Explorer__](https://explorer.sepolia.publicgoods.network/address/0x6E742921602a5195f6439c8b8b827E85902E1B2D)
580
588
  * - [__View Contract on Base Goerli Basescan__](https://goerli.basescan.org/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
581
589
  * - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
582
- * - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x13dAA8E9e3f68deDE7b1386ACdc12eA98F2FB688)
590
+ * - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
591
+ * - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
583
592
  */
584
593
  export declare const zoraCreator1155FactoryImplConfig: {
585
594
  readonly address: {
@@ -593,7 +602,7 @@ export declare const zoraCreator1155FactoryImplConfig: {
593
602
  readonly 58008: "0x6E742921602a5195f6439c8b8b827E85902E1B2D";
594
603
  readonly 84531: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021";
595
604
  readonly 7777777: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021";
596
- readonly 11155111: "0x13dAA8E9e3f68deDE7b1386ACdc12eA98F2FB688";
605
+ readonly 11155111: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021";
597
606
  readonly 999999999: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021";
598
607
  };
599
608
  readonly abi: readonly [{
@@ -1212,16 +1221,6 @@ export declare const zoraCreator1155ImplABI: readonly [{
1212
1221
  readonly internalType: "uint256";
1213
1222
  readonly type: "uint256";
1214
1223
  }];
1215
- }, {
1216
- readonly stateMutability: "view";
1217
- readonly type: "function";
1218
- readonly inputs: readonly [];
1219
- readonly name: "PLATFORM_REFERRAL_REWARD_DEPOSIT_REASON";
1220
- readonly outputs: readonly [{
1221
- readonly name: "";
1222
- readonly internalType: "bytes4";
1223
- readonly type: "bytes4";
1224
- }];
1225
1224
  }, {
1226
1225
  readonly stateMutability: "nonpayable";
1227
1226
  readonly type: "function";
@@ -1413,10 +1412,6 @@ export declare const zoraCreator1155ImplABI: readonly [{
1413
1412
  readonly name: "zoraReward";
1414
1413
  readonly internalType: "uint256";
1415
1414
  readonly type: "uint256";
1416
- }, {
1417
- readonly name: "platformReferralReward";
1418
- readonly internalType: "uint256";
1419
- readonly type: "uint256";
1420
1415
  }];
1421
1416
  }];
1422
1417
  }, {
@@ -1452,10 +1447,6 @@ export declare const zoraCreator1155ImplABI: readonly [{
1452
1447
  readonly name: "zoraReward";
1453
1448
  readonly internalType: "uint256";
1454
1449
  readonly type: "uint256";
1455
- }, {
1456
- readonly name: "platformReferralReward";
1457
- readonly internalType: "uint256";
1458
- readonly type: "uint256";
1459
1450
  }];
1460
1451
  }];
1461
1452
  }, {
@@ -1913,16 +1904,6 @@ export declare const zoraCreator1155ImplABI: readonly [{
1913
1904
  readonly internalType: "uint256";
1914
1905
  readonly type: "uint256";
1915
1906
  }];
1916
- }, {
1917
- readonly stateMutability: "view";
1918
- readonly type: "function";
1919
- readonly inputs: readonly [];
1920
- readonly name: "protocolRewards";
1921
- readonly outputs: readonly [{
1922
- readonly name: "";
1923
- readonly internalType: "contract IProtocolRewards";
1924
- readonly type: "address";
1925
- }];
1926
1907
  }, {
1927
1908
  readonly stateMutability: "view";
1928
1909
  readonly type: "function";
@@ -3071,6 +3052,8 @@ export declare const zoraCreator1155ImplABI: readonly [{
3071
3052
  * - [__View Contract on Base Basescan__](https://basescan.org/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
3072
3053
  * - [__View Contract on Base Goerli Basescan__](https://goerli.basescan.org/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
3073
3054
  * - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
3055
+ * - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
3056
+ * - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
3074
3057
  */
3075
3058
  export declare const zoraCreator1155PremintExecutorImplABI: readonly [{
3076
3059
  readonly stateMutability: "nonpayable";
@@ -4309,6 +4292,8 @@ export declare const zoraCreator1155PremintExecutorImplABI: readonly [{
4309
4292
  * - [__View Contract on Base Basescan__](https://basescan.org/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
4310
4293
  * - [__View Contract on Base Goerli Basescan__](https://goerli.basescan.org/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
4311
4294
  * - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
4295
+ * - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
4296
+ * - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
4312
4297
  */
4313
4298
  export declare const zoraCreator1155PremintExecutorImplAddress: {
4314
4299
  readonly 1: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340";
@@ -4319,6 +4304,7 @@ export declare const zoraCreator1155PremintExecutorImplAddress: {
4319
4304
  readonly 8453: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340";
4320
4305
  readonly 84531: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340";
4321
4306
  readonly 7777777: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340";
4307
+ readonly 11155111: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340";
4322
4308
  readonly 999999999: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340";
4323
4309
  };
4324
4310
  /**
@@ -4330,6 +4316,8 @@ export declare const zoraCreator1155PremintExecutorImplAddress: {
4330
4316
  * - [__View Contract on Base Basescan__](https://basescan.org/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
4331
4317
  * - [__View Contract on Base Goerli Basescan__](https://goerli.basescan.org/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
4332
4318
  * - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
4319
+ * - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
4320
+ * - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
4333
4321
  */
4334
4322
  export declare const zoraCreator1155PremintExecutorImplConfig: {
4335
4323
  readonly address: {
@@ -4341,6 +4329,7 @@ export declare const zoraCreator1155PremintExecutorImplConfig: {
4341
4329
  readonly 8453: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340";
4342
4330
  readonly 84531: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340";
4343
4331
  readonly 7777777: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340";
4332
+ readonly 11155111: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340";
4344
4333
  readonly 999999999: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340";
4345
4334
  };
4346
4335
  readonly abi: readonly [{
@@ -5577,11 +5566,14 @@ export declare const zoraCreator1155PremintExecutorImplConfig: {
5577
5566
  * - [__View Contract on Goerli Etherscan__](https://goerli.etherscan.io/address/0x04E2516A2c207E84a1839755675dfd8eF6302F0a)
5578
5567
  * - [__View Contract on Op Mainnet Optimism Explorer__](https://explorer.optimism.io/address/0x3678862f04290E565cCA2EF163BAeb92Bb76790C)
5579
5568
  * - [__View Contract on Optimism Goerli Etherscan__](https://goerli-optimism.etherscan.io/address/0x04E2516A2c207E84a1839755675dfd8eF6302F0a)
5569
+ * - [__View Contract on Pgn Pgn Explorer__](https://explorer.publicgoods.network/address/0xc288fe9B145fC31D9aFBa771d0FeB986F6eb49e3)
5580
5570
  * - [__View Contract on Zora Goerli Testnet Explorer__](https://testnet.explorer.zora.energy/address/0x04E2516A2c207E84a1839755675dfd8eF6302F0a)
5581
5571
  * - [__View Contract on Base Basescan__](https://basescan.org/address/0x04E2516A2c207E84a1839755675dfd8eF6302F0a)
5572
+ * - [__View Contract on Pgn Pgn Testnet Explorer__](https://explorer.sepolia.publicgoods.network/address/0xc288fe9B145fC31D9aFBa771d0FeB986F6eb49e3)
5582
5573
  * - [__View Contract on Base Goerli Basescan__](https://goerli.basescan.org/address/0x04E2516A2c207E84a1839755675dfd8eF6302F0a)
5583
5574
  * - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x04E2516A2c207E84a1839755675dfd8eF6302F0a)
5584
- * - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0xA5E8d0d4FCed34E86AF6d4E16131C7210Ba8b4b7)
5575
+ * - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x1Cd1C1f3b8B779B50Db23155F2Cb244FCcA06B21)
5576
+ * - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x6d28164C3CE04A190D5F9f0f8881fc807EAD975A)
5585
5577
  */
5586
5578
  export declare const zoraCreatorFixedPriceSaleStrategyABI: readonly [{
5587
5579
  readonly stateMutability: "pure";
@@ -5914,11 +5906,14 @@ export declare const zoraCreatorFixedPriceSaleStrategyABI: readonly [{
5914
5906
  * - [__View Contract on Goerli Etherscan__](https://goerli.etherscan.io/address/0x04E2516A2c207E84a1839755675dfd8eF6302F0a)
5915
5907
  * - [__View Contract on Op Mainnet Optimism Explorer__](https://explorer.optimism.io/address/0x3678862f04290E565cCA2EF163BAeb92Bb76790C)
5916
5908
  * - [__View Contract on Optimism Goerli Etherscan__](https://goerli-optimism.etherscan.io/address/0x04E2516A2c207E84a1839755675dfd8eF6302F0a)
5909
+ * - [__View Contract on Pgn Pgn Explorer__](https://explorer.publicgoods.network/address/0xc288fe9B145fC31D9aFBa771d0FeB986F6eb49e3)
5917
5910
  * - [__View Contract on Zora Goerli Testnet Explorer__](https://testnet.explorer.zora.energy/address/0x04E2516A2c207E84a1839755675dfd8eF6302F0a)
5918
5911
  * - [__View Contract on Base Basescan__](https://basescan.org/address/0x04E2516A2c207E84a1839755675dfd8eF6302F0a)
5912
+ * - [__View Contract on Pgn Pgn Testnet Explorer__](https://explorer.sepolia.publicgoods.network/address/0xc288fe9B145fC31D9aFBa771d0FeB986F6eb49e3)
5919
5913
  * - [__View Contract on Base Goerli Basescan__](https://goerli.basescan.org/address/0x04E2516A2c207E84a1839755675dfd8eF6302F0a)
5920
5914
  * - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x04E2516A2c207E84a1839755675dfd8eF6302F0a)
5921
- * - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0xA5E8d0d4FCed34E86AF6d4E16131C7210Ba8b4b7)
5915
+ * - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x1Cd1C1f3b8B779B50Db23155F2Cb244FCcA06B21)
5916
+ * - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x6d28164C3CE04A190D5F9f0f8881fc807EAD975A)
5922
5917
  */
5923
5918
  export declare const zoraCreatorFixedPriceSaleStrategyAddress: {
5924
5919
  readonly 1: "0x04E2516A2c207E84a1839755675dfd8eF6302F0a";
@@ -5931,7 +5926,7 @@ export declare const zoraCreatorFixedPriceSaleStrategyAddress: {
5931
5926
  readonly 58008: "0xc288fe9B145fC31D9aFBa771d0FeB986F6eb49e3";
5932
5927
  readonly 84531: "0x04E2516A2c207E84a1839755675dfd8eF6302F0a";
5933
5928
  readonly 7777777: "0x04E2516A2c207E84a1839755675dfd8eF6302F0a";
5934
- readonly 11155111: "0xA5E8d0d4FCed34E86AF6d4E16131C7210Ba8b4b7";
5929
+ readonly 11155111: "0x1Cd1C1f3b8B779B50Db23155F2Cb244FCcA06B21";
5935
5930
  readonly 999999999: "0x6d28164C3CE04A190D5F9f0f8881fc807EAD975A";
5936
5931
  };
5937
5932
  /**
@@ -5939,11 +5934,14 @@ export declare const zoraCreatorFixedPriceSaleStrategyAddress: {
5939
5934
  * - [__View Contract on Goerli Etherscan__](https://goerli.etherscan.io/address/0x04E2516A2c207E84a1839755675dfd8eF6302F0a)
5940
5935
  * - [__View Contract on Op Mainnet Optimism Explorer__](https://explorer.optimism.io/address/0x3678862f04290E565cCA2EF163BAeb92Bb76790C)
5941
5936
  * - [__View Contract on Optimism Goerli Etherscan__](https://goerli-optimism.etherscan.io/address/0x04E2516A2c207E84a1839755675dfd8eF6302F0a)
5937
+ * - [__View Contract on Pgn Pgn Explorer__](https://explorer.publicgoods.network/address/0xc288fe9B145fC31D9aFBa771d0FeB986F6eb49e3)
5942
5938
  * - [__View Contract on Zora Goerli Testnet Explorer__](https://testnet.explorer.zora.energy/address/0x04E2516A2c207E84a1839755675dfd8eF6302F0a)
5943
5939
  * - [__View Contract on Base Basescan__](https://basescan.org/address/0x04E2516A2c207E84a1839755675dfd8eF6302F0a)
5940
+ * - [__View Contract on Pgn Pgn Testnet Explorer__](https://explorer.sepolia.publicgoods.network/address/0xc288fe9B145fC31D9aFBa771d0FeB986F6eb49e3)
5944
5941
  * - [__View Contract on Base Goerli Basescan__](https://goerli.basescan.org/address/0x04E2516A2c207E84a1839755675dfd8eF6302F0a)
5945
5942
  * - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x04E2516A2c207E84a1839755675dfd8eF6302F0a)
5946
- * - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0xA5E8d0d4FCed34E86AF6d4E16131C7210Ba8b4b7)
5943
+ * - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x1Cd1C1f3b8B779B50Db23155F2Cb244FCcA06B21)
5944
+ * - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x6d28164C3CE04A190D5F9f0f8881fc807EAD975A)
5947
5945
  */
5948
5946
  export declare const zoraCreatorFixedPriceSaleStrategyConfig: {
5949
5947
  readonly address: {
@@ -5957,7 +5955,7 @@ export declare const zoraCreatorFixedPriceSaleStrategyConfig: {
5957
5955
  readonly 58008: "0xc288fe9B145fC31D9aFBa771d0FeB986F6eb49e3";
5958
5956
  readonly 84531: "0x04E2516A2c207E84a1839755675dfd8eF6302F0a";
5959
5957
  readonly 7777777: "0x04E2516A2c207E84a1839755675dfd8eF6302F0a";
5960
- readonly 11155111: "0xA5E8d0d4FCed34E86AF6d4E16131C7210Ba8b4b7";
5958
+ readonly 11155111: "0x1Cd1C1f3b8B779B50Db23155F2Cb244FCcA06B21";
5961
5959
  readonly 999999999: "0x6d28164C3CE04A190D5F9f0f8881fc807EAD975A";
5962
5960
  };
5963
5961
  readonly abi: readonly [{
@@ -6292,11 +6290,14 @@ export declare const zoraCreatorFixedPriceSaleStrategyConfig: {
6292
6290
  * - [__View Contract on Goerli Etherscan__](https://goerli.etherscan.io/address/0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7)
6293
6291
  * - [__View Contract on Op Mainnet Optimism Explorer__](https://explorer.optimism.io/address/0x899ce31dF6C6Af81203AcAaD285bF539234eF4b8)
6294
6292
  * - [__View Contract on Optimism Goerli Etherscan__](https://goerli-optimism.etherscan.io/address/0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7)
6293
+ * - [__View Contract on Pgn Pgn Explorer__](https://explorer.publicgoods.network/address/0x314E552b55DFbDfD4d76623E1D45E5056723998B)
6295
6294
  * - [__View Contract on Zora Goerli Testnet Explorer__](https://testnet.explorer.zora.energy/address/0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7)
6296
6295
  * - [__View Contract on Base Basescan__](https://basescan.org/address/0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7)
6296
+ * - [__View Contract on Pgn Pgn Testnet Explorer__](https://explorer.sepolia.publicgoods.network/address/0x314E552b55DFbDfD4d76623E1D45E5056723998B)
6297
6297
  * - [__View Contract on Base Goerli Basescan__](https://goerli.basescan.org/address/0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7)
6298
6298
  * - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7)
6299
- * - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x357D8108A77762B41Ea0C4D69fBb1eF4391251eC)
6299
+ * - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0xe770E6f19aecF8ef3145A50087999b5556aB3610)
6300
+ * - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x5e5fD4b758076BAD940db0284b711A67E8a3B88c)
6300
6301
  */
6301
6302
  export declare const zoraCreatorMerkleMinterStrategyABI: readonly [{
6302
6303
  readonly stateMutability: "view";
@@ -6621,11 +6622,14 @@ export declare const zoraCreatorMerkleMinterStrategyABI: readonly [{
6621
6622
  * - [__View Contract on Goerli Etherscan__](https://goerli.etherscan.io/address/0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7)
6622
6623
  * - [__View Contract on Op Mainnet Optimism Explorer__](https://explorer.optimism.io/address/0x899ce31dF6C6Af81203AcAaD285bF539234eF4b8)
6623
6624
  * - [__View Contract on Optimism Goerli Etherscan__](https://goerli-optimism.etherscan.io/address/0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7)
6625
+ * - [__View Contract on Pgn Pgn Explorer__](https://explorer.publicgoods.network/address/0x314E552b55DFbDfD4d76623E1D45E5056723998B)
6624
6626
  * - [__View Contract on Zora Goerli Testnet Explorer__](https://testnet.explorer.zora.energy/address/0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7)
6625
6627
  * - [__View Contract on Base Basescan__](https://basescan.org/address/0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7)
6628
+ * - [__View Contract on Pgn Pgn Testnet Explorer__](https://explorer.sepolia.publicgoods.network/address/0x314E552b55DFbDfD4d76623E1D45E5056723998B)
6626
6629
  * - [__View Contract on Base Goerli Basescan__](https://goerli.basescan.org/address/0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7)
6627
6630
  * - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7)
6628
- * - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x357D8108A77762B41Ea0C4D69fBb1eF4391251eC)
6631
+ * - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0xe770E6f19aecF8ef3145A50087999b5556aB3610)
6632
+ * - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x5e5fD4b758076BAD940db0284b711A67E8a3B88c)
6629
6633
  */
6630
6634
  export declare const zoraCreatorMerkleMinterStrategyAddress: {
6631
6635
  readonly 1: "0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7";
@@ -6638,7 +6642,7 @@ export declare const zoraCreatorMerkleMinterStrategyAddress: {
6638
6642
  readonly 58008: "0x314E552b55DFbDfD4d76623E1D45E5056723998B";
6639
6643
  readonly 84531: "0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7";
6640
6644
  readonly 7777777: "0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7";
6641
- readonly 11155111: "0x357D8108A77762B41Ea0C4D69fBb1eF4391251eC";
6645
+ readonly 11155111: "0xe770E6f19aecF8ef3145A50087999b5556aB3610";
6642
6646
  readonly 999999999: "0x5e5fD4b758076BAD940db0284b711A67E8a3B88c";
6643
6647
  };
6644
6648
  /**
@@ -6646,11 +6650,14 @@ export declare const zoraCreatorMerkleMinterStrategyAddress: {
6646
6650
  * - [__View Contract on Goerli Etherscan__](https://goerli.etherscan.io/address/0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7)
6647
6651
  * - [__View Contract on Op Mainnet Optimism Explorer__](https://explorer.optimism.io/address/0x899ce31dF6C6Af81203AcAaD285bF539234eF4b8)
6648
6652
  * - [__View Contract on Optimism Goerli Etherscan__](https://goerli-optimism.etherscan.io/address/0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7)
6653
+ * - [__View Contract on Pgn Pgn Explorer__](https://explorer.publicgoods.network/address/0x314E552b55DFbDfD4d76623E1D45E5056723998B)
6649
6654
  * - [__View Contract on Zora Goerli Testnet Explorer__](https://testnet.explorer.zora.energy/address/0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7)
6650
6655
  * - [__View Contract on Base Basescan__](https://basescan.org/address/0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7)
6656
+ * - [__View Contract on Pgn Pgn Testnet Explorer__](https://explorer.sepolia.publicgoods.network/address/0x314E552b55DFbDfD4d76623E1D45E5056723998B)
6651
6657
  * - [__View Contract on Base Goerli Basescan__](https://goerli.basescan.org/address/0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7)
6652
6658
  * - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7)
6653
- * - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x357D8108A77762B41Ea0C4D69fBb1eF4391251eC)
6659
+ * - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0xe770E6f19aecF8ef3145A50087999b5556aB3610)
6660
+ * - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x5e5fD4b758076BAD940db0284b711A67E8a3B88c)
6654
6661
  */
6655
6662
  export declare const zoraCreatorMerkleMinterStrategyConfig: {
6656
6663
  readonly address: {
@@ -6664,7 +6671,7 @@ export declare const zoraCreatorMerkleMinterStrategyConfig: {
6664
6671
  readonly 58008: "0x314E552b55DFbDfD4d76623E1D45E5056723998B";
6665
6672
  readonly 84531: "0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7";
6666
6673
  readonly 7777777: "0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7";
6667
- readonly 11155111: "0x357D8108A77762B41Ea0C4D69fBb1eF4391251eC";
6674
+ readonly 11155111: "0xe770E6f19aecF8ef3145A50087999b5556aB3610";
6668
6675
  readonly 999999999: "0x5e5fD4b758076BAD940db0284b711A67E8a3B88c";
6669
6676
  };
6670
6677
  readonly abi: readonly [{
@@ -6991,11 +6998,14 @@ export declare const zoraCreatorMerkleMinterStrategyConfig: {
6991
6998
  * - [__View Contract on Goerli Etherscan__](https://goerli.etherscan.io/address/0x78964965cF77850224513a367f899435C5B69174)
6992
6999
  * - [__View Contract on Op Mainnet Optimism Explorer__](https://explorer.optimism.io/address/0x1B28A04b7eB7b93f920ddF2021aa3fAE065395f2)
6993
7000
  * - [__View Contract on Optimism Goerli Etherscan__](https://goerli-optimism.etherscan.io/address/0x78964965cF77850224513a367f899435C5B69174)
7001
+ * - [__View Contract on Pgn Pgn Explorer__](https://explorer.publicgoods.network/address/0xC6899816663891D7493939d74d83cb7f2BBcBB16)
6994
7002
  * - [__View Contract on Zora Goerli Testnet Explorer__](https://testnet.explorer.zora.energy/address/0x78964965cF77850224513a367f899435C5B69174)
6995
7003
  * - [__View Contract on Base Basescan__](https://basescan.org/address/0x78964965cF77850224513a367f899435C5B69174)
7004
+ * - [__View Contract on Pgn Pgn Testnet Explorer__](https://explorer.sepolia.publicgoods.network/address/0xC6899816663891D7493939d74d83cb7f2BBcBB16)
6996
7005
  * - [__View Contract on Base Goerli Basescan__](https://goerli.basescan.org/address/0x78964965cF77850224513a367f899435C5B69174)
6997
7006
  * - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x78964965cF77850224513a367f899435C5B69174)
6998
- * - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x66e7bE0b5A7dD9eb7999AAbE7AbdFa40381b6d5E)
7007
+ * - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x69bB4A24EBD8b1B87AF4538E0Ca3075b7E398c3D)
7008
+ * - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x25cFb6dd9cDE8425e781d6718a29Ccbca3F038d6)
6999
7009
  */
7000
7010
  export declare const zoraCreatorRedeemMinterFactoryABI: readonly [{
7001
7011
  readonly stateMutability: "nonpayable";
@@ -7222,11 +7232,14 @@ export declare const zoraCreatorRedeemMinterFactoryABI: readonly [{
7222
7232
  * - [__View Contract on Goerli Etherscan__](https://goerli.etherscan.io/address/0x78964965cF77850224513a367f899435C5B69174)
7223
7233
  * - [__View Contract on Op Mainnet Optimism Explorer__](https://explorer.optimism.io/address/0x1B28A04b7eB7b93f920ddF2021aa3fAE065395f2)
7224
7234
  * - [__View Contract on Optimism Goerli Etherscan__](https://goerli-optimism.etherscan.io/address/0x78964965cF77850224513a367f899435C5B69174)
7235
+ * - [__View Contract on Pgn Pgn Explorer__](https://explorer.publicgoods.network/address/0xC6899816663891D7493939d74d83cb7f2BBcBB16)
7225
7236
  * - [__View Contract on Zora Goerli Testnet Explorer__](https://testnet.explorer.zora.energy/address/0x78964965cF77850224513a367f899435C5B69174)
7226
7237
  * - [__View Contract on Base Basescan__](https://basescan.org/address/0x78964965cF77850224513a367f899435C5B69174)
7238
+ * - [__View Contract on Pgn Pgn Testnet Explorer__](https://explorer.sepolia.publicgoods.network/address/0xC6899816663891D7493939d74d83cb7f2BBcBB16)
7227
7239
  * - [__View Contract on Base Goerli Basescan__](https://goerli.basescan.org/address/0x78964965cF77850224513a367f899435C5B69174)
7228
7240
  * - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x78964965cF77850224513a367f899435C5B69174)
7229
- * - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x66e7bE0b5A7dD9eb7999AAbE7AbdFa40381b6d5E)
7241
+ * - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x69bB4A24EBD8b1B87AF4538E0Ca3075b7E398c3D)
7242
+ * - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x25cFb6dd9cDE8425e781d6718a29Ccbca3F038d6)
7230
7243
  */
7231
7244
  export declare const zoraCreatorRedeemMinterFactoryAddress: {
7232
7245
  readonly 1: "0x78964965cF77850224513a367f899435C5B69174";
@@ -7239,7 +7252,7 @@ export declare const zoraCreatorRedeemMinterFactoryAddress: {
7239
7252
  readonly 58008: "0xC6899816663891D7493939d74d83cb7f2BBcBB16";
7240
7253
  readonly 84531: "0x78964965cF77850224513a367f899435C5B69174";
7241
7254
  readonly 7777777: "0x78964965cF77850224513a367f899435C5B69174";
7242
- readonly 11155111: "0x66e7bE0b5A7dD9eb7999AAbE7AbdFa40381b6d5E";
7255
+ readonly 11155111: "0x69bB4A24EBD8b1B87AF4538E0Ca3075b7E398c3D";
7243
7256
  readonly 999999999: "0x25cFb6dd9cDE8425e781d6718a29Ccbca3F038d6";
7244
7257
  };
7245
7258
  /**
@@ -7247,11 +7260,14 @@ export declare const zoraCreatorRedeemMinterFactoryAddress: {
7247
7260
  * - [__View Contract on Goerli Etherscan__](https://goerli.etherscan.io/address/0x78964965cF77850224513a367f899435C5B69174)
7248
7261
  * - [__View Contract on Op Mainnet Optimism Explorer__](https://explorer.optimism.io/address/0x1B28A04b7eB7b93f920ddF2021aa3fAE065395f2)
7249
7262
  * - [__View Contract on Optimism Goerli Etherscan__](https://goerli-optimism.etherscan.io/address/0x78964965cF77850224513a367f899435C5B69174)
7263
+ * - [__View Contract on Pgn Pgn Explorer__](https://explorer.publicgoods.network/address/0xC6899816663891D7493939d74d83cb7f2BBcBB16)
7250
7264
  * - [__View Contract on Zora Goerli Testnet Explorer__](https://testnet.explorer.zora.energy/address/0x78964965cF77850224513a367f899435C5B69174)
7251
7265
  * - [__View Contract on Base Basescan__](https://basescan.org/address/0x78964965cF77850224513a367f899435C5B69174)
7266
+ * - [__View Contract on Pgn Pgn Testnet Explorer__](https://explorer.sepolia.publicgoods.network/address/0xC6899816663891D7493939d74d83cb7f2BBcBB16)
7252
7267
  * - [__View Contract on Base Goerli Basescan__](https://goerli.basescan.org/address/0x78964965cF77850224513a367f899435C5B69174)
7253
7268
  * - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x78964965cF77850224513a367f899435C5B69174)
7254
- * - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x66e7bE0b5A7dD9eb7999AAbE7AbdFa40381b6d5E)
7269
+ * - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x69bB4A24EBD8b1B87AF4538E0Ca3075b7E398c3D)
7270
+ * - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x25cFb6dd9cDE8425e781d6718a29Ccbca3F038d6)
7255
7271
  */
7256
7272
  export declare const zoraCreatorRedeemMinterFactoryConfig: {
7257
7273
  readonly address: {
@@ -7265,7 +7281,7 @@ export declare const zoraCreatorRedeemMinterFactoryConfig: {
7265
7281
  readonly 58008: "0xC6899816663891D7493939d74d83cb7f2BBcBB16";
7266
7282
  readonly 84531: "0x78964965cF77850224513a367f899435C5B69174";
7267
7283
  readonly 7777777: "0x78964965cF77850224513a367f899435C5B69174";
7268
- readonly 11155111: "0x66e7bE0b5A7dD9eb7999AAbE7AbdFa40381b6d5E";
7284
+ readonly 11155111: "0x69bB4A24EBD8b1B87AF4538E0Ca3075b7E398c3D";
7269
7285
  readonly 999999999: "0x25cFb6dd9cDE8425e781d6718a29Ccbca3F038d6";
7270
7286
  };
7271
7287
  readonly abi: readonly [{
@@ -1 +1 @@
1
- {"version":3,"file":"wagmiGenerated.d.ts","sourceRoot":"","sources":["../../package/wagmiGenerated.ts"],"names":[],"mappings":"AAIA;;;;;;;;;;GAUG;AACH,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAwdhC,CAAC;AAEX;;;;;;;;;;GAUG;AACH,eAAO,MAAM,iCAAiC;;;;;;;;;;;;;CAapC,CAAC;AAEX;;;;;;;;;;GAUG;AACH,eAAO,MAAM,gCAAgC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAGnC,CAAC;AAMX,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAs4CzB,CAAC;AAMX;;;;;;;;;GASG;AACH,eAAO,MAAM,qCAAqC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAo3BxC,CAAC;AAEX;;;;;;;;;GASG;AACH,eAAO,MAAM,yCAAyC;;;;;;;;;;CAU5C,CAAC;AAEX;;;;;;;;;GASG;AACH,eAAO,MAAM,wCAAwC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAG3C,CAAC;AAMX;;;;;;;;;;GAUG;AACH,eAAO,MAAM,oCAAoC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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"}
1
+ {"version":3,"file":"wagmiGenerated.d.ts","sourceRoot":"","sources":["../../package/wagmiGenerated.ts"],"names":[],"mappings":"AAIA;;;;;;;;;;;;;GAaG;AACH,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAwdhC,CAAC;AAEX;;;;;;;;;;;;;GAaG;AACH,eAAO,MAAM,iCAAiC;;;;;;;;;;;;;CAapC,CAAC;AAEX;;;;;;;;;;;;;GAaG;AACH,eAAO,MAAM,gCAAgC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAGnC,CAAC;AAMX,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA42CzB,CAAC;AAMX;;;;;;;;;;;GAWG;AACH,eAAO,MAAM,qCAAqC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAo3BxC,CAAC;AAEX;;;;;;;;;;;GAWG;AACH,eAAO,MAAM,yCAAyC;;;;;;;;;;;CAW5C,CAAC;AAEX;;;;;;;;;;;GAWG;AACH,eAAO,MAAM,wCAAwC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAG3C,CAAC;AAMX;;;;;;;;;;;;;GAaG;AACH,eAAO,MAAM,oCAAoC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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"}
package/foundry.toml CHANGED
@@ -7,9 +7,8 @@ fs_permissions = [
7
7
  ]
8
8
  libs = ['_imagine', 'node_modules', 'script']
9
9
  allow_paths = [
10
- "../../node_modules",
11
- "../../node_modules/@zoralabs/protocol-rewards",
12
- "../../node_modules/@zoralabs/zora-1155-contracts",
10
+ "node_modules/@zoralabs/protocol-rewards",
11
+ "node_modules/@zoralabs/zora-1155-contracts",
13
12
  ]
14
13
  optimizer = true
15
14
  optimizer_runs = 50
@@ -25,6 +24,7 @@ via_ir = false
25
24
 
26
25
  [rpc_endpoints]
27
26
  goerli = "https://eth-goerli.g.alchemy.com/v2/${ALCHEMY_KEY}"
27
+ sepolia = "https://eth-sepolia.g.alchemy.com/v2/${ALCHEMY_KEY}"
28
28
  mainnet = "https://eth-mainnet.g.alchemy.com/v2/${ALCHEMY_KEY}"
29
29
  # for optimism, since we are just using this for deployment/fork testing,
30
30
  # we can use these since they're lower volume.
@@ -34,8 +34,8 @@ optimism = "https://opt-mainnet.g.alchemy.com/v2/${ALCHEMY_KEY}"
34
34
  optimism_goerli = "https://opt-goerli.g.alchemy.com/v2/${ALCHEMY_KEY}"
35
35
  pgn = "https://rpc.publicgoods.network"
36
36
  pgn_sepolia = "https://sepolia.publicgoods.network"
37
- zora = "https://rpc.zora.energy"
38
- zora_goerli = "https://testnet.rpc.zora.energy"
39
- zora_sepolia = "https://sepolia.rpc.zora.energy"
37
+ zora = "https://rpc.zora.energy/${CONDUIT_KEY}"
38
+ zora_goerli = "https://testnet.rpc.zora.energy/${CONDUIT_KEY}"
39
+ zora_sepolia = "https://sepolia.rpc.zora.energy/${CONDUIT_KEY}"
40
40
 
41
41
  # See more config options https://github.com/foundry-rs/foundry/tree/master/config