Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
I
interface
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
LuckySwap
interface
Commits
29fdcb80
Unverified
Commit
29fdcb80
authored
Jul 14, 2022
by
Vignesh Mohankumar
Committed by
GitHub
Jul 14, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
build: upgrade prettier to v2.7.1 (#4109)
* style: prettier based on v2.2 * 2.7.1 instead? * npx * ^
parent
817ea44e
Changes
11
Show whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
104 additions
and
92 deletions
+104
-92
dependabot.yml
.github/dependabot.yml
+4
-4
crowdin-sync.yaml
.github/workflows/crowdin-sync.yaml
+1
-1
test.yml
.github/workflows/test.yml
+2
-2
README.md
README.md
+1
-1
package.json
package.json
+1
-1
index.html
public/index.html
+66
-66
chainInfo.ts
src/constants/chainInfo.ts
+1
-2
useSwapCallback.tsx
src/hooks/useSwapCallback.tsx
+7
-1
README.md
src/locales/README.md
+1
-2
actions.ts
src/state/mint/v3/actions.ts
+3
-2
yarn.lock
yarn.lock
+17
-10
No files found.
.github/dependabot.yml
View file @
29fdcb80
...
...
@@ -2,9 +2,9 @@ version: 2
updates
:
-
package-ecosystem
:
npm
# Files stored in repository root
directory
:
"
/"
directory
:
'
/'
schedule
:
interval
:
"
daily"
interval
:
'
daily'
allow
:
-
dependency-name
:
"
@uniswap/token-lists"
-
dependency-name
:
"
@uniswap/default-token-list"
-
dependency-name
:
'
@uniswap/token-lists'
-
dependency-name
:
'
@uniswap/default-token-list'
.github/workflows/crowdin-sync.yaml
View file @
29fdcb80
...
...
@@ -28,6 +28,6 @@ jobs:
create_pull_request
:
true
pull_request_title
:
'
chore(i18n):
new
Crowdin
translations'
localization_branch_name
:
l10n_crowdin
commit_message
:
"
chore(i18n):
synchronize
translations
from
crowdin
[skip
ci]"
commit_message
:
'
chore(i18n):
synchronize
translations
from
crowdin
[skip
ci]'
env
:
GITHUB_TOKEN
:
${{ secrets.GITHUB_TOKEN }}
.github/workflows/test.yml
View file @
29fdcb80
README.md
View file @
29fdcb80
package.json
View file @
29fdcb80
...
...
@@ -166,7 +166,7 @@
"
polished
"
:
"
^3.3.2
"
,
"
polyfill-object.fromentries
"
:
"
^1.0.1
"
,
"
popper-max-size-modifier
"
:
"
^0.2.0
"
,
"
prettier
"
:
"
^2.
2
.1
"
,
"
prettier
"
:
"
^2.
7
.1
"
,
"
qs
"
:
"
^6.9.4
"
,
"
react
"
:
"
^18.2.0
"
,
"
react-confetti
"
:
"
^6.0.0
"
,
...
...
public/index.html
View file @
29fdcb80
...
...
@@ -24,9 +24,9 @@
-->
<link
rel=
"manifest"
href=
"%PUBLIC_URL%/manifest.json"
/>
<link
rel=
"preconnect"
href=
"https://www.google-analytics.com/"
>
<link
rel=
"preconnect"
href=
"https://www.google-analytics.com/"
/
>
<link
rel=
"preload"
href=
"%PUBLIC_URL%/fonts/Inter-roman.var.woff2"
as=
"font"
type=
"font/woff2"
crossorigin
>
<link
rel=
"preload"
href=
"%PUBLIC_URL%/fonts/Inter-roman.var.woff2"
as=
"font"
type=
"font/woff2"
crossorigin
/
>
<style>
*
{
...
...
@@ -43,9 +43,9 @@
font-style
:
normal
;
font-display
:
block
;
font-named-instance
:
'Regular'
;
src
:
url(%PUBLIC_URL%/fonts/Inter-roman.var.woff2)
format
(
"woff2 supports variations(gvar)"
),
url(%PUBLIC_URL%/fonts/Inter-roman.var.woff2)
format
(
"woff2-variations"
),
url(%PUBLIC_URL%/fonts/Inter-roman.var.woff2)
format
(
"woff2"
);
src
:
url(%PUBLIC_URL%/fonts/Inter-roman.var.woff2)
format
(
'woff2 supports variations(gvar)'
),
url(%PUBLIC_URL%/fonts/Inter-roman.var.woff2)
format
(
'woff2-variations'
),
url(%PUBLIC_URL%/fonts/Inter-roman.var.woff2)
format
(
'woff2'
);
}
@supports
(
font-variation-settings
:
normal
)
{
...
...
@@ -98,7 +98,7 @@
}
@media
(
prefers-color-scheme
:
light
)
{
html
{
background-color
:
#F7F8FA
;
background-color
:
#f7f8fa
;
}
}
</style>
...
...
src/constants/chainInfo.ts
View file @
29fdcb80
...
...
@@ -44,8 +44,7 @@ export interface L2ChainInfo extends BaseChainInfo {
export
type
ChainInfoMap
=
{
readonly
[
chainId
:
number
]:
L1ChainInfo
|
L2ChainInfo
}
&
{
readonly
[
chainId
in
SupportedL2ChainId
]:
L2ChainInfo
}
&
{
readonly
[
chainId
in
SupportedL1ChainId
]:
L1ChainInfo
}
}
&
{
readonly
[
chainId
in
SupportedL1ChainId
]:
L1ChainInfo
}
export
const
CHAIN_INFO
:
ChainInfoMap
=
{
[
SupportedChainId
.
MAINNET
]:
{
...
...
src/hooks/useSwapCallback.tsx
View file @
29fdcb80
...
...
@@ -33,7 +33,13 @@ export function useSwapCallback(
state
,
callback
:
libCallback
,
error
,
}
=
useLibSwapCallBack
({
trade
,
allowedSlippage
,
recipientAddressOrName
:
recipient
,
signatureData
,
deadline
})
}
=
useLibSwapCallBack
({
trade
,
allowedSlippage
,
recipientAddressOrName
:
recipient
,
signatureData
,
deadline
,
})
const
callback
=
useMemo
(()
=>
{
if
(
!
libCallback
||
!
trade
)
{
...
...
src/locales/README.md
View file @
29fdcb80
...
...
@@ -5,4 +5,3 @@
Translation files in this folder are automatically generated from our
[
Crowdin project
](
https://crowdin.com/project/uniswap-interface
)
.
See
[
CONTRIBUTING
](
https://github.com/Uniswap/uniswap-interface/blob/main/CONTRIBUTING.md#translations
)
on how to get started.
src/state/mint/v3/actions.ts
View file @
29fdcb80
...
...
@@ -10,8 +10,9 @@ export enum Bound {
UPPER
=
'
UPPER
'
,
}
export
const
typeInput
=
createAction
<
{
field
:
Field
;
typedValue
:
string
;
noLiquidity
:
boolean
}
>
(
'
mintV3/typeInputMint
'
)
export
const
typeInput
=
createAction
<
{
field
:
Field
;
typedValue
:
string
;
noLiquidity
:
boolean
}
>
(
'
mintV3/typeInputMint
'
)
export
const
typeStartPriceInput
=
createAction
<
{
typedValue
:
string
}
>
(
'
mintV3/typeStartPriceInput
'
)
export
const
typeLeftRangeInput
=
createAction
<
{
typedValue
:
string
}
>
(
'
mintV3/typeLeftRangeInput
'
)
export
const
typeRightRangeInput
=
createAction
<
{
typedValue
:
string
}
>
(
'
mintV3/typeRightRangeInput
'
)
...
...
yarn.lock
View file @
29fdcb80
...
...
@@ -1201,14 +1201,21 @@
resolved "https://registry.npmjs.org/@emotion/hash/-/hash-0.8.0.tgz"
integrity sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==
"@emotion/is-prop-valid@0.8.8":
"@emotion/is-prop-valid@0.8.8"
, "@emotion/is-prop-valid@^0.8.1"
:
version "0.8.8"
resolved "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-0.8.8.tgz"
integrity sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==
dependencies:
"@emotion/memoize" "0.7.4"
"@emotion/memoize@0.7.4":
"@emotion/is-prop-valid@^1.1.0":
version "1.1.3"
resolved "https://registry.yarnpkg.com/@emotion/is-prop-valid/-/is-prop-valid-1.1.3.tgz#f0907a416368cf8df9e410117068e20fe87c0a3a"
integrity sha512-RFg04p6C+1uO19uG8N+vqanzKqiM9eeV1LDOG3bmkYmuOj7NbKNlFC/4EZq5gnwAIlcC/jOT24f8Td0iax2SXA==
dependencies:
"@emotion/memoize" "^0.7.4"
"@emotion/memoize@0.7.4", "@emotion/memoize@^0.7.1", "@emotion/memoize@^0.7.4":
version "0.7.4"
resolved "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.7.4.tgz"
integrity sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==
...
...
@@ -3198,8 +3205,8 @@
resolved "https://registry.npmjs.org/@styled-system/should-forward-prop/-/should-forward-prop-5.1.5.tgz"
integrity sha512-+rPRomgCGYnUIaFabDoOgpSDc4UUJ1KsmlnzcEp0tu5lFrBQKgZclSo18Z1URhaZm7a6agGtS5Xif7tuC2s52Q==
dependencies:
"@emotion/is-prop-valid" "^0.8.
8
"
"@emotion/memoize" "^0.7.
4
"
"@emotion/is-prop-valid" "^0.8.
1
"
"@emotion/memoize" "^0.7.
1
"
styled-system "^5.1.5"
"@styled-system/space@^5.1.2":
...
...
@@ -14617,10 +14624,10 @@ prettier-linter-helpers@^1.0.0:
dependencies:
fast-diff "^1.1.2"
prettier@^2.1.2, prettier@^2.
2
.1:
version "2.
3.2
"
resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.
3.2.tgz#ef280a05ec253712e486233db5c6f23441e7342d
"
integrity sha512-
lnJzDfJ66zkMy58OL5/NY5zp70S7Nz6KqcKkXYzn2tMVrNxvbqaBpg7H3qHaLxCJ5lNMsGuM8+ohS7cZrthdLQ
==
prettier@^2.1.2, prettier@^2.
7
.1:
version "2.
7.1
"
resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.
7.1.tgz#e235806850d057f97bb08368a4f7d899f7760c64
"
integrity sha512-
ujppO+MkdPqoVINuDFDRLClm7D78qbDt0/NR+wp5FqEZOoTNAjPHWj17QRhu7geIHJfcNhRk1XVQmF8Bp3ye+g
==
pretty-bytes@^5.3.0, pretty-bytes@^5.6.0:
version "5.6.0"
...
...
@@ -16839,7 +16846,7 @@ styled-components@^5.3.5:
dependencies:
"@babel/helper-module-imports" "^7.0.0"
"@babel/traverse" "^7.4.5"
"@emotion/is-prop-valid" "^
0.8.8
"
"@emotion/is-prop-valid" "^
1.1.0
"
"@emotion/stylis" "^0.8.4"
"@emotion/unitless" "^0.7.4"
babel-plugin-styled-components ">= 1.12.0"
...
...
@@ -17782,7 +17789,7 @@ use-sidecar@^1.0.1:
detect-node-es "^1.1.0"
tslib "^1.9.3"
use-sync-external-store@1.1.0, use-sync-external-store@^1.
1
.0:
use-sync-external-store@1.1.0, use-sync-external-store@^1.
0
.0:
version "1.1.0"
resolved "https://registry.yarnpkg.com/use-sync-external-store/-/use-sync-external-store-1.1.0.tgz#3343c3fe7f7e404db70f8c687adf5c1652d34e82"
integrity sha512-SEnieB2FPKEVne66NpXPd1Np4R1lTNKfjuy3XdIoPQKYBAFdzbzSZlSn1KJZUiihQLQC5Znot4SBz1EOTBwQAQ==
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment