Skip to content

Commit dba2bd4

Browse files
authored
Merge pull request #11 from lita-xyz/release-0.10.0
update README for release 0.10.0
2 parents 4533824 + 70f829d commit dba2bd4

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.MD

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ To install and use the toolchain via Docker on a 64-bit computer with an Intel-c
1919

2020
```bash
2121
# Download the container
22-
docker pull ghcr.io/lita-xyz/llvm-valida-releases/valida-build-container:v0.9.0-alpha-amd64
22+
docker pull ghcr.io/lita-xyz/llvm-valida-releases/valida-build-container:v0.10.0-amd64
2323

2424
# cd your-valida-project
2525

2626
# Enter the container:
27-
docker run --platform linux/amd64 -it --rm -v $(realpath .):/src ghcr.io/lita-xyz/llvm-valida-releases/valida-build-container:v0.9.0-alpha-amd64
27+
docker run --platform linux/amd64 -it --rm -v $(realpath .):/src ghcr.io/lita-xyz/llvm-valida-releases/valida-build-container:v0.10.0-amd64
2828

2929
# You are now in a shell with the valida rust toolchain installed!
3030
```
@@ -35,12 +35,12 @@ To install and use the toolchain via Docker on a 64-bit computer with an ARM64-c
3535

3636
```bash
3737
# Download the container
38-
docker pull ghcr.io/lita-xyz/llvm-valida-releases/valida-build-container:v0.9.0-alpha-arm64
38+
docker pull ghcr.io/lita-xyz/llvm-valida-releases/valida-build-container:v0.10.0-arm64
3939

4040
# cd your-valida-project
4141

4242
# Enter the container:
43-
docker run --platform linux/arm64 -it --rm -v $(realpath .):/src ghcr.io/lita-xyz/llvm-valida-releases/valida-build-container:v0.9.0-alpha-arm64
43+
docker run --platform linux/arm64 -it --rm -v $(realpath .):/src ghcr.io/lita-xyz/llvm-valida-releases/valida-build-container:v0.10.0-arm64
4444

4545
# You are now in a shell with the valida rust toolchain installed!
4646
```
@@ -155,9 +155,9 @@ import * as valida from "valida-basic-api-wasm";
155155
For this to work, `valida-basic-api-wasm` will need to be included in your `package.json`. Once you have done this, `valida` is an object containing methods with the following type signatures:
156156

157157
```typescript
158-
export function run(program_bytes: Uint8Array, stdin: Uint8Array): Uint8Array;
159-
export function prove(program_bytes: Uint8Array, stdin: Uint8Array): Uint8Array;
160-
export function verify(program_bytes: Uint8Array, stdout: Uint8Array, proof: Uint8Array): void;
158+
export function run(program_bytes: Uint8Array, stdin: Uint8Array, max_trace_height: number): Uint8Array;
159+
export function prove(program_bytes: Uint8Array, stdin: Uint8Array, max_trace_height: number): Uint8Array;
160+
export function verify(program_bytes: Uint8Array, stdout: Uint8Array, proof: Uint8Array, max_trace_height: number): void;
161161
```
162162

163163
## Writing Rust programs to run on Valida

0 commit comments

Comments
 (0)