You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"""Represents a single NFT minted from a collection."""
193
195
typeCollectionMint {
194
-
"""The wallet address of the NFT."""
195
-
address: String!
196
+
"""
197
+
The address of the NFT
198
+
On Solana this is the mint address.
199
+
On EVM chains it is the concatenation of the contract address and the token id `{contractAddress}:{tokenId}`.
200
+
"""
201
+
address: String
196
202
197
203
"""The collection the NFT was minted from."""
198
204
collection: Collection
@@ -637,6 +643,9 @@ enum FilterType {
637
643
"""Event triggered when a new drop is minted"""
638
644
DROP_MINTED
639
645
646
+
"""Event triggered when a mint has been successfully transfered"""
647
+
MINT_TRANSFERED
648
+
640
649
"""Event triggered when a new project is created"""
641
650
PROJECT_CREATED
642
651
@@ -653,7 +662,7 @@ type Holder {
653
662
collectionId: UUID!
654
663
655
664
"""The specific mints from the collection that the holder owns."""
656
-
mints: [String!]!
665
+
mints: [UUID!]!
657
666
658
667
"""The number of NFTs that the holder owns in the collection."""
659
668
owns: Int!
@@ -664,7 +673,7 @@ type Invite {
664
673
"""
665
674
The datetime, in UTC, when the invitation to join the organization was created.
666
675
"""
667
-
createdAt: NaiveDateTime!
676
+
createdAt: DateTime!
668
677
669
678
"""The ID of the user who created the invitation."""
670
679
createdBy: UUID!
@@ -692,7 +701,7 @@ type Invite {
692
701
status: InviteStatus!
693
702
694
703
"""The datetime, in UTC, when the invitation status was updated."""
695
-
updatedAt: NaiveDateTime
704
+
updatedAt: DateTime
696
705
}
697
706
698
707
"""Input required for inviting a member to the organization."""
@@ -726,12 +735,12 @@ A member of a Holaplex organization, representing an individual who has been gra
726
735
"""
727
736
typeMember {
728
737
"""The datetime, in UTC, when the member joined the organization."""
729
-
createdAt: NaiveDateTime!
738
+
createdAt: DateTime!
730
739
731
740
"""
732
741
The datetime, in UTC, when the member was deactivated from the organization.
733
742
"""
734
-
deactivatedAt: NaiveDateTime
743
+
deactivatedAt: DateTime
735
744
736
745
"""The unique identifier of the member."""
737
746
id: UUID!
@@ -759,7 +768,7 @@ type Member {
759
768
"""
760
769
The datetime, in UTC, when the member was revoked from the organization.
761
770
"""
762
-
revokedAt: NaiveDateTime
771
+
revokedAt: DateTime
763
772
764
773
"""The user identity who is a member of the organization."""
765
774
user: User
@@ -1061,7 +1070,7 @@ type Organization {
1061
1070
"""
1062
1071
The datetime, in UTC, when the Holaplex organization was created by its owner.
1063
1072
"""
1064
-
createdAt: NaiveDateTime!
1073
+
createdAt: DateTime!
1065
1074
1066
1075
"""
1067
1076
Get a single API credential by client ID.
@@ -1103,7 +1112,7 @@ type Organization {
1103
1112
"""
1104
1113
The datetime, in UTC, when the Holaplex organization was deactivated by its owner.
1105
1114
"""
1106
-
deactivatedAt: NaiveDateTime
1115
+
deactivatedAt: DateTime
1107
1116
1108
1117
"""
1109
1118
Define an asynchronous function to load the total credits deducted for each action
@@ -1137,11 +1146,12 @@ type Organization {
1137
1146
The owner of the Holaplex organization, who has created the organization and has full control over its settings and members.
1138
1147
"""
1139
1148
owner: Owner
1149
+
profileImageUrl: String
1140
1150
1141
1151
"""
1142
1152
The optional profile image associated with the Holaplex organization, which can be used to visually represent the organization.
1143
1153
"""
1144
-
profileImageUrl: String
1154
+
profileImageUrlOriginal: String
1145
1155
1146
1156
"""
1147
1157
The projects that have been created and are currently associated with the Holaplex organization, which are used to organize NFT campaigns or initiatives within the organization.
@@ -1189,7 +1199,7 @@ The owner of the Holaplex organization, who is the individual that created the o
1189
1199
"""
1190
1200
typeOwner {
1191
1201
"""The datetime, in UTC, when the organization was created."""
1192
-
createdAt: NaiveDateTime!
1202
+
createdAt: DateTime!
1193
1203
1194
1204
"""
1195
1205
The unique identifier assigned to the record of the user who created the Holaplex organization and serves as its owner, which is used to distinguish their record from other records within the Holaplex ecosystem.
@@ -1259,7 +1269,7 @@ A Holaplex project that belongs to an organization. Projects are used to group u
1259
1269
"""
1260
1270
typeProject {
1261
1271
"""The datetime, in UTC, when the project was created."""
1262
-
createdAt: NaiveDateTime!
1272
+
createdAt: DateTime!
1263
1273
1264
1274
"""Retrieve a customer record associated with the project, using its ID."""
1265
1275
customer(id: UUID!): Customer
@@ -1270,7 +1280,7 @@ type Project {
1270
1280
"""
1271
1281
The date and time in Coordinated Universal Time (UTC) when the Holaplex project was created. Once a project is deactivated, objects that were assigned to the project can no longer be interacted with.
1272
1282
"""
1273
-
deactivatedAt: NaiveDateTime
1283
+
deactivatedAt: DateTime
1274
1284
1275
1285
"""Look up a drop associated with the project by its ID."""
1276
1286
drop(id: UUID!): Drop
@@ -1289,11 +1299,12 @@ type Project {
1289
1299
1290
1300
"""The ID of the Holaplex organization to which the project belongs."""
1291
1301
organizationId: UUID!
1302
+
profileImageUrl: String
1292
1303
1293
1304
"""
1294
1305
The optional profile image associated with the project, which can be used to visually represent the project.
1295
1306
"""
1296
-
profileImageUrl: String
1307
+
profileImageUrlOriginal: String
1297
1308
1298
1309
"""
1299
1310
The treasury assigned to the project, which contains the project's wallets.
@@ -1434,8 +1445,8 @@ type TransferAssetPayload {
1434
1445
A collection of wallets assigned to different entities in the Holaplex ecosystem.
1435
1446
"""
1436
1447
typeTreasury {
1437
-
"""The creation datetime of the vault."""
1438
-
createdAt: NaiveDateTime!
1448
+
"""The creation DateTimeWithTimeZone of the vault."""
1449
+
createdAt: DateTime!
1439
1450
1440
1451
"""The unique identifier for the treasury."""
1441
1452
id: UUID!
@@ -1502,20 +1513,20 @@ A blockchain wallet is a digital wallet that allows users to securely store, man
1502
1513
"""
1503
1514
typeWallet {
1504
1515
"""The wallet address."""
1505
-
address: String!
1516
+
address: String
1506
1517
1507
1518
"""The wallet's associated blockchain."""
1508
1519
assetId: AssetType!
1509
-
createdAt: NaiveDateTime!
1520
+
createdAt: DateTime!
1510
1521
createdBy: UUID!
1511
-
legacyAddress: String!
1522
+
deductionId: UUID
1523
+
id: UUID!
1512
1524
1513
1525
"""
1514
1526
The NFTs that were minted from Holaplex and are owned by the wallet's address.
0 commit comments