@@ -301,6 +301,13 @@ export const cookieJarAbi = [
301301 outputs : [ ] ,
302302 stateMutability : 'nonpayable' ,
303303 } ,
304+ {
305+ type : 'function' ,
306+ inputs : [ { name : '_users' , internalType : 'address[]' , type : 'address[]' } ] ,
307+ name : 'grantJarDenylistRole' ,
308+ outputs : [ ] ,
309+ stateMutability : 'nonpayable' ,
310+ } ,
304311 {
305312 type : 'function' ,
306313 inputs : [
@@ -487,6 +494,13 @@ export const cookieJarAbi = [
487494 outputs : [ ] ,
488495 stateMutability : 'nonpayable' ,
489496 } ,
497+ {
498+ type : 'function' ,
499+ inputs : [ { name : '_users' , internalType : 'address[]' , type : 'address[]' } ] ,
500+ name : 'revokeJarDenylistRole' ,
501+ outputs : [ ] ,
502+ stateMutability : 'nonpayable' ,
503+ } ,
490504 {
491505 type : 'function' ,
492506 inputs : [
@@ -1054,6 +1068,7 @@ export const cookieJarAbi = [
10541068 } ,
10551069 { type : 'error' , inputs : [ ] , name : 'TooManyNFTGates' } ,
10561070 { type : 'error' , inputs : [ ] , name : 'TransferFailed' } ,
1071+ { type : 'error' , inputs : [ ] , name : 'UserDenylisted' } ,
10571072 { type : 'error' , inputs : [ ] , name : 'WithdrawalAlreadyDone' } ,
10581073 {
10591074 type : 'error' ,
@@ -1097,14 +1112,14 @@ export const cookieJarFactoryAbi = [
10971112 {
10981113 type : 'function' ,
10991114 inputs : [ ] ,
1100- name : 'BLACKLISTED_JAR_CREATORS ' ,
1115+ name : 'DEFAULT_ADMIN_ROLE ' ,
11011116 outputs : [ { name : '' , internalType : 'bytes32' , type : 'bytes32' } ] ,
11021117 stateMutability : 'view' ,
11031118 } ,
11041119 {
11051120 type : 'function' ,
11061121 inputs : [ ] ,
1107- name : 'DEFAULT_ADMIN_ROLE ' ,
1122+ name : 'DENYLISTED_JAR_CREATORS ' ,
11081123 outputs : [ { name : '' , internalType : 'bytes32' , type : 'bytes32' } ] ,
11091124 stateMutability : 'view' ,
11101125 } ,
@@ -1303,7 +1318,7 @@ export const cookieJarFactoryAbi = [
13031318 {
13041319 type : 'function' ,
13051320 inputs : [ { name : '_users' , internalType : 'address[]' , type : 'address[]' } ] ,
1306- name : 'grantBlacklistedJarCreatorsRole ' ,
1321+ name : 'grantDenylistedJarCreatorsRole ' ,
13071322 outputs : [ ] ,
13081323 stateMutability : 'nonpayable' ,
13091324 } ,
@@ -1361,7 +1376,7 @@ export const cookieJarFactoryAbi = [
13611376 {
13621377 type : 'function' ,
13631378 inputs : [ { name : '_users' , internalType : 'address[]' , type : 'address[]' } ] ,
1364- name : 'revokeBlacklistedJarCreatorsRole ' ,
1379+ name : 'revokeDenylistedJarCreatorsRole ' ,
13651380 outputs : [ ] ,
13661381 stateMutability : 'nonpayable' ,
13671382 } ,
@@ -1499,7 +1514,7 @@ export const cookieJarFactoryAbi = [
14991514 ] ,
15001515 name : 'AccessControlUnauthorizedAccount' ,
15011516 } ,
1502- { type : 'error' , inputs : [ ] , name : 'CookieJarFactory__Blacklisted ' } ,
1517+ { type : 'error' , inputs : [ ] , name : 'CookieJarFactory__Denylisted ' } ,
15031518 { type : 'error' , inputs : [ ] , name : 'CookieJarFactory__JarNotFound' } ,
15041519 { type : 'error' , inputs : [ ] , name : 'CookieJarFactory__NotJarOwner' } ,
15051520 { type : 'error' , inputs : [ ] , name : 'CookieJarFactory__NotValidERC20' } ,
@@ -2029,6 +2044,15 @@ export const useWriteCookieJarGrantJarAllowlistRole =
20292044 functionName : 'grantJarAllowlistRole' ,
20302045 } )
20312046
2047+ /**
2048+ * Wraps __{@link useWriteContract}__ with `abi` set to __{@link cookieJarAbi}__ and `functionName` set to `"grantJarDenylistRole"`
2049+ */
2050+ export const useWriteCookieJarGrantJarDenylistRole =
2051+ /*#__PURE__*/ createUseWriteContract ( {
2052+ abi : cookieJarAbi ,
2053+ functionName : 'grantJarDenylistRole' ,
2054+ } )
2055+
20322056/**
20332057 * Wraps __{@link useWriteContract}__ with `abi` set to __{@link cookieJarAbi}__ and `functionName` set to `"grantRole"`
20342058 */
@@ -2072,6 +2096,15 @@ export const useWriteCookieJarRevokeJarAllowlistRole =
20722096 functionName : 'revokeJarAllowlistRole' ,
20732097 } )
20742098
2099+ /**
2100+ * Wraps __{@link useWriteContract}__ with `abi` set to __{@link cookieJarAbi}__ and `functionName` set to `"revokeJarDenylistRole"`
2101+ */
2102+ export const useWriteCookieJarRevokeJarDenylistRole =
2103+ /*#__PURE__*/ createUseWriteContract ( {
2104+ abi : cookieJarAbi ,
2105+ functionName : 'revokeJarDenylistRole' ,
2106+ } )
2107+
20752108/**
20762109 * Wraps __{@link useWriteContract}__ with `abi` set to __{@link cookieJarAbi}__ and `functionName` set to `"revokeRole"`
20772110 */
@@ -2238,6 +2271,15 @@ export const useSimulateCookieJarGrantJarAllowlistRole =
22382271 functionName : 'grantJarAllowlistRole' ,
22392272 } )
22402273
2274+ /**
2275+ * Wraps __{@link useSimulateContract}__ with `abi` set to __{@link cookieJarAbi}__ and `functionName` set to `"grantJarDenylistRole"`
2276+ */
2277+ export const useSimulateCookieJarGrantJarDenylistRole =
2278+ /*#__PURE__*/ createUseSimulateContract ( {
2279+ abi : cookieJarAbi ,
2280+ functionName : 'grantJarDenylistRole' ,
2281+ } )
2282+
22412283/**
22422284 * Wraps __{@link useSimulateContract}__ with `abi` set to __{@link cookieJarAbi}__ and `functionName` set to `"grantRole"`
22432285 */
@@ -2283,6 +2325,15 @@ export const useSimulateCookieJarRevokeJarAllowlistRole =
22832325 functionName : 'revokeJarAllowlistRole' ,
22842326 } )
22852327
2328+ /**
2329+ * Wraps __{@link useSimulateContract}__ with `abi` set to __{@link cookieJarAbi}__ and `functionName` set to `"revokeJarDenylistRole"`
2330+ */
2331+ export const useSimulateCookieJarRevokeJarDenylistRole =
2332+ /*#__PURE__*/ createUseSimulateContract ( {
2333+ abi : cookieJarAbi ,
2334+ functionName : 'revokeJarDenylistRole' ,
2335+ } )
2336+
22862337/**
22872338 * Wraps __{@link useSimulateContract}__ with `abi` set to __{@link cookieJarAbi}__ and `functionName` set to `"revokeRole"`
22882339 */
@@ -2586,21 +2637,21 @@ export const useReadCookieJarFactory = /*#__PURE__*/ createUseReadContract({
25862637} )
25872638
25882639/**
2589- * Wraps __{@link useReadContract}__ with `abi` set to __{@link cookieJarFactoryAbi}__ and `functionName` set to `"BLACKLISTED_JAR_CREATORS "`
2640+ * Wraps __{@link useReadContract}__ with `abi` set to __{@link cookieJarFactoryAbi}__ and `functionName` set to `"DEFAULT_ADMIN_ROLE "`
25902641 */
2591- export const useReadCookieJarFactoryBlacklistedJarCreators =
2642+ export const useReadCookieJarFactoryDefaultAdminRole =
25922643 /*#__PURE__*/ createUseReadContract ( {
25932644 abi : cookieJarFactoryAbi ,
2594- functionName : 'BLACKLISTED_JAR_CREATORS ' ,
2645+ functionName : 'DEFAULT_ADMIN_ROLE ' ,
25952646 } )
25962647
25972648/**
2598- * Wraps __{@link useReadContract}__ with `abi` set to __{@link cookieJarFactoryAbi}__ and `functionName` set to `"DEFAULT_ADMIN_ROLE "`
2649+ * Wraps __{@link useReadContract}__ with `abi` set to __{@link cookieJarFactoryAbi}__ and `functionName` set to `"DENYLISTED_JAR_CREATORS "`
25992650 */
2600- export const useReadCookieJarFactoryDefaultAdminRole =
2651+ export const useReadCookieJarFactoryDenylistedJarCreators =
26012652 /*#__PURE__*/ createUseReadContract ( {
26022653 abi : cookieJarFactoryAbi ,
2603- functionName : 'DEFAULT_ADMIN_ROLE ' ,
2654+ functionName : 'DENYLISTED_JAR_CREATORS ' ,
26042655 } )
26052656
26062657/**
@@ -2753,12 +2804,12 @@ export const useWriteCookieJarFactoryCreateCookieJar =
27532804 } )
27542805
27552806/**
2756- * Wraps __{@link useWriteContract}__ with `abi` set to __{@link cookieJarFactoryAbi}__ and `functionName` set to `"grantBlacklistedJarCreatorsRole "`
2807+ * Wraps __{@link useWriteContract}__ with `abi` set to __{@link cookieJarFactoryAbi}__ and `functionName` set to `"grantDenylistedJarCreatorsRole "`
27572808 */
2758- export const useWriteCookieJarFactoryGrantBlacklistedJarCreatorsRole =
2809+ export const useWriteCookieJarFactoryGrantDenylistedJarCreatorsRole =
27592810 /*#__PURE__*/ createUseWriteContract ( {
27602811 abi : cookieJarFactoryAbi ,
2761- functionName : 'grantBlacklistedJarCreatorsRole ' ,
2812+ functionName : 'grantDenylistedJarCreatorsRole ' ,
27622813 } )
27632814
27642815/**
@@ -2780,12 +2831,12 @@ export const useWriteCookieJarFactoryRenounceRole =
27802831 } )
27812832
27822833/**
2783- * Wraps __{@link useWriteContract}__ with `abi` set to __{@link cookieJarFactoryAbi}__ and `functionName` set to `"revokeBlacklistedJarCreatorsRole "`
2834+ * Wraps __{@link useWriteContract}__ with `abi` set to __{@link cookieJarFactoryAbi}__ and `functionName` set to `"revokeDenylistedJarCreatorsRole "`
27842835 */
2785- export const useWriteCookieJarFactoryRevokeBlacklistedJarCreatorsRole =
2836+ export const useWriteCookieJarFactoryRevokeDenylistedJarCreatorsRole =
27862837 /*#__PURE__*/ createUseWriteContract ( {
27872838 abi : cookieJarFactoryAbi ,
2788- functionName : 'revokeBlacklistedJarCreatorsRole ' ,
2839+ functionName : 'revokeDenylistedJarCreatorsRole ' ,
27892840 } )
27902841
27912842/**
@@ -2822,12 +2873,12 @@ export const useSimulateCookieJarFactoryCreateCookieJar =
28222873 } )
28232874
28242875/**
2825- * Wraps __{@link useSimulateContract}__ with `abi` set to __{@link cookieJarFactoryAbi}__ and `functionName` set to `"grantBlacklistedJarCreatorsRole "`
2876+ * Wraps __{@link useSimulateContract}__ with `abi` set to __{@link cookieJarFactoryAbi}__ and `functionName` set to `"grantDenylistedJarCreatorsRole "`
28262877 */
2827- export const useSimulateCookieJarFactoryGrantBlacklistedJarCreatorsRole =
2878+ export const useSimulateCookieJarFactoryGrantDenylistedJarCreatorsRole =
28282879 /*#__PURE__*/ createUseSimulateContract ( {
28292880 abi : cookieJarFactoryAbi ,
2830- functionName : 'grantBlacklistedJarCreatorsRole ' ,
2881+ functionName : 'grantDenylistedJarCreatorsRole ' ,
28312882 } )
28322883
28332884/**
@@ -2849,12 +2900,12 @@ export const useSimulateCookieJarFactoryRenounceRole =
28492900 } )
28502901
28512902/**
2852- * Wraps __{@link useSimulateContract}__ with `abi` set to __{@link cookieJarFactoryAbi}__ and `functionName` set to `"revokeBlacklistedJarCreatorsRole "`
2903+ * Wraps __{@link useSimulateContract}__ with `abi` set to __{@link cookieJarFactoryAbi}__ and `functionName` set to `"revokeDenylistedJarCreatorsRole "`
28532904 */
2854- export const useSimulateCookieJarFactoryRevokeBlacklistedJarCreatorsRole =
2905+ export const useSimulateCookieJarFactoryRevokeDenylistedJarCreatorsRole =
28552906 /*#__PURE__*/ createUseSimulateContract ( {
28562907 abi : cookieJarFactoryAbi ,
2857- functionName : 'revokeBlacklistedJarCreatorsRole ' ,
2908+ functionName : 'revokeDenylistedJarCreatorsRole ' ,
28582909 } )
28592910
28602911/**
0 commit comments