Skip to content

Commit

Permalink
chore: Add Zircuit (#5485)
Browse files Browse the repository at this point in the history
  • Loading branch information
originalix authored Aug 12, 2024
1 parent 1343974 commit a1d990a
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions packages/shared/src/config/presetNetworks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1554,6 +1554,34 @@ const holesky: IServerNetwork = {
'defaultEnabled': false,
'backendIndex': false,
};
const zircuit: IServerNetwork = {
'impl': 'evm',
'chainId': '48900',
'id': 'evm--48900',
'name': 'Zircuit',
'symbol': 'ETH',
'code': 'zircuit',
'shortcode': 'zircuit',
'shortname': 'Zircuit',
'decimals': 18,
'feeMeta': {
'code': 'eth',
'decimals': 9,
'symbol': 'Gwei',
'isEIP1559FeeEnabled': false,
'isWithL1BaseFee': false,
},
'status': ENetworkStatus.LISTED,
'isTestnet': true,
'extensions': {
'position': 9999,
'isTokenSupported': false,
'isNFTEnabled': false,
},
'logoURI': 'https://uni.onekey-asset.com/static/chain/zircuit.png',
'defaultEnabled': false,
'backendIndex': false,
}

const btc: IServerNetwork = {
'chainId': '0',
Expand Down Expand Up @@ -2444,6 +2472,7 @@ export const presetNetworksMap = {
bob,
aurora,
holesky,
zircuit,

// cosmos
celestia,
Expand Down Expand Up @@ -2548,6 +2577,7 @@ export const getPresetNetworks = memoFn((): IServerNetwork[] => [
bob,
aurora,
holesky,
zircuit,
// cosmos
celestia,
secret,
Expand Down

0 comments on commit a1d990a

Please sign in to comment.