Function createUserProfile
- create
User Profile(args): Promise<IUserProfile> Parameters
args: {
nickname?: string;
}Optional
nickname?: stringOptional nickname
Returns Promise<IUserProfile>
Async
Since
1.18.0
Example
createUserProfile({ nickname: 'Test Nickname' }).then(profile => console.log(profile))
Generated using TypeDoc
Creates user profile. If no nickname argument is passed, a random nickname will be generated.