Skip to content

Commit dabcf57

Browse files
committed
feat: ed25519 derivation
Signed-off-by: Curtis Harding <[email protected]>
1 parent dcb5a8b commit dabcf57

File tree

25 files changed

+1017
-7
lines changed

25 files changed

+1017
-7
lines changed

.github/workflows/pull-request.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,17 @@ jobs:
6565
with:
6666
xcode-version: '15.0.1'
6767

68+
- name: "Install rust toolchain (Linux)"
69+
if: matrix.os-type == 'linux'
70+
run: sudo apt install rustc build-essential -y
71+
72+
- name: "Install rust toolchain (Macos)"
73+
if: matrix.os-type == 'macos'
74+
run: brew install rustup
75+
76+
- name: "Install wasm-pack"
77+
run: cargo install wasm-pack
78+
6879
- name: "Test Kotlin code is properly formatted"
6980
run: ./gradlew ktlintCheck
7081

.github/workflows/release-documentation.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,17 @@ jobs:
5656
run: |
5757
brew install autoconf automake libtool
5858
59+
- name: "Install rust toolchain (Linux)"
60+
if: matrix.os-type == 'linux'
61+
run: sudo apt install rustc build-essential -y
62+
63+
- name: "Install rust toolchain (Macos)"
64+
if: matrix.os-type == 'macos'
65+
run: brew install rustup
66+
67+
- name: "Install wasm-pack"
68+
run: cargo install wasm-pack
69+
5970
- name: "Dokka Documentation Generation"
6071
run: |
6172
./gradlew dokkaHtml

.github/workflows/release.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,17 @@ jobs:
5959
git_user_signingkey: true
6060
git_commit_gpgsign: true
6161

62+
- name: "Install rust toolchain (Linux)"
63+
if: matrix.os-type == 'linux'
64+
run: sudo apt install rustc build-essential -y
65+
66+
- name: "Install rust toolchain (Macos)"
67+
if: matrix.os-type == 'macos'
68+
run: brew install rustup
69+
70+
- name: "Install wasm-pack"
71+
run: cargo install wasm-pack
72+
6273
- name: "Release"
6374
env:
6475
GIT_AUTHOR_EMAIL: ${{ steps.import_gpg.outputs.email }}

.gitmodules

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,8 @@
22
path = secp256k1-kmp/native/secp256k1
33
url = https://github.com/bitcoin-core/secp256k1
44
branch = master
5+
6+
[submodule "rust-ed25519-bip32"]
7+
path = rust-ed25519-bip32
8+
url = https://github.com/input-output-hk/rust-ed25519-bip32.git
9+
branch = master

0 commit comments

Comments
 (0)