Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added Interact section. Added LimePay and WalletConnect #14

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
3 changes: 2 additions & 1 deletion src/constants/categories.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,6 @@ export enum Category {
FINANCE = 'Finance',
GAME = 'Play',
EARN = 'Earn',
SOCIAL = 'Social'
SOCIAL = 'Social',
INTERACT = "Interact"
}
22 changes: 22 additions & 0 deletions src/constants/items.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand All @@ -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';
Expand Down Expand Up @@ -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
];
Binary file added src/images/limepay.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/images/walletconnect.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.