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
28 changes: 22 additions & 6 deletions modules/statics/src/allCoinsAndTokens.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2470,11 +2470,11 @@ export const allCoinsAndTokens = [
account(
'cf06d1ea-f7c4-4a26-95fd-f71983eba58f',
'tarc',
'ARC Testnet',
'Arc Testnet',
Networks.test.arc,
18,
UnderlyingAsset.ARC,
BaseUnit.USDC,
BaseUnit.ETH,
[
...EVM_FEATURES,
CoinFeature.SHARED_EVM_SIGNING,
Expand All @@ -2484,10 +2484,26 @@ export const allCoinsAndTokens = [
CoinFeature.EVM_NON_BITGO_RECOVERY,
CoinFeature.EVM_UNSIGNED_SWEEP_RECOVERY,
CoinFeature.EVM_COMPATIBLE_WP,
],
KeyCurve.Secp256k1,
'',
'TARC'
]
),
account(
'733c4da8-52f7-4f9f-a7dc-897c81453fee',
'arc',
'Arc',
Networks.main.arc,
18,
UnderlyingAsset.ARC,
BaseUnit.ETH,
[
...EVM_FEATURES,
CoinFeature.SHARED_EVM_SIGNING,
CoinFeature.SHARED_EVM_SDK,
CoinFeature.EVM_COMPATIBLE_IMS,
CoinFeature.EVM_COMPATIBLE_UI,
CoinFeature.EVM_NON_BITGO_RECOVERY,
CoinFeature.EVM_UNSIGNED_SWEEP_RECOVERY,
CoinFeature.EVM_COMPATIBLE_WP,
]
),
account(
'92c6b706-87bc-4a4e-8dd4-2a2c83b724e4',
Expand Down
4 changes: 2 additions & 2 deletions modules/statics/src/coins/ofcCoins.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3775,6 +3775,6 @@ export const ofcCoins = [
6,
UnderlyingAsset['tsui:deep']
),
ofc('d45636f8-f120-4374-b717-70fe999baa43', 'ofcarc', 'ARC', 18, UnderlyingAsset.ARC, CoinKind.CRYPTO),
tofc('bc57e64d-045e-4421-aa92-64db0c51e1d7', 'ofctarc', 'ARC Testnet', 18, UnderlyingAsset.ARC, CoinKind.CRYPTO),
ofc('d45636f8-f120-4374-b717-70fe999baa43', 'ofcarc', 'Arc', 18, UnderlyingAsset.ARC, CoinKind.CRYPTO),
tofc('bc57e64d-045e-4421-aa92-64db0c51e1d7', 'ofctarc', 'Arc Testnet', 18, UnderlyingAsset.ARC, CoinKind.CRYPTO),
];
14 changes: 12 additions & 2 deletions modules/statics/src/networks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2221,14 +2221,23 @@ class DogeosTestnet extends Testnet implements EthereumNetwork {
}

class ArcTestnet extends Testnet implements EthereumNetwork {
name = 'ARC Testnet';
name = 'Arc Testnet';
family = CoinFamily.ARC;
explorerUrl = 'https://testnet.arcscan.app/txs/';
accountExplorerUrl = 'https://testnet.arcscan.app/address/';
chainId = 5042002;
nativeCoinOperationHashPrefix = '5042002';
}

class Arc extends Mainnet implements EthereumNetwork {
name = 'Arc';
family = CoinFamily.ARC;
explorerUrl = 'https://testnet.arcscan.app/txs/'; // change to prod explorer url
accountExplorerUrl = 'https://testnet.arcscan.app/address/'; // change to prod explorer url when available
chainId = 5042002; // change to prod chain id when available
nativeCoinOperationHashPrefix = '5042002'; // change to prod native coin operation hash prefix when available
}

class Tempo extends Mainnet implements EthereumNetwork {
name = 'Tempo';
family = CoinFamily.TEMPO;
Expand Down Expand Up @@ -2256,6 +2265,7 @@ export const Networks = {
apechain: Object.freeze(new ApeChain()),
apt: Object.freeze(new Apt()),
arbitrum: Object.freeze(new Arbitrum()),
arc: Object.freeze(new Arc()),
asi: Object.freeze(new Asi()),
atom: Object.freeze(new Atom()),
avalancheC: Object.freeze(new AvalancheC()),
Expand Down Expand Up @@ -2363,6 +2373,7 @@ export const Networks = {
apechain: Object.freeze(new ApeChainTestnet()),
apt: Object.freeze(new AptTestnet()),
arbitrum: Object.freeze(new ArbitrumTestnet()),
arc: Object.freeze(new ArcTestnet()),
asi: Object.freeze(new AsiTestnet()),
atom: Object.freeze(new AtomTestnet()),
avalancheC: Object.freeze(new AvalancheCTestnet()),
Expand Down Expand Up @@ -2468,6 +2479,5 @@ export const Networks = {
zCash: Object.freeze(new ZCashTestnet()),
zeta: Object.freeze(new ZetaTestnet()),
zkSync: Object.freeze(new ZkSyncTestnet()),
arc: Object.freeze(new ArcTestnet()),
},
};
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ export const expectedColdFeatures = {
'ada',
'apechain',
'apt',
'arc',
'asi',
'atom',
'baby',
Expand Down