Phase 4 release: Secret NFT - Capsule NFT - Transmission Protocols #174
ipapandinas
announced in
Breaking Changes
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
The phase 4 development is about to be complete and will add 3 new features to the indexer:
Here is provided a detailed list of breaking changes introduced to the existing entities schema. Please review this list carefully to ensure a smooth transition to the latest version.
Breaking changes
CollectionEntity
Updated fields
timestampCreate: Date! => timestampCreated: Date!
timestampBurn: Date => timestampBurned: Date
timestampClose: Date => timestampClosed: Date
timestampLimit: Date => timestampLimited: Date
NftEntity
Removed fields
mintFee: String!
mintFeeRounded: Float
Updated fields
timestampCreate: Date! => timestampCreated: Date!
timestampBurn: Date => timestampBurned: Date
timestampList: Date => timestampListed: Date
RentEntity
Updated fields
timestampCreate: Date! => timestampCreated: Date!
timestampStart: Date => timestampStarted: Date
timestampEnd: Date => timestampEnded: Date
timestampCancel: Date => timestampCancelled: Date
timestampRevoke: Date => timestampRevoked: Date
timestampExpire: Date => timestampExpired: Date
MarketplaceEntity
Updated fields
timestampCreate: Date! => timestampCreated: Date!
AuctionEntity
Updated fields
timestampCreate: Date! => timestampCreated: Date!
timestampEnd: Date => timestampEnded: Date
timestampCancelled: Date => timestampCancelled: Date
NftOperationEntity
Preterit form is now used on all NFT operations
Renamed operations
Create = "create" => Created = "created",
Burn = "burn" => Burned = "burned",
Transfer = "transfer" => Transferred = "transferred",
Undelegate = "undelegate" => Undelegated = "undelegated",
Delegate = "delegate" => Delegated = "delegated",
SetRoyalty = "setRoyalty" => RoyaltySet = "royaltySet",
Sell = "sell" => Sold = "sold",
List = "list" => Listed = "listed",
Unlist = "unlist" => Unlisted = "unlisted",
AddToCollection = "addToCollection" => AddedToCollection = "addedToCollection",
CompleteAuction = "completeAuction" => ** AuctionCompleted = "auctionCompleted"**,
BuyItNowAuction = "buyItNowAuction" => AuctionBuyItNow = "auctionBuyItNow",
CreateAuction = "createAuction" => AuctionCreated = "auctionCreated",
AddBid = "addBid" => BidAdded = "bidAdded",
RemoveBid = "removeBid" => BidRemoved = "bidRemoved",
CancelAuction = "cancelAuction" => AuctionCancelled = "auctionCancelled",
RentalContractCreated = "rentalContractCreated" => ContractCreated = "contractCreated",
RentalContractStarted = "rentalContractStarted" => ContractStarted = "contractStarted",
RentalContractCanceled = "rentalContractCanceled" => ContractCancelled = "contractCancelled",
RentalContractRevoked = "rentalContractRevoked" => ContractRevoked = "contractRevoked",
RentalContractEnded = "rentalContractEnded" => ContractEnded = "contractEnded",
RentalContractExpired = "rentalContractExpired" => ContractExpired = "contractExpired",
Beta Was this translation helpful? Give feedback.
All reactions