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

fix: broken links README.md #1639

Merged
merged 2 commits into from
Nov 29, 2024
Merged
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
13 changes: 7 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ future of zero-knowledge.
## Supported opcodes

We support 100% of EVM opcodes and
[9 out of 10 precompiles](https://docs.kakarot.org/starknet/architecture/differences).
[9 out of 10 precompiles](https://docs.kakarot.org/starknet/architecture/cairo-precompiles).

## Documentation

Expand Down Expand Up @@ -176,8 +176,8 @@ required. Actually, for tests requiring a Starknet devnet, prefer end-to-end
relying only on a RPC endpoint and currently running on Katana.

For an example of the cairo test runner, see for example
[the RLP library tests](tests/src/utils/test_rlp.py). Especially, the cairo
runner uses hints to communicate values and return outputs:
[the RLP library tests](./cairo_zero/tests/src/utils/test_rlp.py). Especially,
the cairo runner uses hints to communicate values and return outputs:

- `kwargs` of `cairo_run` are available in the `program_input` variable
- values written in the `output_ptr` segment are returned, e.g.
Expand Down Expand Up @@ -240,9 +240,10 @@ Note that the chosen `chain_id` when deploying is important:
- To be compatible with ledger the chain id needs to be inferior to 4 bytes see
https://github.com/kkrt-labs/kakarot/issues/1530

The [deploy script](./kakarot_scripts/deploy_kakarot.py) relies on some env
variables defined in a `.env` file located at the root of the project and loaded
in the [constant file](./kakarot_scripts/constants.py). To get started, just
The [deploy script](./kakarot_scripts/deployment/kakarot_deployment.py) relies
on some env variables defined in a `.env` file located at the root of the
project and loaded in the [constant file](./kakarot_scripts/constants.py). To
get started, just

```bash
cp .env.example .env
Expand Down