Skip to content

Commit

Permalink
Merge pull request #224 from lidofinance/develop
Browse files Browse the repository at this point in the history
Merge from develop into main
  • Loading branch information
AnnaSila authored Jan 11, 2024
2 parents 7c6e67a + a0dadb9 commit 14e244b
Show file tree
Hide file tree
Showing 102 changed files with 7,019 additions and 889 deletions.
4 changes: 3 additions & 1 deletion .env.sample
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
# EL_RPC_URLS_{CHAIN_ID} list or URLs delimeted by commas, first entry is primary, else are fallbacks
EL_RPC_URLS_1=
EL_RPC_URLS_5=
EL_RPC_URLS_17000=

# supported networks for connecting wallet
SUPPORTED_CHAINS=1,5
SUPPORTED_CHAINS=1,5,17000

# this chain uses when a wallet is not connected
DEFAULT_CHAIN=5
Expand All @@ -20,5 +21,6 @@ CSP_REPORT_URI=
# subgraph urls
SUBGRAPH_MAINNET=https://api.thegraph.com/subgraphs/name/lidofinance/lido
SUBGRAPH_GOERLI=https://api.thegraph.com/subgraphs/name/lidofinance/lido-testnet
SUBGRAPH_HOLESKY=https://api.thegraph.com/subgraphs/name/lidofinance/lido-testnet

WALLETCONNECT_PROJECT_ID=
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
* @lidofinance/lido-eth-ui @lidofinance/lido-qa
* @lidofinance/lido-dao-ops-team @lidofinance/lido-qa
.github @lidofinance/review-gh-workflows
29 changes: 29 additions & 0 deletions .github/workflows/ci-dev-goerli.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: CI Dev Goerli

on:
workflow_dispatch:
push:
branches:
- goerli
paths-ignore:
- ".github/**"

permissions: {}

jobs:
# test:
# ...

deploy:
runs-on: ubuntu-latest
# needs: test
name: Build and deploy
steps:
- name: Testnet deploy
uses: lidofinance/dispatch-workflow@v1
env:
APP_ID: ${{ secrets.APP_ID }}
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
TARGET_REPO: "lidofinance/infra-mainnet"
TARGET_WORKFLOW: "deploy_testnet_easytrack_ui.yaml"
TARGET: "goerli"
4 changes: 2 additions & 2 deletions .github/workflows/ci-dev.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: CI Dev
name: CI Dev Holesky

on:
workflow_dispatch:
Expand All @@ -25,5 +25,5 @@ jobs:
APP_ID: ${{ secrets.APP_ID }}
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
TARGET_REPO: "lidofinance/infra-mainnet"
TARGET_WORKFLOW: "deploy_testnet_easytrack_ui.yaml"
TARGET_WORKFLOW: "deploy_holesky_testnet_easytrack_ui.yaml"
TARGET: "develop"
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,7 @@ yarn-error.log*

# vercel
.vercel

# ide
.idea
.vscode
Loading

0 comments on commit 14e244b

Please sign in to comment.