feat: add Eden (chain 714) to assets-controllers spot price support - #9874
Open
jeremytsng wants to merge 1 commit into
Open
feat: add Eden (chain 714) to assets-controllers spot price support#9874jeremytsng wants to merge 1 commit into
jeremytsng wants to merge 1 commit into
Conversation
jeremytsng
force-pushed
the
feat/tia-price-support-eden
branch
from
August 13, 2026 21:00
1208f60 to
6fcccaf
Compare
| '0x144': 'eip155:324/slip44:60', // zkSync Era Mainnet (Ethereum L2) - Native symbol: ETH | ||
| '0x150': 'eip155:336/slip44:809', // Shiden - Native symbol: SDN | ||
| '0x169': 'eip155:361/slip44:589', // Theta Mainnet - Native symbol: TFUEL | ||
| '0x2ca': 'eip155:714/erc20:0x0000000000000000000000000000000000000000', // Eden - Native symbol: TIA (Celestia) |
Contributor
There was a problem hiding this comment.
Just double checking, is this supported by price API to fetch spot prices?
2 tasks
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.
Explanation
Eden (
eip155:714, hex0x2ca) is an EVM chain that settles gas in TIA and is not indexed by CoinGecko as an asset platform. Without an entry inSPOT_PRICES_SUPPORT_INFO, assets-controllers cannot resolve a spot price for its native asset.This PR adds the Eden entry, pricing native TIA at the zero-address:
This follows the pattern established for Forma (#8873): TIA has no SLIP-44 coin type, so the native asset is addressed at the zero-address rather than an invented
slip44reference. Price API support for this asset id ships in consensys-vertical-apps/va-mmcx-price-api#697; the Price API resolves it from the CoinGeckocelestiacoin through a chain-keyed native-asset registry, so Forma and Eden are priced independently.Chain id verified against the live RPC:
eth_chainIdonrpc.eden.gateway.fmreturns0x2ca.References
Checklist
Note
Low Risk
Single additive registry entry and changelog note; no auth, data migration, or pricing logic changes beyond enabling one more chain.
Overview
Adds Eden (
0x2ca/ chain714) toSPOT_PRICES_SUPPORT_INFOincodefi-v2.tsso assets-controllers can request spot prices for that network through the Codefi v2 price service.Native gas is modeled as TIA via the zero-address CAIP-19 id (
eip155:714/erc20:0x0…), matching chains like Forma where there is no SLIP-44 coin type. The new key also flows intoSUPPORTED_CHAIN_IDSderived from that map. The package changelog documents the addition under Unreleased.Reviewed by Cursor Bugbot for commit 6fcccaf. Bugbot is set up for automated code reviews on this repo. Configure here.