Skip to content

chore: added has_type accessor#2

Open
admin-aftermath wants to merge 1 commit intoMystenLabs:mainfrom
AftermathFinance:main
Open

chore: added has_type accessor#2
admin-aftermath wants to merge 1 commit intoMystenLabs:mainfrom
AftermathFinance:main

Conversation

@admin-aftermath
Copy link

@admin-aftermath admin-aftermath commented Jun 22, 2023

Added the function has_type to accessories.move. This function allows third-party packages to query if a SuiFren contains a given Accessory type.

public fun has_type<T> (sf: &SuiFren<T>, type: String): bool {
    let uid = suifrens::uid(sf);
    dof::exists_(uid, AccessoryKey { type })
}

Without this function, third-party packages will have to blindly add Accessories to a SuiFren which can result in an abort if the SuiFren already has an Accessory of the given type.

This would also enable being able to replace apparel items onchain by querying if an Accessory Type exists first and removing it before adding the new Accessory.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant