pub trait SetOwnerBuilder: CanAddOwner {
    // Provided method
    fn owner_non_fungible_badge(
        self,
        owner_badge: NonFungibleGlobalId
    ) -> Self::OutputBuilder { ... }
}

Provided Methods§

source

fn owner_non_fungible_badge( self, owner_badge: NonFungibleGlobalId ) -> Self::OutputBuilder

Sets the owner badge to be the given non-fungible.

The owner badge is given starting permissions to update the metadata/data associated with the resource, and to change any of the access rules after creation.

Implementors§