-
Notifications
You must be signed in to change notification settings - Fork 615
feat: add otterscan to sandbox #2648
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
Changes from 7 commits
6eb1286
05cb264
9b0ce63
2ab8d91
35eca57
a223df0
bad015e
436e762
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,7 +1,7 @@ | ||
| version: '3' | ||
| services: | ||
| ethereum: | ||
| image: ghcr.io/foundry-rs/foundry:v1.0.0 | ||
| image: ghcr.io/foundry-rs/foundry@sha256:29ba6e34379e79c342ec02d437beb7929c9e254261e8032b17e187be71a2609f | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. had to use a later version for otterscan support - this one is tagged "latest" as of October 3rd 2023 (its ~a week older than the nightly builds, stable is ~3 months old but new tag getting pushed soon) |
||
| command: '"anvil --silent -p 8545 --host 0.0.0.0 --chain-id 31337"' | ||
| ports: | ||
| - '${SANDBOX_ANVIL_PORT:-8545}:8545' | ||
|
|
@@ -24,3 +24,14 @@ services: | |
| ARCHIVER_VIEM_POLLING_INTERVAL_MS: 500 | ||
| volumes: | ||
| - ./log:/usr/src/yarn-project/aztec-sandbox/log:rw | ||
|
|
||
| otterscan: | ||
| image: otterscan/otterscan:develop | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. asked if they can update the stable tag, but i think this is OK for now |
||
| # platform: linux/amd64 | ||
| ports: | ||
| - "5100:80" | ||
| container_name: otterscan | ||
| environment: | ||
| # otterscan env var is hardcoded to support erigon client | ||
| # but it also works for anvil | ||
| - ERIGON_URL=http://127.0.0.1:${SANDBOX_ANVIL_PORT:-8545} | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
Uh oh!
There was an error while loading. Please reload this page.