File tree Expand file tree Collapse file tree
packages/uniswap/src/features/transactions Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11IPFS hash of the deployment:
2- - CIDv0: `QmXgdNDbCqQWUQK8hSAMb9b5UoBL7Zitt4iBUeGoejLAsG `
3- - CIDv1: `bafybeiek25d3hnl3wixmotajlx4lt5rals45etkdrzbmyoup7xinftsxl4 `
2+ - CIDv0: `QmYspBNPhKLM5x5H3iXQtHeMpCf3SpEg9thsoyDUco2cBK `
3+ - CIDv1: `bafybeie4sckqrwo64q345nauc4gmqfw3oy2oevjqyvz6qicekmtmi2qy5i `
44
55The latest release is always mirrored at [app.uniswap.org](https://app.uniswap.org).
66
@@ -10,5 +10,5 @@ You can also access the Uniswap Interface from an IPFS gateway.
1010Your Uniswap settings are never remembered across different URLs.
1111
1212IPFS gateways:
13- - https://bafybeiek25d3hnl3wixmotajlx4lt5rals45etkdrzbmyoup7xinftsxl4 .ipfs.dweb.link/
14- - [ipfs://QmXgdNDbCqQWUQK8hSAMb9b5UoBL7Zitt4iBUeGoejLAsG /](ipfs://QmXgdNDbCqQWUQK8hSAMb9b5UoBL7Zitt4iBUeGoejLAsG /)
13+ - https://bafybeie4sckqrwo64q345nauc4gmqfw3oy2oevjqyvz6qicekmtmi2qy5i .ipfs.dweb.link/
14+ - [ipfs://QmYspBNPhKLM5x5H3iXQtHeMpCf3SpEg9thsoyDUco2cBK /](ipfs://QmYspBNPhKLM5x5H3iXQtHeMpCf3SpEg9thsoyDUco2cBK /)
Original file line number Diff line number Diff line change 1- web/5.141.11
1+ web/5.141.12
Original file line number Diff line number Diff line change @@ -6,7 +6,14 @@ import { UserRejectedRequestError } from '~/utils/errors'
66/** Attempts to extract a string from an error, based on common error object formats */
77function getReason ( error : any ) : string | undefined {
88 let reason : string | undefined
9+ const seen = new WeakSet ( )
910 while ( error ) {
11+ if ( typeof error === 'object' && seen . has ( error ) ) {
12+ break
13+ }
14+ if ( typeof error === 'object' ) {
15+ seen . add ( error )
16+ }
1017 reason = error . reason ?? error . message ?? reason
1118 if ( typeof error === 'string' ) {
1219 return error
Original file line number Diff line number Diff line change @@ -129,6 +129,8 @@ function isSessionError(error: Error): boolean {
129129 e = e . originalError
130130 } else if ( e instanceof Error ) {
131131 e = e . cause
132+ } else {
133+ break
132134 }
133135 }
134136
You can’t perform that action at this time.
0 commit comments