Skip to content

Commit c13937e

Browse files
Merge pull request #9389 from BitGo/CECHO-1721-sepeth
feat(statics): give Sepolia testnet its own underlying asset (sepETH)
2 parents da48ffd + 3877aa7 commit c13937e

4 files changed

Lines changed: 4 additions & 3 deletions

File tree

modules/statics/src/allCoinsAndTokens.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -407,7 +407,7 @@ export const allCoinsAndTokens = [
407407
'Sepolia Testnet Ethereum',
408408
Networks.test.sepolia,
409409
18,
410-
UnderlyingAsset.ETH,
410+
UnderlyingAsset.SEPETH,
411411
BaseUnit.ETH,
412412
[
413413
...ETH_FEATURES_WITH_STAKING_AND_MMI,

modules/statics/src/base.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -728,6 +728,7 @@ export enum UnderlyingAsset {
728728
SCROLLETH = 'scrolleth', // Scroll L2
729729
SEI = 'sei',
730730
SEIEVM = 'seievm',
731+
SEPETH = 'sepeth', // Sepolia Ethereum testnet
731732
SGB = 'sgb',
732733
SOL = 'sol',
733734
SOMI = 'somi', // Somnia Chain

modules/statics/src/coins/ofcCoins.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -846,7 +846,7 @@ export const ofcCoins = [
846846
'ofctsepeth',
847847
'Test Sepolia Ether',
848848
18,
849-
UnderlyingAsset.ETH,
849+
UnderlyingAsset.SEPETH,
850850
CoinKind.CRYPTO
851851
),
852852
tofc(

modules/statics/src/networks.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -874,7 +874,7 @@ class Sepolia extends Testnet implements EthereumNetwork {
874874
chainId = 11155111;
875875
nativeCoinOperationHashPrefix = 'ETHER';
876876
tokenOperationHashPrefix = 'ERC20';
877-
// TODO: add batcher/forwarder/wallet contract addresses once deployed on Sepolia
877+
// TODO: [CECHO-1729] add batcher/forwarder/wallet contract addresses once deployed on Sepolia
878878
}
879879

880880
class EthereumClassic extends Mainnet implements EthereumNetwork {

0 commit comments

Comments
 (0)