-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
3,216 additions
and
3,117 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "tlsn-extension", | ||
"version": "0.1.0.6", | ||
"version": "0.1.0.700", | ||
"license": "MIT", | ||
"repository": { | ||
"type": "git", | ||
|
@@ -38,7 +38,7 @@ | |
"redux-logger": "^3.0.6", | ||
"redux-thunk": "^2.4.2", | ||
"tailwindcss": "^3.3.3", | ||
"tlsn-js": "0.1.0-alpha.6.2", | ||
"tlsn-js": "0.1.0-alpha.7.1", | ||
"tlsn-js-v5": "npm:[email protected]" | ||
}, | ||
"devDependencies": { | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,8 @@ | ||
import * as Comlink from 'comlink'; | ||
import init, { Prover, NotarizedSession, TlsProof } from 'tlsn-js'; | ||
import init, { Prover, Presentation } from 'tlsn-js'; | ||
|
||
Comlink.expose({ | ||
init, | ||
Prover, | ||
NotarizedSession, | ||
TlsProof, | ||
Presentation, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,10 @@ | ||
export type Proof = ProofV0 | ProofV1; | ||
import { PresentationJSON as PresentationJSONa7 } from 'tlsn-js/build/types'; | ||
|
||
export type ProofV0 = { | ||
export type PresentationJSON = PresentationJSONa5 | PresentationJSONa7; | ||
|
||
export type PresentationJSONa5 = { | ||
version?: undefined; | ||
session: any; | ||
substrings: any; | ||
notaryUrl: string; | ||
}; | ||
|
||
export type ProofV1 = { | ||
version: '1.0'; | ||
data: string; | ||
meta: { | ||
notaryUrl: string; | ||
websocketProxyUrl: string; | ||
pluginUrl?: string; | ||
}; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters