From 145107db5cb714621a39aca2eadd4645c5af043d Mon Sep 17 00:00:00 2001 From: bigint <69431456+bigint@users.noreply.github.com> Date: Mon, 11 Dec 2023 15:27:47 +0530 Subject: [PATCH] feat: add limited fee collect module support (#4177) --- .../CollectModule/CollectAction.tsx | 3 +- apps/web/src/lib/getAllowanceModule.ts | 2 + .../fragments/OpenActionModulesFields.graphql | 10 + packages/lens/generated.ts | 11596 +++++++++++++--- packages/lib/allowedOpenActionModules.ts | 3 +- packages/lib/getCollectModuleData.ts | 12 + 6 files changed, 9705 insertions(+), 1921 deletions(-) diff --git a/apps/web/src/components/Publication/LensOpenActions/CollectModule/CollectAction.tsx b/apps/web/src/components/Publication/LensOpenActions/CollectModule/CollectAction.tsx index e8316ee5eed7..f34f5055163c 100644 --- a/apps/web/src/components/Publication/LensOpenActions/CollectModule/CollectAction.tsx +++ b/apps/web/src/components/Publication/LensOpenActions/CollectModule/CollectAction.tsx @@ -103,7 +103,8 @@ const CollectAction: FC = ({ openAction.__typename === 'LegacySimpleCollectModuleSettings' || openAction.__typename === 'LegacyMultirecipientFeeCollectModuleSettings' || openAction.__typename === 'LegacyFreeCollectModuleSettings' || - openAction.__typename === 'LegacyFeeCollectModuleSettings'; + openAction.__typename === 'LegacyFeeCollectModuleSettings' || + openAction.__typename === 'LegacyLimitedFeeCollectModuleSettings'; 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 47fc90a4cfe8..cbc2b0a0b894 100644 --- a/apps/web/src/lib/getAllowanceModule.ts +++ b/apps/web/src/lib/getAllowanceModule.ts @@ -29,6 +29,8 @@ const getAllowanceModule = ( return { field: 'openActionModule', name: 'Legacy Free collect' }; case OpenActionModuleType.LegacyFeeCollectModule: return { field: 'openActionModule', name: 'Legacy Fee collect' }; + case OpenActionModuleType.LegacyLimitedFeeCollectModule: + return { field: 'openActionModule', name: 'Legacy Limited Fee collect' }; // Follow modules case FollowModuleType.FeeFollowModule: diff --git a/packages/lens/documents/fragments/OpenActionModulesFields.graphql b/packages/lens/documents/fragments/OpenActionModulesFields.graphql index e54026bc9dba..89fb028e7a95 100644 --- a/packages/lens/documents/fragments/OpenActionModulesFields.graphql +++ b/packages/lens/documents/fragments/OpenActionModulesFields.graphql @@ -51,6 +51,16 @@ fragment OpenActionModulesFields on OpenActionModule { } ... on LegacyLimitedFeeCollectModuleSettings { type + contract { + ...NetworkAddressFields + } + amount { + ...AmountFields + } + collectLimit + followerOnly + recipient + referralFee } ... on LegacyLimitedTimedFeeCollectModuleSettings { type diff --git a/packages/lens/generated.ts b/packages/lens/generated.ts index c5978c2ba32c..91231612710d 100644 --- a/packages/lens/generated.ts +++ b/packages/lens/generated.ts @@ -6146,6 +6146,26 @@ export type CommentBaseFieldsFragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { __typename?: 'NetworkAddress'; address: any; chainId: any }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -6783,6 +6803,30 @@ export type CommentBaseFieldsFragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -7456,6 +7500,30 @@ export type CommentBaseFieldsFragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -8152,6 +8220,30 @@ export type CommentFieldsFragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -8917,6 +9009,30 @@ export type CommentFieldsFragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -9698,6 +9814,30 @@ export type CommentFieldsFragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -10388,6 +10528,30 @@ export type CommentFieldsFragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -11061,6 +11225,30 @@ export type CommentFieldsFragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -11712,6 +11900,26 @@ export type CommentFieldsFragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { __typename?: 'NetworkAddress'; address: any; chainId: any }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -12349,18 +12557,10 @@ export type CommentFieldsFragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; - } - | { - __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; - type: OpenActionModuleType; - } - | { - __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; - type: OpenActionModuleType; collectLimit?: string | null; - referralFee: number; followerOnly: boolean; - endsAt?: any | null; + recipient: any; + referralFee: number; contract: { __typename?: 'NetworkAddress'; address: any; @@ -12381,23 +12581,17 @@ export type CommentFieldsFragment = { }; }; }; - recipients: Array<{ - __typename?: 'RecipientDataOutput'; - recipient: any; - split: number; - }>; } | { - __typename?: 'LegacyRevertCollectModuleSettings'; + __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; type: OpenActionModuleType; } | { - __typename?: 'LegacySimpleCollectModuleSettings'; + __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; type: OpenActionModuleType; collectLimit?: string | null; - followerOnly: boolean; - recipient: any; referralFee: number; + followerOnly: boolean; endsAt?: any | null; contract: { __typename?: 'NetworkAddress'; @@ -12419,17 +12613,23 @@ export type CommentFieldsFragment = { }; }; }; + recipients: Array<{ + __typename?: 'RecipientDataOutput'; + recipient: any; + split: number; + }>; } | { - __typename?: 'LegacyTimedFeeCollectModuleSettings'; + __typename?: 'LegacyRevertCollectModuleSettings'; type: OpenActionModuleType; } | { - __typename?: 'MultirecipientFeeCollectOpenActionSettings'; + __typename?: 'LegacySimpleCollectModuleSettings'; type: OpenActionModuleType; collectLimit?: string | null; - referralFee: number; followerOnly: boolean; + recipient: any; + referralFee: number; endsAt?: any | null; contract: { __typename?: 'NetworkAddress'; @@ -12451,18 +12651,50 @@ export type CommentFieldsFragment = { }; }; }; - recipients: Array<{ - __typename?: 'RecipientDataOutput'; - recipient: any; - split: number; - }>; } | { - __typename?: 'SimpleCollectOpenActionSettings'; + __typename?: 'LegacyTimedFeeCollectModuleSettings'; + type: OpenActionModuleType; + } + | { + __typename?: 'MultirecipientFeeCollectOpenActionSettings'; 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?: 'SimpleCollectOpenActionSettings'; + type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; referralFee: number; endsAt?: any | null; contract: { @@ -13022,6 +13254,30 @@ export type CommentFieldsFragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -14030,6 +14286,30 @@ export type MirrorFieldsFragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -14816,6 +15096,30 @@ export type MirrorFieldsFragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -15618,6 +15922,30 @@ export type MirrorFieldsFragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -16416,6 +16744,30 @@ export type MirrorFieldsFragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -17197,6 +17549,30 @@ export type MirrorFieldsFragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -17863,6 +18239,30 @@ export type MirrorFieldsFragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -18628,56 +19028,10 @@ export type MirrorFieldsFragment = { | { __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; @@ -18700,11 +19054,11 @@ export type MirrorFieldsFragment = { }; } | { - __typename?: 'LegacyTimedFeeCollectModuleSettings'; + __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; type: OpenActionModuleType; } | { - __typename?: 'MultirecipientFeeCollectOpenActionSettings'; + __typename?: 'LegacyMultirecipientFeeCollectModuleSettings'; type: OpenActionModuleType; collectLimit?: string | null; referralFee: number; @@ -18737,7 +19091,77 @@ export type MirrorFieldsFragment = { }>; } | { - __typename?: 'SimpleCollectOpenActionSettings'; + __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; @@ -19409,6 +19833,30 @@ export type MirrorFieldsFragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -20099,6 +20547,30 @@ export type MirrorFieldsFragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -20772,6 +21244,30 @@ export type MirrorFieldsFragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -20985,6 +21481,22 @@ type OpenActionModulesFields_LegacyFreeCollectModuleSettings_Fragment = { type OpenActionModulesFields_LegacyLimitedFeeCollectModuleSettings_Fragment = { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { __typename?: 'NetworkAddress'; address: 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_LegacyLimitedTimedFeeCollectModuleSettings_Fragment = @@ -21616,6 +22128,26 @@ export type PostFieldsFragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { __typename?: 'NetworkAddress'; address: any; chainId: any }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -22538,6 +23070,26 @@ export type QuoteBaseFieldsFragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { __typename?: 'NetworkAddress'; address: any; chainId: any }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -23197,6 +23749,30 @@ export type QuoteFieldsFragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -23962,56 +24538,80 @@ export type QuoteFieldsFragment = { | { __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?: '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; @@ -24743,6 +25343,30 @@ export type QuoteFieldsFragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -25433,6 +26057,30 @@ export type QuoteFieldsFragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -26106,6 +26754,30 @@ export type QuoteFieldsFragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -26757,6 +27429,26 @@ export type QuoteFieldsFragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { __typename?: 'NetworkAddress'; address: any; chainId: any }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -27463,6 +28155,30 @@ export type ActedNotificationFieldsFragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -28228,6 +28944,30 @@ export type ActedNotificationFieldsFragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -29009,6 +29749,30 @@ export type ActedNotificationFieldsFragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -29899,6 +30663,30 @@ export type ActedNotificationFieldsFragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -30691,6 +31479,30 @@ export type ActedNotificationFieldsFragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -31499,6 +32311,30 @@ export type ActedNotificationFieldsFragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -32318,6 +33154,30 @@ export type ActedNotificationFieldsFragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -33120,6 +33980,30 @@ export type ActedNotificationFieldsFragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -33894,6 +34778,30 @@ export type ActedNotificationFieldsFragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -34680,6 +35588,30 @@ export type ActedNotificationFieldsFragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -35482,6 +36414,30 @@ export type ActedNotificationFieldsFragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -36280,6 +37236,30 @@ export type ActedNotificationFieldsFragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -37061,6 +38041,30 @@ export type ActedNotificationFieldsFragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -37735,56 +38739,80 @@ export type ActedNotificationFieldsFragment = { | { __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?: '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; @@ -38422,6 +39450,30 @@ export type CommentNotificationFieldsFragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -39190,6 +40242,30 @@ export type CommentNotificationFieldsFragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -39974,6 +41050,30 @@ export type CommentNotificationFieldsFragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -40664,6 +41764,30 @@ export type CommentNotificationFieldsFragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -41337,6 +42461,30 @@ export type CommentNotificationFieldsFragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -41996,6 +43144,30 @@ export type CommentNotificationFieldsFragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -42653,56 +43825,80 @@ export type CommentNotificationFieldsFragment = { | { __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?: '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; @@ -43326,6 +44522,30 @@ export type CommentNotificationFieldsFragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -44071,6 +45291,30 @@ export type MentionNotificationFieldsFragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -44836,6 +46080,30 @@ export type MentionNotificationFieldsFragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -45617,6 +46885,30 @@ export type MentionNotificationFieldsFragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -46307,6 +47599,30 @@ export type MentionNotificationFieldsFragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -46980,6 +48296,30 @@ export type MentionNotificationFieldsFragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -47709,56 +49049,80 @@ export type MirrorNotificationFieldsFragment = { | { __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?: '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; @@ -48474,6 +49838,30 @@ export type MirrorNotificationFieldsFragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -49255,6 +50643,30 @@ export type MirrorNotificationFieldsFragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -49945,6 +51357,30 @@ export type MirrorNotificationFieldsFragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -50618,6 +52054,30 @@ export type MirrorNotificationFieldsFragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -51348,6 +52808,30 @@ type NotificationFields_ActedNotification_Fragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -52113,6 +53597,30 @@ type NotificationFields_ActedNotification_Fragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -52894,56 +54402,80 @@ type NotificationFields_ActedNotification_Fragment = { | { __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?: '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; @@ -53784,6 +55316,30 @@ type NotificationFields_ActedNotification_Fragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -54576,6 +56132,30 @@ type NotificationFields_ActedNotification_Fragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -55384,6 +56964,30 @@ type NotificationFields_ActedNotification_Fragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -56203,6 +57807,30 @@ type NotificationFields_ActedNotification_Fragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -57005,6 +58633,30 @@ type NotificationFields_ActedNotification_Fragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -57779,6 +59431,30 @@ type NotificationFields_ActedNotification_Fragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -58565,56 +60241,80 @@ type NotificationFields_ActedNotification_Fragment = { | { __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?: '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; @@ -59367,6 +61067,30 @@ type NotificationFields_ActedNotification_Fragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -60165,6 +61889,30 @@ type NotificationFields_ActedNotification_Fragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -60946,6 +62694,30 @@ type NotificationFields_ActedNotification_Fragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -61620,6 +63392,30 @@ type NotificationFields_ActedNotification_Fragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -62307,6 +64103,30 @@ type NotificationFields_CommentNotification_Fragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -63075,6 +64895,30 @@ type NotificationFields_CommentNotification_Fragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -63859,56 +65703,80 @@ type NotificationFields_CommentNotification_Fragment = { | { __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?: '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; @@ -64549,6 +66417,30 @@ type NotificationFields_CommentNotification_Fragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -65222,6 +67114,30 @@ type NotificationFields_CommentNotification_Fragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -65881,6 +67797,30 @@ type NotificationFields_CommentNotification_Fragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -66538,6 +68478,30 @@ type NotificationFields_CommentNotification_Fragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -67211,6 +69175,30 @@ type NotificationFields_CommentNotification_Fragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -67956,6 +69944,30 @@ type NotificationFields_MentionNotification_Fragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -68721,56 +70733,80 @@ type NotificationFields_MentionNotification_Fragment = { | { __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?: '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; @@ -69502,6 +71538,30 @@ type NotificationFields_MentionNotification_Fragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -70192,6 +72252,30 @@ type NotificationFields_MentionNotification_Fragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -70865,6 +72949,30 @@ type NotificationFields_MentionNotification_Fragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -71594,6 +73702,30 @@ type NotificationFields_MirrorNotification_Fragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -72359,6 +74491,30 @@ type NotificationFields_MirrorNotification_Fragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -73140,6 +75296,30 @@ type NotificationFields_MirrorNotification_Fragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -73830,56 +76010,80 @@ type NotificationFields_MirrorNotification_Fragment = { | { __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?: '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; @@ -74503,6 +76707,30 @@ type NotificationFields_MirrorNotification_Fragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -75189,6 +77417,30 @@ type NotificationFields_QuoteNotification_Fragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -75957,6 +78209,30 @@ type NotificationFields_QuoteNotification_Fragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -76741,6 +79017,30 @@ type NotificationFields_QuoteNotification_Fragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -77431,6 +79731,30 @@ type NotificationFields_QuoteNotification_Fragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -78104,6 +80428,30 @@ type NotificationFields_QuoteNotification_Fragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -78763,56 +81111,80 @@ type NotificationFields_QuoteNotification_Fragment = { | { __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?: '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; @@ -79439,6 +81811,30 @@ type NotificationFields_ReactionNotification_Fragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -80204,6 +82600,30 @@ type NotificationFields_ReactionNotification_Fragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -80985,6 +83405,30 @@ type NotificationFields_ReactionNotification_Fragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -81675,6 +84119,30 @@ type NotificationFields_ReactionNotification_Fragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -82348,6 +84816,30 @@ type NotificationFields_ReactionNotification_Fragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -83093,6 +85585,30 @@ export type QuoteNotificationFieldsFragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -83861,56 +86377,80 @@ export type QuoteNotificationFieldsFragment = { | { __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?: '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; @@ -84645,6 +87185,30 @@ export type QuoteNotificationFieldsFragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -85335,6 +87899,30 @@ export type QuoteNotificationFieldsFragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -86008,6 +88596,30 @@ export type QuoteNotificationFieldsFragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -86667,6 +89279,30 @@ export type QuoteNotificationFieldsFragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -87343,6 +89979,30 @@ export type ReactionNotificationFieldsFragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -88108,6 +90768,30 @@ export type ReactionNotificationFieldsFragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -88889,56 +91573,80 @@ export type ReactionNotificationFieldsFragment = { | { __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?: '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; @@ -89579,6 +92287,30 @@ export type ReactionNotificationFieldsFragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -90252,6 +92984,30 @@ export type ReactionNotificationFieldsFragment = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -93234,6 +95990,30 @@ export type ExplorePublicationsQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -94026,6 +96806,30 @@ export type ExplorePublicationsQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -94815,6 +97619,30 @@ export type ExplorePublicationsQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -95620,6 +98448,30 @@ export type ExplorePublicationsQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -96421,56 +99273,80 @@ export type ExplorePublicationsQuery = { | { __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?: '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; @@ -97205,6 +100081,30 @@ export type ExplorePublicationsQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -97871,6 +100771,30 @@ export type ExplorePublicationsQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -98698,6 +101622,30 @@ export type FeedQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -99490,6 +102438,30 @@ export type FeedQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -100298,6 +103270,30 @@ export type FeedQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -101117,6 +104113,30 @@ export type FeedQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -101919,56 +104939,80 @@ export type FeedQuery = { | { __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?: '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; @@ -102588,6 +105632,30 @@ export type FeedQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -103374,6 +106442,30 @@ export type FeedQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -104176,6 +107268,30 @@ export type FeedQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -104869,6 +107985,30 @@ export type FeedQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -105679,6 +108819,30 @@ export type FeedQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -106471,6 +109635,30 @@ export type FeedQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -107279,56 +110467,80 @@ export type FeedQuery = { | { __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?: '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; @@ -108098,6 +111310,30 @@ export type FeedQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -108900,6 +112136,30 @@ export type FeedQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -109569,6 +112829,30 @@ export type FeedQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -110413,6 +113697,30 @@ export type FeedQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -111178,6 +114486,30 @@ export type FeedQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -111959,6 +115291,30 @@ export type FeedQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -112663,56 +116019,80 @@ export type FeedHighlightsQuery = { | { __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?: '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; @@ -113455,6 +116835,30 @@ export type FeedHighlightsQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -114244,6 +117648,30 @@ export type FeedHighlightsQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -115049,6 +118477,30 @@ export type FeedHighlightsQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -115850,6 +119302,30 @@ export type FeedHighlightsQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -116634,6 +120110,30 @@ export type FeedHighlightsQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -117300,6 +120800,30 @@ export type FeedHighlightsQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -118584,56 +122108,80 @@ export type NotificationsQuery = { | { __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?: '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; @@ -119373,6 +122921,30 @@ export type NotificationsQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -120178,6 +123750,30 @@ export type NotificationsQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -121080,6 +124676,30 @@ export type NotificationsQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -121884,6 +125504,30 @@ export type NotificationsQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -122704,6 +126348,30 @@ export type NotificationsQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -123532,6 +127200,30 @@ export type NotificationsQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -124343,56 +128035,80 @@ export type NotificationsQuery = { | { __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?: '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; @@ -125141,6 +128857,30 @@ export type NotificationsQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -125936,6 +129676,30 @@ export type NotificationsQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -126747,6 +130511,30 @@ export type NotificationsQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -127569,6 +131357,30 @@ export type NotificationsQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -128374,6 +132186,30 @@ export type NotificationsQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -129159,6 +132995,30 @@ export type NotificationsQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -129974,56 +133834,80 @@ export type NotificationsQuery = { | { __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?: '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; @@ -130766,6 +134650,30 @@ export type NotificationsQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -131574,6 +135482,30 @@ export type NotificationsQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -132393,6 +136325,30 @@ export type NotificationsQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -133195,6 +137151,30 @@ export type NotificationsQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -133864,6 +137844,30 @@ export type NotificationsQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -134650,6 +138654,30 @@ export type NotificationsQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -135452,56 +139480,80 @@ export type NotificationsQuery = { | { __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?: '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; @@ -136316,6 +140368,30 @@ export type NotificationsQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -137105,6 +141181,30 @@ export type NotificationsQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -137910,6 +142010,30 @@ export type NotificationsQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -138711,6 +142835,30 @@ export type NotificationsQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -139495,6 +143643,30 @@ export type NotificationsQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -140341,6 +144513,30 @@ export type NotificationsQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -141130,56 +145326,80 @@ export type NotificationsQuery = { | { __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?: '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; @@ -141935,6 +146155,30 @@ export type NotificationsQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -142736,6 +146980,30 @@ export type NotificationsQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -143520,6 +147788,30 @@ export type NotificationsQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -144334,6 +148626,30 @@ export type NotificationsQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -145126,6 +149442,30 @@ export type NotificationsQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -145934,6 +150274,30 @@ export type NotificationsQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -146753,56 +151117,80 @@ export type NotificationsQuery = { | { __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?: '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; @@ -147555,6 +151943,30 @@ export type NotificationsQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -148224,6 +152636,30 @@ export type NotificationsQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -149013,6 +153449,30 @@ export type NotificationsQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -149802,6 +154262,30 @@ export type NotificationsQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -150607,6 +155091,30 @@ export type NotificationsQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -151408,6 +155916,30 @@ export type NotificationsQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -152192,56 +156724,80 @@ export type NotificationsQuery = { | { __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?: '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; @@ -153752,6 +158308,30 @@ export type PublicationQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -154538,6 +159118,30 @@ export type PublicationQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -155340,6 +159944,30 @@ export type PublicationQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -156138,6 +160766,30 @@ export type PublicationQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -156919,6 +161571,30 @@ export type PublicationQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -157585,6 +162261,30 @@ export type PublicationQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -158350,56 +163050,80 @@ export type PublicationQuery = { | { __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?: '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; @@ -159131,6 +163855,30 @@ export type PublicationQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -160021,6 +164769,30 @@ export type PublicationQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -160813,6 +165585,30 @@ export type PublicationQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -161621,6 +166417,30 @@ export type PublicationQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -162440,6 +167260,30 @@ export type PublicationQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -163242,6 +168086,30 @@ export type PublicationQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -164016,56 +168884,80 @@ export type PublicationQuery = { | { __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?: '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; @@ -164802,6 +169694,30 @@ export type PublicationQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -165604,6 +170520,30 @@ export type PublicationQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -166402,6 +171342,30 @@ export type PublicationQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -167183,6 +172147,30 @@ export type PublicationQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -167857,6 +172845,30 @@ export type PublicationQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -168646,6 +173658,30 @@ export type PublicationQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -169432,56 +174468,80 @@ export type PublicationQuery = { | { __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?: '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; @@ -170234,6 +175294,30 @@ export type PublicationQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -171032,6 +176116,30 @@ export type PublicationQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -171813,6 +176921,30 @@ export type PublicationQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -172479,6 +177611,30 @@ export type PublicationQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -173283,6 +178439,30 @@ export type PublicationBookmarksQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -174072,6 +179252,30 @@ export type PublicationBookmarksQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -174877,56 +180081,80 @@ export type PublicationBookmarksQuery = { | { __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?: '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; @@ -175678,6 +180906,30 @@ export type PublicationBookmarksQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -176462,6 +181714,30 @@ export type PublicationBookmarksQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -177128,6 +182404,30 @@ export type PublicationBookmarksQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -177896,6 +183196,30 @@ export type PublicationBookmarksQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -178680,6 +184004,30 @@ export type PublicationBookmarksQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -179573,6 +184921,30 @@ export type PublicationBookmarksQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -180368,56 +185740,80 @@ export type PublicationBookmarksQuery = { | { __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?: '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; @@ -181179,6 +186575,30 @@ export type PublicationBookmarksQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -182001,6 +187421,30 @@ export type PublicationBookmarksQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -182806,6 +188250,30 @@ export type PublicationBookmarksQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -183583,6 +189051,30 @@ export type PublicationBookmarksQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -184372,6 +189864,30 @@ export type PublicationBookmarksQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -185177,6 +190693,30 @@ export type PublicationBookmarksQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -185978,56 +191518,80 @@ export type PublicationBookmarksQuery = { | { __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?: '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; @@ -186762,6 +192326,30 @@ export type PublicationBookmarksQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -187436,6 +193024,30 @@ export type PublicationBookmarksQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -188228,6 +193840,30 @@ export type PublicationBookmarksQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -189017,6 +194653,30 @@ export type PublicationBookmarksQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -189822,6 +195482,30 @@ export type PublicationBookmarksQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -190623,6 +196307,30 @@ export type PublicationBookmarksQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -191407,56 +197115,80 @@ export type PublicationBookmarksQuery = { | { __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?: '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; @@ -192073,6 +197805,30 @@ export type PublicationBookmarksQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -192879,6 +198635,30 @@ export type PublicationsQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -193668,6 +199448,30 @@ export type PublicationsQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -194473,6 +200277,30 @@ export type PublicationsQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -195274,6 +201102,30 @@ export type PublicationsQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -196058,6 +201910,30 @@ export type PublicationsQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -196724,56 +202600,80 @@ export type PublicationsQuery = { | { __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?: '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; @@ -197492,6 +203392,30 @@ export type PublicationsQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -198276,6 +204200,30 @@ export type PublicationsQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -199169,6 +205117,30 @@ export type PublicationsQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -199964,6 +205936,30 @@ export type PublicationsQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -200775,6 +206771,30 @@ export type PublicationsQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -201597,6 +207617,30 @@ export type PublicationsQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -202402,56 +208446,80 @@ export type PublicationsQuery = { | { __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?: '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; @@ -203179,6 +209247,30 @@ export type PublicationsQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -203968,6 +210060,30 @@ export type PublicationsQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -204773,6 +210889,30 @@ export type PublicationsQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -205574,6 +211714,30 @@ export type PublicationsQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -206358,6 +212522,30 @@ export type PublicationsQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -207032,6 +213220,30 @@ export type PublicationsQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -207824,56 +214036,80 @@ export type PublicationsQuery = { | { __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?: '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; @@ -208613,6 +214849,30 @@ export type PublicationsQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -209418,6 +215678,30 @@ export type PublicationsQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -210219,6 +216503,30 @@ export type PublicationsQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -211003,6 +217311,30 @@ export type PublicationsQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -211669,6 +218001,30 @@ export type PublicationsQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -212670,6 +219026,30 @@ export type SearchPublicationsQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -213459,56 +219839,80 @@ export type SearchPublicationsQuery = { | { __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?: '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; @@ -214264,6 +220668,30 @@ export type SearchPublicationsQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -215065,6 +221493,30 @@ export type SearchPublicationsQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -215849,6 +222301,30 @@ export type SearchPublicationsQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -216515,6 +222991,30 @@ export type SearchPublicationsQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -217283,6 +223783,30 @@ export type SearchPublicationsQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -218067,6 +224591,30 @@ export type SearchPublicationsQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -218757,56 +225305,80 @@ export type SearchPublicationsQuery = { | { __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?: '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; @@ -219549,6 +226121,30 @@ export type SearchPublicationsQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -220338,6 +226934,30 @@ export type SearchPublicationsQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -221143,6 +227763,30 @@ export type SearchPublicationsQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -221944,6 +228588,30 @@ export type SearchPublicationsQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -222728,6 +229396,30 @@ export type SearchPublicationsQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -223394,6 +230086,30 @@ export type SearchPublicationsQuery = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -224575,56 +231291,80 @@ export type NewNotificationSubscriptionSubscription = { | { __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?: '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; @@ -225361,6 +232101,30 @@ export type NewNotificationSubscriptionSubscription = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -226163,6 +232927,30 @@ export type NewNotificationSubscriptionSubscription = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -227059,6 +233847,30 @@ export type NewNotificationSubscriptionSubscription = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -227863,6 +234675,30 @@ export type NewNotificationSubscriptionSubscription = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -228683,6 +235519,30 @@ export type NewNotificationSubscriptionSubscription = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -229508,6 +236368,30 @@ export type NewNotificationSubscriptionSubscription = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -230316,56 +237200,80 @@ export type NewNotificationSubscriptionSubscription = { | { __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?: '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; @@ -231111,6 +238019,30 @@ export type NewNotificationSubscriptionSubscription = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -231903,6 +238835,30 @@ export type NewNotificationSubscriptionSubscription = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -232711,6 +239667,30 @@ export type NewNotificationSubscriptionSubscription = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -233530,6 +240510,30 @@ export type NewNotificationSubscriptionSubscription = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -234332,6 +241336,30 @@ export type NewNotificationSubscriptionSubscription = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -235114,6 +242142,30 @@ export type NewNotificationSubscriptionSubscription = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -235911,56 +242963,80 @@ export type NewNotificationSubscriptionSubscription = { | { __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?: '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; @@ -236700,6 +243776,30 @@ export type NewNotificationSubscriptionSubscription = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -237505,6 +244605,30 @@ export type NewNotificationSubscriptionSubscription = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -238306,6 +245430,30 @@ export type NewNotificationSubscriptionSubscription = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -239090,6 +246238,30 @@ export type NewNotificationSubscriptionSubscription = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -239756,6 +246928,30 @@ export type NewNotificationSubscriptionSubscription = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -240524,6 +247720,30 @@ export type NewNotificationSubscriptionSubscription = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -241308,56 +248528,80 @@ export type NewNotificationSubscriptionSubscription = { | { __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?: '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; @@ -242169,6 +249413,30 @@ export type NewNotificationSubscriptionSubscription = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -242955,6 +250223,30 @@ export type NewNotificationSubscriptionSubscription = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -243757,6 +251049,30 @@ export type NewNotificationSubscriptionSubscription = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -244555,6 +251871,30 @@ export type NewNotificationSubscriptionSubscription = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -245336,6 +252676,30 @@ export type NewNotificationSubscriptionSubscription = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -246179,6 +253543,30 @@ export type NewNotificationSubscriptionSubscription = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -246965,56 +254353,80 @@ export type NewNotificationSubscriptionSubscription = { | { __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?: '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; @@ -247767,6 +255179,30 @@ export type NewNotificationSubscriptionSubscription = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -248565,6 +256001,30 @@ export type NewNotificationSubscriptionSubscription = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -249346,6 +256806,30 @@ export type NewNotificationSubscriptionSubscription = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -250142,6 +257626,30 @@ export type NewNotificationSubscriptionSubscription = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -250931,6 +258439,30 @@ export type NewNotificationSubscriptionSubscription = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -251736,6 +259268,30 @@ export type NewNotificationSubscriptionSubscription = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -252537,6 +260093,30 @@ export type NewNotificationSubscriptionSubscription = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -253321,6 +260901,30 @@ export type NewNotificationSubscriptionSubscription = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -253987,6 +261591,30 @@ export type NewNotificationSubscriptionSubscription = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -254773,6 +262401,30 @@ export type NewNotificationSubscriptionSubscription = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -255559,6 +263211,30 @@ export type NewNotificationSubscriptionSubscription = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -256361,6 +264037,30 @@ export type NewNotificationSubscriptionSubscription = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -257159,6 +264859,30 @@ export type NewNotificationSubscriptionSubscription = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -257940,6 +265664,30 @@ export type NewNotificationSubscriptionSubscription = { | { __typename?: 'LegacyLimitedFeeCollectModuleSettings'; type: OpenActionModuleType; + collectLimit?: string | null; + followerOnly: boolean; + recipient: any; + referralFee: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + amount: { + __typename?: 'Amount'; + value: string; + asset: { + __typename?: 'Erc20'; + name: string; + symbol: string; + decimals: number; + contract: { + __typename?: 'NetworkAddress'; + address: any; + chainId: any; + }; + }; + }; } | { __typename?: 'LegacyLimitedTimedFeeCollectModuleSettings'; @@ -258739,6 +266487,16 @@ export const OpenActionModulesFieldsFragmentDoc = gql` } ... on LegacyLimitedFeeCollectModuleSettings { type + contract { + ...NetworkAddressFields + } + amount { + ...AmountFields + } + collectLimit + followerOnly + recipient + referralFee } ... on LegacyLimitedTimedFeeCollectModuleSettings { type diff --git a/packages/lib/allowedOpenActionModules.ts b/packages/lib/allowedOpenActionModules.ts index 75a17f65f8b7..a4b04ccaaff9 100644 --- a/packages/lib/allowedOpenActionModules.ts +++ b/packages/lib/allowedOpenActionModules.ts @@ -6,7 +6,8 @@ const allowedOpenActionModules = [ OpenActionModuleType.LegacySimpleCollectModule, OpenActionModuleType.LegacyMultirecipientFeeCollectModule, OpenActionModuleType.LegacyFreeCollectModule, - OpenActionModuleType.LegacyFeeCollectModule + OpenActionModuleType.LegacyFeeCollectModule, + OpenActionModuleType.LegacyLimitedFeeCollectModule ]; export default allowedOpenActionModules; diff --git a/packages/lib/getCollectModuleData.ts b/packages/lib/getCollectModuleData.ts index f3fe90c04a38..8ac148429d9c 100644 --- a/packages/lib/getCollectModuleData.ts +++ b/packages/lib/getCollectModuleData.ts @@ -1,6 +1,7 @@ import type { LegacyFeeCollectModuleSettings, LegacyFreeCollectModuleSettings, + LegacyLimitedFeeCollectModuleSettings, LegacyMultirecipientFeeCollectModuleSettings, LegacySimpleCollectModuleSettings, MultirecipientFeeCollectOpenActionSettings, @@ -12,6 +13,7 @@ const getCollectModuleData = ( collectModule: | LegacyFeeCollectModuleSettings | LegacyFreeCollectModuleSettings + | LegacyLimitedFeeCollectModuleSettings | LegacyMultirecipientFeeCollectModuleSettings | LegacySimpleCollectModuleSettings | MultirecipientFeeCollectOpenActionSettings @@ -65,6 +67,16 @@ const getCollectModuleData = ( recipient: collectModule.recipient, referralFee: collectModule.referralFee }; + case 'LegacyLimitedFeeCollectModuleSettings': + return { + amount: parseFloat(collectModule.amount.value || '0'), + assetAddress: collectModule.amount.asset.contract.address, + assetDecimals: collectModule.amount.asset.decimals, + collectLimit: parseInt(collectModule.collectLimit || '0'), + followerOnly: collectModule.followerOnly, + recipient: collectModule.recipient, + referralFee: collectModule.referralFee + }; default: return null; }