ci(release): publish latest release

parent 3d23c2e7
IPFS hash of the deployment: IPFS hash of the deployment:
- CIDv0: `QmdbU9rZkWxKta3MZBfefXEr93qjHYPYvB1C5dr8ndr4dR` - CIDv0: `QmdhNVNTTE8WpUyhrkdiNQz5rLkUF7wyDC8sJ9aA1yDQtu`
- CIDv1: `bafybeihcvmkix5keffnjvlvhfy2vse7m73mkqxorpupokxoqjh55wd426q` - CIDv1: `bafybeihefyuu3tgh7s3zrkveulspuate3kjfrqoler2mmqvefxldfnmudy`
The latest release is always mirrored at [app.uniswap.org](https://app.uniswap.org). The latest release is always mirrored at [app.uniswap.org](https://app.uniswap.org).
...@@ -10,15 +10,15 @@ You can also access the Uniswap Interface from an IPFS gateway. ...@@ -10,15 +10,15 @@ You can also access the Uniswap Interface from an IPFS gateway.
Your Uniswap settings are never remembered across different URLs. Your Uniswap settings are never remembered across different URLs.
IPFS gateways: IPFS gateways:
- https://bafybeihcvmkix5keffnjvlvhfy2vse7m73mkqxorpupokxoqjh55wd426q.ipfs.dweb.link/ - https://bafybeihefyuu3tgh7s3zrkveulspuate3kjfrqoler2mmqvefxldfnmudy.ipfs.dweb.link/
- https://bafybeihcvmkix5keffnjvlvhfy2vse7m73mkqxorpupokxoqjh55wd426q.ipfs.cf-ipfs.com/ - https://bafybeihefyuu3tgh7s3zrkveulspuate3kjfrqoler2mmqvefxldfnmudy.ipfs.cf-ipfs.com/
- [ipfs://QmdbU9rZkWxKta3MZBfefXEr93qjHYPYvB1C5dr8ndr4dR/](ipfs://QmdbU9rZkWxKta3MZBfefXEr93qjHYPYvB1C5dr8ndr4dR/) - [ipfs://QmdhNVNTTE8WpUyhrkdiNQz5rLkUF7wyDC8sJ9aA1yDQtu/](ipfs://QmdhNVNTTE8WpUyhrkdiNQz5rLkUF7wyDC8sJ9aA1yDQtu/)
### 5.44.3 (2024-08-30) ### 5.44.4 (2024-08-30)
### Bug Fixes ### Bug Fixes
* **web:** add link to vote - prod (#11424) 6c154d5 * **web:** realign explore charts - prod (#11421) a5cfafa
web/5.44.3 web/5.44.4
\ No newline at end of file \ No newline at end of file
...@@ -9,11 +9,10 @@ const DEFAULT_TIME_SELECTOR_OPTIONS = ORDERED_TIMES.map((time: TimePeriod) => ({ ...@@ -9,11 +9,10 @@ const DEFAULT_TIME_SELECTOR_OPTIONS = ORDERED_TIMES.map((time: TimePeriod) => ({
const TimeOptionsContainer = styled(Flex, { const TimeOptionsContainer = styled(Flex, {
justifyContent: 'flex-end', justifyContent: 'flex-end',
mt: '$spacing4',
gap: '$gap4', gap: '$gap4',
borderRadius: '$rounded16', borderRadius: '$rounded16',
height: 40, height: 24,
p: '$spacing4', px: '$spacing4',
width: 'fit-content', width: 'fit-content',
overflow: 'visible', overflow: 'visible',
$md: { $md: {
......
...@@ -63,6 +63,8 @@ const SectionTitle = styled(Text, { ...@@ -63,6 +63,8 @@ const SectionTitle = styled(Text, {
name: 'SectionTitle', name: 'SectionTitle',
fontWeight: '300', fontWeight: '300',
whiteSpace: 'nowrap', whiteSpace: 'nowrap',
color: '$neutral2',
lineHeight: 24,
}) })
function VolumeChartSection({ chainId }: { chainId: SupportedInterfaceChainId }) { function VolumeChartSection({ chainId }: { chainId: SupportedInterfaceChainId }) {
...@@ -112,7 +114,7 @@ function VolumeChartSection({ chainId }: { chainId: SupportedInterfaceChainId }) ...@@ -112,7 +114,7 @@ function VolumeChartSection({ chainId }: { chainId: SupportedInterfaceChainId })
return ( return (
<SectionContainer> <SectionContainer>
<Flex row justifyContent="space-between" alignItems="center"> <Flex row justifyContent="space-between" alignItems="center" mb="$spacing8">
<SectionTitle> <SectionTitle>
<Trans i18nKey="explore.uniVolume" /> <Trans i18nKey="explore.uniVolume" />
</SectionTitle> </SectionTitle>
...@@ -167,7 +169,7 @@ function TVLChartSection({ chainId }: { chainId: SupportedInterfaceChainId }) { ...@@ -167,7 +169,7 @@ function TVLChartSection({ chainId }: { chainId: SupportedInterfaceChainId }) {
return ( return (
<SectionContainer> <SectionContainer>
<SectionTitle color="$neutral2"> <SectionTitle color="$neutral2" mb="$spacing8">
<Trans i18nKey="common.uniswapTVL" /> <Trans i18nKey="common.uniswapTVL" />
</SectionTitle> </SectionTitle>
{(() => { {(() => {
...@@ -200,7 +202,7 @@ function MinimalStatDisplay({ title, value, time }: { title: ReactNode; value: n ...@@ -200,7 +202,7 @@ function MinimalStatDisplay({ title, value, time }: { title: ReactNode; value: n
return ( return (
<SectionContainer> <SectionContainer>
<SectionTitle color="$neutral2">{title}</SectionTitle> <SectionTitle>{title}</SectionTitle>
<Text variant="heading3">{formatFiatPrice({ price: value, type: NumberType.ChartFiatValue })}</Text> <Text variant="heading3">{formatFiatPrice({ price: value, type: NumberType.ChartFiatValue })}</Text>
{time && ( {time && (
<Text variant="body4" fontWeight="200" color="$neutral2"> <Text variant="body4" fontWeight="200" color="$neutral2">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment