apps icon indicating copy to clipboard operation
apps copied to clipboard

chore: added `has_type` accessor

Open admin-aftermath opened this issue 1 year ago • 0 comments

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.

admin-aftermath avatar Jun 22 '23 03:06 admin-aftermath