/** Identify by address or ID */
type WalletIdentifier = { walletAddress: string } | { walletId: number };
/** Identify by address, ID, or user ID */
type WalletOrUserIdentifier =
| { walletAddress: string }
| { walletId: number }
| { userId: string };