mirror of
https://github.com/tlsnotary/tlsn-plugin-demo.git
synced 2026-01-08 21:08:13 -05:00
21 lines
429 B
TypeScript
21 lines
429 B
TypeScript
export interface AttestedData {
|
|
version: '0.1.0-alpha.8' | '0.1.0-alpha.7' | '0.1.0-alpha.5';
|
|
time: number;
|
|
sent: string;
|
|
recv: string;
|
|
notaryUrl: string;
|
|
notaryKey: string;
|
|
websocketProxyUrl?: string;
|
|
verifierKey?: string;
|
|
}
|
|
|
|
export type Attestation = {
|
|
version: '0.1.0-alpha.8' | '0.1.0-alpha.7';
|
|
data: string;
|
|
meta: {
|
|
notaryUrl: string;
|
|
websocketProxyUrl: string;
|
|
pluginUrl?: string;
|
|
};
|
|
};
|