-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathschema.graphql
4355 lines (3390 loc) · 102 KB
/
schema.graphql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
"""Exposes a URL that specifies the behaviour of this scalar."""
directive @specifiedBy(
"""The URL that specifies the behaviour of this scalar."""
url: String!
) on SCALAR
input AaveFeeCollectModuleParams {
"""The collect module limit"""
collectLimit: String
"""The collect module amount info"""
amount: ModuleFeeAmountParams!
"""The collect module recipient address"""
recipient: EthereumAddress!
"""The collect module referral fee"""
referralFee: Float!
"""Follower only"""
followerOnly: Boolean!
"""The timestamp that this collect module will expire"""
endTimestamp: DateTime
}
type AaveFeeCollectModuleSettings {
"""The collect modules enum"""
type: CollectModules!
contractAddress: ContractAddress!
"""The collect module amount info"""
amount: ModuleFeeAmount!
"""
The maximum number of collects for this publication. Omit for no limit.
"""
collectLimit: String
"""The referral fee associated with this publication."""
referralFee: Float!
"""True if only followers of publisher may collect the post."""
followerOnly: Boolean!
"""
The end timestamp after which collecting is impossible. No expiry if missing.
"""
endTimestamp: DateTime
"""Recipient of collect fees."""
recipient: EthereumAddress!
}
"""The access conditions for the publication"""
input AccessConditionInput {
"""NFT ownership condition"""
nft: NftOwnershipInput
"""ERC20 token ownership condition"""
token: Erc20OwnershipInput
"""EOA ownership condition"""
eoa: EoaOwnershipInput
"""Profile ownership condition"""
profile: ProfileOwnershipInput
"""Profile follow condition"""
follow: FollowConditionInput
"""Profile follow condition"""
collect: CollectConditionInput
"""AND condition"""
and: AndConditionInput
"""OR condition"""
or: OrConditionInput
}
"""The access conditions for the publication"""
type AccessConditionOutput {
"""NFT ownership condition"""
nft: NftOwnershipOutput
"""ERC20 token ownership condition"""
token: Erc20OwnershipOutput
"""EOA ownership condition"""
eoa: EoaOwnershipOutput
"""Profile ownership condition"""
profile: ProfileOwnershipOutput
"""Profile follow condition"""
follow: FollowConditionOutput
"""Profile follow condition"""
collect: CollectConditionOutput
"""AND condition"""
and: AndConditionOutput
"""OR condition"""
or: OrConditionOutput
}
input AchRequest {
secret: String!
ethereumAddress: EthereumAddress!
handle: CreateHandle
freeTextHandle: Boolean
overrideTradeMark: Boolean!
overrideAlreadyClaimed: Boolean!
}
"""The request object to add interests to a profile"""
input AddProfileInterestsRequest {
"""The profile interest to add"""
interests: [ProfileInterest!]!
"""The profileId to add interests to"""
profileId: ProfileId!
}
input AllPublicationsTagsRequest {
limit: LimitScalar
cursor: Cursor
sort: TagSortCriteria!
"""The App Id"""
source: Sources
}
input AndConditionInput {
"""
The list of conditions to apply AND to. You can only use nested boolean conditions at the root level.
"""
criteria: [AccessConditionInput!]!
}
type AndConditionOutput {
"""
The list of conditions to apply AND to. You can only use nested boolean conditions at the root level.
"""
criteria: [AccessConditionOutput!]!
}
type ApprovedAllowanceAmount {
currency: ContractAddress!
module: String!
contractAddress: ContractAddress!
allowance: String!
}
input ApprovedModuleAllowanceAmountRequest {
"""
The contract addresses for the module approved currencies you want to find information on about the user
"""
currencies: [ContractAddress!]!
collectModules: [CollectModules!] = []
unknownCollectModules: [ContractAddress!] = []
followModules: [FollowModules!] = []
unknownFollowModules: [ContractAddress!] = []
referenceModules: [ReferenceModules!] = []
unknownReferenceModules: [ContractAddress!] = []
}
"""The Profile"""
type Attribute {
"""The display type"""
displayType: String
"""
The trait type - can be anything its the name it will render so include spaces
"""
traitType: String
"""identifier of this attribute, we will update by this id """
key: String!
"""Value attribute"""
value: String!
}
"""The auth challenge result"""
type AuthChallengeResult {
"""The text to sign"""
text: String!
}
"""The authentication result"""
type AuthenticationResult {
"""The access token"""
accessToken: Jwt!
"""The refresh token"""
refreshToken: Jwt!
}
"""Blockchain data scalar type"""
scalar BlockchainData
union BroadcastDataAvailabilityUnion = CreateDataAvailabilityPublicationResult | RelayError
"""Broadcast scalar id type"""
scalar BroadcastId
input BroadcastRequest {
id: BroadcastId!
signature: Signature!
}
input BurnProfileRequest {
profileId: ProfileId!
}
type CanCommentResponse {
result: Boolean!
}
type CanDecryptResponse {
result: Boolean!
reasons: [DecryptFailReason!]
extraDetails: String
}
type CanMirrorResponse {
result: Boolean!
}
"""ChainId custom scalar type"""
scalar ChainId
"""The challenge request"""
input ChallengeRequest {
"""The ethereum address you want to login with"""
address: EthereumAddress!
}
type ClaimableHandles {
reservedHandles: [ReservedClaimableHandle!]!
canClaimFreeTextHandle: Boolean!
}
input ClaimHandleRequest {
id: HandleClaimIdScalar
freeTextHandle: CreateHandle
"""The follow module"""
followModule: FollowModuleParams
}
"""The claim status"""
enum ClaimStatus {
ALREADY_CLAIMED
CLAIM_FAILED
NOT_CLAIMED
}
"""
Condition that signifies if address or profile has collected a publication
"""
input CollectConditionInput {
"""The publication id that has to be collected to unlock content"""
publicationId: InternalPublicationId
"""True if the content will be unlocked for this specific publication"""
thisPublication: Boolean
}
"""
Condition that signifies if address or profile has collected a publication
"""
type CollectConditionOutput {
"""The publication id that has to be collected to unlock content"""
publicationId: InternalPublicationId
"""True if the content will be unlocked for this specific publication"""
thisPublication: Boolean
}
type CollectedEvent {
profile: Profile!
timestamp: DateTime!
}
union CollectModule = FreeCollectModuleSettings | FeeCollectModuleSettings | LimitedFeeCollectModuleSettings | LimitedTimedFeeCollectModuleSettings | RevertCollectModuleSettings | TimedFeeCollectModuleSettings | MultirecipientFeeCollectModuleSettings | ERC4626FeeCollectModuleSettings | AaveFeeCollectModuleSettings | UnknownCollectModuleSettings
"""collect module data scalar type"""
scalar CollectModuleData
input CollectModuleParams {
"""The collect empty collect module"""
freeCollectModule: FreeCollectModuleParams
"""The collect revert collect module"""
revertCollectModule: Boolean
"""The collect fee collect module"""
feeCollectModule: FeeCollectModuleParams
"""The collect limited fee collect module"""
limitedFeeCollectModule: LimitedFeeCollectModuleParams
"""The collect limited timed fee collect module"""
limitedTimedFeeCollectModule: LimitedTimedFeeCollectModuleParams
"""The collect timed fee collect module"""
timedFeeCollectModule: TimedFeeCollectModuleParams
"""The multirecipient fee collect module"""
multirecipientFeeCollectModule: MultirecipientFeeCollectModuleParams
"""The collect aave fee collect module"""
aaveFeeCollectModule: AaveFeeCollectModuleParams
"""The collect ERC4626 fee collect module"""
erc4626FeeCollectModule: ERC4626FeeCollectModuleParams
"""A unknown collect module"""
unknownCollectModule: UnknownCollectModuleParams
}
"""The collect module types"""
enum CollectModules {
LimitedFeeCollectModule
FeeCollectModule
LimitedTimedFeeCollectModule
TimedFeeCollectModule
AaveFeeCollectModule
RevertCollectModule
FreeCollectModule
MultirecipientFeeCollectModule
ERC4626FeeCollectModule
UnknownCollectModule
}
input CollectProxyAction {
freeCollect: FreeCollectProxyAction
}
"""The social comment"""
type Comment {
"""The internal publication id"""
id: InternalPublicationId!
"""The profile ref"""
profile: Profile!
"""The publication stats"""
stats: PublicationStats!
"""The metadata for the post"""
metadata: MetadataOutput!
"""The on chain content uri could be `ipfs://` or `https`"""
onChainContentURI: String!
"""The date the post was created on"""
createdAt: DateTime!
"""The collect module"""
collectModule: CollectModule!
"""The reference module"""
referenceModule: ReferenceModule
"""ID of the source"""
appId: Sources
"""
If the publication has been hidden if it has then the content and media is not available
"""
hidden: Boolean!
"""
The contract address for the collect nft.. if its null it means nobody collected yet as it lazy deployed
"""
collectNftAddress: ContractAddress
"""Indicates if the publication is gated behind some access criteria"""
isGated: Boolean!
"""Indicates if the publication is data availability post"""
isDataAvailability: Boolean!
"""The data availability proofs you can fetch from"""
dataAvailabilityProofs: String
"""The top level post/mirror this comment lives on"""
mainPost: MainPostReference!
"""
Which comment this points to if its null the pointer too deep so do another query to find it out
"""
commentOn: Publication
"""
This will bring back the first comment of a comment and only be defined if using `publication` query and `commentOf`
"""
firstComment: Comment
"""
Who collected it, this is used for timeline results and like this for better caching for the client
"""
collectedBy: Wallet
"""Comment ranking score"""
rankingScore: Float
reaction(request: ReactionFieldResolverRequest): ReactionTypes
hasCollectedByMe(isFinalisedOnChain: Boolean): Boolean!
canComment(profileId: ProfileId): CanCommentResponse!
canMirror(profileId: ProfileId): CanMirrorResponse!
canDecrypt(profileId: ProfileId, address: EthereumAddress): CanDecryptResponse!
mirrors(by: ProfileId): [InternalPublicationId!]!
}
"""The comment ordering types"""
enum CommentOrderingTypes {
DESC
RANKING
}
"""The comment ranking filter types"""
enum CommentRankingFilter {
NONE_RELEVANT
RELEVANT
}
"""ContentEncryptionKey scalar type"""
scalar ContentEncryptionKey
"""Contract address custom scalar type"""
scalar ContractAddress
"""The gated publication access criteria contract types"""
enum ContractType {
ERC721
ERC1155
ERC20
}
"""The create burn eip 712 typed data"""
type CreateBurnEIP712TypedData {
"""The types"""
types: CreateBurnEIP712TypedDataTypes!
"""The typed data domain"""
domain: EIP712TypedDataDomain!
"""The values"""
value: CreateBurnEIP712TypedDataValue!
}
"""The create burn eip 712 typed data types"""
type CreateBurnEIP712TypedDataTypes {
BurnWithSig: [EIP712TypedDataField!]!
}
"""The create burn eip 712 typed data value"""
type CreateBurnEIP712TypedDataValue {
nonce: Nonce!
deadline: UnixTimestamp!
tokenId: String!
}
"""The broadcast item"""
type CreateBurnProfileBroadcastItemResult {
"""This broadcast item ID"""
id: BroadcastId!
"""The date the broadcast item expiries"""
expiresAt: DateTime!
"""The typed data"""
typedData: CreateBurnEIP712TypedData!
}
"""The broadcast item"""
type CreateCollectBroadcastItemResult {
"""This broadcast item ID"""
id: BroadcastId!
"""The date the broadcast item expiries"""
expiresAt: DateTime!
"""The typed data"""
typedData: CreateCollectEIP712TypedData!
}
"""The collect eip 712 typed data"""
type CreateCollectEIP712TypedData {
"""The types"""
types: CreateCollectEIP712TypedDataTypes!
"""The typed data domain"""
domain: EIP712TypedDataDomain!
"""The values"""
value: CreateCollectEIP712TypedDataValue!
}
"""The collect eip 712 typed data types"""
type CreateCollectEIP712TypedDataTypes {
CollectWithSig: [EIP712TypedDataField!]!
}
"""The collect eip 712 typed data value"""
type CreateCollectEIP712TypedDataValue {
nonce: Nonce!
deadline: UnixTimestamp!
profileId: ProfileId!
pubId: PublicationId!
data: BlockchainData!
}
input CreateCollectRequest {
publicationId: InternalPublicationId!
"""The encoded data to collect with if using an unknown module"""
unknownModuleData: BlockchainData
}
"""The broadcast item"""
type CreateCommentBroadcastItemResult {
"""This broadcast item ID"""
id: BroadcastId!
"""The date the broadcast item expiries"""
expiresAt: DateTime!
"""The typed data"""
typedData: CreateCommentEIP712TypedData!
}
"""The create comment eip 712 typed data"""
type CreateCommentEIP712TypedData {
"""The types"""
types: CreateCommentEIP712TypedDataTypes!
"""The typed data domain"""
domain: EIP712TypedDataDomain!
"""The values"""
value: CreateCommentEIP712TypedDataValue!
}
"""The create comment eip 712 typed data types"""
type CreateCommentEIP712TypedDataTypes {
CommentWithSig: [EIP712TypedDataField!]!
}
"""The create comment eip 712 typed data value"""
type CreateCommentEIP712TypedDataValue {
nonce: Nonce!
deadline: UnixTimestamp!
profileId: ProfileId!
contentURI: PublicationUrl!
profileIdPointed: ProfileId!
pubIdPointed: PublicationId!
collectModule: ContractAddress!
collectModuleInitData: CollectModuleData!
referenceModule: ContractAddress!
referenceModuleInitData: ReferenceModuleData!
referenceModuleData: ReferenceModuleData!
}
input CreateDataAvailabilityCommentRequest {
"""Profile id"""
from: ProfileId!
"""Publication your commenting on"""
commentOn: InternalPublicationId!
"""The metadata contentURI resolver"""
contentURI: Url!
}
input CreateDataAvailabilityMirrorRequest {
"""Profile id which will broadcast the mirror"""
from: ProfileId!
"""The publication to mirror"""
mirror: InternalPublicationId!
}
input CreateDataAvailabilityPostRequest {
"""Profile id"""
from: ProfileId!
"""The metadata contentURI resolver"""
contentURI: Url!
}
type CreateDataAvailabilityPublicationResult {
"""The id of the post"""
id: InternalPublicationId!
"""The proofs for the DA"""
proofs: String!
"""The data availability id"""
dataAvailabilityId: DataAvailabilityId!
}
"""The broadcast item"""
type CreateFollowBroadcastItemResult {
"""This broadcast item ID"""
id: BroadcastId!
"""The date the broadcast item expiries"""
expiresAt: DateTime!
"""The typed data"""
typedData: CreateFollowEIP712TypedData!
}
"""The create follow eip 712 typed data"""
type CreateFollowEIP712TypedData {
"""The types"""
types: CreateFollowEIP712TypedDataTypes!
"""The typed data domain"""
domain: EIP712TypedDataDomain!
"""The values"""
value: CreateFollowEIP712TypedDataValue!
}
"""The create follow eip 712 typed data types"""
type CreateFollowEIP712TypedDataTypes {
FollowWithSig: [EIP712TypedDataField!]!
}
"""The create follow eip 712 typed data value"""
type CreateFollowEIP712TypedDataValue {
nonce: Nonce!
deadline: UnixTimestamp!
profileIds: [ProfileId!]!
datas: [BlockchainData!]!
}
"""create handle custom scalar type"""
scalar CreateHandle
"""The broadcast item"""
type CreateMirrorBroadcastItemResult {
"""This broadcast item ID"""
id: BroadcastId!
"""The date the broadcast item expiries"""
expiresAt: DateTime!
"""The typed data"""
typedData: CreateMirrorEIP712TypedData!
}
"""The mirror eip 712 typed data"""
type CreateMirrorEIP712TypedData {
"""The types"""
types: CreateMirrorEIP712TypedDataTypes!
"""The typed data domain"""
domain: EIP712TypedDataDomain!
"""The values"""
value: CreateMirrorEIP712TypedDataValue!
}
"""The mirror eip 712 typed data types"""
type CreateMirrorEIP712TypedDataTypes {
MirrorWithSig: [EIP712TypedDataField!]!
}
"""The mirror eip 712 typed data value"""
type CreateMirrorEIP712TypedDataValue {
nonce: Nonce!
deadline: UnixTimestamp!
profileId: ProfileId!
profileIdPointed: ProfileId!
pubIdPointed: PublicationId!
referenceModuleData: ReferenceModuleData!
referenceModule: ContractAddress!
referenceModuleInitData: ReferenceModuleData!
}
input CreateMirrorRequest {
"""Profile id"""
profileId: ProfileId!
"""
Publication id of what you want to mirror on remember if this is a comment it will be that as the id
"""
publicationId: InternalPublicationId!
"""The reference module info"""
referenceModule: ReferenceModuleParams
}
"""The broadcast item"""
type CreatePostBroadcastItemResult {
"""This broadcast item ID"""
id: BroadcastId!
"""The date the broadcast item expiries"""
expiresAt: DateTime!
"""The typed data"""
typedData: CreatePostEIP712TypedData!
}
"""The create post eip 712 typed data"""
type CreatePostEIP712TypedData {
"""The types"""
types: CreatePostEIP712TypedDataTypes!
"""The typed data domain"""
domain: EIP712TypedDataDomain!
"""The values"""
value: CreatePostEIP712TypedDataValue!
}
"""The create post eip 712 typed data types"""
type CreatePostEIP712TypedDataTypes {
PostWithSig: [EIP712TypedDataField!]!
}
"""The create post eip 712 typed data value"""
type CreatePostEIP712TypedDataValue {
nonce: Nonce!
deadline: UnixTimestamp!
profileId: ProfileId!
contentURI: PublicationUrl!
collectModule: ContractAddress!
collectModuleInitData: CollectModuleData!
referenceModule: ContractAddress!
referenceModuleInitData: ReferenceModuleData!
}
input CreatePublicCommentRequest {
"""Profile id"""
profileId: ProfileId!
"""
Publication id of what your comments on remember if this is a comment you commented on it will be that as the id
"""
publicationId: InternalPublicationId!
"""The metadata contentURI resolver"""
contentURI: Url!
"""The collect module"""
collectModule: CollectModuleParams!
"""The reference module"""
referenceModule: ReferenceModuleParams
"""The criteria to access the publication data"""
gated: GatedPublicationParamsInput
}
input CreatePublicPostRequest {
"""Profile id"""
profileId: ProfileId!
"""The metadata uploaded somewhere passing in the url to reach it"""
contentURI: Url!
"""The collect module"""
collectModule: CollectModuleParams!
"""The reference module"""
referenceModule: ReferenceModuleParams
"""The criteria to access the publication data"""
gated: GatedPublicationParamsInput
}
input CreatePublicSetProfileMetadataURIRequest {
"""Profile id"""
profileId: ProfileId!
"""The metadata uploaded somewhere passing in the url to reach it"""
metadata: Url!
}
input CreateSetDefaultProfileRequest {
"""Profile id"""
profileId: ProfileId!
}
"""The broadcast item"""
type CreateSetDispatcherBroadcastItemResult {
"""This broadcast item ID"""
id: BroadcastId!
"""The date the broadcast item expiries"""
expiresAt: DateTime!
"""The typed data"""
typedData: CreateSetDispatcherEIP712TypedData!
}
"""The set dispatcher eip 712 typed data"""
type CreateSetDispatcherEIP712TypedData {
"""The types"""
types: CreateSetDispatcherEIP712TypedDataTypes!
"""The typed data domain"""
domain: EIP712TypedDataDomain!
"""The values"""
value: CreateSetDispatcherEIP712TypedDataValue!
}
"""The set dispatcher eip 712 typed data types"""
type CreateSetDispatcherEIP712TypedDataTypes {
SetDispatcherWithSig: [EIP712TypedDataField!]!
}
"""The set dispatcher eip 712 typed data value"""
type CreateSetDispatcherEIP712TypedDataValue {
nonce: Nonce!
deadline: UnixTimestamp!
profileId: ProfileId!
dispatcher: EthereumAddress!
}
"""The broadcast item"""
type CreateSetFollowModuleBroadcastItemResult {
"""This broadcast item ID"""
id: BroadcastId!
"""The date the broadcast item expiries"""
expiresAt: DateTime!
"""The typed data"""
typedData: CreateSetFollowModuleEIP712TypedData!
}
"""The set follow module eip 712 typed data"""
type CreateSetFollowModuleEIP712TypedData {
"""The types"""
types: CreateSetFollowModuleEIP712TypedDataTypes!
"""The typed data domain"""
domain: EIP712TypedDataDomain!
"""The values"""
value: CreateSetFollowModuleEIP712TypedDataValue!
}
"""The set follow module eip 712 typed data types"""
type CreateSetFollowModuleEIP712TypedDataTypes {
SetFollowModuleWithSig: [EIP712TypedDataField!]!
}
"""The set follow module eip 712 typed data value"""
type CreateSetFollowModuleEIP712TypedDataValue {
nonce: Nonce!
deadline: UnixTimestamp!
profileId: ProfileId!
followModule: ContractAddress!
followModuleInitData: FollowModuleData!
}
input CreateSetFollowModuleRequest {
profileId: ProfileId!
"""The follow module info"""
followModule: FollowModuleParams!
}
"""The broadcast item"""
type CreateSetFollowNFTUriBroadcastItemResult {
"""This broadcast item ID"""
id: BroadcastId!
"""The date the broadcast item expiries"""
expiresAt: DateTime!
"""The typed data"""
typedData: CreateSetFollowNFTUriEIP712TypedData!
}
"""The set follow nft uri eip 712 typed data"""
type CreateSetFollowNFTUriEIP712TypedData {
"""The types"""
types: CreateSetFollowNFTUriEIP712TypedDataTypes!
"""The typed data domain"""
domain: EIP712TypedDataDomain!
"""The values"""
value: CreateSetFollowNFTUriEIP712TypedDataValue!
}
"""The set follow nft uri eip 712 typed data types"""
type CreateSetFollowNFTUriEIP712TypedDataTypes {
SetFollowNFTURIWithSig: [EIP712TypedDataField!]!
}
"""The set follow nft uri eip 712 typed data value"""
type CreateSetFollowNFTUriEIP712TypedDataValue {
nonce: Nonce!
deadline: UnixTimestamp!
profileId: ProfileId!
followNFTURI: Url!
}
input CreateSetFollowNFTUriRequest {
profileId: ProfileId!
"""
The follow NFT URI is the NFT metadata your followers will mint when they
follow you. This can be updated at all times. If you do not pass in anything
it will create a super cool changing NFT which will show the last publication
of your profile as the NFT which looks awesome! This means people do not have
to worry about writing this logic but still have the ability to customise it
for their followers
"""
followNFTURI: Url
}
"""The broadcast item"""
type CreateSetProfileImageUriBroadcastItemResult {
"""This broadcast item ID"""
id: BroadcastId!
"""The date the broadcast item expiries"""
expiresAt: DateTime!
"""The typed data"""
typedData: CreateSetProfileImageUriEIP712TypedData!
}
"""The set profile uri eip 712 typed data"""
type CreateSetProfileImageUriEIP712TypedData {
"""The types"""
types: CreateSetProfileImageUriEIP712TypedDataTypes!
"""The typed data domain"""
domain: EIP712TypedDataDomain!
"""The values"""
value: CreateSetProfileImageUriEIP712TypedDataValue!
}
"""The set profile image uri eip 712 typed data types"""
type CreateSetProfileImageUriEIP712TypedDataTypes {
SetProfileImageURIWithSig: [EIP712TypedDataField!]!
}
"""The set profile uri eip 712 typed data value"""
type CreateSetProfileImageUriEIP712TypedDataValue {
nonce: Nonce!
deadline: UnixTimestamp!
profileId: ProfileId!
imageURI: Url!
}
"""The broadcast item"""
type CreateSetProfileMetadataURIBroadcastItemResult {
"""This broadcast item ID"""
id: BroadcastId!
"""The date the broadcast item expiries"""
expiresAt: DateTime!
"""The typed data"""
typedData: CreateSetProfileMetadataURIEIP712TypedData!
}
"""The set follow nft uri eip 712 typed data"""
type CreateSetProfileMetadataURIEIP712TypedData {
"""The types"""
types: CreateSetProfileMetadataURIEIP712TypedDataTypes!
"""The typed data domain"""
domain: EIP712TypedDataDomain!
"""The values"""
value: CreateSetProfileMetadataURIEIP712TypedDataValue!
}
"""The set follow nft uri eip 712 typed data types"""
type CreateSetProfileMetadataURIEIP712TypedDataTypes {
SetProfileMetadataURIWithSig: [EIP712TypedDataField!]!
}
"""The set follow nft uri eip 712 typed data value"""
type CreateSetProfileMetadataURIEIP712TypedDataValue {
nonce: Nonce!
deadline: UnixTimestamp!
profileId: ProfileId!
metadata: Url!
}