mirror of
https://github.com/andrei0x309/clear-wallet.git
synced 2025-02-02 14:50:44 +00:00
chore: add icons and templates
This commit is contained in:
parent
8cabbb0eef
commit
6a39fd0230
@ -3,6 +3,7 @@
|
|||||||
## Manifest Version 1.4.12
|
## Manifest Version 1.4.12
|
||||||
|
|
||||||
- added more checks to release script
|
- added more checks to release script
|
||||||
|
- added network icons and templates for the following networks: World Chain, Linea, Scroll
|
||||||
|
|
||||||
## Manifest Version 1.4.11
|
## Manifest Version 1.4.11
|
||||||
|
|
||||||
|
BIN
public/assets/chain-icons/linea.webp
Normal file
BIN
public/assets/chain-icons/linea.webp
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.6 KiB |
BIN
public/assets/chain-icons/linea_t.webp
Normal file
BIN
public/assets/chain-icons/linea_t.webp
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.7 KiB |
BIN
public/assets/chain-icons/scroll.webp
Normal file
BIN
public/assets/chain-icons/scroll.webp
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.8 KiB |
BIN
public/assets/chain-icons/scroll_t.webp
Normal file
BIN
public/assets/chain-icons/scroll_t.webp
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.9 KiB |
BIN
public/assets/chain-icons/world.webp
Normal file
BIN
public/assets/chain-icons/world.webp
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.8 KiB |
BIN
public/assets/chain-icons/world_t.webp
Normal file
BIN
public/assets/chain-icons/world_t.webp
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.9 KiB |
@ -56,6 +56,15 @@ export const mainNets: {[key: number]: Network} = {
|
|||||||
symbol: 'BNB',
|
symbol: 'BNB',
|
||||||
priceId: 'binancecoin'
|
priceId: 'binancecoin'
|
||||||
},
|
},
|
||||||
|
480: {
|
||||||
|
name: 'World Chain',
|
||||||
|
rpc: 'https://worldchain-mainnet.g.alchemy.com/public',
|
||||||
|
chainId: 480,
|
||||||
|
explorer: 'https://worldscan.org',
|
||||||
|
icon: 'world.webp',
|
||||||
|
symbol: 'ETH',
|
||||||
|
priceId: 'ethereum'
|
||||||
|
},
|
||||||
42161: {
|
42161: {
|
||||||
name: 'Arbitrum One',
|
name: 'Arbitrum One',
|
||||||
rpc: 'https://rpc.ankr.com/arbitrum',
|
rpc: 'https://rpc.ankr.com/arbitrum',
|
||||||
@ -83,6 +92,15 @@ export const mainNets: {[key: number]: Network} = {
|
|||||||
symbol: 'ETH',
|
symbol: 'ETH',
|
||||||
priceId: 'ethereum'
|
priceId: 'ethereum'
|
||||||
},
|
},
|
||||||
|
59144: {
|
||||||
|
name: 'Linea',
|
||||||
|
rpc: 'https://rpc.linea.build',
|
||||||
|
chainId: 59144,
|
||||||
|
explorer: 'https://lineascan.build',
|
||||||
|
icon: 'linea.webp',
|
||||||
|
symbol: 'ETH',
|
||||||
|
priceId: 'ethereum'
|
||||||
|
},
|
||||||
666666666: {
|
666666666: {
|
||||||
name: 'Degen',
|
name: 'Degen',
|
||||||
rpc: 'https://rpc.degen.tips',
|
rpc: 'https://rpc.degen.tips',
|
||||||
@ -100,6 +118,15 @@ export const mainNets: {[key: number]: Network} = {
|
|||||||
icon: 'celo.webp',
|
icon: 'celo.webp',
|
||||||
symbol: 'CELO',
|
symbol: 'CELO',
|
||||||
priceId: 'celo'
|
priceId: 'celo'
|
||||||
|
},
|
||||||
|
534351: {
|
||||||
|
name: 'Scroll',
|
||||||
|
rpc: 'https://rpc.scroll.io/',
|
||||||
|
chainId: 534351,
|
||||||
|
explorer: 'https://scrollscan.com',
|
||||||
|
icon: 'scroll.webp',
|
||||||
|
symbol: 'ETH',
|
||||||
|
priceId: 'ethereum'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -175,13 +202,37 @@ export const testNets = {
|
|||||||
explorer: 'https://testnet.cyberscan.co/',
|
explorer: 'https://testnet.cyberscan.co/',
|
||||||
icon: 'cyber_t.webp'
|
icon: 'cyber_t.webp'
|
||||||
},
|
},
|
||||||
42220: {
|
44787: {
|
||||||
name: 'Celo Mainenet',
|
name: 'Celo TestNet',
|
||||||
rpc: 'https://forno.celo.org',
|
rpc: 'https://alfajores-forno.celo-testnet.org',
|
||||||
chainId: 42220,
|
chainId: 44787,
|
||||||
explorer: 'https://celoscan.io/',
|
explorer: 'https://alfajores.celoscan.io/',
|
||||||
icon: 'celo.webp',
|
icon: 'celo_t.webp',
|
||||||
symbol: 'CELO',
|
symbol: 'CELO',
|
||||||
|
},
|
||||||
|
59141: {
|
||||||
|
name: 'Linea Sepolia',
|
||||||
|
rpc: 'https://rpc.sepolia.linea.build',
|
||||||
|
chainId: 59141,
|
||||||
|
explorer: 'https://sepolia.lineascan.build/',
|
||||||
|
icon: 'linea_t.webp',
|
||||||
|
symbol: 'ETH'
|
||||||
|
},
|
||||||
|
4801: {
|
||||||
|
name: 'World Chain',
|
||||||
|
rpc: 'https://worldchain-sepolia.g.alchemy.com/public',
|
||||||
|
chainId: 4801,
|
||||||
|
explorer: 'https://worldchain-sepolia.explorer.alchemy.com',
|
||||||
|
icon: 'world_t.webp',
|
||||||
|
symbol: 'ETH',
|
||||||
|
},
|
||||||
|
534351: {
|
||||||
|
name: 'Scroll Sepolia',
|
||||||
|
rpc: 'https://sepolia-rpc.scroll.io/',
|
||||||
|
chainId: 534351,
|
||||||
|
explorer: 'https://sepolia.scrollscan.com',
|
||||||
|
icon: 'scroll_t.webp',
|
||||||
|
symbol: 'ETH'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user