diff --git a/public/locales/en/wallets.json b/public/locales/en/wallets.json index 27cff087..25ac080b 100644 --- a/public/locales/en/wallets.json +++ b/public/locales/en/wallets.json @@ -49,6 +49,10 @@ "title": "imKey", "description": "Founded in 2018, imKey is a steadily growing company focused on providing blockchain security services for Web3 users. The imKey Pro hardware cold wallet allows secure storage, sending, and receiving of CKB, and is one of the earliest hardware wallets to support Nervos CKB." }, + "coinex": { + "title": "CoinEx Wallet", + "description": "CoinEx Wallet is a one-stop Web3 wallet for managing multi-crypto assets. Allowing users to manage assets of 1,000,000+ tokens on 55+ networks, such as BTC, ETH, TRX, CKB, etc., and providing swap, staking, transaction accelerator, DApp explorer and more." + }, "official_website": "Official website", "tutorials": "Tutorials", "download": "Download" diff --git a/src/pages/wallets/icons/coinex.svg b/src/pages/wallets/icons/coinex.svg new file mode 100644 index 00000000..a17b37a8 --- /dev/null +++ b/src/pages/wallets/icons/coinex.svg @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/pages/wallets/icons/index.tsx b/src/pages/wallets/icons/index.tsx index a6f2d696..626a5d95 100644 --- a/src/pages/wallets/icons/index.tsx +++ b/src/pages/wallets/icons/index.tsx @@ -10,6 +10,7 @@ import OneKey from './onekey.svg' import ReiWallet from './reiwallet.svg' import UTXOGlobalWallet from './utxoGlobal.svg' import ImKey from './imKey.svg' +import CoinEx from './coinex.svg' const CkbBullIcon = () => ( ckbull @@ -29,4 +30,5 @@ export { GateWeb3Wallet, UTXOGlobalWallet, ImKey, + CoinEx, } diff --git a/src/pages/wallets/index.page.tsx b/src/pages/wallets/index.page.tsx index 894147a0..817901dd 100644 --- a/src/pages/wallets/index.page.tsx +++ b/src/pages/wallets/index.page.tsx @@ -26,6 +26,7 @@ import { GateWeb3Wallet, UTXOGlobalWallet, ImKey, + CoinEx, } from './icons' const pagePath = '/src/pages/wallets/index.page.tsx' @@ -321,6 +322,33 @@ const Wallets: NextPage = ({ contributors, author }) => { ), }, + { + title: t('coinex.title'), + titleRender: () => } />, + tags: ['IOS', 'ANDROID'], + content: ( + <> + {t('coinex.description') + .split('\n') + .map(p => ( +
{p}
+ ))} +
+ + {t('official_website')} + +
+ + {t('download')} + +
+ + {t('tutorials')} + +
+ + ), + }, ] const pageTitle = 'Nervos Network | Wallets'