fix: workflow fixes and vanitygen rebrand

Workflows:
- lock.yml: GH_PAT_BOT → github.token
- chain-endpoints.yml: repo name polkadot-js/apps → pezkuwichain/pezkuwi-apps
- test-nightly.yml: add 120min timeout
- auto-approve.yml: update token and authors
- auto-merge.yml: update token

Dependencies:
- @polkadot/vanitygen → @pezkuwi/vanitygen
This commit is contained in:
github-actions[bot]
2026-01-22 15:42:45 +03:00
parent 9a2dca4b03
commit 0dfd378e2e
7 changed files with 15 additions and 11 deletions
+1 -1
View File
@@ -21,7 +21,7 @@
"@pezkuwi/react-components": "^1.0.2-1-x",
"@pezkuwi/react-hooks": "^1.0.2-1-x",
"@pezkuwi/util": "^14.0.11",
"@polkadot/vanitygen": "^0.63.18",
"@pezkuwi/vanitygen": "^1.0.1",
"detect-browser": "^5.3.0",
"file-saver": "^2.0.5"
},
+4 -4
View File
@@ -1,13 +1,13 @@
// Copyright 2017-2026 @pezkuwi/app-accounts authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { GeneratorMatch, GeneratorMatches, GeneratorResult } from '@polkadot/vanitygen/types';
import type { GeneratorMatch, GeneratorMatches, GeneratorResult } from '@pezkuwi/vanitygen/types';
import type { ActionStatus } from '@pezkuwi/react-components/Status/types';
import type { KeypairType } from '@pezkuwi/util-crypto/types';
import generator from '@polkadot/vanitygen/generator';
import matchRegex from '@polkadot/vanitygen/regex';
import generatorSort from '@polkadot/vanitygen/sort';
import generator from '@pezkuwi/vanitygen/generator';
import matchRegex from '@pezkuwi/vanitygen/regex';
import generatorSort from '@pezkuwi/vanitygen/sort';
import React, { useCallback, useEffect, useMemo, useRef, useState } from 'react';
import { Button, Dropdown, Input, styled, Table } from '@pezkuwi/react-components';