Skip to content

Commit 466f766

Browse files
authored
Merge pull request #13477 from ethereum/staging
Deploy v8.8.0
2 parents c7d5f7c + a7149cc commit 466f766

File tree

937 files changed

+9098
-4715
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

937 files changed

+9098
-4715
lines changed

.all-contributorsrc

Lines changed: 67 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11320,7 +11320,8 @@
1132011320
"avatar_url": "https://avatars.githubusercontent.com/u/71248977?v=4",
1132111321
"profile": "https://github.com/UNOFFICIALbgd",
1132211322
"contributions": [
11323-
"bug"
11323+
"bug",
11324+
"doc"
1132411325
]
1132511326
},
1132611327
{
@@ -12249,7 +12250,8 @@
1224912250
"avatar_url": "https://avatars.githubusercontent.com/u/73983677?v=4",
1225012251
"profile": "https://github.com/omahs",
1225112252
"contributions": [
12252-
"translation"
12253+
"translation",
12254+
"maintenance"
1225312255
]
1225412256
},
1225512257
{
@@ -12278,6 +12280,69 @@
1227812280
"contributions": [
1227912281
"content"
1228012282
]
12283+
},
12284+
{
12285+
"login": "sandeepV2",
12286+
"name": "Sandeep Belagavi",
12287+
"avatar_url": "https://avatars.githubusercontent.com/u/52043035?v=4",
12288+
"profile": "https://github.com/sandeepV2",
12289+
"contributions": [
12290+
"bug"
12291+
]
12292+
},
12293+
{
12294+
"login": "codingmickey",
12295+
"name": "Kartik Jolapara",
12296+
"avatar_url": "https://avatars.githubusercontent.com/u/42518907?v=4",
12297+
"profile": "https://github.com/codingmickey",
12298+
"contributions": [
12299+
"code"
12300+
]
12301+
},
12302+
{
12303+
"login": "Ekam-Bitt",
12304+
"name": "Ekam Bitt",
12305+
"avatar_url": "https://avatars.githubusercontent.com/u/74407205?v=4",
12306+
"profile": "https://ekam-bitt.github.io",
12307+
"contributions": [
12308+
"maintenance"
12309+
]
12310+
},
12311+
{
12312+
"login": "iankressin",
12313+
"name": "Ian K. Guimarães",
12314+
"avatar_url": "https://avatars.githubusercontent.com/u/29215044?v=4",
12315+
"profile": "http://iankguimaraes.com",
12316+
"contributions": [
12317+
"maintenance"
12318+
]
12319+
},
12320+
{
12321+
"login": "jncrabb",
12322+
"name": "jncrabb",
12323+
"avatar_url": "https://avatars.githubusercontent.com/u/27811684?v=4",
12324+
"profile": "https://github.com/jncrabb",
12325+
"contributions": [
12326+
"content"
12327+
]
12328+
},
12329+
{
12330+
"login": "bibo7086",
12331+
"name": "Saidu Sokoto",
12332+
"avatar_url": "https://avatars.githubusercontent.com/u/24389200?v=4",
12333+
"profile": "https://github.com/bibo7086",
12334+
"contributions": [
12335+
"content"
12336+
]
12337+
},
12338+
{
12339+
"login": "krishchvn",
12340+
"name": "Krishnakumar Chavan",
12341+
"avatar_url": "https://avatars.githubusercontent.com/u/58606754?v=4",
12342+
"profile": "https://github.com/krishchvn",
12343+
"contributions": [
12344+
"content"
12345+
]
1228112346
}
1228212347
],
1228312348
"contributorsPerLine": 7,

.env.example

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@
1616
# GOOGLE_API_KEY=
1717
# GOOGLE_CALENDAR_ID=
1818

19+
# Dune Analytics API key (required for total eth staked)
20+
# DUNE_API_KEY=
21+
1922
# Matomo environment (URL and site ID required for analytics)
2023
NEXT_PUBLIC_MATOMO_URL=
2124
NEXT_PUBLIC_MATOMO_SITE_ID=

.github/workflows/chromatic.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ on:
1717
- "src/layouts/**/*"
1818
- "src/@chakra-ui/**/*"
1919
- ".storybook/**/*"
20+
- "tailwind.config.ts"
21+
- "src/styles/**/*"
2022

2123
# List of jobs
2224
jobs:

.lintstagedrc.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ const buildEslintCommand = (filenames) =>
55
.map((f) => path.relative(process.cwd(), f))
66
.join(" --file ")}`
77

8+
const formatCommand = "prettier --write"
9+
810
module.exports = {
9-
"*.{js,jsx,ts,tsx}": [buildEslintCommand],
11+
"*.{js,jsx,ts,tsx}": [buildEslintCommand, formatCommand],
1012
}

.prettierrc

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,8 @@
33
"semi": false,
44
"singleQuote": false,
55
"tabWidth": 2,
6-
"trailingComma": "es5"
7-
}
6+
"trailingComma": "es5",
7+
"plugins": [
8+
"prettier-plugin-tailwindcss"
9+
]
10+
}

.storybook/ChakraDecorator.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import { useEffect, useMemo, useState } from "react"
12
import {
23
ChakraBaseProvider,
34
extendBaseTheme,
@@ -6,7 +7,7 @@ import {
67
import type { Decorator } from "@storybook/react"
78

89
import theme from "../src/@chakra-ui/theme"
9-
import { useEffect, useMemo, useState } from "react"
10+
1011
import i18n from "./i18next"
1112

1213
type DecoratorProps = Parameters<Decorator>

.storybook/main.ts

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,16 @@ const config: StorybookConfig = {
2222
],
2323
addons: [
2424
"@storybook/addon-links",
25-
"@storybook/addon-essentials",
25+
{
26+
name: "@storybook/addon-essentials",
27+
options: {
28+
backgrounds: false,
29+
},
30+
},
2631
"@storybook/addon-interactions",
2732
"storybook-react-i18next",
28-
"@chromatic-com/storybook"
33+
"@storybook/addon-themes",
34+
"@chromatic-com/storybook",
2935
],
3036
staticDirs: ["../public"],
3137
framework: {
@@ -73,7 +79,7 @@ const config: StorybookConfig = {
7379
},
7480
},
7581

76-
reactDocgen: "react-docgen-typescript"
82+
reactDocgen: "react-docgen-typescript",
7783
},
7884
}
7985
export default config

.storybook/modes.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { baseLocales } from "./i18next"
2-
import { chakraBreakpointArray } from "./preview"
2+
import { breakpointSet } from "./preview"
33

4-
export const viewportModes = chakraBreakpointArray.reduce<{
4+
export const viewportModes = breakpointSet.reduce<{
55
[mode: string]: { viewport: string }
66
}>((arr, [token]) => {
77
return {

.storybook/preview-head.html

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,3 @@
1-
<style type="text/css">
2-
3-
:root {
4-
--font-inter: 'Inter', sans-serif;
5-
--font-mono: "IBM Plex Mono", Courier, monospace;
6-
}
7-
8-
</style>
91

102
<link rel="preload" href="/fonts/inter/latin.woff2" as="font" type="font/woff2" crossorigin="anonymous" />
11-
<link rel="preload" href="/fonts/ibm-plex-mono/IBMPlexMono-Regular.ttf" as="font" type="font/ttf" crossorigin="anonymous" />
3+
<link rel="preload" href="/fonts/ibm-plex-mono/IBMPlexMono-Regular.ttf" as="font" type="font/ttf" crossorigin="anonymous" />

.storybook/preview.ts

Lines changed: 0 additions & 95 deletions
This file was deleted.

0 commit comments

Comments
 (0)