@othent/kms-unbundled
Version:
Arweave Oauth Othent wallets enabled Google Key Management Service.
44 lines (42 loc) • 777 B
text/typescript
export interface DecodedJWT {
walletAddress: string;
owner: string;
given_name: string;
family_name: string;
nickname: string;
name: string;
picture: string;
locale: string;
updated_at?: string;
email: string;
email_verified: string;
sub: string;
iss?: string;
aud?: string;
iat?: number;
exp?: number;
sid?: string;
nonce?: string;
data?: any;
}
export interface LoginReturnProps {
walletAddress: string;
owner: string;
given_name: string;
family_name: string;
nickname: string;
name: string;
picture: string;
locale: string;
updated_at?: string;
email: string;
email_verified: string;
sub: string;
iss?: string;
aud?: string;
iat?: number;
exp?: number;
sid?: string;
nonce?: string;
data?: any;
}