@metamask/eth-hd-keyring 4.0.2 → 6.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintrc.js +3 -0
- package/.yarn/plugins/@yarnpkg/plugin-allow-scripts.cjs +9 -0
- package/CHANGELOG.md +32 -1
- package/README.md +2 -3
- package/index.js +216 -36
- package/jest.config.js +2 -2
- package/package.json +16 -14
- package/test/index.js +521 -114
- package/.github/CODEOWNERS +0 -4
- package/.github/workflows/build-test.yml +0 -48
- package/.github/workflows/create-release-pr.yml +0 -50
- package/.github/workflows/publish-release.yml +0 -29
- package/.github/workflows/require-additional-reviewer.yml +0 -29
package/.github/CODEOWNERS
DELETED
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
name: Lint and Test
|
|
2
|
-
|
|
3
|
-
on:
|
|
4
|
-
push:
|
|
5
|
-
branches: [main]
|
|
6
|
-
pull_request:
|
|
7
|
-
|
|
8
|
-
jobs:
|
|
9
|
-
lint-test:
|
|
10
|
-
name: Lint and Test
|
|
11
|
-
runs-on: ubuntu-20.04
|
|
12
|
-
strategy:
|
|
13
|
-
matrix:
|
|
14
|
-
node-version: [12.x, 14.x, 16.x]
|
|
15
|
-
steps:
|
|
16
|
-
- uses: actions/checkout@v2
|
|
17
|
-
- name: Use Node.js ${{ matrix.node-version }}
|
|
18
|
-
uses: actions/setup-node@v2
|
|
19
|
-
with:
|
|
20
|
-
node-version: ${{ matrix.node-version }}
|
|
21
|
-
- name: Get Yarn cache directory
|
|
22
|
-
run: echo "::set-output name=YARN_CACHE_DIR::$(yarn cache dir)"
|
|
23
|
-
id: yarn-cache-dir
|
|
24
|
-
- name: Get Yarn version
|
|
25
|
-
run: echo "::set-output name=YARN_VERSION::$(yarn --version)"
|
|
26
|
-
id: yarn-version
|
|
27
|
-
- name: Cache yarn dependencies
|
|
28
|
-
uses: actions/cache@v2
|
|
29
|
-
with:
|
|
30
|
-
path: ${{ steps.yarn-cache-dir.outputs.YARN_CACHE_DIR }}
|
|
31
|
-
key: yarn-cache-${{ runner.os }}-${{ steps.yarn-version.outputs.YARN_VERSION }}-${{ hashFiles('yarn.lock') }}
|
|
32
|
-
- run: yarn --frozen-lockfile
|
|
33
|
-
- run: yarn allow-scripts
|
|
34
|
-
- run: yarn lint
|
|
35
|
-
- run: yarn test
|
|
36
|
-
- name: Validate RC changelog
|
|
37
|
-
if: ${{ startsWith(github.head_ref, 'release/') }}
|
|
38
|
-
run: yarn auto-changelog validate --rc
|
|
39
|
-
- name: Validate changelog
|
|
40
|
-
if: ${{ !startsWith(github.head_ref, 'release/') }}
|
|
41
|
-
run: yarn auto-changelog validate
|
|
42
|
-
all-jobs-pass:
|
|
43
|
-
name: All jobs pass
|
|
44
|
-
runs-on: ubuntu-20.04
|
|
45
|
-
needs:
|
|
46
|
-
- lint-test
|
|
47
|
-
steps:
|
|
48
|
-
- run: echo "Great success!"
|
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
name: Create Release Pull Request
|
|
2
|
-
|
|
3
|
-
on:
|
|
4
|
-
workflow_dispatch:
|
|
5
|
-
inputs:
|
|
6
|
-
base-branch:
|
|
7
|
-
description: 'The base branch for git operations and the pull request.'
|
|
8
|
-
default: 'main'
|
|
9
|
-
required: true
|
|
10
|
-
release-type:
|
|
11
|
-
description: 'A SemVer version diff, i.e. major, minor, patch, prerelease etc. Mutually exclusive with "release-version".'
|
|
12
|
-
required: false
|
|
13
|
-
release-version:
|
|
14
|
-
description: 'A specific version to bump to. Mutually exclusive with "release-type".'
|
|
15
|
-
required: false
|
|
16
|
-
|
|
17
|
-
jobs:
|
|
18
|
-
create-release-pr:
|
|
19
|
-
runs-on: ubuntu-latest
|
|
20
|
-
permissions:
|
|
21
|
-
contents: write
|
|
22
|
-
pull-requests: write
|
|
23
|
-
steps:
|
|
24
|
-
- uses: actions/checkout@v2
|
|
25
|
-
with:
|
|
26
|
-
# This is to guarantee that the most recent tag is fetched.
|
|
27
|
-
# This can be configured to a more reasonable value by consumers.
|
|
28
|
-
fetch-depth: 0
|
|
29
|
-
# We check out the specified branch, which will be used as the base
|
|
30
|
-
# branch for all git operations and the release PR.
|
|
31
|
-
ref: ${{ github.event.inputs.base-branch }}
|
|
32
|
-
- name: Get Node.js version
|
|
33
|
-
id: nvm
|
|
34
|
-
run: echo ::set-output name=NODE_VERSION::$(cat .nvmrc)
|
|
35
|
-
- uses: actions/setup-node@v2
|
|
36
|
-
with:
|
|
37
|
-
node-version: ${{ steps.nvm.outputs.NODE_VERSION }}
|
|
38
|
-
- uses: MetaMask/action-create-release-pr@v1
|
|
39
|
-
env:
|
|
40
|
-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
41
|
-
with:
|
|
42
|
-
release-type: ${{ github.event.inputs.release-type }}
|
|
43
|
-
release-version: ${{ github.event.inputs.release-version }}
|
|
44
|
-
artifacts-path: gh-action__release-authors
|
|
45
|
-
# Upload the release author artifact for use in subsequent workflows
|
|
46
|
-
- uses: actions/upload-artifact@v2
|
|
47
|
-
with:
|
|
48
|
-
name: release-authors
|
|
49
|
-
path: gh-action__release-authors
|
|
50
|
-
if-no-files-found: error
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
name: Publish Release
|
|
2
|
-
|
|
3
|
-
on:
|
|
4
|
-
pull_request:
|
|
5
|
-
types: [closed]
|
|
6
|
-
|
|
7
|
-
jobs:
|
|
8
|
-
publish-release:
|
|
9
|
-
permissions:
|
|
10
|
-
contents: write
|
|
11
|
-
if: |
|
|
12
|
-
github.event.pull_request.merged == true &&
|
|
13
|
-
startsWith(github.event.pull_request.head.ref, 'release/')
|
|
14
|
-
runs-on: ubuntu-latest
|
|
15
|
-
steps:
|
|
16
|
-
- uses: actions/checkout@v2
|
|
17
|
-
with:
|
|
18
|
-
# We check out the release pull request's base branch, which will be
|
|
19
|
-
# used as the base branch for all git operations.
|
|
20
|
-
ref: ${{ github.event.pull_request.base.ref }}
|
|
21
|
-
- name: Get Node.js version
|
|
22
|
-
id: nvm
|
|
23
|
-
run: echo ::set-output name=NODE_VERSION::$(cat .nvmrc)
|
|
24
|
-
- uses: actions/setup-node@v2
|
|
25
|
-
with:
|
|
26
|
-
node-version: ${{ steps.nvm.outputs.NODE_VERSION }}
|
|
27
|
-
- uses: MetaMask/action-publish-release@v1
|
|
28
|
-
env:
|
|
29
|
-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
name: Require Additional Reviewer for Releases
|
|
2
|
-
|
|
3
|
-
on:
|
|
4
|
-
pull_request:
|
|
5
|
-
pull_request_review:
|
|
6
|
-
|
|
7
|
-
jobs:
|
|
8
|
-
require-additional-reviewer:
|
|
9
|
-
permissions:
|
|
10
|
-
actions: read
|
|
11
|
-
contents: read
|
|
12
|
-
pull-requests: read
|
|
13
|
-
statuses: write
|
|
14
|
-
runs-on: ubuntu-latest
|
|
15
|
-
steps:
|
|
16
|
-
- uses: actions/checkout@v2
|
|
17
|
-
with:
|
|
18
|
-
# If the base branch has been merged into the release branch, we
|
|
19
|
-
# need to find the earliest common ancestor commit of the base and
|
|
20
|
-
# release branches.
|
|
21
|
-
fetch-depth: 0
|
|
22
|
-
# We want the head / feature branch to be checked out, and we will
|
|
23
|
-
# compare it to the base branch in the action.
|
|
24
|
-
ref: ${{ github.event.pull_request.head.ref }}
|
|
25
|
-
- uses: MetaMask/action-require-additional-reviewer@v1
|
|
26
|
-
env:
|
|
27
|
-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
28
|
-
with:
|
|
29
|
-
read-org-token: ${{ secrets.ORG_READER }}
|