Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: added has_type accessor #2

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

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