Skip to main content

MoxieWallet

Description

MoxieWallet is a type that represents a user's agent wallet.

Type Signature

export interface MoxieWallet {
id: string;
userId: string;
walletAddress: string;
walletType: string;
dataSource?: string;
createdAt: string;
deletedAt?: string;
}

Fields

NameTypeDescription
idstringUnique identifier for the Moxie wallet
userIdstringUnique identifier for the user associated with the wallet
walletAddressstringThe address of the wallet
walletTypestringThe type of the wallet (e.g., "metamask", "coinbase")
dataSourcestringThe data source for the wallet (e.g., "AIRSTACK", "PRIVY")
createdAtstringThe date and time the wallet was created
deletedAtstringThe date and time the wallet was deleted (optional)