Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Test: DO NOT MERGE #58

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tlsn-js",
"version": "v0.1.0-alpha.5.3",
"version": "v0.1.0-alpha.6.0",
"description": "",
"repository": "https://github.com/tlsnotary/tlsn-js",
"main": "build/index.js",
Expand Down
12 changes: 6 additions & 6 deletions quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ To run your own websocket proxy for `https://swapi.dev` **locally**:

1. Install [websocat](https://github.com/vi/websocat):

| tool | command |
|--------|-------------------------------|
| cargo | `cargo install websocat` |
| brew | `brew install websocat` |
| source | https://github.com/vi/websocat|
| tool | command |
| ------ | ------------------------------ |
| cargo | `cargo install websocat` |
| brew | `brew install websocat` |
| source | https://github.com/vi/websocat |

2. Run a websocket proxy for `https://swapi.dev`:
```sh
Expand All @@ -31,7 +31,7 @@ For this demo, we also need to run a local notary server.

1. Clone the TLSNotary repository:
```shell
git clone https://github.com/tlsnotary/tlsn.git --branch "v0.1.0-alpha.5"
git clone https://github.com/tlsnotary/tlsn.git --branch "v0.1.0-alpha.6"
```
2. Edit the notary server config file (`notary-server/config/config.yaml`) to turn off TLS so that the browser extension can connect to the local notary server without requiring extra steps to accept self-signed certificates in the browser.
```yaml
Expand Down
2 changes: 1 addition & 1 deletion test/specs/full-integration-swapi.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { assert } from '../utils';
maxTranscriptSize: 16384,
notaryUrl: process.env.LOCAL_NOTARY
? 'http://localhost:7047'
: 'https://notary.pse.dev/v0.1.0-alpha.5',
: 'https://notary.pse.dev/v0.1.0-alpha.6',
websocketProxyUrl: process.env.LOCAL_WS
? 'ws://localhost:55688'
: 'wss://notary.pse.dev/proxy?token=swapi.dev',
Expand Down
2 changes: 1 addition & 1 deletion utils/build-tlsn-binaries.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ else
fi

# Checkout the specific tag
git checkout "v0.1.0-alpha.5"
git checkout "v0.1.0-alpha.6"

for dir in "tlsn/tlsn-server-fixture/" "notary-server"; do
# Change to the specific subdirectory
Expand Down
6 changes: 2 additions & 4 deletions wasm/prover/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,8 @@ time = { version = "0.3.34", features = ["wasm-bindgen"] }
# Used to calculate elapsed time.
web-time = "1.0"

tlsn-core = { git = "https://github.com/tlsnotary/tlsn.git", tag = "v0.1.0-alpha.5", package = "tlsn-core" }
tlsn-prover = { git = "https://github.com/tlsnotary/tlsn.git", tag = "v0.1.0-alpha.5", package = "tlsn-prover", features = [
"tracing",
] }
tlsn-core = { git = "https://github.com/tlsnotary/tlsn.git", branch = "chore/release-v0.1.0-alpha.6", package = "tlsn-core" }
tlsn-prover = { git = "https://github.com/tlsnotary/tlsn.git", branch = "chore/release-v0.1.0-alpha.6", package = "tlsn-prover"}

web-sys = { version = "0.3.4", features = [
"BinaryType",
Expand Down