Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v1.8.0 #4

Closed
wants to merge 23 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
d034f64
tokens sorting
isstuev Jul 18, 2023
1bbdd6a
[skip ci] contribution guide and readme update
tom2drum Jul 26, 2023
b65d96a
[skip ci] Update README.md
tom2drum Jul 26, 2023
d69b809
ENVs integrity check (#1039)
tom2drum Jul 26, 2023
cbcd175
[skip ci] remove concurrency for release workflow
tom2drum Jul 27, 2023
a44bc35
Merge pull request #1027 from blockscout/token-sortings
isstuev Jul 28, 2023
b0593fc
[skip ci] add dev container config
tom2drum Jul 28, 2023
a65ef55
Merge branch 'main' of github.com:blockscout/frontend
tom2drum Jul 28, 2023
4930181
hide add to wallet button if no rpc url
isstuev Jul 31, 2023
38c2538
fix envs schems
tom2drum Jul 31, 2023
b763fa4
beacon network currency symbol
isstuev Aug 1, 2023
8078b93
404 if marketplace is not configured
isstuev Jul 31, 2023
6a2ec0e
Merge pull request #1048 from blockscout/no-rpc-no-add-network
isstuev Aug 1, 2023
db17f61
fix
isstuev Aug 1, 2023
c41fef8
Merge pull request #1051 from blockscout/withdrawals-curr
isstuev Aug 1, 2023
bbbbdfe
lower case
isstuev Aug 2, 2023
6655687
image build process improvements (#1045)
tom2drum Aug 2, 2023
7a6afac
remove fallback url for token icon to trust wallet assets (#1042)
tom2drum Aug 2, 2023
727e88a
disable focus state for buttons on mobile (#1043)
tom2drum Aug 2, 2023
35a1c90
[skip ci] fix typo
tom2drum Aug 2, 2023
e44179c
Merge pull request #1054 from blockscout/lower-case
isstuev Aug 2, 2023
b38b5a8
Moving blockscout deployment to new helm chart (#1059)
nzenchik Aug 2, 2023
908543b
support 429 "Too many requests" API error (#1004)
tom2drum Aug 2, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"name": "blockscout dev",
"image": "mcr.microsoft.com/devcontainers/typescript-node:18",
"forwardPorts": [ 3000 ],
"customizations": {
"vscode": {
"settings": {
"terminal.integrated.defaultProfile.linux": "zsh",
"terminal.integrated.profiles.linux": {
"zsh": {
"path": "/bin/zsh"
}
}
},
"extensions": [
"streetsidesoftware.code-spell-checker",
"formulahendry.auto-close-tag",
"formulahendry.auto-rename-tag",
"dbaeumer.vscode-eslint",
"eamodio.gitlens",
"yatki.vscode-surround",
"simonsiefke.svg-preview"
]
}
},
"features": {
"ghcr.io/devcontainers-contrib/features/zsh-plugins:0": {
"plugins": "npm",
"omzPlugins": "https://github.com/zsh-users/zsh-autosuggestions"
}
}
}
7 changes: 6 additions & 1 deletion .dockerignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
Dockerfile
.dockerignore
node_modules
/**/node_modules
node_modules_linux
npm-debug.log
README.md
.next
.git
.git
*.tsbuildinfo
.eslintcache
/test-results/
/playwright-report/
3 changes: 2 additions & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ SENTRY_CSP_REPORT_URI=xxx
NEXT_PUBLIC_WALLET_CONNECT_PROJECT_ID=xxx
NEXT_PUBLIC_RE_CAPTCHA_APP_SITE_KEY=xxx
NEXT_PUBLIC_GOOGLE_ANALYTICS_PROPERTY_ID=UA-XXXXXX-X
NEXT_PUBLIC_MIXPANEL_PROJECT_TOKEN=xxx
NEXT_PUBLIC_MIXPANEL_PROJECT_TOKEN=xxx
NEXT_PUBLIC_AUTH0_CLIENT_ID=xxx
80 changes: 0 additions & 80 deletions .env.template

This file was deleted.

3 changes: 2 additions & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
node_modules
node_modules_linux

playwright/envs.js
playwright/envs.js
deploy/tools/envs-validator/index.js
2 changes: 1 addition & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ module.exports = {
},
},
{
files: [ 'configs/**/*.js', 'configs/**/*.ts', '*.config.ts', 'playwright/**/*.ts' ],
files: [ 'configs/**/*.js', 'configs/**/*.ts', '*.config.ts', 'playwright/**/*.ts', 'deploy/tools/**/*.ts' ],
rules: {
// for configs allow to consume env variables from process.env directly
'no-restricted-properties': [ 0 ],
Expand Down
4 changes: 0 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,6 @@ on:
release:
types: [ released ]

concurrency:
group: ${{ github.workflow }}-${{ github.ref }} # Release-refs/tags/v1.0.0
cancel-in-progress: true

jobs:
remove_prerelease_label:
name: Remove pre-release label from issues
Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,4 @@ yarn-error.log*
/playwright/.browser/
/playwright/envs.js

**.dec**
**.dec**
6 changes: 6 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
{
"recommendations": [
"streetsidesoftware.code-spell-checker",
"formulahendry.auto-close-tag",
"formulahendry.auto-rename-tag",
"dbaeumer.vscode-eslint",
"eamodio.gitlens",
"ms-vscode-remote.remote-containers",
"ms-azuretools.vscode-docker",
"github.vscode-pull-request-github",
"yatki.vscode-surround",
"simonsiefke.svg-preview"
]
}
20 changes: 10 additions & 10 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
// DEV SERVER
{
"type": "shell",
"command": "yarn dev:${input:devServerConfig}",
"command": "yarn dev:preset ${input:dev_config_preset}",
"problemMatcher": [],
"label": "dev server",
"detail": "start local dev server",
Expand Down Expand Up @@ -243,11 +243,11 @@
}
},
{
"type": "npm",
"script": "start:docker:poa_core",
"type": "shell",
"command": "yarn start:docker:preset ${input:dev_config_preset}",
"problemMatcher": [],
"label": "docker: run poa",
"detail": "run docker container for POA network",
"label": "docker: run",
"detail": "run docker container with env preset",
"presentation": {
"reveal": "always",
"panel": "shared",
Expand Down Expand Up @@ -311,17 +311,17 @@
},
{
"type": "pickString",
"id": "devServerConfig",
"description": "Choose dev server config:",
"id": "dev_config_preset",
"description": "Choose dev server config preset:",
"options": [
"main",
"main:L2",
"main.L2",
"poa_core",
"eth_goerli",
"eth",
"local",
"localhost",
],
"default": ""
"default": "main"
},
],
}
73 changes: 73 additions & 0 deletions CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
# Contributor Covenant Code of Conduct

## Our Pledge

In the interest of fostering an open and welcoming environment, we as
contributors and maintainers pledge to making participation in our project and
our community a harassment-free experience for everyone, regardless of age, body
size, disability, ethnicity, gender identity and expression, level of experience,
education, socio-economic status, nationality, personal appearance, race,
religion, or sexual identity and orientation.

## Our Standards

Examples of behavior that contributes to creating a positive environment
include:

* Using welcoming and inclusive language
* Being respectful of differing viewpoints and experiences
* Gracefully accepting constructive criticism
* Focusing on what is best for the community
* Showing empathy towards other community members

Examples of unacceptable behavior by participants include:

* The use of sexualized language or imagery and unwelcome sexual attention or
advances
* Trolling, insulting/derogatory comments, and personal or political attacks
* Public or private harassment
* Publishing others' private information, such as a physical or electronic
address, without explicit permission
* Other conduct which could reasonably be considered inappropriate in a
professional setting

## Our Responsibilities

Project maintainers are responsible for clarifying the standards of acceptable
behavior and are expected to take appropriate and fair corrective action in
response to any instances of unacceptable behavior.

Project maintainers have the right and responsibility to remove, edit, or
reject comments, commits, code, wiki edits, issues, and other contributions
that are not aligned to this Code of Conduct, or to ban temporarily or
permanently any contributor for other behaviors that they deem inappropriate,
threatening, offensive, or harmful.

## Scope

This Code of Conduct applies both within project spaces and in public spaces
when an individual is representing the project or its community. Examples of
representing a project or community include using an official project e-mail
address, posting via an official social media account, or acting as an appointed
representative at an online or offline event. Representation of a project may be
further defined and clarified by project maintainers.

## Enforcement

Instances of abusive, harassing, or otherwise unacceptable behavior may be
reported by contacting the project team at andrew@poa.network. All
complaints will be reviewed and investigated and will result in a response that
is deemed necessary and appropriate to the circumstances. The project team is
obligated to maintain confidentiality with regard to the reporter of an incident.
Further details of specific enforcement policies may be posted separately.

Project maintainers who do not follow or enforce the Code of Conduct in good
faith may face temporary or permanent repercussions as determined by other
members of the project's leadership.

## Attribution

This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html

[homepage]: https://www.contributor-covenant.org
Loading
Loading