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