Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 505 Bytes

File metadata and controls

13 lines (9 loc) · 505 Bytes
description
Get userstore value (object) by key

get( ... )

The Xumm userstore allows you to store key/value records specific to your application and the user for which the JWT was issued. The userstore stays does not expire, meaning you can permanently store userdata and retrieve it whenever the user visits again.

The `get` method returns a promise returning the object stored for the given key.

xumm.userstore.get('userdetails').then(storedObject => ...)