diff --git a/src/constants/categories.ts b/src/constants/categories.ts index 42c6c3d..e2f7476 100644 --- a/src/constants/categories.ts +++ b/src/constants/categories.ts @@ -5,5 +5,6 @@ export enum Category { FINANCE = 'Finance', GAME = 'Play', EARN = 'Earn', - SOCIAL = 'Social' + SOCIAL = 'Social', + INTERACT = "Interact" } \ No newline at end of file diff --git a/src/constants/items.ts b/src/constants/items.ts index 6f4d90e..f9ecc4c 100644 --- a/src/constants/items.ts +++ b/src/constants/items.ts @@ -8,6 +8,7 @@ import compoundLogo from '../images/compound.png'; import dharmaLogo from '../images/dharma.png'; import kyberLogo from '../images/kyber.svg'; import localEthereumLogo from '../images/localethereum.svg'; +import limepayLogo from '../images/limepay.png'; import makerLogo from '../images/maker.png'; import radarLogo from '../images/radar.png'; import uniswapLogo from '../images/uniswap.svg'; @@ -16,6 +17,7 @@ import zerionLogo from '../images/zerion.svg'; import tokenaryLogo from '../images/tokenary.png'; import foamLogo from '../images/foam.png'; import mycryptoLogo from '../images/mycrypto-white.svg'; +import walletConnectLogo from '../images/walletconnect.png'; import { Category } from './categories'; import { IItem } from 'types'; @@ -196,11 +198,31 @@ const socialItems: IItem[] = [ } ]; +const interactItems: IItem[] = [ + { + background: '#171D27', + category: Category.INTERACT, + description: 'Executing Ethereum transactions with credit card.', + image: limepayLogo, + name: 'LimePay', + url: 'https://limepay.io/' + }, + { + background: '#FFFFFF', + category: Category.INTERACT, + description: 'Open protocol for connecting Wallets to Dapps.', + image: walletConnectLogo, + name: 'Wallet Connect', + url: 'https://walletconnect.org/' + } +]; + export const allItems = [ ...acquireItems, ...exchangeItems, ...walletItems, ...financeItems, ...earnItems, + ...interactItems, ...socialItems ]; diff --git a/src/images/limepay.png b/src/images/limepay.png new file mode 100644 index 0000000..f738827 Binary files /dev/null and b/src/images/limepay.png differ diff --git a/src/images/walletconnect.png b/src/images/walletconnect.png new file mode 100644 index 0000000..a2a9beb Binary files /dev/null and b/src/images/walletconnect.png differ