Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions modules/statics/src/allCoinsAndTokens.ts
Original file line number Diff line number Diff line change
Expand Up @@ -401,6 +401,35 @@ export const allCoinsAndTokens = [
CoinFeature.CUSTODY_BULK_TRANSACTION,
]
),
account(
'26f8f544-831b-4d40-bca4-835f1b45f4db',
'sepeth',
'Sepolia Testnet Ethereum',
Networks.test.sepolia,
18,
UnderlyingAsset.ETH,
BaseUnit.ETH,
[
...ETH_FEATURES_WITH_STAKING_AND_MMI,
CoinFeature.TSS,
CoinFeature.TSS_COLD,
CoinFeature.MPCV2,
CoinFeature.MULTISIG_COLD,
CoinFeature.EVM_WALLET,
CoinFeature.CUSTODY_BITGO_GERMANY,
CoinFeature.CUSTODY_BITGO_NEW_YORK,
CoinFeature.CUSTODY_BITGO_SWITZERLAND,
CoinFeature.CUSTODY_BITGO_FRANKFURT,
CoinFeature.CUSTODY_BITGO_SINGAPORE,
CoinFeature.CUSTODY_BITGO_KOREA,
CoinFeature.BULK_TRANSACTION,
CoinFeature.STUCK_TRANSACTION_MANAGEMENT_ONCHAIN,
CoinFeature.STUCK_TRANSACTION_MANAGEMENT_TSS,
CoinFeature.EIP1559,
CoinFeature.ERC20_BULK_TRANSACTION,
CoinFeature.CUSTODY_BULK_TRANSACTION,
]
),
account(
'33712672-8cb9-444e-be92-b8c9e84050d5',
'ethw',
Expand Down
8 changes: 8 additions & 0 deletions modules/statics/src/coins/ofcCoins.ts
Original file line number Diff line number Diff line change
Expand Up @@ -830,6 +830,14 @@ export const ofcCoins = [
UnderlyingAsset.ETH,
CoinKind.CRYPTO
),
tofc(
'12dc5b36-de2b-4cd4-9282-e7325407db0a',
'ofctsepeth',
'Test Sepolia Ether',
18,
UnderlyingAsset.ETH,
CoinKind.CRYPTO
),
tofc(
'f43d0558-8c07-4927-af7f-33947fd310c9',
'ofctavaxc',
Expand Down
14 changes: 14 additions & 0 deletions modules/statics/src/networks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -864,6 +864,19 @@ class Hoodi extends Testnet implements EthereumNetwork {
zamaAclContractAddress = '0x6d3faf6f86e1ff9f3b0831dda920aba1cbd5bd68';
}

class Sepolia extends Testnet implements EthereumNetwork {
name = 'Sepolia';
family = CoinFamily.ETH;
explorerUrl = 'https://sepolia.etherscan.io/tx/';
accountExplorerUrl = 'https://sepolia.etherscan.io/address/';
blockExplorerUrl = 'https://sepolia.etherscan.io/block/';
// https://chainlist.org/chain/11155111
chainId = 11155111;
nativeCoinOperationHashPrefix = 'ETHER';
tokenOperationHashPrefix = 'ERC20';
// TODO: add batcher/forwarder/wallet contract addresses once deployed on Sepolia
Comment thread
rithwik-bitgo marked this conversation as resolved.
}

class EthereumClassic extends Mainnet implements EthereumNetwork {
name = 'EthereumClassic';
family = CoinFamily.ETC;
Expand Down Expand Up @@ -3107,6 +3120,7 @@ export const Networks = {
goerli: Object.freeze(new Goerli()),
holesky: Object.freeze(new Holesky()),
hoodi: Object.freeze(new Hoodi()),
sepolia: Object.freeze(new Sepolia()),
lnbtc: Object.freeze(new LightningBitcoinTestnet()),
litecoin: Object.freeze(new LitecoinTestnet()),
mantle: Object.freeze(new MantleTestnet()),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ export const expectedColdFeatures = {
'polygon',
'tpolygon',
'hteth',
'sepeth',
'opeth',
'topeth',
'arbeth',
Expand Down
Loading