diff --git a/cloudformation.template.json b/cloudformation.template.json index 5c02584..17b9471 100644 --- a/cloudformation.template.json +++ b/cloudformation.template.json @@ -1,6 +1,6 @@ { "AWSTemplateFormatVersion": "2010-09-09", - "Description": "uniswap.info site", + "Description": "CheeseSwap Info", "Outputs": { "DeploymentAccessKeyId": { "Description": "Access key ID for deploying to the S3 bucket", @@ -87,7 +87,7 @@ "Tags": [ { "Key": "Name", - "Value": "uniswap.info" + "Value": "info.cheeseswap.app" }, { "Key": "Stack", @@ -241,10 +241,10 @@ "ResponsePagePath": "/" } ], - "Comment": "uniswap.info", + "Comment": "info.cheeseswap.app", "Enabled": true, "Aliases": [ - "uniswap.info" + "info.cheeseswap.app" ], "DefaultRootObject": "index.html", "HttpVersion": "http2", diff --git a/public/index.html b/public/index.html index 4144970..7eea319 100644 --- a/public/index.html +++ b/public/index.html @@ -5,8 +5,8 @@ - - + + @@ -17,7 +17,7 @@ - +
diff --git a/src/apollo/client.js b/src/apollo/client.js index ae93586..b58b10a 100644 --- a/src/apollo/client.js +++ b/src/apollo/client.js @@ -20,7 +20,7 @@ export const healthClient = new ApolloClient({ export const v1Client = new ApolloClient({ link: new HttpLink({ - uri: 'https://api.thegraph.com/subgraphs/name/ianlapham/uniswap' + uri: 'https://graph.chipsfryer.world/subgraphs/name/blockartist/cheesegraph3' }), cache: new InMemoryCache(), shouldBatch: true diff --git a/src/apollo/queries.js b/src/apollo/queries.js index 7f722b1..fff6447 100644 --- a/src/apollo/queries.js +++ b/src/apollo/queries.js @@ -3,7 +3,7 @@ import { FACTORY_ADDRESS, BUNDLE_ID } from '../constants' export const SUBGRAPH_HEALTH = gql` query health { - indexingStatusForCurrentVersion(subgraphName: "blockartist/cheesegraph3") { + indexingStatusForCurrentVersion(subgraphName: "cheesegraph3") { synced health chains { diff --git a/src/components/DoubleLogo/index.js b/src/components/DoubleLogo/index.js index 0ab358c..620be66 100644 --- a/src/components/DoubleLogo/index.js +++ b/src/components/DoubleLogo/index.js @@ -2,7 +2,7 @@ import React from 'react' import styled from 'styled-components' import TokenLogo from '../TokenLogo' -export default function DoubleTokenLogo({ a0, a1, size = 24, margin = false }) { +export default function DoubleTokenLogo({ a0, a1, size = 26, margin = false }) { const TokenWrapper = styled.div` position: relative; display: flex; @@ -12,14 +12,14 @@ export default function DoubleTokenLogo({ a0, a1, size = 24, margin = false }) { const HigherLogo = styled(TokenLogo)` z-index: 2; - background-color: white; + background-color: none; border-radius: 50%; ` const CoveredLogo = styled(TokenLogo)` position: absolute; left: ${({ sizeraw }) => (sizeraw / 2).toString() + 'px'}; - background-color: white; + background-color: none; border-radius: 50%; ` diff --git a/src/components/Footer/index.js b/src/components/Footer/index.js index 1c9c357..4524f54 100644 --- a/src/components/Footer/index.js +++ b/src/components/Footer/index.js @@ -6,7 +6,7 @@ import Link from '../Link' const links = [ { url: 'https://cheeseswap.app', text: 'About' }, { url: 'https://docs.cheeseswap.app/', text: 'Docs' }, - { url: 'https://github.com/cheesemakerfarm/cheeseswap-info', text: 'Code' } + { url: 'https://github.com/cheeseswapbsc/cheeseswap-info', text: 'Github' } ] const FooterLink = ({ children, ...rest }) => ( diff --git a/src/components/FormattedName/index.js b/src/components/FormattedName/index.js index 014ba83..d9a7b66 100644 --- a/src/components/FormattedName/index.js +++ b/src/components/FormattedName/index.js @@ -12,7 +12,7 @@ const TextWrapper = styled.div` cursor: pointer; } - @media screen and (max-width: 600px) { + @media screen and (max-width: 800px) { font-size: ${({ adjustSize }) => adjustSize && '16px'}; } ` diff --git a/src/components/GlobalChart/index.js b/src/components/GlobalChart/index.js index e9e9e09..a1785be 100644 --- a/src/components/GlobalChart/index.js +++ b/src/components/GlobalChart/index.js @@ -91,12 +91,12 @@ const GlobalChart = ({ display }) => { title="Liquidity" field="totalLiquidityUSD" width={width} - type={CHART_TYPES.AREA} + type={CHART_TYPES.BAR} /> )} {chartDataFiltered && chartView === CHART_VIEW.VOLUME && ( -