Skip to content

Commit e4124c8

Browse files
seedenemlowe
andauthored
update electron and isolate api (#2681)
* update electron to latest version simplify and isolate api add double confirmation for send transaction and other commands * remove unused style * fix build * remove unused package * allow chia_farmer.get_reward_targets * remove unused variables fix typo * use translations in confirmation modal * wait for dialog close * use same sandbox for openReactDialog remove registerSchemaAsPrivileged remove args from dialog start * process feedback * update locales * fix select key fix send message to destroyed window * fix eslint * update locales * remove unused variables * simplify audit check * update node 18 => 20 fix npm audit * added all wallet connect commands * move read commands to allowed commands * use correct api.endpoints for dataLayer --------- Co-authored-by: Earle Lowe <e.lowe@chia.net>
1 parent c5ff169 commit e4124c8

245 files changed

Lines changed: 47966 additions & 28697 deletions

File tree

Some content is hidden

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

.github/workflows/audit.yml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ jobs:
2525
fail-fast: false
2626
max-parallel: 4
2727
matrix:
28-
python-version: [3.8]
2928
os: [ubuntu-latest, macos-latest, windows-latest]
3029

3130
steps:
@@ -47,15 +46,12 @@ jobs:
4746
${{ runner.os }}-build-
4847
${{ runner.os }}-
4948
50-
- name: Setup Node 18.x
49+
- name: Setup Node 20.x
5150
uses: actions/setup-node@v4
5251
with:
53-
node-version: "18.x"
52+
node-version: "20.x"
5453

5554
- name: Check npm audit on ${{ matrix.os }}
5655
shell: bash
5756
run: |
58-
npm install
59-
if ! output=$(npm audit --audit-level=high); then echo "$output" && exit 1; fi
60-
echo "$output"
61-
echo "No issues found."
57+
npm audit --audit-level=high

.github/workflows/crowdin-pull.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ concurrency:
2222
jobs:
2323
pull-from-crowdin:
2424
runs-on: [k8s-public]
25-
container: node:18
25+
container: node:20
2626
env:
2727
localization_branch_name: l10n_crowdin_translations
2828
steps:

.github/workflows/crowdin-push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ permissions:
1313
jobs:
1414
push-to-crowdin:
1515
runs-on: [k8s-public]
16-
container: node:18
16+
container: node:20
1717
steps:
1818
- name: Checkout
1919
uses: actions/checkout@v4

.github/workflows/extract-strings.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ jobs:
2626
fetch-depth: 0
2727
token: ${{ secrets.REPO_COMMIT }}
2828

29-
- name: Setup Node 18.x
29+
- name: Setup Node 20.x
3030
uses: actions/setup-node@v4
3131
with:
32-
node-version: "18.x"
32+
node-version: "20.x"
3333

3434
- name: Set up commit signing
3535
uses: Chia-Network/actions/commit-sign/gpg@main

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
18
1+
20

0 commit comments

Comments
 (0)