Skip to content

Commit

Permalink
feat: ed25519 derivation
Browse files Browse the repository at this point in the history
Signed-off-by: Curtis Harding <[email protected]>
  • Loading branch information
curtis-h committed May 22, 2024
1 parent dcb5a8b commit dabcf57
Show file tree
Hide file tree
Showing 25 changed files with 1,017 additions and 7 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,17 @@ jobs:
with:
xcode-version: '15.0.1'

- name: "Install rust toolchain (Linux)"
if: matrix.os-type == 'linux'
run: sudo apt install rustc build-essential -y

- name: "Install rust toolchain (Macos)"
if: matrix.os-type == 'macos'
run: brew install rustup

- name: "Install wasm-pack"
run: cargo install wasm-pack

- name: "Test Kotlin code is properly formatted"
run: ./gradlew ktlintCheck

Expand Down
11 changes: 11 additions & 0 deletions .github/workflows/release-documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,17 @@ jobs:
run: |
brew install autoconf automake libtool
- name: "Install rust toolchain (Linux)"
if: matrix.os-type == 'linux'
run: sudo apt install rustc build-essential -y

- name: "Install rust toolchain (Macos)"
if: matrix.os-type == 'macos'
run: brew install rustup

- name: "Install wasm-pack"
run: cargo install wasm-pack

- name: "Dokka Documentation Generation"
run: |
./gradlew dokkaHtml
Expand Down
11 changes: 11 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,17 @@ jobs:
git_user_signingkey: true
git_commit_gpgsign: true

- name: "Install rust toolchain (Linux)"
if: matrix.os-type == 'linux'
run: sudo apt install rustc build-essential -y

- name: "Install rust toolchain (Macos)"
if: matrix.os-type == 'macos'
run: brew install rustup

- name: "Install wasm-pack"
run: cargo install wasm-pack

- name: "Release"
env:
GIT_AUTHOR_EMAIL: ${{ steps.import_gpg.outputs.email }}
Expand Down
5 changes: 5 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,8 @@
path = secp256k1-kmp/native/secp256k1
url = https://github.com/bitcoin-core/secp256k1
branch = master

[submodule "rust-ed25519-bip32"]
path = rust-ed25519-bip32
url = https://github.com/input-output-hk/rust-ed25519-bip32.git
branch = master
Loading

0 comments on commit dabcf57

Please sign in to comment.