ci(release): publish latest release

parent ccecb657
IPFS hash of the deployment: IPFS hash of the deployment:
- CIDv0: `QmYjBEq2Z9Ya4rgSfzw4kyr2m3ihsk87Mnr7fKyBbHXsFN` - CIDv0: `QmYH4Tb7M6EoFHKRNyCBHHFeNadwnrmibmQmknWHSQxj8R`
- CIDv1: `bafybeie2livmn2qvua4kx42aaenzc7ukda3dnsjm3n5ovk7n256gajg5xe` - CIDv1: `bafybeietvftf6vmileh7kp3srslms4azyza5cmgu6ttrzikjzz4dkrryxy`
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://bafybeie2livmn2qvua4kx42aaenzc7ukda3dnsjm3n5ovk7n256gajg5xe.ipfs.dweb.link/ - https://bafybeietvftf6vmileh7kp3srslms4azyza5cmgu6ttrzikjzz4dkrryxy.ipfs.dweb.link/
- https://bafybeie2livmn2qvua4kx42aaenzc7ukda3dnsjm3n5ovk7n256gajg5xe.ipfs.cf-ipfs.com/ - https://bafybeietvftf6vmileh7kp3srslms4azyza5cmgu6ttrzikjzz4dkrryxy.ipfs.cf-ipfs.com/
- [ipfs://QmYjBEq2Z9Ya4rgSfzw4kyr2m3ihsk87Mnr7fKyBbHXsFN/](ipfs://QmYjBEq2Z9Ya4rgSfzw4kyr2m3ihsk87Mnr7fKyBbHXsFN/) - [ipfs://QmYH4Tb7M6EoFHKRNyCBHHFeNadwnrmibmQmknWHSQxj8R/](ipfs://QmYH4Tb7M6EoFHKRNyCBHHFeNadwnrmibmQmknWHSQxj8R/)
## 5.54.0 (2024-10-23) ## 5.55.0 (2024-10-24)
### Features ### Features
* **web:** add mainnet to bridge banner - prod (#13298) 7d8d807 * **web:** only show bridging card on swap tab- prod (#13338) 95e03e4
web/5.54.0 web/5.55.0
\ No newline at end of file \ No newline at end of file
...@@ -184,7 +184,6 @@ export function Swap({ ...@@ -184,7 +184,6 @@ export function Swap({
swapRedirectCallback={swapRedirectCallback} swapRedirectCallback={swapRedirectCallback}
prefilledState={prefilledState} prefilledState={prefilledState}
/> />
<SwapBottomCard />
</Flex> </Flex>
</SwapFormContextProvider> </SwapFormContextProvider>
</PrefetchBalancesWrapper> </PrefetchBalancesWrapper>
...@@ -374,16 +373,19 @@ function UniversalSwapFlow({ ...@@ -374,16 +373,19 @@ function UniversalSwapFlow({
</Flex> </Flex>
)} )}
{currentTab === SwapTab.Swap && ( {currentTab === SwapTab.Swap && (
<SwapFlow <Flex gap="$spacing16">
customSettings={WEB_CUSTOM_SWAP_SETTINGS} <SwapFlow
hideHeader={hideHeader} customSettings={WEB_CUSTOM_SWAP_SETTINGS}
hideFooter={hideFooter} hideHeader={hideHeader}
onClose={noop} hideFooter={hideFooter}
swapRedirectCallback={swapRedirectCallback} onClose={noop}
swapCallback={swapCallback} swapRedirectCallback={swapRedirectCallback}
wrapCallback={wrapCallback} swapCallback={swapCallback}
prefilledState={prefilledState} wrapCallback={wrapCallback}
/> prefilledState={prefilledState}
/>
<SwapBottomCard />
</Flex>
)} )}
{currentTab === SwapTab.Limit && <LimitFormWrapper onCurrencyChange={onCurrencyChange} />} {currentTab === SwapTab.Limit && <LimitFormWrapper onCurrencyChange={onCurrencyChange} />}
{currentTab === SwapTab.Send && ( {currentTab === SwapTab.Send && (
......
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