@proveanything/smartlinks
Version:
Official JavaScript/TypeScript SDK for the Smartlinks API
18 lines (17 loc) • 461 B
TypeScript
export interface AttestationResponse {
id: string;
createdAt: string;
updatedAt: string;
public: Record<string, any>;
private: Record<string, any>;
proof: Record<string, any>;
}
export interface AttestationCreateRequest {
public: Record<string, any>;
private: Record<string, any>;
proof: Record<string, any>;
}
export interface AttestationUpdateRequest {
type?: string;
data?: Record<string, any>;
}