Add Ethereum on Arbitrum (ARBETH) support#82
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 an
ARBETHcoin class for Ethereum on Arbitrum One, mirroring the existingMATICclass:coin_name = "ARBETH",friendly_name = "Ethereum (Arbitrum)", default RPC URLhttp://localhost:5012. Registered inCOINSand the package imports; docs and changelog updated.Why ARBETH and not ARB
Arbitrum's native gas currency is ETH — ARB is only an ERC-20 governance token. Since the coin name doubles as the currency ticker across bitcart (exchange rates, money formatting, invoices) and
ETHis taken by mainnet,ARBETHnames the asset honestly. The ARB token is offered as a regular ERC-20 token in the daemon's token list instead.Testing
ARBETHimport/instantiation verified (coin_name,friendly_name,COINSregistration).tests/regtest, which needs a regtest bitcoind): 60/60 passing against a live BTC testnet daemon, mirroring the CI setup.getinfoconnected, seed → wallet → zero balance →add_requestreturningethereum:0x…@421614?value=….Companion PRs
Daemon-side support lands in the companion bitcart PR (bitcart/bitcart#618: daemon + token list + config registrations); deployment support in bitcart/bitcart-docker#51. This SDK PR is the prerequisite: bitcart's API imports
COINSfrom this package, so the coin can only be enabled there once a release includes this change.