feat(statics): onboard real1 token on sepolia - #9706
Merged
prajwalu142 merged 1 commit intoSep 10, 2026
Merged
Conversation
problem/goal Onboard REAL1 testnet ERC-20 token and its OFC variant on Sepolia for client testing under ticket CSHLD-1671. implementation details - Added 'sepeth:real1' to UnderlyingAsset enum in base.ts. - Registered 'sepeth:real1' (name 'REAL1', 6 decimals, contract 0x8463e1f760d0572d04bc76a6031361d76124562f) on Sepolia in erc20Coins.ts with ACCOUNT_COIN_DEFAULT_FEATURES. - Registered 'ofcsepeth:real1' OFC token in ofcErc20Coins.ts with base coin 'sepeth'. - Added 'sepeth:real1' to testnetPrefixExceptions in tokenNamingConvention.ts to comply with testnet naming convention. verification- how it was verified - Verified token contract parameters (decimals: 6, symbol: GRTX, name: GreatX Token) via on-chain RPC eth_call to the contract address on Sepolia. - Checked UUID uniqueness across the repository for both standard and OFC token registrations. Ticket: CSHLD-1671
Contributor
prajwalu142
marked this pull request as ready for review
September 10, 2026 10:21
Ranjna-G
approved these changes
Sep 10, 2026
Contributor
|
|
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
Onboard the
REAL1testnet ERC-20 token and its corresponding OFC token on Sepolia (sepeth:real1andofcsepeth:real1).WHY
Client-requested testnet token onboarding under ticket CSHLD-1671.
Changes
sepeth:real1toUnderlyingAssetenum inmodules/statics/src/base.ts.sepeth:real1(nameREAL1, 6 decimals, contract0x8463e1f760d0572d04bc76a6031361d76124562f) inmodules/statics/src/coins/erc20Coins.tson Sepolia.ofcsepeth:real1OFC variant inmodules/statics/src/coins/ofcErc20Coins.tswith base coinsepeth.sepeth:real1totestnetPrefixExceptionsinmodules/statics/test/unit/tokenNamingConvention.ts.Ticket: CSHLD-1671