Skip to content
This repository has been archived by the owner on Nov 9, 2020. It is now read-only.

Pix mod #12

Open
wants to merge 3 commits 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
Binary file added .DS_Store
Binary file not shown.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/node_modules
Binary file added MetaSwap-Icons.zip
Binary file not shown.
21,245 changes: 21,245 additions & 0 deletions package-lock.json

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@
"styled-components": "^5.1.1",
"typescript": "^3.9.7",
"use-wallet": "^0.8.0",
"web3": "^1.2.11"
"web3": "^1.2.11",
"web3-utils": "^1.2.11",
"yarn": "^1.22.5"
},
"scripts": {
"start": "react-scripts start",
Expand Down
Binary file added public/.DS_Store
Binary file not shown.
Binary file removed public/favicon.ico
Binary file not shown.
Binary file removed public/favicon.png
Binary file not shown.
39 changes: 39 additions & 0 deletions public/favicon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed public/hero.png
Binary file not shown.
10 changes: 5 additions & 5 deletions public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="shortcut icon" href="%PUBLIC_URL%/favicon.png" />
<link rel="shortcut icon" href="%PUBLIC_URL%/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta name="description" content="Farm SUSHI with Uniswap LP Token" />
Expand All @@ -12,18 +12,18 @@
-->
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
<link
href="https://fonts.googleapis.com/css2?family=Kaushan+Script&family=Noto+Sans:wght@400;700&family=Reem+Kufi&family=Roboto+Mono:wght@400;700&display=swap"
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap"
rel="stylesheet"
/>
<meta name="twitter:image" content="http://sushiswap.org/hero.png" />
<meta
name="twitter:description"
content="Farm SUSHI with Uniswap LP Token"
content="Farm METM with Uniswap LP Token"
/>
<meta name="twitter:card" content="summary" />
<meta
name="twitter:title"
content="🍣 SushiSwap - An Evolution over Uniswap with Yield Farming"
content="MetaSwao - An Evolution over Uniswap with Yield Farming"
/>
<!--
Notice the use of %PUBLIC_URL% in the tags above.
Expand All @@ -34,7 +34,7 @@
work correctly both with client-side routing and a non-root public URL.
Learn how to configure a non-root public URL by running `npm run build`.
-->
<title>SushiSwap</title>
<title>MetaSwap</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
Expand Down
6 changes: 3 additions & 3 deletions public/manifest.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"short_name": "SushiSwap",
"name": "Farm SUSHI with Uniswap LP Tokens",
"short_name": "MetaSwap",
"name": "Farm METM with Uniswap LP Tokens",
"icons": [
{
"src": "favicon.png",
"src": "favicon.svg",
"type": "image/png",
"sizes": "240x240"
}
Expand Down
Binary file added src/.DS_Store
Binary file not shown.
8 changes: 3 additions & 5 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ import TopBar from './components/TopBar'
import FarmsProvider from './contexts/Farms'
import ModalsProvider from './contexts/Modals'
import TransactionProvider from './contexts/Transactions'
import SushiProvider from './contexts/SushiProvider'
// import SushiProvider from './contexts/SushiProvider'
import useModal from './hooks/useModal'
import theme from './theme'
import Farms from './views/Farms'
import Home from './views/Home'
import Stake from './views/Stake'
import Stake from './views/Farm/components/Stake'

const App: React.FC = () => {
const [mobileMenu, setMobileMenu] = useState(false)
Expand All @@ -39,7 +39,7 @@ const App: React.FC = () => {
<Farms />
</Route>
<Route path="/staking">
<Stake />
{/* <Stake /> */}
</Route>
</Switch>
</Router>
Expand All @@ -57,13 +57,11 @@ const Providers: React.FC = ({ children }) => {
walletconnect: { rpcUrl: 'https://mainnet.eth.aragon.network/' },
}}
>
<SushiProvider>
<TransactionProvider>
<FarmsProvider>
<ModalsProvider>{children}</ModalsProvider>
</FarmsProvider>
</TransactionProvider>
</SushiProvider>
</UseWalletProvider>
</ThemeProvider>
)
Expand Down
Binary file added src/assets/.DS_Store
Binary file not shown.
Binary file added src/assets/img/.DS_Store
Binary file not shown.
39 changes: 39 additions & 0 deletions src/assets/img/favicon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading