mirror of
https://github.com/vacp2p/linea-monorepo.git
synced 2026-01-09 04:08:01 -05:00
* feat: linea bridge ui refresh (#597) * feat: linea bridge ui refresh * feat: improve ui components * chore: restore layout.tsx * chore: update destination address modal * chore: update bridge ui by feedback chore: update bridge ui by feedback * chore: add skeleton loader * chore: update header nav * feat: update new ui * chore: fix skeleton * fix: build issue --------- Signed-off-by: Victorien Gauch <85494462+VGau@users.noreply.github.com> Co-authored-by: Victorien Gauch <85494462+VGau@users.noreply.github.com> Co-authored-by: VGau <victorien.gauch@consensys.net> * feat: add dynamic * fix: update lock file * fix: change font size and all rem values * feat: add currency state, amount, prices management * feat: add fees calculation * fix: remove react hook form and create a form store * feat: add bridging feature * fix: bridging issue * fix: limit number of decimals for gas fees * feat: add history * fix: remove old code + remove dependencies * fix: clean folders * fix: manual claiming issue * fix: remove warnings and optimize rerenders * fix: adjust ui + fix network switching * fix: update bridge ui dockerfile and github ci * fix: update button text, input styling and history styling * fix: add cctp deposit feature + cctp util functions and hooks * feature toggle done for getTokenConfig (#780) * fix: fees calculation issue (#781) * [Feat] Bridge UI v2 - Transaction List with CCTPV2 transactions (#783) * much of fetchCCTPBridgeEvents * add getClaimTx --------- Signed-off-by: kyzooghost <73516204+kyzooghost@users.noreply.github.com> * fix: token history issue * fix: history issue for erc20 + add confirm address modal * fix: claiming issue * feat: add usdc banner * fix: update usdc banner message * fix: update usdc banner message * fix: update usdc banner message * fix: update bridge ui e2e tests ci * fix: update min storage version --------- Signed-off-by: Victorien Gauch <85494462+VGau@users.noreply.github.com> Signed-off-by: kyzooghost <73516204+kyzooghost@users.noreply.github.com> Co-authored-by: viphan007 <106945122+viphan007@users.noreply.github.com> Co-authored-by: kyzooghost <73516204+kyzooghost@users.noreply.github.com>
13 lines
450 B
JavaScript
13 lines
450 B
JavaScript
/* eslint-env node */
|
|
module.exports = {
|
|
plugins: ["react", "@typescript-eslint"],
|
|
extends: ["../.eslintrc.js", "next", "next/core-web-vitals", "plugin:@typescript-eslint/recommended"],
|
|
rules: {
|
|
"@typescript-eslint/no-unused-vars": "warn",
|
|
"@typescript-eslint/no-explicit-any": "warn",
|
|
"@typescript-eslint/no-duplicate-imports": "off",
|
|
"@typescript-eslint/no-var-requires": "off",
|
|
"react/react-in-jsx-scope": "off",
|
|
},
|
|
};
|