diff --git a/apps/web/src/components/Publication/LensOpenActions/CollectModule/CollectAction.tsx b/apps/web/src/components/Publication/LensOpenActions/CollectModule/CollectAction.tsx index a592f3927e7b..e8316ee5eed7 100644 --- a/apps/web/src/components/Publication/LensOpenActions/CollectModule/CollectAction.tsx +++ b/apps/web/src/components/Publication/LensOpenActions/CollectModule/CollectAction.tsx @@ -102,7 +102,8 @@ const CollectAction: FC = ({ const isLegacyCollectModule = openAction.__typename === 'LegacySimpleCollectModuleSettings' || openAction.__typename === 'LegacyMultirecipientFeeCollectModuleSettings' || - openAction.__typename === 'LegacyFreeCollectModuleSettings'; + openAction.__typename === 'LegacyFreeCollectModuleSettings' || + openAction.__typename === 'LegacyFeeCollectModuleSettings'; const isFreeCollectModule = !amount; const isSimpleFreeCollectModule = openAction.__typename === 'SimpleCollectOpenActionSettings'; diff --git a/apps/web/src/lib/getAllowanceModule.ts b/apps/web/src/lib/getAllowanceModule.ts index ac903f39b13c..47fc90a4cfe8 100644 --- a/apps/web/src/lib/getAllowanceModule.ts +++ b/apps/web/src/lib/getAllowanceModule.ts @@ -27,6 +27,8 @@ const getAllowanceModule = ( }; case OpenActionModuleType.LegacyFreeCollectModule: return { field: 'openActionModule', name: 'Legacy Free collect' }; + case OpenActionModuleType.LegacyFeeCollectModule: + return { field: 'openActionModule', name: 'Legacy Fee collect' }; // Follow modules case FollowModuleType.FeeFollowModule: diff --git a/packages/lens/documents/fragments/OpenActionModulesFields.graphql b/packages/lens/documents/fragments/OpenActionModulesFields.graphql index d55b1598dffa..e54026bc9dba 100644 --- a/packages/lens/documents/fragments/OpenActionModulesFields.graphql +++ b/packages/lens/documents/fragments/OpenActionModulesFields.graphql @@ -32,13 +32,22 @@ fragment OpenActionModulesFields on OpenActionModule { } ... on LegacyFreeCollectModuleSettings { type - followerOnly contract { ...NetworkAddressFields } + followerOnly } ... on LegacyFeeCollectModuleSettings { type + contract { + ...NetworkAddressFields + } + amount { + ...AmountFields + } + followerOnly + recipient + referralFee } ... on LegacyLimitedFeeCollectModuleSettings { type diff --git a/packages/lens/generated.ts b/packages/lens/generated.ts index eb2b7571cd4c..c5978c2ba32c 100644 --- a/packages/lens/generated.ts +++ b/packages/lens/generated.ts @@ -6117,6 +6117,25 @@ export type CommentBaseFieldsFragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { __typename?: 'NetworkAddress'; address: any; chainId: any }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -6727,6 +6746,29 @@ export type CommentBaseFieldsFragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -7377,6 +7419,29 @@ export type CommentBaseFieldsFragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -8050,6 +8115,29 @@ export type CommentFieldsFragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -8792,6 +8880,29 @@ export type CommentFieldsFragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -9550,6 +9661,29 @@ export type CommentFieldsFragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -10217,6 +10351,29 @@ export type CommentFieldsFragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -10867,6 +11024,29 @@ export type CommentFieldsFragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -11503,6 +11683,25 @@ export type CommentFieldsFragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { __typename?: 'NetworkAddress'; address: any; chainId: any }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -12113,70 +12312,93 @@ export type CommentFieldsFragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; - } - | { - __typename?: 'LegacyFreeCollectModuleSettings'; - type: OpenActionModuleType; - followerOnly: boolean; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - } - | { - __typename?: 'LegacyLimitedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; - referralFee: number; - followerOnly: boolean; - endsAt?: any | null; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - amount: { - __typename?: 'Amount'; - value: string; - asset: { - __typename?: 'Erc20'; - name: string; - symbol: string; - decimals: number; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - }; - }; - recipients: Array<{ - __typename?: 'RecipientDataOutput'; - recipient: any; - split: number; - }>; - } - | { - __typename?: 'LegacyRevertCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacySimpleCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; followerOnly: boolean; recipient: any; referralFee: number; - endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + } + | { + __typename?: 'LegacyFreeCollectModuleSettings'; + type: OpenActionModuleType; + followerOnly: boolean; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + } + | { + __typename?: 'LegacyLimitedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + referralFee: number; + followerOnly: boolean; + endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + recipients: Array<{ + __typename?: 'RecipientDataOutput'; + recipient: any; + split: number; + }>; + } + | { + __typename?: 'LegacyRevertCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacySimpleCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + endsAt?: any | null; contract: { __typename?: 'NetworkAddress'; address: any; @@ -12763,6 +12985,29 @@ export type CommentFieldsFragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -13748,6 +13993,29 @@ export type MirrorFieldsFragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -14511,6 +14779,29 @@ export type MirrorFieldsFragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -15290,6 +15581,29 @@ export type MirrorFieldsFragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -16065,6 +16379,29 @@ export type MirrorFieldsFragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -16823,70 +17160,93 @@ export type MirrorFieldsFragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; - } - | { - __typename?: 'LegacyFreeCollectModuleSettings'; - type: OpenActionModuleType; - followerOnly: boolean; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - } - | { - __typename?: 'LegacyLimitedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; - referralFee: number; - followerOnly: boolean; - endsAt?: any | null; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - amount: { - __typename?: 'Amount'; - value: string; - asset: { - __typename?: 'Erc20'; - name: string; - symbol: string; - decimals: number; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - }; - }; - recipients: Array<{ - __typename?: 'RecipientDataOutput'; - recipient: any; - split: number; - }>; - } - | { - __typename?: 'LegacyRevertCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacySimpleCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; followerOnly: boolean; recipient: any; referralFee: number; - endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + } + | { + __typename?: 'LegacyFreeCollectModuleSettings'; + type: OpenActionModuleType; + followerOnly: boolean; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + } + | { + __typename?: 'LegacyLimitedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + referralFee: number; + followerOnly: boolean; + endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + recipients: Array<{ + __typename?: 'RecipientDataOutput'; + recipient: any; + split: number; + }>; + } + | { + __typename?: 'LegacyRevertCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacySimpleCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + endsAt?: any | null; contract: { __typename?: 'NetworkAddress'; address: any; @@ -17466,6 +17826,29 @@ export type MirrorFieldsFragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -18208,6 +18591,29 @@ export type MirrorFieldsFragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -18966,6 +19372,29 @@ export type MirrorFieldsFragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -19633,6 +20062,29 @@ export type MirrorFieldsFragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -20283,32 +20735,9 @@ export type MirrorFieldsFragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; - } - | { - __typename?: 'LegacyFreeCollectModuleSettings'; - type: OpenActionModuleType; followerOnly: boolean; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - } - | { - __typename?: 'LegacyLimitedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; + recipient: any; referralFee: number; - followerOnly: boolean; - endsAt?: any | null; contract: { __typename?: 'NetworkAddress'; address: any; @@ -20329,88 +20758,134 @@ export type MirrorFieldsFragment = { }; }; }; - recipients: Array<{ - __typename?: 'RecipientDataOutput'; - recipient: any; - split: number; - }>; } | { - __typename?: 'LegacyRevertCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacySimpleCollectModuleSettings'; + __typename?: 'LegacyFreeCollectModuleSettings'; type: OpenActionModuleType; - collectLimit?: string | null; followerOnly: boolean; - recipient: any; - referralFee: number; - endsAt?: any | null; contract: { __typename?: 'NetworkAddress'; address: any; chainId: any; }; - amount: { - __typename?: 'Amount'; - value: string; - asset: { - __typename?: 'Erc20'; - name: string; - symbol: string; - decimals: number; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - }; - }; } | { - __typename?: 'LegacyTimedFeeCollectModuleSettings'; + __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; } | { - __typename?: 'MultirecipientFeeCollectOpenActionSettings'; + __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; type: OpenActionModuleType; - collectLimit?: string | null; - referralFee: number; - followerOnly: boolean; - endsAt?: any | null; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - amount: { - __typename?: 'Amount'; - value: string; - asset: { - __typename?: 'Erc20'; - name: string; - symbol: string; - decimals: number; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - }; - }; - recipients: Array<{ - __typename?: 'RecipientDataOutput'; - recipient: any; - split: number; - }>; } | { - __typename?: 'SimpleCollectOpenActionSettings'; + __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; type: OpenActionModuleType; collectLimit?: string | null; - followerOnly: boolean; - recipient: any; + referralFee: number; + followerOnly: boolean; + endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + recipients: Array<{ + __typename?: 'RecipientDataOutput'; + recipient: any; + split: number; + }>; + } + | { + __typename?: 'LegacyRevertCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacySimpleCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + } + | { + __typename?: 'LegacyTimedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'MultirecipientFeeCollectOpenActionSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + referralFee: number; + followerOnly: boolean; + endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + recipients: Array<{ + __typename?: 'RecipientDataOutput'; + recipient: any; + split: number; + }>; + } + | { + __typename?: 'SimpleCollectOpenActionSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; referralFee: number; endsAt?: any | null; contract: { @@ -20483,6 +20958,21 @@ type OpenActionModulesFields_LegacyErc4626FeeCollectModuleSettings_Fragment = { type OpenActionModulesFields_LegacyFeeCollectModuleSettings_Fragment = { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { __typename?: 'NetworkAddress'; address: any; chainId: any }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { __typename?: 'NetworkAddress'; address: any; chainId: any }; + }; + }; }; type OpenActionModulesFields_LegacyFreeCollectModuleSettings_Fragment = { @@ -21097,6 +21587,25 @@ export type PostFieldsFragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { __typename?: 'NetworkAddress'; address: any; chainId: any }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -22000,6 +22509,25 @@ export type QuoteBaseFieldsFragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { __typename?: 'NetworkAddress'; address: any; chainId: any }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -22632,6 +23160,29 @@ export type QuoteFieldsFragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -23374,6 +23925,29 @@ export type QuoteFieldsFragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -24132,70 +24706,93 @@ export type QuoteFieldsFragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; - } - | { - __typename?: 'LegacyFreeCollectModuleSettings'; - type: OpenActionModuleType; - followerOnly: boolean; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - } - | { - __typename?: 'LegacyLimitedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; - referralFee: number; - followerOnly: boolean; - endsAt?: any | null; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - amount: { - __typename?: 'Amount'; - value: string; - asset: { - __typename?: 'Erc20'; - name: string; - symbol: string; - decimals: number; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - }; - }; - recipients: Array<{ - __typename?: 'RecipientDataOutput'; - recipient: any; - split: number; - }>; - } - | { - __typename?: 'LegacyRevertCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacySimpleCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; followerOnly: boolean; recipient: any; referralFee: number; - endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + } + | { + __typename?: 'LegacyFreeCollectModuleSettings'; + type: OpenActionModuleType; + followerOnly: boolean; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + } + | { + __typename?: 'LegacyLimitedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + referralFee: number; + followerOnly: boolean; + endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + recipients: Array<{ + __typename?: 'RecipientDataOutput'; + recipient: any; + split: number; + }>; + } + | { + __typename?: 'LegacyRevertCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacySimpleCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + endsAt?: any | null; contract: { __typename?: 'NetworkAddress'; address: any; @@ -24799,6 +25396,29 @@ export type QuoteFieldsFragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -25449,6 +26069,29 @@ export type QuoteFieldsFragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -26085,6 +26728,25 @@ export type QuoteFieldsFragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { __typename?: 'NetworkAddress'; address: any; chainId: any }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -26764,6 +27426,29 @@ export type ActedNotificationFieldsFragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -27506,6 +28191,29 @@ export type ActedNotificationFieldsFragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -28264,32 +28972,9 @@ export type ActedNotificationFieldsFragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; - } - | { - __typename?: 'LegacyFreeCollectModuleSettings'; - type: OpenActionModuleType; followerOnly: boolean; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - } - | { - __typename?: 'LegacyLimitedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; + recipient: any; referralFee: number; - followerOnly: boolean; - endsAt?: any | null; contract: { __typename?: 'NetworkAddress'; address: any; @@ -28310,51 +28995,97 @@ export type ActedNotificationFieldsFragment = { }; }; }; - recipients: Array<{ - __typename?: 'RecipientDataOutput'; - recipient: any; - split: number; - }>; - } - | { - __typename?: 'LegacyRevertCollectModuleSettings'; - type: OpenActionModuleType; } | { - __typename?: 'LegacySimpleCollectModuleSettings'; + __typename?: 'LegacyFreeCollectModuleSettings'; type: OpenActionModuleType; - collectLimit?: string | null; followerOnly: boolean; - recipient: any; - referralFee: number; - endsAt?: any | null; contract: { __typename?: 'NetworkAddress'; address: any; chainId: any; }; - amount: { - __typename?: 'Amount'; - value: string; - asset: { - __typename?: 'Erc20'; - name: string; - symbol: string; - decimals: number; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - }; - }; } | { - __typename?: 'LegacyTimedFeeCollectModuleSettings'; + __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; } | { - __typename?: 'MultirecipientFeeCollectOpenActionSettings'; + __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + referralFee: number; + followerOnly: boolean; + endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + recipients: Array<{ + __typename?: 'RecipientDataOutput'; + recipient: any; + split: number; + }>; + } + | { + __typename?: 'LegacyRevertCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacySimpleCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + } + | { + __typename?: 'LegacyTimedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'MultirecipientFeeCollectOpenActionSettings'; type: OpenActionModuleType; collectLimit?: string | null; referralFee: number; @@ -29131,6 +29862,29 @@ export type ActedNotificationFieldsFragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -29900,6 +30654,29 @@ export type ActedNotificationFieldsFragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -30685,6 +31462,29 @@ export type ActedNotificationFieldsFragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -31481,6 +32281,29 @@ export type ActedNotificationFieldsFragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -32260,6 +33083,29 @@ export type ActedNotificationFieldsFragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -33011,6 +33857,29 @@ export type ActedNotificationFieldsFragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -33774,32 +34643,9 @@ export type ActedNotificationFieldsFragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; - } - | { - __typename?: 'LegacyFreeCollectModuleSettings'; - type: OpenActionModuleType; followerOnly: boolean; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - } - | { - __typename?: 'LegacyLimitedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; + recipient: any; referralFee: number; - followerOnly: boolean; - endsAt?: any | null; contract: { __typename?: 'NetworkAddress'; address: any; @@ -33820,22 +34666,68 @@ export type ActedNotificationFieldsFragment = { }; }; }; - recipients: Array<{ - __typename?: 'RecipientDataOutput'; - recipient: any; - split: number; - }>; } | { - __typename?: 'LegacyRevertCollectModuleSettings'; + __typename?: 'LegacyFreeCollectModuleSettings'; + type: OpenActionModuleType; + followerOnly: boolean; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + } + | { + __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; } | { - __typename?: 'LegacySimpleCollectModuleSettings'; + __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; type: OpenActionModuleType; collectLimit?: string | null; - followerOnly: boolean; - recipient: any; + referralFee: number; + followerOnly: boolean; + endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + recipients: Array<{ + __typename?: 'RecipientDataOutput'; + recipient: any; + split: number; + }>; + } + | { + __typename?: 'LegacyRevertCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacySimpleCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; referralFee: number; endsAt?: any | null; contract: { @@ -34553,6 +35445,29 @@ export type ActedNotificationFieldsFragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -35328,6 +36243,29 @@ export type ActedNotificationFieldsFragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -36086,6 +37024,29 @@ export type ActedNotificationFieldsFragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -36737,6 +37698,29 @@ export type ActedNotificationFieldsFragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -37401,6 +38385,29 @@ export type CommentNotificationFieldsFragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -38146,6 +39153,29 @@ export type CommentNotificationFieldsFragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -38907,6 +39937,29 @@ export type CommentNotificationFieldsFragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -39574,70 +40627,93 @@ export type CommentNotificationFieldsFragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; - } - | { - __typename?: 'LegacyFreeCollectModuleSettings'; - type: OpenActionModuleType; - followerOnly: boolean; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - } - | { - __typename?: 'LegacyLimitedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; - referralFee: number; - followerOnly: boolean; - endsAt?: any | null; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - amount: { - __typename?: 'Amount'; - value: string; - asset: { - __typename?: 'Erc20'; - name: string; - symbol: string; - decimals: number; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - }; - }; - recipients: Array<{ - __typename?: 'RecipientDataOutput'; - recipient: any; - split: number; - }>; - } - | { - __typename?: 'LegacyRevertCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacySimpleCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; followerOnly: boolean; recipient: any; referralFee: number; - endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + } + | { + __typename?: 'LegacyFreeCollectModuleSettings'; + type: OpenActionModuleType; + followerOnly: boolean; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + } + | { + __typename?: 'LegacyLimitedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + referralFee: number; + followerOnly: boolean; + endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + recipients: Array<{ + __typename?: 'RecipientDataOutput'; + recipient: any; + split: number; + }>; + } + | { + __typename?: 'LegacyRevertCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacySimpleCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + endsAt?: any | null; contract: { __typename?: 'NetworkAddress'; address: any; @@ -40224,6 +41300,29 @@ export type CommentNotificationFieldsFragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -40860,6 +41959,29 @@ export type CommentNotificationFieldsFragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -41494,6 +42616,29 @@ export type CommentNotificationFieldsFragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -42144,6 +43289,29 @@ export type CommentNotificationFieldsFragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -42866,6 +44034,29 @@ export type MentionNotificationFieldsFragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -43608,70 +44799,93 @@ export type MentionNotificationFieldsFragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; - } - | { - __typename?: 'LegacyFreeCollectModuleSettings'; - type: OpenActionModuleType; - followerOnly: boolean; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - } - | { - __typename?: 'LegacyLimitedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; - referralFee: number; - followerOnly: boolean; - endsAt?: any | null; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - amount: { - __typename?: 'Amount'; - value: string; - asset: { - __typename?: 'Erc20'; - name: string; - symbol: string; - decimals: number; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - }; - }; - recipients: Array<{ - __typename?: 'RecipientDataOutput'; - recipient: any; - split: number; - }>; - } - | { - __typename?: 'LegacyRevertCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacySimpleCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; followerOnly: boolean; recipient: any; referralFee: number; - endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + } + | { + __typename?: 'LegacyFreeCollectModuleSettings'; + type: OpenActionModuleType; + followerOnly: boolean; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + } + | { + __typename?: 'LegacyLimitedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + referralFee: number; + followerOnly: boolean; + endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + recipients: Array<{ + __typename?: 'RecipientDataOutput'; + recipient: any; + split: number; + }>; + } + | { + __typename?: 'LegacyRevertCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacySimpleCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + endsAt?: any | null; contract: { __typename?: 'NetworkAddress'; address: any; @@ -44366,6 +45580,29 @@ export type MentionNotificationFieldsFragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -45033,6 +46270,29 @@ export type MentionNotificationFieldsFragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -45683,6 +46943,29 @@ export type MentionNotificationFieldsFragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -46389,6 +47672,29 @@ export type MirrorNotificationFieldsFragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -47131,6 +48437,29 @@ export type MirrorNotificationFieldsFragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -47889,70 +49218,93 @@ export type MirrorNotificationFieldsFragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; - } - | { - __typename?: 'LegacyFreeCollectModuleSettings'; - type: OpenActionModuleType; - followerOnly: boolean; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - } - | { - __typename?: 'LegacyLimitedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; - referralFee: number; - followerOnly: boolean; - endsAt?: any | null; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - amount: { - __typename?: 'Amount'; - value: string; - asset: { - __typename?: 'Erc20'; - name: string; - symbol: string; - decimals: number; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - }; - }; - recipients: Array<{ - __typename?: 'RecipientDataOutput'; - recipient: any; - split: number; - }>; - } - | { - __typename?: 'LegacyRevertCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacySimpleCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; followerOnly: boolean; recipient: any; referralFee: number; - endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + } + | { + __typename?: 'LegacyFreeCollectModuleSettings'; + type: OpenActionModuleType; + followerOnly: boolean; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + } + | { + __typename?: 'LegacyLimitedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + referralFee: number; + followerOnly: boolean; + endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + recipients: Array<{ + __typename?: 'RecipientDataOutput'; + recipient: any; + split: number; + }>; + } + | { + __typename?: 'LegacyRevertCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacySimpleCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + endsAt?: any | null; contract: { __typename?: 'NetworkAddress'; address: any; @@ -48556,6 +49908,29 @@ export type MirrorNotificationFieldsFragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -49206,6 +50581,29 @@ export type MirrorNotificationFieldsFragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -49913,6 +51311,29 @@ type NotificationFields_ActedNotification_Fragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -50655,6 +52076,29 @@ type NotificationFields_ActedNotification_Fragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -51413,6 +52857,29 @@ type NotificationFields_ActedNotification_Fragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -52280,70 +53747,93 @@ type NotificationFields_ActedNotification_Fragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; - } - | { - __typename?: 'LegacyFreeCollectModuleSettings'; - type: OpenActionModuleType; - followerOnly: boolean; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - } - | { - __typename?: 'LegacyLimitedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; - referralFee: number; - followerOnly: boolean; - endsAt?: any | null; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - amount: { - __typename?: 'Amount'; - value: string; - asset: { - __typename?: 'Erc20'; - name: string; - symbol: string; - decimals: number; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - }; - }; - recipients: Array<{ - __typename?: 'RecipientDataOutput'; - recipient: any; - split: number; - }>; - } - | { - __typename?: 'LegacyRevertCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacySimpleCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; followerOnly: boolean; recipient: any; referralFee: number; - endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + } + | { + __typename?: 'LegacyFreeCollectModuleSettings'; + type: OpenActionModuleType; + followerOnly: boolean; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + } + | { + __typename?: 'LegacyLimitedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + referralFee: number; + followerOnly: boolean; + endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + recipients: Array<{ + __typename?: 'RecipientDataOutput'; + recipient: any; + split: number; + }>; + } + | { + __typename?: 'LegacyRevertCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacySimpleCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + endsAt?: any | null; contract: { __typename?: 'NetworkAddress'; address: any; @@ -53049,6 +54539,29 @@ type NotificationFields_ActedNotification_Fragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -53834,6 +55347,29 @@ type NotificationFields_ActedNotification_Fragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -54630,6 +56166,29 @@ type NotificationFields_ActedNotification_Fragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -55409,6 +56968,29 @@ type NotificationFields_ActedNotification_Fragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -56160,6 +57742,29 @@ type NotificationFields_ActedNotification_Fragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -56923,70 +58528,93 @@ type NotificationFields_ActedNotification_Fragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; - } - | { - __typename?: 'LegacyFreeCollectModuleSettings'; - type: OpenActionModuleType; - followerOnly: boolean; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - } - | { - __typename?: 'LegacyLimitedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; - referralFee: number; - followerOnly: boolean; - endsAt?: any | null; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - amount: { - __typename?: 'Amount'; - value: string; - asset: { - __typename?: 'Erc20'; - name: string; - symbol: string; - decimals: number; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - }; - }; - recipients: Array<{ - __typename?: 'RecipientDataOutput'; - recipient: any; - split: number; - }>; - } - | { - __typename?: 'LegacyRevertCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacySimpleCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; followerOnly: boolean; recipient: any; referralFee: number; - endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + } + | { + __typename?: 'LegacyFreeCollectModuleSettings'; + type: OpenActionModuleType; + followerOnly: boolean; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + } + | { + __typename?: 'LegacyLimitedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + referralFee: number; + followerOnly: boolean; + endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + recipients: Array<{ + __typename?: 'RecipientDataOutput'; + recipient: any; + split: number; + }>; + } + | { + __typename?: 'LegacyRevertCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacySimpleCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + endsAt?: any | null; contract: { __typename?: 'NetworkAddress'; address: any; @@ -57702,6 +59330,29 @@ type NotificationFields_ActedNotification_Fragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -58477,6 +60128,29 @@ type NotificationFields_ActedNotification_Fragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -59235,6 +60909,29 @@ type NotificationFields_ActedNotification_Fragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -59886,6 +61583,29 @@ type NotificationFields_ActedNotification_Fragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -60550,6 +62270,29 @@ type NotificationFields_CommentNotification_Fragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -61295,70 +63038,93 @@ type NotificationFields_CommentNotification_Fragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; - } - | { - __typename?: 'LegacyFreeCollectModuleSettings'; - type: OpenActionModuleType; - followerOnly: boolean; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - } - | { - __typename?: 'LegacyLimitedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; - referralFee: number; - followerOnly: boolean; - endsAt?: any | null; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - amount: { - __typename?: 'Amount'; - value: string; - asset: { - __typename?: 'Erc20'; - name: string; - symbol: string; - decimals: number; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - }; - }; - recipients: Array<{ - __typename?: 'RecipientDataOutput'; - recipient: any; - split: number; - }>; - } - | { - __typename?: 'LegacyRevertCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacySimpleCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; followerOnly: boolean; recipient: any; referralFee: number; - endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + } + | { + __typename?: 'LegacyFreeCollectModuleSettings'; + type: OpenActionModuleType; + followerOnly: boolean; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + } + | { + __typename?: 'LegacyLimitedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + referralFee: number; + followerOnly: boolean; + endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + recipients: Array<{ + __typename?: 'RecipientDataOutput'; + recipient: any; + split: number; + }>; + } + | { + __typename?: 'LegacyRevertCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacySimpleCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + endsAt?: any | null; contract: { __typename?: 'NetworkAddress'; address: any; @@ -62056,6 +63822,29 @@ type NotificationFields_CommentNotification_Fragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -62723,6 +64512,29 @@ type NotificationFields_CommentNotification_Fragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -63373,6 +65185,29 @@ type NotificationFields_CommentNotification_Fragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -64009,6 +65844,29 @@ type NotificationFields_CommentNotification_Fragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -64643,6 +66501,29 @@ type NotificationFields_CommentNotification_Fragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -65293,70 +67174,93 @@ type NotificationFields_CommentNotification_Fragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; - } - | { - __typename?: 'LegacyFreeCollectModuleSettings'; - type: OpenActionModuleType; - followerOnly: boolean; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - } - | { - __typename?: 'LegacyLimitedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; - referralFee: number; - followerOnly: boolean; - endsAt?: any | null; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - amount: { - __typename?: 'Amount'; - value: string; - asset: { - __typename?: 'Erc20'; - name: string; - symbol: string; - decimals: number; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - }; - }; - recipients: Array<{ - __typename?: 'RecipientDataOutput'; - recipient: any; - split: number; - }>; - } - | { - __typename?: 'LegacyRevertCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacySimpleCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; followerOnly: boolean; recipient: any; referralFee: number; - endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + } + | { + __typename?: 'LegacyFreeCollectModuleSettings'; + type: OpenActionModuleType; + followerOnly: boolean; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + } + | { + __typename?: 'LegacyLimitedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + referralFee: number; + followerOnly: boolean; + endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + recipients: Array<{ + __typename?: 'RecipientDataOutput'; + recipient: any; + split: number; + }>; + } + | { + __typename?: 'LegacyRevertCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacySimpleCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + endsAt?: any | null; contract: { __typename?: 'NetworkAddress'; address: any; @@ -66015,6 +67919,29 @@ type NotificationFields_MentionNotification_Fragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -66757,6 +68684,29 @@ type NotificationFields_MentionNotification_Fragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -67515,6 +69465,29 @@ type NotificationFields_MentionNotification_Fragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -68182,6 +70155,29 @@ type NotificationFields_MentionNotification_Fragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -68832,6 +70828,29 @@ type NotificationFields_MentionNotification_Fragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -69538,70 +71557,93 @@ type NotificationFields_MirrorNotification_Fragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; - } - | { - __typename?: 'LegacyFreeCollectModuleSettings'; - type: OpenActionModuleType; - followerOnly: boolean; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - } - | { - __typename?: 'LegacyLimitedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; - referralFee: number; - followerOnly: boolean; - endsAt?: any | null; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - amount: { - __typename?: 'Amount'; - value: string; - asset: { - __typename?: 'Erc20'; - name: string; - symbol: string; - decimals: number; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - }; - }; - recipients: Array<{ - __typename?: 'RecipientDataOutput'; - recipient: any; - split: number; - }>; - } - | { - __typename?: 'LegacyRevertCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacySimpleCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; followerOnly: boolean; recipient: any; referralFee: number; - endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + } + | { + __typename?: 'LegacyFreeCollectModuleSettings'; + type: OpenActionModuleType; + followerOnly: boolean; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + } + | { + __typename?: 'LegacyLimitedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + referralFee: number; + followerOnly: boolean; + endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + recipients: Array<{ + __typename?: 'RecipientDataOutput'; + recipient: any; + split: number; + }>; + } + | { + __typename?: 'LegacyRevertCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacySimpleCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + endsAt?: any | null; contract: { __typename?: 'NetworkAddress'; address: any; @@ -70280,6 +72322,29 @@ type NotificationFields_MirrorNotification_Fragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -71038,6 +73103,29 @@ type NotificationFields_MirrorNotification_Fragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -71705,6 +73793,29 @@ type NotificationFields_MirrorNotification_Fragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -72355,6 +74466,29 @@ type NotificationFields_MirrorNotification_Fragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -73018,6 +75152,29 @@ type NotificationFields_QuoteNotification_Fragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -73763,70 +75920,93 @@ type NotificationFields_QuoteNotification_Fragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; - } - | { - __typename?: 'LegacyFreeCollectModuleSettings'; - type: OpenActionModuleType; - followerOnly: boolean; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - } - | { - __typename?: 'LegacyLimitedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; - referralFee: number; - followerOnly: boolean; - endsAt?: any | null; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - amount: { - __typename?: 'Amount'; - value: string; - asset: { - __typename?: 'Erc20'; - name: string; - symbol: string; - decimals: number; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - }; - }; - recipients: Array<{ - __typename?: 'RecipientDataOutput'; - recipient: any; - split: number; - }>; - } - | { - __typename?: 'LegacyRevertCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacySimpleCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; followerOnly: boolean; recipient: any; referralFee: number; - endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + } + | { + __typename?: 'LegacyFreeCollectModuleSettings'; + type: OpenActionModuleType; + followerOnly: boolean; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + } + | { + __typename?: 'LegacyLimitedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + referralFee: number; + followerOnly: boolean; + endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + recipients: Array<{ + __typename?: 'RecipientDataOutput'; + recipient: any; + split: number; + }>; + } + | { + __typename?: 'LegacyRevertCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacySimpleCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + endsAt?: any | null; contract: { __typename?: 'NetworkAddress'; address: any; @@ -74524,6 +76704,29 @@ type NotificationFields_QuoteNotification_Fragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -75191,6 +77394,29 @@ type NotificationFields_QuoteNotification_Fragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -75841,6 +78067,29 @@ type NotificationFields_QuoteNotification_Fragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -76477,6 +78726,29 @@ type NotificationFields_QuoteNotification_Fragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -77130,6 +79402,29 @@ type NotificationFields_ReactionNotification_Fragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -77872,70 +80167,93 @@ type NotificationFields_ReactionNotification_Fragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; - } - | { - __typename?: 'LegacyFreeCollectModuleSettings'; - type: OpenActionModuleType; - followerOnly: boolean; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - } - | { - __typename?: 'LegacyLimitedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; - referralFee: number; - followerOnly: boolean; - endsAt?: any | null; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - amount: { - __typename?: 'Amount'; - value: string; - asset: { - __typename?: 'Erc20'; - name: string; - symbol: string; - decimals: number; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - }; - }; - recipients: Array<{ - __typename?: 'RecipientDataOutput'; - recipient: any; - split: number; - }>; - } - | { - __typename?: 'LegacyRevertCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacySimpleCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; followerOnly: boolean; recipient: any; referralFee: number; - endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + } + | { + __typename?: 'LegacyFreeCollectModuleSettings'; + type: OpenActionModuleType; + followerOnly: boolean; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + } + | { + __typename?: 'LegacyLimitedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + referralFee: number; + followerOnly: boolean; + endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + recipients: Array<{ + __typename?: 'RecipientDataOutput'; + recipient: any; + split: number; + }>; + } + | { + __typename?: 'LegacyRevertCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacySimpleCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + endsAt?: any | null; contract: { __typename?: 'NetworkAddress'; address: any; @@ -78630,6 +80948,29 @@ type NotificationFields_ReactionNotification_Fragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -79297,6 +81638,29 @@ type NotificationFields_ReactionNotification_Fragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -79947,6 +82311,29 @@ type NotificationFields_ReactionNotification_Fragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -80669,6 +83056,29 @@ export type QuoteNotificationFieldsFragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -81414,6 +83824,29 @@ export type QuoteNotificationFieldsFragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -82175,70 +84608,93 @@ export type QuoteNotificationFieldsFragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; - } - | { - __typename?: 'LegacyFreeCollectModuleSettings'; - type: OpenActionModuleType; - followerOnly: boolean; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - } - | { - __typename?: 'LegacyLimitedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; - referralFee: number; - followerOnly: boolean; - endsAt?: any | null; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - amount: { - __typename?: 'Amount'; - value: string; - asset: { - __typename?: 'Erc20'; - name: string; - symbol: string; - decimals: number; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - }; - }; - recipients: Array<{ - __typename?: 'RecipientDataOutput'; - recipient: any; - split: number; - }>; - } - | { - __typename?: 'LegacyRevertCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacySimpleCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; followerOnly: boolean; recipient: any; referralFee: number; - endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + } + | { + __typename?: 'LegacyFreeCollectModuleSettings'; + type: OpenActionModuleType; + followerOnly: boolean; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + } + | { + __typename?: 'LegacyLimitedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + referralFee: number; + followerOnly: boolean; + endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + recipients: Array<{ + __typename?: 'RecipientDataOutput'; + recipient: any; + split: number; + }>; + } + | { + __typename?: 'LegacyRevertCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacySimpleCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + endsAt?: any | null; contract: { __typename?: 'NetworkAddress'; address: any; @@ -82842,6 +85298,29 @@ export type QuoteNotificationFieldsFragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -83492,6 +85971,29 @@ export type QuoteNotificationFieldsFragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -84128,6 +86630,29 @@ export type QuoteNotificationFieldsFragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -84781,6 +87306,29 @@ export type ReactionNotificationFieldsFragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -85523,6 +88071,29 @@ export type ReactionNotificationFieldsFragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -86281,70 +88852,93 @@ export type ReactionNotificationFieldsFragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; - } - | { - __typename?: 'LegacyFreeCollectModuleSettings'; - type: OpenActionModuleType; - followerOnly: boolean; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - } - | { - __typename?: 'LegacyLimitedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; - referralFee: number; - followerOnly: boolean; - endsAt?: any | null; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - amount: { - __typename?: 'Amount'; - value: string; - asset: { - __typename?: 'Erc20'; - name: string; - symbol: string; - decimals: number; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - }; - }; - recipients: Array<{ - __typename?: 'RecipientDataOutput'; - recipient: any; - split: number; - }>; - } - | { - __typename?: 'LegacyRevertCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacySimpleCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; followerOnly: boolean; recipient: any; referralFee: number; - endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + } + | { + __typename?: 'LegacyFreeCollectModuleSettings'; + type: OpenActionModuleType; + followerOnly: boolean; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + } + | { + __typename?: 'LegacyLimitedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + referralFee: number; + followerOnly: boolean; + endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + recipients: Array<{ + __typename?: 'RecipientDataOutput'; + recipient: any; + split: number; + }>; + } + | { + __typename?: 'LegacyRevertCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacySimpleCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + endsAt?: any | null; contract: { __typename?: 'NetworkAddress'; address: any; @@ -86948,6 +89542,29 @@ export type ReactionNotificationFieldsFragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -87598,6 +90215,29 @@ export type ReactionNotificationFieldsFragment = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -90557,6 +93197,29 @@ export type ExplorePublicationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -91326,6 +93989,29 @@ export type ExplorePublicationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -92092,6 +94778,29 @@ export type ExplorePublicationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -92874,70 +95583,93 @@ export type ExplorePublicationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; - } - | { - __typename?: 'LegacyFreeCollectModuleSettings'; - type: OpenActionModuleType; - followerOnly: boolean; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - } - | { - __typename?: 'LegacyLimitedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; - referralFee: number; - followerOnly: boolean; - endsAt?: any | null; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - amount: { - __typename?: 'Amount'; - value: string; - asset: { - __typename?: 'Erc20'; - name: string; - symbol: string; - decimals: number; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - }; - }; - recipients: Array<{ - __typename?: 'RecipientDataOutput'; - recipient: any; - split: number; - }>; - } - | { - __typename?: 'LegacyRevertCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacySimpleCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; followerOnly: boolean; recipient: any; referralFee: number; - endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + } + | { + __typename?: 'LegacyFreeCollectModuleSettings'; + type: OpenActionModuleType; + followerOnly: boolean; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + } + | { + __typename?: 'LegacyLimitedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + referralFee: number; + followerOnly: boolean; + endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + recipients: Array<{ + __typename?: 'RecipientDataOutput'; + recipient: any; + split: number; + }>; + } + | { + __typename?: 'LegacyRevertCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacySimpleCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + endsAt?: any | null; contract: { __typename?: 'NetworkAddress'; address: any; @@ -93652,6 +96384,29 @@ export type ExplorePublicationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -94413,6 +97168,29 @@ export type ExplorePublicationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -95056,6 +97834,29 @@ export type ExplorePublicationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -95860,6 +98661,29 @@ export type FeedQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -96629,6 +99453,29 @@ export type FeedQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -97414,70 +100261,93 @@ export type FeedQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; - } - | { - __typename?: 'LegacyFreeCollectModuleSettings'; - type: OpenActionModuleType; - followerOnly: boolean; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - } - | { - __typename?: 'LegacyLimitedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; - referralFee: number; - followerOnly: boolean; - endsAt?: any | null; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - amount: { - __typename?: 'Amount'; - value: string; - asset: { - __typename?: 'Erc20'; - name: string; - symbol: string; - decimals: number; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - }; - }; - recipients: Array<{ - __typename?: 'RecipientDataOutput'; - recipient: any; - split: number; - }>; - } - | { - __typename?: 'LegacyRevertCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacySimpleCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; followerOnly: boolean; recipient: any; referralFee: number; - endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + } + | { + __typename?: 'LegacyFreeCollectModuleSettings'; + type: OpenActionModuleType; + followerOnly: boolean; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + } + | { + __typename?: 'LegacyLimitedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + referralFee: number; + followerOnly: boolean; + endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + recipients: Array<{ + __typename?: 'RecipientDataOutput'; + recipient: any; + split: number; + }>; + } + | { + __typename?: 'LegacyRevertCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacySimpleCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + endsAt?: any | null; contract: { __typename?: 'NetworkAddress'; address: any; @@ -98210,6 +101080,29 @@ export type FeedQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -98989,6 +101882,29 @@ export type FeedQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -99635,6 +102551,29 @@ export type FeedQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -100398,6 +103337,29 @@ export type FeedQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -101177,6 +104139,29 @@ export type FeedQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -101847,70 +104832,93 @@ export type FeedQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; - } - | { - __typename?: 'LegacyFreeCollectModuleSettings'; - type: OpenActionModuleType; - followerOnly: boolean; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - } - | { - __typename?: 'LegacyLimitedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; - referralFee: number; - followerOnly: boolean; - endsAt?: any | null; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - amount: { - __typename?: 'Amount'; - value: string; - asset: { - __typename?: 'Erc20'; - name: string; - symbol: string; - decimals: number; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - }; - }; - recipients: Array<{ - __typename?: 'RecipientDataOutput'; - recipient: any; - split: number; - }>; - } - | { - __typename?: 'LegacyRevertCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacySimpleCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; followerOnly: boolean; recipient: any; referralFee: number; - endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + } + | { + __typename?: 'LegacyFreeCollectModuleSettings'; + type: OpenActionModuleType; + followerOnly: boolean; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + } + | { + __typename?: 'LegacyLimitedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + referralFee: number; + followerOnly: boolean; + endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + recipients: Array<{ + __typename?: 'RecipientDataOutput'; + recipient: any; + split: number; + }>; + } + | { + __typename?: 'LegacyRevertCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacySimpleCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + endsAt?: any | null; contract: { __typename?: 'NetworkAddress'; address: any; @@ -102634,6 +105642,29 @@ export type FeedQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -103403,6 +106434,29 @@ export type FeedQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -104188,6 +107242,29 @@ export type FeedQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -104984,6 +108061,29 @@ export type FeedQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -105763,6 +108863,29 @@ export type FeedQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -106409,70 +109532,93 @@ export type FeedQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; - } - | { - __typename?: 'LegacyFreeCollectModuleSettings'; - type: OpenActionModuleType; - followerOnly: boolean; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - } - | { - __typename?: 'LegacyLimitedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; - referralFee: number; - followerOnly: boolean; - endsAt?: any | null; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - amount: { - __typename?: 'Amount'; - value: string; - asset: { - __typename?: 'Erc20'; - name: string; - symbol: string; - decimals: number; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - }; - }; - recipients: Array<{ - __typename?: 'RecipientDataOutput'; - recipient: any; - split: number; - }>; - } - | { - __typename?: 'LegacyRevertCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacySimpleCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; followerOnly: boolean; recipient: any; referralFee: number; - endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + } + | { + __typename?: 'LegacyFreeCollectModuleSettings'; + type: OpenActionModuleType; + followerOnly: boolean; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + } + | { + __typename?: 'LegacyLimitedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + referralFee: number; + followerOnly: boolean; + endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + recipients: Array<{ + __typename?: 'RecipientDataOutput'; + recipient: any; + split: number; + }>; + } + | { + __typename?: 'LegacyRevertCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacySimpleCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + endsAt?: any | null; contract: { __typename?: 'NetworkAddress'; address: any; @@ -107230,6 +110376,29 @@ export type FeedQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -107972,6 +111141,29 @@ export type FeedQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -108730,6 +111922,29 @@ export type FeedQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -109411,6 +112626,29 @@ export type FeedHighlightsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -110180,6 +113418,29 @@ export type FeedHighlightsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -110946,70 +114207,93 @@ export type FeedHighlightsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; - } - | { - __typename?: 'LegacyFreeCollectModuleSettings'; - type: OpenActionModuleType; - followerOnly: boolean; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - } - | { - __typename?: 'LegacyLimitedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; - referralFee: number; - followerOnly: boolean; - endsAt?: any | null; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - amount: { - __typename?: 'Amount'; - value: string; - asset: { - __typename?: 'Erc20'; - name: string; - symbol: string; - decimals: number; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - }; - }; - recipients: Array<{ - __typename?: 'RecipientDataOutput'; - recipient: any; - split: number; - }>; - } - | { - __typename?: 'LegacyRevertCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacySimpleCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; followerOnly: boolean; recipient: any; referralFee: number; - endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + } + | { + __typename?: 'LegacyFreeCollectModuleSettings'; + type: OpenActionModuleType; + followerOnly: boolean; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + } + | { + __typename?: 'LegacyLimitedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + referralFee: number; + followerOnly: boolean; + endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + recipients: Array<{ + __typename?: 'RecipientDataOutput'; + recipient: any; + split: number; + }>; + } + | { + __typename?: 'LegacyRevertCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacySimpleCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + endsAt?: any | null; contract: { __typename?: 'NetworkAddress'; address: any; @@ -111728,6 +115012,29 @@ export type FeedHighlightsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -112506,6 +115813,29 @@ export type FeedHighlightsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -113267,6 +116597,29 @@ export type FeedHighlightsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -113910,6 +117263,29 @@ export type FeedHighlightsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -115171,6 +118547,29 @@ export type NotificationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -115937,70 +119336,93 @@ export type NotificationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; - } - | { - __typename?: 'LegacyFreeCollectModuleSettings'; - type: OpenActionModuleType; - followerOnly: boolean; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - } - | { - __typename?: 'LegacyLimitedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; - referralFee: number; - followerOnly: boolean; - endsAt?: any | null; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - amount: { - __typename?: 'Amount'; - value: string; - asset: { - __typename?: 'Erc20'; - name: string; - symbol: string; - decimals: number; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - }; - }; - recipients: Array<{ - __typename?: 'RecipientDataOutput'; - recipient: any; - split: number; - }>; - } - | { - __typename?: 'LegacyRevertCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacySimpleCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; followerOnly: boolean; recipient: any; referralFee: number; - endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + } + | { + __typename?: 'LegacyFreeCollectModuleSettings'; + type: OpenActionModuleType; + followerOnly: boolean; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + } + | { + __typename?: 'LegacyLimitedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + referralFee: number; + followerOnly: boolean; + endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + recipients: Array<{ + __typename?: 'RecipientDataOutput'; + recipient: any; + split: number; + }>; + } + | { + __typename?: 'LegacyRevertCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacySimpleCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + endsAt?: any | null; contract: { __typename?: 'NetworkAddress'; address: any; @@ -116719,6 +120141,29 @@ export type NotificationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -117598,6 +121043,29 @@ export type NotificationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -118379,6 +121847,29 @@ export type NotificationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -119176,6 +122667,29 @@ export type NotificationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -119981,6 +123495,29 @@ export type NotificationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -120769,70 +124306,93 @@ export type NotificationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; - } - | { - __typename?: 'LegacyFreeCollectModuleSettings'; - type: OpenActionModuleType; - followerOnly: boolean; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - } - | { - __typename?: 'LegacyLimitedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; - referralFee: number; - followerOnly: boolean; - endsAt?: any | null; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - amount: { - __typename?: 'Amount'; - value: string; - asset: { - __typename?: 'Erc20'; - name: string; - symbol: string; - decimals: number; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - }; - }; - recipients: Array<{ - __typename?: 'RecipientDataOutput'; - recipient: any; - split: number; - }>; - } - | { - __typename?: 'LegacyRevertCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacySimpleCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; followerOnly: boolean; recipient: any; referralFee: number; - endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + } + | { + __typename?: 'LegacyFreeCollectModuleSettings'; + type: OpenActionModuleType; + followerOnly: boolean; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + } + | { + __typename?: 'LegacyLimitedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + referralFee: number; + followerOnly: boolean; + endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + recipients: Array<{ + __typename?: 'RecipientDataOutput'; + recipient: any; + split: number; + }>; + } + | { + __typename?: 'LegacyRevertCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacySimpleCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + endsAt?: any | null; contract: { __typename?: 'NetworkAddress'; address: any; @@ -121544,6 +125104,29 @@ export type NotificationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -122316,6 +125899,29 @@ export type NotificationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -123104,6 +126710,29 @@ export type NotificationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -123903,6 +127532,29 @@ export type NotificationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -124685,6 +128337,29 @@ export type NotificationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -125447,70 +129122,93 @@ export type NotificationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; - } - | { - __typename?: 'LegacyFreeCollectModuleSettings'; - type: OpenActionModuleType; - followerOnly: boolean; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - } - | { - __typename?: 'LegacyLimitedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; - referralFee: number; - followerOnly: boolean; - endsAt?: any | null; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - amount: { - __typename?: 'Amount'; - value: string; - asset: { - __typename?: 'Erc20'; - name: string; - symbol: string; - decimals: number; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - }; - }; - recipients: Array<{ - __typename?: 'RecipientDataOutput'; - recipient: any; - split: number; - }>; - } - | { - __typename?: 'LegacyRevertCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacySimpleCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; followerOnly: boolean; recipient: any; referralFee: number; - endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + } + | { + __typename?: 'LegacyFreeCollectModuleSettings'; + type: OpenActionModuleType; + followerOnly: boolean; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + } + | { + __typename?: 'LegacyLimitedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + referralFee: number; + followerOnly: boolean; + endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + recipients: Array<{ + __typename?: 'RecipientDataOutput'; + recipient: any; + split: number; + }>; + } + | { + __typename?: 'LegacyRevertCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacySimpleCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + endsAt?: any | null; contract: { __typename?: 'NetworkAddress'; address: any; @@ -126239,6 +129937,29 @@ export type NotificationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -127008,6 +130729,29 @@ export type NotificationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -127793,6 +131537,29 @@ export type NotificationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -128589,6 +132356,29 @@ export type NotificationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -129368,6 +133158,29 @@ export type NotificationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -130014,70 +133827,93 @@ export type NotificationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; - } - | { - __typename?: 'LegacyFreeCollectModuleSettings'; - type: OpenActionModuleType; - followerOnly: boolean; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - } - | { - __typename?: 'LegacyLimitedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; - referralFee: number; - followerOnly: boolean; - endsAt?: any | null; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - amount: { - __typename?: 'Amount'; - value: string; - asset: { - __typename?: 'Erc20'; - name: string; - symbol: string; - decimals: number; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - }; - }; - recipients: Array<{ - __typename?: 'RecipientDataOutput'; - recipient: any; - split: number; - }>; - } - | { - __typename?: 'LegacyRevertCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacySimpleCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; followerOnly: boolean; recipient: any; referralFee: number; - endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + } + | { + __typename?: 'LegacyFreeCollectModuleSettings'; + type: OpenActionModuleType; + followerOnly: boolean; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + } + | { + __typename?: 'LegacyLimitedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + referralFee: number; + followerOnly: boolean; + endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + recipients: Array<{ + __typename?: 'RecipientDataOutput'; + recipient: any; + split: number; + }>; + } + | { + __typename?: 'LegacyRevertCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacySimpleCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + endsAt?: any | null; contract: { __typename?: 'NetworkAddress'; address: any; @@ -130777,6 +134613,29 @@ export type NotificationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -131556,6 +135415,29 @@ export type NotificationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -132397,6 +136279,29 @@ export type NotificationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -133163,6 +137068,29 @@ export type NotificationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -133945,6 +137873,29 @@ export type NotificationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -134723,70 +138674,93 @@ export type NotificationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; - } - | { - __typename?: 'LegacyFreeCollectModuleSettings'; - type: OpenActionModuleType; - followerOnly: boolean; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - } - | { - __typename?: 'LegacyLimitedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; - referralFee: number; - followerOnly: boolean; - endsAt?: any | null; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - amount: { - __typename?: 'Amount'; - value: string; - asset: { - __typename?: 'Erc20'; - name: string; - symbol: string; - decimals: number; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - }; - }; - recipients: Array<{ - __typename?: 'RecipientDataOutput'; - recipient: any; - split: number; - }>; - } - | { - __typename?: 'LegacyRevertCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacySimpleCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; followerOnly: boolean; recipient: any; referralFee: number; - endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + } + | { + __typename?: 'LegacyFreeCollectModuleSettings'; + type: OpenActionModuleType; + followerOnly: boolean; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + } + | { + __typename?: 'LegacyLimitedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + referralFee: number; + followerOnly: boolean; + endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + recipients: Array<{ + __typename?: 'RecipientDataOutput'; + recipient: any; + split: number; + }>; + } + | { + __typename?: 'LegacyRevertCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacySimpleCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + endsAt?: any | null; contract: { __typename?: 'NetworkAddress'; address: any; @@ -135484,6 +139458,29 @@ export type NotificationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -136307,6 +140304,29 @@ export type NotificationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -137073,6 +141093,29 @@ export type NotificationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -137855,6 +141898,29 @@ export type NotificationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -138633,6 +142699,29 @@ export type NotificationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -139394,70 +143483,93 @@ export type NotificationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; - } - | { - __typename?: 'LegacyFreeCollectModuleSettings'; - type: OpenActionModuleType; - followerOnly: boolean; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - } - | { - __typename?: 'LegacyLimitedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; - referralFee: number; - followerOnly: boolean; - endsAt?: any | null; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - amount: { - __typename?: 'Amount'; - value: string; - asset: { - __typename?: 'Erc20'; - name: string; - symbol: string; - decimals: number; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - }; - }; - recipients: Array<{ - __typename?: 'RecipientDataOutput'; - recipient: any; - split: number; - }>; - } - | { - __typename?: 'LegacyRevertCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacySimpleCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; followerOnly: boolean; recipient: any; referralFee: number; - endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + } + | { + __typename?: 'LegacyFreeCollectModuleSettings'; + type: OpenActionModuleType; + followerOnly: boolean; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + } + | { + __typename?: 'LegacyLimitedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + referralFee: number; + followerOnly: boolean; + endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + recipients: Array<{ + __typename?: 'RecipientDataOutput'; + recipient: any; + split: number; + }>; + } + | { + __typename?: 'LegacyRevertCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacySimpleCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + endsAt?: any | null; contract: { __typename?: 'NetworkAddress'; address: any; @@ -140185,6 +144297,29 @@ export type NotificationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -140954,6 +145089,29 @@ export type NotificationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -141739,6 +145897,29 @@ export type NotificationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -142535,6 +146716,29 @@ export type NotificationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -143314,6 +147518,29 @@ export type NotificationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -143960,70 +148187,93 @@ export type NotificationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; - } - | { - __typename?: 'LegacyFreeCollectModuleSettings'; - type: OpenActionModuleType; - followerOnly: boolean; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - } - | { - __typename?: 'LegacyLimitedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; - referralFee: number; - followerOnly: boolean; - endsAt?: any | null; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - amount: { - __typename?: 'Amount'; - value: string; - asset: { - __typename?: 'Erc20'; - name: string; - symbol: string; - decimals: number; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - }; - }; - recipients: Array<{ - __typename?: 'RecipientDataOutput'; - recipient: any; - split: number; - }>; - } - | { - __typename?: 'LegacyRevertCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacySimpleCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; followerOnly: boolean; recipient: any; referralFee: number; - endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + } + | { + __typename?: 'LegacyFreeCollectModuleSettings'; + type: OpenActionModuleType; + followerOnly: boolean; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + } + | { + __typename?: 'LegacyLimitedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + referralFee: number; + followerOnly: boolean; + endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + recipients: Array<{ + __typename?: 'RecipientDataOutput'; + recipient: any; + split: number; + }>; + } + | { + __typename?: 'LegacyRevertCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacySimpleCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + endsAt?: any | null; contract: { __typename?: 'NetworkAddress'; address: any; @@ -144726,6 +148976,29 @@ export type NotificationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -145492,6 +149765,29 @@ export type NotificationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -146274,6 +150570,29 @@ export type NotificationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -147052,6 +151371,29 @@ export type NotificationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -147813,6 +152155,29 @@ export type NotificationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -149350,70 +153715,93 @@ export type PublicationQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; - } - | { - __typename?: 'LegacyFreeCollectModuleSettings'; - type: OpenActionModuleType; - followerOnly: boolean; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - } - | { - __typename?: 'LegacyLimitedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; - referralFee: number; - followerOnly: boolean; - endsAt?: any | null; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - amount: { - __typename?: 'Amount'; - value: string; - asset: { - __typename?: 'Erc20'; - name: string; - symbol: string; - decimals: number; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - }; - }; - recipients: Array<{ - __typename?: 'RecipientDataOutput'; - recipient: any; - split: number; - }>; - } - | { - __typename?: 'LegacyRevertCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacySimpleCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; followerOnly: boolean; recipient: any; referralFee: number; - endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + } + | { + __typename?: 'LegacyFreeCollectModuleSettings'; + type: OpenActionModuleType; + followerOnly: boolean; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + } + | { + __typename?: 'LegacyLimitedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + referralFee: number; + followerOnly: boolean; + endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + recipients: Array<{ + __typename?: 'RecipientDataOutput'; + recipient: any; + split: number; + }>; + } + | { + __typename?: 'LegacyRevertCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacySimpleCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + endsAt?: any | null; contract: { __typename?: 'NetworkAddress'; address: any; @@ -150113,6 +154501,29 @@ export type PublicationQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -150892,6 +155303,29 @@ export type PublicationQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -151667,6 +156101,29 @@ export type PublicationQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -152425,6 +156882,29 @@ export type PublicationQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -153068,6 +157548,29 @@ export type PublicationQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -153810,70 +158313,93 @@ export type PublicationQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; - } - | { - __typename?: 'LegacyFreeCollectModuleSettings'; - type: OpenActionModuleType; - followerOnly: boolean; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - } - | { - __typename?: 'LegacyLimitedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; - referralFee: number; - followerOnly: boolean; - endsAt?: any | null; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - amount: { - __typename?: 'Amount'; - value: string; - asset: { - __typename?: 'Erc20'; - name: string; - symbol: string; - decimals: number; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - }; - }; - recipients: Array<{ - __typename?: 'RecipientDataOutput'; - recipient: any; - split: number; - }>; - } - | { - __typename?: 'LegacyRevertCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacySimpleCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; followerOnly: boolean; recipient: any; referralFee: number; - endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + } + | { + __typename?: 'LegacyFreeCollectModuleSettings'; + type: OpenActionModuleType; + followerOnly: boolean; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + } + | { + __typename?: 'LegacyLimitedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + referralFee: number; + followerOnly: boolean; + endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + recipients: Array<{ + __typename?: 'RecipientDataOutput'; + recipient: any; + split: number; + }>; + } + | { + __typename?: 'LegacyRevertCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacySimpleCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + endsAt?: any | null; contract: { __typename?: 'NetworkAddress'; address: any; @@ -154568,6 +159094,29 @@ export type PublicationQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -155435,6 +159984,29 @@ export type PublicationQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -156204,6 +160776,29 @@ export type PublicationQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -156989,6 +161584,29 @@ export type PublicationQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -157785,6 +162403,29 @@ export type PublicationQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -158564,70 +163205,93 @@ export type PublicationQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; - } - | { - __typename?: 'LegacyFreeCollectModuleSettings'; - type: OpenActionModuleType; - followerOnly: boolean; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - } - | { - __typename?: 'LegacyLimitedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; - referralFee: number; - followerOnly: boolean; - endsAt?: any | null; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - amount: { - __typename?: 'Amount'; - value: string; - asset: { - __typename?: 'Erc20'; - name: string; - symbol: string; - decimals: number; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - }; - }; - recipients: Array<{ - __typename?: 'RecipientDataOutput'; - recipient: any; - split: number; - }>; - } - | { - __typename?: 'LegacyRevertCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacySimpleCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; followerOnly: boolean; recipient: any; referralFee: number; - endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + } + | { + __typename?: 'LegacyFreeCollectModuleSettings'; + type: OpenActionModuleType; + followerOnly: boolean; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + } + | { + __typename?: 'LegacyLimitedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + referralFee: number; + followerOnly: boolean; + endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + recipients: Array<{ + __typename?: 'RecipientDataOutput'; + recipient: any; + split: number; + }>; + } + | { + __typename?: 'LegacyRevertCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacySimpleCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + endsAt?: any | null; contract: { __typename?: 'NetworkAddress'; address: any; @@ -159315,6 +163979,29 @@ export type PublicationQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -160078,6 +164765,29 @@ export type PublicationQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -160857,6 +165567,29 @@ export type PublicationQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -161632,6 +166365,29 @@ export type PublicationQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -162390,6 +167146,29 @@ export type PublicationQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -163041,70 +167820,93 @@ export type PublicationQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; - } - | { - __typename?: 'LegacyFreeCollectModuleSettings'; - type: OpenActionModuleType; - followerOnly: boolean; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - } - | { - __typename?: 'LegacyLimitedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; - referralFee: number; - followerOnly: boolean; - endsAt?: any | null; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - amount: { - __typename?: 'Amount'; - value: string; - asset: { - __typename?: 'Erc20'; - name: string; - symbol: string; - decimals: number; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - }; - }; - recipients: Array<{ - __typename?: 'RecipientDataOutput'; - recipient: any; - split: number; - }>; - } - | { - __typename?: 'LegacyRevertCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacySimpleCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; followerOnly: boolean; recipient: any; referralFee: number; - endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + } + | { + __typename?: 'LegacyFreeCollectModuleSettings'; + type: OpenActionModuleType; + followerOnly: boolean; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + } + | { + __typename?: 'LegacyLimitedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + referralFee: number; + followerOnly: boolean; + endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + recipients: Array<{ + __typename?: 'RecipientDataOutput'; + recipient: any; + split: number; + }>; + } + | { + __typename?: 'LegacyRevertCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacySimpleCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + endsAt?: any | null; contract: { __typename?: 'NetworkAddress'; address: any; @@ -163807,6 +168609,29 @@ export type PublicationQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -164570,6 +169395,29 @@ export type PublicationQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -165349,6 +170197,29 @@ export type PublicationQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -166124,6 +170995,29 @@ export type PublicationQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -166882,6 +171776,29 @@ export type PublicationQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -167525,70 +172442,93 @@ export type PublicationQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; - } - | { - __typename?: 'LegacyFreeCollectModuleSettings'; - type: OpenActionModuleType; - followerOnly: boolean; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - } - | { - __typename?: 'LegacyLimitedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; - referralFee: number; - followerOnly: boolean; - endsAt?: any | null; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - amount: { - __typename?: 'Amount'; - value: string; - asset: { - __typename?: 'Erc20'; - name: string; - symbol: string; - decimals: number; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - }; - }; - recipients: Array<{ - __typename?: 'RecipientDataOutput'; - recipient: any; - split: number; - }>; - } - | { - __typename?: 'LegacyRevertCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacySimpleCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; followerOnly: boolean; recipient: any; referralFee: number; - endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + } + | { + __typename?: 'LegacyFreeCollectModuleSettings'; + type: OpenActionModuleType; + followerOnly: boolean; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + } + | { + __typename?: 'LegacyLimitedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + referralFee: number; + followerOnly: boolean; + endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + recipients: Array<{ + __typename?: 'RecipientDataOutput'; + recipient: any; + split: number; + }>; + } + | { + __typename?: 'LegacyRevertCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacySimpleCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + endsAt?: any | null; contract: { __typename?: 'NetworkAddress'; address: any; @@ -168306,6 +173246,29 @@ export type PublicationBookmarksQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -169072,6 +174035,29 @@ export type PublicationBookmarksQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -169854,6 +174840,29 @@ export type PublicationBookmarksQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -170632,6 +175641,29 @@ export type PublicationBookmarksQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -171393,6 +176425,29 @@ export type PublicationBookmarksQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -172036,70 +177091,93 @@ export type PublicationBookmarksQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; - } - | { - __typename?: 'LegacyFreeCollectModuleSettings'; - type: OpenActionModuleType; - followerOnly: boolean; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - } - | { - __typename?: 'LegacyLimitedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; - referralFee: number; - followerOnly: boolean; - endsAt?: any | null; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - amount: { - __typename?: 'Amount'; - value: string; - asset: { - __typename?: 'Erc20'; - name: string; - symbol: string; - decimals: number; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - }; - }; - recipients: Array<{ - __typename?: 'RecipientDataOutput'; - recipient: any; - split: number; - }>; - } - | { - __typename?: 'LegacyRevertCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacySimpleCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; followerOnly: boolean; recipient: any; referralFee: number; - endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + } + | { + __typename?: 'LegacyFreeCollectModuleSettings'; + type: OpenActionModuleType; + followerOnly: boolean; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + } + | { + __typename?: 'LegacyLimitedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + referralFee: number; + followerOnly: boolean; + endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + recipients: Array<{ + __typename?: 'RecipientDataOutput'; + recipient: any; + split: number; + }>; + } + | { + __typename?: 'LegacyRevertCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacySimpleCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + endsAt?: any | null; contract: { __typename?: 'NetworkAddress'; address: any; @@ -172781,6 +177859,29 @@ export type PublicationBookmarksQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -173542,6 +178643,29 @@ export type PublicationBookmarksQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -174412,6 +179536,29 @@ export type PublicationBookmarksQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -175184,6 +180331,29 @@ export type PublicationBookmarksQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -175972,6 +181142,29 @@ export type PublicationBookmarksQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -176771,70 +181964,93 @@ export type PublicationBookmarksQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; - } - | { - __typename?: 'LegacyFreeCollectModuleSettings'; - type: OpenActionModuleType; - followerOnly: boolean; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - } - | { - __typename?: 'LegacyLimitedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; - referralFee: number; - followerOnly: boolean; - endsAt?: any | null; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - amount: { - __typename?: 'Amount'; - value: string; - asset: { - __typename?: 'Erc20'; - name: string; - symbol: string; - decimals: number; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - }; - }; - recipients: Array<{ - __typename?: 'RecipientDataOutput'; - recipient: any; - split: number; - }>; - } - | { - __typename?: 'LegacyRevertCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacySimpleCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; followerOnly: boolean; recipient: any; referralFee: number; - endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + } + | { + __typename?: 'LegacyFreeCollectModuleSettings'; + type: OpenActionModuleType; + followerOnly: boolean; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + } + | { + __typename?: 'LegacyLimitedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + referralFee: number; + followerOnly: boolean; + endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + recipients: Array<{ + __typename?: 'RecipientDataOutput'; + recipient: any; + split: number; + }>; + } + | { + __typename?: 'LegacyRevertCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacySimpleCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + endsAt?: any | null; contract: { __typename?: 'NetworkAddress'; address: any; @@ -177553,6 +182769,29 @@ export type PublicationBookmarksQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -178307,6 +183546,29 @@ export type PublicationBookmarksQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -179073,6 +184335,29 @@ export type PublicationBookmarksQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -179855,6 +185140,29 @@ export type PublicationBookmarksQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -180633,6 +185941,29 @@ export type PublicationBookmarksQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -181394,70 +186725,93 @@ export type PublicationBookmarksQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; - } - | { - __typename?: 'LegacyFreeCollectModuleSettings'; - type: OpenActionModuleType; - followerOnly: boolean; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - } - | { - __typename?: 'LegacyLimitedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; - referralFee: number; - followerOnly: boolean; - endsAt?: any | null; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - amount: { - __typename?: 'Amount'; - value: string; - asset: { - __typename?: 'Erc20'; - name: string; - symbol: string; - decimals: number; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - }; - }; - recipients: Array<{ - __typename?: 'RecipientDataOutput'; - recipient: any; - split: number; - }>; - } - | { - __typename?: 'LegacyRevertCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacySimpleCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; followerOnly: boolean; recipient: any; referralFee: number; - endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + } + | { + __typename?: 'LegacyFreeCollectModuleSettings'; + type: OpenActionModuleType; + followerOnly: boolean; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + } + | { + __typename?: 'LegacyLimitedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + referralFee: number; + followerOnly: boolean; + endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + recipients: Array<{ + __typename?: 'RecipientDataOutput'; + recipient: any; + split: number; + }>; + } + | { + __typename?: 'LegacyRevertCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacySimpleCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + endsAt?: any | null; contract: { __typename?: 'NetworkAddress'; address: any; @@ -182045,6 +187399,29 @@ export type PublicationBookmarksQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -182814,6 +188191,29 @@ export type PublicationBookmarksQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -183580,6 +188980,29 @@ export type PublicationBookmarksQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -184362,6 +189785,29 @@ export type PublicationBookmarksQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -185140,6 +190586,29 @@ export type PublicationBookmarksQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -185901,70 +191370,93 @@ export type PublicationBookmarksQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; - } - | { - __typename?: 'LegacyFreeCollectModuleSettings'; - type: OpenActionModuleType; - followerOnly: boolean; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - } - | { - __typename?: 'LegacyLimitedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; - referralFee: number; - followerOnly: boolean; - endsAt?: any | null; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - amount: { - __typename?: 'Amount'; - value: string; - asset: { - __typename?: 'Erc20'; - name: string; - symbol: string; - decimals: number; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - }; - }; - recipients: Array<{ - __typename?: 'RecipientDataOutput'; - recipient: any; - split: number; - }>; - } - | { - __typename?: 'LegacyRevertCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacySimpleCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; followerOnly: boolean; recipient: any; referralFee: number; - endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + } + | { + __typename?: 'LegacyFreeCollectModuleSettings'; + type: OpenActionModuleType; + followerOnly: boolean; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + } + | { + __typename?: 'LegacyLimitedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + referralFee: number; + followerOnly: boolean; + endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + recipients: Array<{ + __typename?: 'RecipientDataOutput'; + recipient: any; + split: number; + }>; + } + | { + __typename?: 'LegacyRevertCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacySimpleCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + endsAt?: any | null; contract: { __typename?: 'NetworkAddress'; address: any; @@ -186544,6 +192036,29 @@ export type PublicationBookmarksQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -187327,6 +192842,29 @@ export type PublicationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -188093,6 +193631,29 @@ export type PublicationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -188875,6 +194436,29 @@ export type PublicationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -189653,6 +195237,29 @@ export type PublicationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -190414,70 +196021,93 @@ export type PublicationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; - } - | { - __typename?: 'LegacyFreeCollectModuleSettings'; - type: OpenActionModuleType; - followerOnly: boolean; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - } - | { - __typename?: 'LegacyLimitedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; - referralFee: number; - followerOnly: boolean; - endsAt?: any | null; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - amount: { - __typename?: 'Amount'; - value: string; - asset: { - __typename?: 'Erc20'; - name: string; - symbol: string; - decimals: number; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - }; - }; - recipients: Array<{ - __typename?: 'RecipientDataOutput'; - recipient: any; - split: number; - }>; - } - | { - __typename?: 'LegacyRevertCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacySimpleCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; followerOnly: boolean; recipient: any; referralFee: number; - endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + } + | { + __typename?: 'LegacyFreeCollectModuleSettings'; + type: OpenActionModuleType; + followerOnly: boolean; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + } + | { + __typename?: 'LegacyLimitedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + referralFee: number; + followerOnly: boolean; + endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + recipients: Array<{ + __typename?: 'RecipientDataOutput'; + recipient: any; + split: number; + }>; + } + | { + __typename?: 'LegacyRevertCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacySimpleCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + endsAt?: any | null; contract: { __typename?: 'NetworkAddress'; address: any; @@ -191057,6 +196687,29 @@ export type PublicationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -191802,6 +197455,29 @@ export type PublicationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -192563,6 +198239,29 @@ export type PublicationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -193433,6 +199132,29 @@ export type PublicationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -194205,6 +199927,29 @@ export type PublicationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -194993,70 +200738,93 @@ export type PublicationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; - } - | { - __typename?: 'LegacyFreeCollectModuleSettings'; - type: OpenActionModuleType; - followerOnly: boolean; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - } - | { - __typename?: 'LegacyLimitedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; - referralFee: number; - followerOnly: boolean; - endsAt?: any | null; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - amount: { - __typename?: 'Amount'; - value: string; - asset: { - __typename?: 'Erc20'; - name: string; - symbol: string; - decimals: number; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - }; - }; - recipients: Array<{ - __typename?: 'RecipientDataOutput'; - recipient: any; - split: number; - }>; - } - | { - __typename?: 'LegacyRevertCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacySimpleCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; followerOnly: boolean; recipient: any; referralFee: number; - endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + } + | { + __typename?: 'LegacyFreeCollectModuleSettings'; + type: OpenActionModuleType; + followerOnly: boolean; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + } + | { + __typename?: 'LegacyLimitedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + referralFee: number; + followerOnly: boolean; + endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + recipients: Array<{ + __typename?: 'RecipientDataOutput'; + recipient: any; + split: number; + }>; + } + | { + __typename?: 'LegacyRevertCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacySimpleCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + endsAt?: any | null; contract: { __typename?: 'NetworkAddress'; address: any; @@ -195792,6 +201560,29 @@ export type PublicationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -196574,6 +202365,29 @@ export type PublicationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -197328,6 +203142,29 @@ export type PublicationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -198094,6 +203931,29 @@ export type PublicationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -198876,6 +204736,29 @@ export type PublicationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -199654,70 +205537,93 @@ export type PublicationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; - } - | { - __typename?: 'LegacyFreeCollectModuleSettings'; - type: OpenActionModuleType; - followerOnly: boolean; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - } - | { - __typename?: 'LegacyLimitedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; - referralFee: number; - followerOnly: boolean; - endsAt?: any | null; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - amount: { - __typename?: 'Amount'; - value: string; - asset: { - __typename?: 'Erc20'; - name: string; - symbol: string; - decimals: number; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - }; - }; - recipients: Array<{ - __typename?: 'RecipientDataOutput'; - recipient: any; - split: number; - }>; - } - | { - __typename?: 'LegacyRevertCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacySimpleCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; followerOnly: boolean; recipient: any; referralFee: number; - endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + } + | { + __typename?: 'LegacyFreeCollectModuleSettings'; + type: OpenActionModuleType; + followerOnly: boolean; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + } + | { + __typename?: 'LegacyLimitedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + referralFee: number; + followerOnly: boolean; + endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + recipients: Array<{ + __typename?: 'RecipientDataOutput'; + recipient: any; + split: number; + }>; + } + | { + __typename?: 'LegacyRevertCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacySimpleCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + endsAt?: any | null; contract: { __typename?: 'NetworkAddress'; address: any; @@ -200415,6 +206321,29 @@ export type PublicationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -201066,6 +206995,29 @@ export type PublicationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -201835,6 +207787,29 @@ export type PublicationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -202601,6 +208576,29 @@ export type PublicationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -203383,6 +209381,29 @@ export type PublicationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -204161,70 +210182,93 @@ export type PublicationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; - } - | { - __typename?: 'LegacyFreeCollectModuleSettings'; - type: OpenActionModuleType; - followerOnly: boolean; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - } - | { - __typename?: 'LegacyLimitedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; - referralFee: number; - followerOnly: boolean; - endsAt?: any | null; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - amount: { - __typename?: 'Amount'; - value: string; - asset: { - __typename?: 'Erc20'; - name: string; - symbol: string; - decimals: number; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - }; - }; - recipients: Array<{ - __typename?: 'RecipientDataOutput'; - recipient: any; - split: number; - }>; - } - | { - __typename?: 'LegacyRevertCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacySimpleCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; followerOnly: boolean; recipient: any; referralFee: number; - endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + } + | { + __typename?: 'LegacyFreeCollectModuleSettings'; + type: OpenActionModuleType; + followerOnly: boolean; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + } + | { + __typename?: 'LegacyLimitedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + referralFee: number; + followerOnly: boolean; + endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + recipients: Array<{ + __typename?: 'RecipientDataOutput'; + recipient: any; + split: number; + }>; + } + | { + __typename?: 'LegacyRevertCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacySimpleCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + endsAt?: any | null; contract: { __typename?: 'NetworkAddress'; address: any; @@ -204922,6 +210966,29 @@ export type PublicationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -205565,6 +211632,29 @@ export type PublicationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -206543,6 +212633,29 @@ export type SearchPublicationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -207309,6 +213422,29 @@ export type SearchPublicationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -208091,6 +214227,29 @@ export type SearchPublicationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -208869,70 +215028,93 @@ export type SearchPublicationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; - } - | { - __typename?: 'LegacyFreeCollectModuleSettings'; - type: OpenActionModuleType; - followerOnly: boolean; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - } - | { - __typename?: 'LegacyLimitedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; - referralFee: number; - followerOnly: boolean; - endsAt?: any | null; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - amount: { - __typename?: 'Amount'; - value: string; - asset: { - __typename?: 'Erc20'; - name: string; - symbol: string; - decimals: number; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - }; - }; - recipients: Array<{ - __typename?: 'RecipientDataOutput'; - recipient: any; - split: number; - }>; - } - | { - __typename?: 'LegacyRevertCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacySimpleCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; followerOnly: boolean; recipient: any; referralFee: number; - endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + } + | { + __typename?: 'LegacyFreeCollectModuleSettings'; + type: OpenActionModuleType; + followerOnly: boolean; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + } + | { + __typename?: 'LegacyLimitedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + referralFee: number; + followerOnly: boolean; + endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + recipients: Array<{ + __typename?: 'RecipientDataOutput'; + recipient: any; + split: number; + }>; + } + | { + __typename?: 'LegacyRevertCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacySimpleCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + endsAt?: any | null; contract: { __typename?: 'NetworkAddress'; address: any; @@ -209630,6 +215812,29 @@ export type SearchPublicationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -210273,6 +216478,29 @@ export type SearchPublicationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -211018,6 +217246,29 @@ export type SearchPublicationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -211779,6 +218030,29 @@ export type SearchPublicationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -212446,6 +218720,29 @@ export type SearchPublicationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -213215,70 +219512,93 @@ export type SearchPublicationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; - } - | { - __typename?: 'LegacyFreeCollectModuleSettings'; - type: OpenActionModuleType; - followerOnly: boolean; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - } - | { - __typename?: 'LegacyLimitedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; - referralFee: number; - followerOnly: boolean; - endsAt?: any | null; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - amount: { - __typename?: 'Amount'; - value: string; - asset: { - __typename?: 'Erc20'; - name: string; - symbol: string; - decimals: number; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - }; - }; - recipients: Array<{ - __typename?: 'RecipientDataOutput'; - recipient: any; - split: number; - }>; - } - | { - __typename?: 'LegacyRevertCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacySimpleCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; followerOnly: boolean; recipient: any; referralFee: number; - endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + } + | { + __typename?: 'LegacyFreeCollectModuleSettings'; + type: OpenActionModuleType; + followerOnly: boolean; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + } + | { + __typename?: 'LegacyLimitedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + referralFee: number; + followerOnly: boolean; + endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + recipients: Array<{ + __typename?: 'RecipientDataOutput'; + recipient: any; + split: number; + }>; + } + | { + __typename?: 'LegacyRevertCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacySimpleCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + endsAt?: any | null; contract: { __typename?: 'NetworkAddress'; address: any; @@ -213981,6 +220301,29 @@ export type SearchPublicationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -214763,6 +221106,29 @@ export type SearchPublicationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -215541,6 +221907,29 @@ export type SearchPublicationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -216302,6 +222691,29 @@ export type SearchPublicationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -216945,6 +223357,29 @@ export type SearchPublicationsQuery = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -218103,70 +224538,93 @@ export type NewNotificationSubscriptionSubscription = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; - } - | { - __typename?: 'LegacyFreeCollectModuleSettings'; - type: OpenActionModuleType; - followerOnly: boolean; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - } - | { - __typename?: 'LegacyLimitedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; - referralFee: number; - followerOnly: boolean; - endsAt?: any | null; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - amount: { - __typename?: 'Amount'; - value: string; - asset: { - __typename?: 'Erc20'; - name: string; - symbol: string; - decimals: number; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - }; - }; - recipients: Array<{ - __typename?: 'RecipientDataOutput'; - recipient: any; - split: number; - }>; - } - | { - __typename?: 'LegacyRevertCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacySimpleCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; followerOnly: boolean; recipient: any; referralFee: number; - endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + } + | { + __typename?: 'LegacyFreeCollectModuleSettings'; + type: OpenActionModuleType; + followerOnly: boolean; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + } + | { + __typename?: 'LegacyLimitedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + referralFee: number; + followerOnly: boolean; + endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + recipients: Array<{ + __typename?: 'RecipientDataOutput'; + recipient: any; + split: number; + }>; + } + | { + __typename?: 'LegacyRevertCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacySimpleCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + endsAt?: any | null; contract: { __typename?: 'NetworkAddress'; address: any; @@ -218866,6 +225324,29 @@ export type NewNotificationSubscriptionSubscription = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -219645,6 +226126,29 @@ export type NewNotificationSubscriptionSubscription = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -220518,6 +227022,29 @@ export type NewNotificationSubscriptionSubscription = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -221299,6 +227826,29 @@ export type NewNotificationSubscriptionSubscription = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -222096,6 +228646,29 @@ export type NewNotificationSubscriptionSubscription = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -222898,70 +229471,93 @@ export type NewNotificationSubscriptionSubscription = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; - } - | { - __typename?: 'LegacyFreeCollectModuleSettings'; - type: OpenActionModuleType; - followerOnly: boolean; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - } - | { - __typename?: 'LegacyLimitedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; - referralFee: number; - followerOnly: boolean; - endsAt?: any | null; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - amount: { - __typename?: 'Amount'; - value: string; - asset: { - __typename?: 'Erc20'; - name: string; - symbol: string; - decimals: number; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - }; - }; - recipients: Array<{ - __typename?: 'RecipientDataOutput'; - recipient: any; - split: number; - }>; - } - | { - __typename?: 'LegacyRevertCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacySimpleCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; followerOnly: boolean; recipient: any; referralFee: number; - endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + } + | { + __typename?: 'LegacyFreeCollectModuleSettings'; + type: OpenActionModuleType; + followerOnly: boolean; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + } + | { + __typename?: 'LegacyLimitedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + referralFee: number; + followerOnly: boolean; + endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + recipients: Array<{ + __typename?: 'RecipientDataOutput'; + recipient: any; + split: number; + }>; + } + | { + __typename?: 'LegacyRevertCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacySimpleCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + endsAt?: any | null; contract: { __typename?: 'NetworkAddress'; address: any; @@ -223683,6 +230279,29 @@ export type NewNotificationSubscriptionSubscription = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -224455,6 +231074,29 @@ export type NewNotificationSubscriptionSubscription = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -225224,6 +231866,29 @@ export type NewNotificationSubscriptionSubscription = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -226009,6 +232674,29 @@ export type NewNotificationSubscriptionSubscription = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -226805,6 +233493,29 @@ export type NewNotificationSubscriptionSubscription = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -227584,70 +234295,93 @@ export type NewNotificationSubscriptionSubscription = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; - } - | { - __typename?: 'LegacyFreeCollectModuleSettings'; - type: OpenActionModuleType; - followerOnly: boolean; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - } - | { - __typename?: 'LegacyLimitedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; - referralFee: number; - followerOnly: boolean; - endsAt?: any | null; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - amount: { - __typename?: 'Amount'; - value: string; - asset: { - __typename?: 'Erc20'; - name: string; - symbol: string; - decimals: number; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - }; - }; - recipients: Array<{ - __typename?: 'RecipientDataOutput'; - recipient: any; - split: number; - }>; - } - | { - __typename?: 'LegacyRevertCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacySimpleCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; followerOnly: boolean; recipient: any; referralFee: number; - endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + } + | { + __typename?: 'LegacyFreeCollectModuleSettings'; + type: OpenActionModuleType; + followerOnly: boolean; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + } + | { + __typename?: 'LegacyLimitedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + referralFee: number; + followerOnly: boolean; + endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + recipients: Array<{ + __typename?: 'RecipientDataOutput'; + recipient: any; + split: number; + }>; + } + | { + __typename?: 'LegacyRevertCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacySimpleCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + endsAt?: any | null; contract: { __typename?: 'NetworkAddress'; address: any; @@ -228343,6 +235077,29 @@ export type NewNotificationSubscriptionSubscription = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -229117,6 +235874,29 @@ export type NewNotificationSubscriptionSubscription = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -229883,6 +236663,29 @@ export type NewNotificationSubscriptionSubscription = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -230665,6 +237468,29 @@ export type NewNotificationSubscriptionSubscription = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -231443,6 +238269,29 @@ export type NewNotificationSubscriptionSubscription = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -232204,70 +239053,93 @@ export type NewNotificationSubscriptionSubscription = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; - } - | { - __typename?: 'LegacyFreeCollectModuleSettings'; - type: OpenActionModuleType; - followerOnly: boolean; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - } - | { - __typename?: 'LegacyLimitedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; - referralFee: number; - followerOnly: boolean; - endsAt?: any | null; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - amount: { - __typename?: 'Amount'; - value: string; - asset: { - __typename?: 'Erc20'; - name: string; - symbol: string; - decimals: number; - contract: { - __typename?: 'NetworkAddress'; - address: any; - chainId: any; - }; - }; - }; - recipients: Array<{ - __typename?: 'RecipientDataOutput'; - recipient: any; - split: number; - }>; - } - | { - __typename?: 'LegacyRevertCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacySimpleCollectModuleSettings'; - type: OpenActionModuleType; - collectLimit?: string | null; followerOnly: boolean; recipient: any; referralFee: number; - endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + } + | { + __typename?: 'LegacyFreeCollectModuleSettings'; + type: OpenActionModuleType; + followerOnly: boolean; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + } + | { + __typename?: 'LegacyLimitedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + referralFee: number; + followerOnly: boolean; + endsAt?: any | null; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; + recipients: Array<{ + __typename?: 'RecipientDataOutput'; + recipient: any; + split: number; + }>; + } + | { + __typename?: 'LegacyRevertCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'LegacySimpleCollectModuleSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + endsAt?: any | null; contract: { __typename?: 'NetworkAddress'; address: any; @@ -232847,6 +239719,29 @@ export type NewNotificationSubscriptionSubscription = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -233592,6 +240487,29 @@ export type NewNotificationSubscriptionSubscription = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -234353,6 +241271,29 @@ export type NewNotificationSubscriptionSubscription = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -235191,6 +242132,29 @@ export type NewNotificationSubscriptionSubscription = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -235954,6 +242918,29 @@ export type NewNotificationSubscriptionSubscription = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -236733,6 +243720,29 @@ export type NewNotificationSubscriptionSubscription = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -237508,6 +244518,29 @@ export type NewNotificationSubscriptionSubscription = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -238266,6 +245299,29 @@ export type NewNotificationSubscriptionSubscription = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -239086,6 +246142,29 @@ export type NewNotificationSubscriptionSubscription = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -239849,6 +246928,29 @@ export type NewNotificationSubscriptionSubscription = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -240628,6 +247730,29 @@ export type NewNotificationSubscriptionSubscription = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -241403,6 +248528,29 @@ export type NewNotificationSubscriptionSubscription = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -242161,6 +249309,29 @@ export type NewNotificationSubscriptionSubscription = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -242934,6 +250105,29 @@ export type NewNotificationSubscriptionSubscription = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -243700,6 +250894,29 @@ export type NewNotificationSubscriptionSubscription = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -244482,6 +251699,29 @@ export type NewNotificationSubscriptionSubscription = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -245260,6 +252500,29 @@ export type NewNotificationSubscriptionSubscription = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -246021,6 +253284,29 @@ export type NewNotificationSubscriptionSubscription = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -246664,6 +253950,29 @@ export type NewNotificationSubscriptionSubscription = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -247427,6 +254736,29 @@ export type NewNotificationSubscriptionSubscription = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -248190,6 +255522,29 @@ export type NewNotificationSubscriptionSubscription = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -248969,6 +256324,29 @@ export type NewNotificationSubscriptionSubscription = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -249744,6 +257122,29 @@ export type NewNotificationSubscriptionSubscription = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -250502,6 +257903,29 @@ export type NewNotificationSubscriptionSubscription = { | { __typename?: 'LegacyFeeCollectModuleSettings'; type: OpenActionModuleType; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyFreeCollectModuleSettings'; @@ -251296,13 +258720,22 @@ export const OpenActionModulesFieldsFragmentDoc = gql` } ... on LegacyFreeCollectModuleSettings { type - followerOnly contract { ...NetworkAddressFields } + followerOnly } ... on LegacyFeeCollectModuleSettings { type + contract { + ...NetworkAddressFields + } + amount { + ...AmountFields + } + followerOnly + recipient + referralFee } ... on LegacyLimitedFeeCollectModuleSettings { type diff --git a/packages/lib/allowedOpenActionModules.ts b/packages/lib/allowedOpenActionModules.ts index 9f1dc995f703..75a17f65f8b7 100644 --- a/packages/lib/allowedOpenActionModules.ts +++ b/packages/lib/allowedOpenActionModules.ts @@ -5,7 +5,8 @@ const allowedOpenActionModules = [ OpenActionModuleType.MultirecipientFeeCollectOpenActionModule, OpenActionModuleType.LegacySimpleCollectModule, OpenActionModuleType.LegacyMultirecipientFeeCollectModule, - OpenActionModuleType.LegacyFreeCollectModule + OpenActionModuleType.LegacyFreeCollectModule, + OpenActionModuleType.LegacyFeeCollectModule ]; export default allowedOpenActionModules; diff --git a/packages/lib/getCollectModuleData.ts b/packages/lib/getCollectModuleData.ts index b28e5d19c61c..f3fe90c04a38 100644 --- a/packages/lib/getCollectModuleData.ts +++ b/packages/lib/getCollectModuleData.ts @@ -1,4 +1,6 @@ import type { + LegacyFeeCollectModuleSettings, + LegacyFreeCollectModuleSettings, LegacyMultirecipientFeeCollectModuleSettings, LegacySimpleCollectModuleSettings, MultirecipientFeeCollectOpenActionSettings, @@ -8,14 +10,16 @@ import type { const getCollectModuleData = ( collectModule: + | LegacyFeeCollectModuleSettings + | LegacyFreeCollectModuleSettings | LegacyMultirecipientFeeCollectModuleSettings | LegacySimpleCollectModuleSettings | MultirecipientFeeCollectOpenActionSettings | SimpleCollectOpenActionSettings ): { - amount: number; - assetAddress: string; - assetDecimals: number; + amount?: number; + assetAddress?: string; + assetDecimals?: number; collectLimit?: number; endsAt?: string; followerOnly?: boolean; @@ -48,7 +52,19 @@ const getCollectModuleData = ( recipients: collectModule.recipients, referralFee: collectModule.referralFee }; - + case 'LegacyFreeCollectModuleSettings': + return { + followerOnly: collectModule.followerOnly + }; + case 'LegacyFeeCollectModuleSettings': + return { + amount: parseFloat(collectModule.amount.value || '0'), + assetAddress: collectModule.amount.asset.contract.address, + assetDecimals: collectModule.amount.asset.decimals, + followerOnly: collectModule.followerOnly, + recipient: collectModule.recipient, + referralFee: collectModule.referralFee + }; default: return null; } diff --git a/packages/lib/isOpenActionAllowed.ts b/packages/lib/isOpenActionAllowed.ts index 7228c8b13c08..75f9717af4aa 100644 --- a/packages/lib/isOpenActionAllowed.ts +++ b/packages/lib/isOpenActionAllowed.ts @@ -8,7 +8,7 @@ import allowedOpenActionModules from './allowedOpenActionModules'; const allowedTypes = [ ...allowedOpenActionModules, - OpenActionModuleType.LegacyFreeCollectModule + OpenActionModuleType.UnknownOpenActionModule ]; const isOpenActionAllowed = (