Introduction
When an end user connects their wallet, you, the developer, get a JSON Web Token (JWT) that can be used to verify some claims about the end user, notably a proof of ownership over a wallet public address. We use the JWT information in the SDK to create the user object and their Verified Credentials so that you can simply interact with the user object to get the information you need, so if you don’t need to access the JWT directly, you can skip this page and visit the Users section instead.Storing JWTs
Localstorage
Once the user has logged in, the JWT gets stored in localstorage under thedynamic_authentication_token key. We also store a minified version under the dynamic_min_authentication_token key.