User
export default interface User {
/**
* Wallet used for this account
*/
wallet: string;
/**
* Email associated for this account
*/
email: string;
/**
* Name of the user
*/
name?: string;
url?: string;
img?: string;
banner?: string;
/**
* Your unique API key for using the SDK and API of Minteandome
* =========================
* DO NOT SHARE WITH ANYONE
* =========================
*/
apiKey?: string;
}
Last updated