user
Get the current user object.
const mirrorworld = new MirrorWorld(/* ... */)const user: UserWithWallet = mirrorworld.userexport interface UserWithWallet {  id: number;  eth_address: string;  sol_address: string;  email: string;  email_verified: boolean;  username: string;  createdAt: string;  updatedAt: string;  wallet: {    eth_address: string;    sol_address: string;  };}
Edit this page on GitHub