Add Arbitrum (ARBETH) deployment support#51
Open
techiejd wants to merge 1 commit into
Open
Conversation
This was referenced Jul 11, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Adds deployment support for Arbitrum One (crypto key
arbeth, componentarbitrum), mirroring the polygon component:generator/constants.py—"arbeth": {"component": "arbitrum"}.generator/docker-components/arbitrum.yml— daemon service (imagebitcart/bitcart-arbeth:stable, port 5012, datadir volume, backend links/depends_on).backend.yml/worker.yml—ARBETH_NETWORKenv passthrough.setup.sh/helpers.sh—ARBETH_NETWORKhelp text, default, and env passthrough.dev-setup.sh—ARBETH_HOST=arbitrum.compose/arbeth.Dockerfile— generated viagenerate-templates.shfrom bitcart's updatedimages.json(companion bitcart PR adds thebitcart-arbethentry).Note for maintainers: default server
ARBETH_SERVERdefaults to the publichttps://arb1.arbitrum.io/rpcbecause seed-server.bitcart.ai does not currently serve Arbitrum. Happy to switch the default to a bitcart seed server if/when one is available. (Heads-up: public Arbitrum endpoints rate-limit aggressively — the Sepolia one 429'd during testing.)Testing
BITCART_CRYPTOS=btc,arbeth python -m generatorproduces a valid compose file with thearbitrumservice, correct image, andARBETH_NETWORKpresent in backend and worker environments.compose/arbeth.Dockerfilebuilds cleanly with the companion bitcart branch as build context (uv sync --frozen --group arbethresolves in Alpine).ARBETH_NETWORK=testnetagainst Arbitrum Sepolia,getinfoon port 5012 returnedconnected: true,synchronized: true, live gas price, and the expected/home/electrum/.bitcart-arbeth/testnetdatadir.Dependencies
Depends on the companion bitcart PR (bitcart/bitcart#618: images.json entry, daemon) and bitcart-sdk PR (bitcart/bitcart-sdk#82: coin class).