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

chore(docs): endpoints #1543

Merged
merged 1 commit into from
Sep 30, 2024
Merged
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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ network. Other components of the Astria network can be found in the
[astriaorg](https://github.com/astriaorg) organization.

To run locally, we utilize a dev-cluster which can be found at
[astriaorg/dev-cluster](https://github.com/astriaorg/dev-cluster).
[astriaorg/astria/charts](https://github.com/astriaorg/astria/tree/main/charts).

To learn more about Astria, please visit [astria.org](https://astria.org).

Expand Down
19 changes: 10 additions & 9 deletions charts/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,11 @@ just deploy astria-local

# Deploys a geth rollup chain + faucet + blockscout + ingress
# w/ defaults running against local network, along with a bridge withdawer.
# NOTE - default values can be found in `helm/rollup/values.yaml`
# NOTE - default values can be found in `../dev/values/rollup/dev.yaml`
just deploy rollup

# Deploy only the rollup chain, faucet, blockscout instance without withdrawer:
just deploy dev-rollup
# w/ custom name and id for further customization see the values file at
# `dev/values/rollup/dev.yml`
# `../dev/values/rollup/dev.yml`
just deploy dev-rollup <rollup_name> <network_id>

# Send funds into the rollup chain, by default transfers 10 RIA to the rollup
Expand Down Expand Up @@ -80,16 +78,19 @@ The default rollup faucet is available at <http://faucet.astria.localdev.me>.
If you deploy a custom faucet, it will be reachable at
`http://faucet.<rollup_name>.localdev.me`.

By default, the faucet is funded by the account that is funded during geth
genesis. This key is defined in `./evm-rollup/values.yaml` and is identical to
the key in `./evm-rollup/files/keys/private_key.txt`.
By default, no account is funded during geth genesis.
Run `just init-rollup-bridge` to fund the faucet account. This account key is
defined in `../dev/values/rollup/dev.yaml` and is identical to the key in
`./evm-rollup/files/keys/private_key.txt`.

The default sequencer faucet is available at <http://sequencer-faucet.localdev.me>.

### Blockscout

The default Blockscout app is available at <http://blockscout.astria.localdev.me>.
The default Blockscout app is available at <http://explorer.astria.localdev.me>.

If you deploy a custom Blockscout app, it will be available at
`http://blockscout.<rollup_name>.localdev.me`.
`http://explorer.<rollup_name>.localdev.me`.

### Sequencer

Expand Down
Loading