Skip to content

Commit

Permalink
ci(release): publish latest release
Browse files Browse the repository at this point in the history
  • Loading branch information
hello-happy-puppy committed Aug 30, 2024
1 parent 3d23c2e commit f230d55
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 14 deletions.
14 changes: 7 additions & 7 deletions RELEASE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
IPFS hash of the deployment:
- CIDv0: `QmdbU9rZkWxKta3MZBfefXEr93qjHYPYvB1C5dr8ndr4dR`
- CIDv1: `bafybeihcvmkix5keffnjvlvhfy2vse7m73mkqxorpupokxoqjh55wd426q`
- CIDv0: `QmdhNVNTTE8WpUyhrkdiNQz5rLkUF7wyDC8sJ9aA1yDQtu`
- CIDv1: `bafybeihefyuu3tgh7s3zrkveulspuate3kjfrqoler2mmqvefxldfnmudy`

The latest release is always mirrored at [app.uniswap.org](https://app.uniswap.org).

Expand All @@ -10,15 +10,15 @@ You can also access the Uniswap Interface from an IPFS gateway.
Your Uniswap settings are never remembered across different URLs.

IPFS gateways:
- https://bafybeihcvmkix5keffnjvlvhfy2vse7m73mkqxorpupokxoqjh55wd426q.ipfs.dweb.link/
- https://bafybeihcvmkix5keffnjvlvhfy2vse7m73mkqxorpupokxoqjh55wd426q.ipfs.cf-ipfs.com/
- [ipfs://QmdbU9rZkWxKta3MZBfefXEr93qjHYPYvB1C5dr8ndr4dR/](ipfs://QmdbU9rZkWxKta3MZBfefXEr93qjHYPYvB1C5dr8ndr4dR/)
- https://bafybeihefyuu3tgh7s3zrkveulspuate3kjfrqoler2mmqvefxldfnmudy.ipfs.dweb.link/
- https://bafybeihefyuu3tgh7s3zrkveulspuate3kjfrqoler2mmqvefxldfnmudy.ipfs.cf-ipfs.com/
- [ipfs://QmdhNVNTTE8WpUyhrkdiNQz5rLkUF7wyDC8sJ9aA1yDQtu/](ipfs://QmdhNVNTTE8WpUyhrkdiNQz5rLkUF7wyDC8sJ9aA1yDQtu/)

### 5.44.3 (2024-08-30)
### 5.44.4 (2024-08-30)


### Bug Fixes

* **web:** add link to vote - prod (#11424) 6c154d5
* **web:** realign explore charts - prod (#11421) a5cfafa


2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
web/5.44.3
web/5.44.4
5 changes: 2 additions & 3 deletions apps/web/src/components/Charts/TimeSelector.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,10 @@ const DEFAULT_TIME_SELECTOR_OPTIONS = ORDERED_TIMES.map((time: TimePeriod) => ({

const TimeOptionsContainer = styled(Flex, {
justifyContent: 'flex-end',
mt: '$spacing4',
gap: '$gap4',
borderRadius: '$rounded16',
height: 40,
p: '$spacing4',
height: 24,
px: '$spacing4',
width: 'fit-content',
overflow: 'visible',
$md: {
Expand Down
8 changes: 5 additions & 3 deletions apps/web/src/pages/Explore/charts/ExploreChartsSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,8 @@ const SectionTitle = styled(Text, {
name: 'SectionTitle',
fontWeight: '300',
whiteSpace: 'nowrap',
color: '$neutral2',
lineHeight: 24,
})

function VolumeChartSection({ chainId }: { chainId: SupportedInterfaceChainId }) {
Expand Down Expand Up @@ -112,7 +114,7 @@ function VolumeChartSection({ chainId }: { chainId: SupportedInterfaceChainId })

return (
<SectionContainer>
<Flex row justifyContent="space-between" alignItems="center">
<Flex row justifyContent="space-between" alignItems="center" mb="$spacing8">
<SectionTitle>
<Trans i18nKey="explore.uniVolume" />
</SectionTitle>
Expand Down Expand Up @@ -167,7 +169,7 @@ function TVLChartSection({ chainId }: { chainId: SupportedInterfaceChainId }) {

return (
<SectionContainer>
<SectionTitle color="$neutral2">
<SectionTitle color="$neutral2" mb="$spacing8">
<Trans i18nKey="common.uniswapTVL" />
</SectionTitle>
{(() => {
Expand Down Expand Up @@ -200,7 +202,7 @@ function MinimalStatDisplay({ title, value, time }: { title: ReactNode; value: n

return (
<SectionContainer>
<SectionTitle color="$neutral2">{title}</SectionTitle>
<SectionTitle>{title}</SectionTitle>
<Text variant="heading3">{formatFiatPrice({ price: value, type: NumberType.ChartFiatValue })}</Text>
{time && (
<Text variant="body4" fontWeight="200" color="$neutral2">
Expand Down

0 comments on commit f230d55

Please sign in to comment.