Skip to content

Commit cc68319

Browse files
Merge remote-tracking branch 'origin/dev' into refactor/update-hero-ds
2 parents ed2310f + 5509837 commit cc68319

File tree

1,282 files changed

+11082
-7467
lines changed

Some content is hidden

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

1,282 files changed

+11082
-7467
lines changed

.all-contributorsrc

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12114,6 +12114,60 @@
1211412114
"contributions": [
1211512115
"code"
1211612116
]
12117+
},
12118+
{
12119+
"login": "kyndrawynne",
12120+
"name": "kyndrawynne",
12121+
"avatar_url": "https://avatars.githubusercontent.com/u/108100622?v=4",
12122+
"profile": "https://github.com/kyndrawynne",
12123+
"contributions": [
12124+
"bug"
12125+
]
12126+
},
12127+
{
12128+
"login": "stolab",
12129+
"name": "stolab",
12130+
"avatar_url": "https://avatars.githubusercontent.com/u/144235139?v=4",
12131+
"profile": "https://github.com/stolab",
12132+
"contributions": [
12133+
"content"
12134+
]
12135+
},
12136+
{
12137+
"login": "jacobjelen",
12138+
"name": "jacobjelen",
12139+
"avatar_url": "https://avatars.githubusercontent.com/u/6750124?v=4",
12140+
"profile": "http://www.jacobjelen.com",
12141+
"contributions": [
12142+
"bug"
12143+
]
12144+
},
12145+
{
12146+
"login": "Dennayz",
12147+
"name": "Dennis Zhang",
12148+
"avatar_url": "https://avatars.githubusercontent.com/u/58843979?v=4",
12149+
"profile": "https://github.com/Dennayz",
12150+
"contributions": [
12151+
"tool"
12152+
]
12153+
},
12154+
{
12155+
"login": "JanetMo",
12156+
"name": "Marlene Marz",
12157+
"avatar_url": "https://avatars.githubusercontent.com/u/42071757?v=4",
12158+
"profile": "https://github.com/JanetMo",
12159+
"contributions": [
12160+
"content"
12161+
]
12162+
},
12163+
{
12164+
"login": "mahnunchik",
12165+
"name": "Evgeny",
12166+
"avatar_url": "https://avatars.githubusercontent.com/u/780935?v=4",
12167+
"profile": "https://github.com/mahnunchik",
12168+
"contributions": [
12169+
"tool"
12170+
]
1211712171
}
1211812172
],
1211912173
"contributorsPerLine": 7,

.eslintrc.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@
3030
["^@/data"],
3131
// From the `constants` directory.
3232
["^@/lib/constants"],
33+
// From the `.storybook/utils` file
34+
["^@/storybook-utils"],
3335
// Parent imports. Put `..` last.
3436
["^\\.\\.(?!/?$)", "^\\.\\./?$"],
3537
// Other relative imports. Put same-folder imports and `.` last.

.github/ISSUE_TEMPLATE/bug_report.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Bug report
22
description: Create a report to help us improve
33
title: Bug report
4-
labels: ["bug :bug:"]
4+
labels: ["bug 🐛"]
55
body:
66
- type: textarea
77
id: bug_report_description

.github/ISSUE_TEMPLATE/event_listing.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Event listing
22
description: Request an Ethereum event for listing
33
title: Event listing
4-
labels: ["event :calendar:"]
4+
labels: ["event 📅"]
55
body:
66
- type: input
77
id: event_listing_name

.github/ISSUE_TEMPLATE/feature_request.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Feature request
22
description: Suggest an idea for this project
33
title: Feature request
4-
labels: ["feature :sparkles:"]
4+
labels: ["feature "]
55
body:
66
- type: textarea
77
id: feature_request_description

.github/ISSUE_TEMPLATE/suggest_dapp.yaml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Suggest a dapp
22
description: Suggest a new dapp to list on ethereum.org
33
title: Suggest a dapp
4-
labels: ["feature :sparkles:", "content :fountain_pen:"]
4+
labels: ["product 🧰"]
55
body:
66
- type: markdown
77
attributes:
@@ -24,6 +24,13 @@ body:
2424
description: Please provide the official name of the dapp
2525
validations:
2626
required: true
27+
- type: input
28+
id: dapp_url
29+
attributes:
30+
label: Dapp URL
31+
description: Please provide a URL to the dapp
32+
validations:
33+
required: true
2734
- type: textarea
2835
id: dapp_description
2936
attributes:

.github/ISSUE_TEMPLATE/suggest_dev_tool.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Suggest a developer tool
22
description: Anything a developer can use when building with Ethereum
33
title: Suggest a developer tool
4-
labels: ["feature :sparkles:", "content :fountain_pen:"]
4+
labels: ["product 🧰"]
55
body:
66
- type: markdown
77
attributes:

.github/ISSUE_TEMPLATE/suggest_exchange.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Suggest an exchange
22
description: Suggest a new exchange to list on ethereum.org
33
title: Suggest an exchange
4-
labels: ["content :fountain_pen:"]
4+
labels: ["product 🧰"]
55
body:
66
- type: markdown
77
attributes:

.github/ISSUE_TEMPLATE/suggest_glossary_term.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Suggest a glossary term
22
description: Suggest a new ethereum.org glossary term
33
title: Suggest a glossary term
4-
labels: ["feature :sparkles:", "content :fountain_pen:"]
4+
labels: ["feature ", "content 🖋️"]
55
body:
66
- type: checkboxes
77
id: glossary_checklist

.github/ISSUE_TEMPLATE/suggest_layer2.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Suggest a Layer 2
22
description: Suggest a Layer 2 to list on ethereum.org
33
title: Suggest a Layer 2
4-
labels: ["feature :sparkles:", "content :fountain_pen:"]
4+
labels: ["product 🧰"]
55
body:
66
- type: markdown
77
attributes:

0 commit comments

Comments
 (0)