Skip to content

Feature/atl 6719 implementation #157

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 40 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
a9675b1
fix: Adding the uniffy defrinition file and change the folder paths …
elribonazo Apr 10, 2024
4eb0600
fix: EdHDKey build for kmm
elribonazo Apr 16, 2024
de2a13b
js EdHDKey + external
curtis-h Apr 18, 2024
fe6e2a9
fix: import the bip32 package from js
elribonazo Apr 18, 2024
21fb5a5
including rust-ed25519-bip32 submodule
curtis-h Apr 23, 2024
9980325
split build.gradle
curtis-h Apr 24, 2024
ee64f52
fix: improve build gradle.
elribonazo Apr 25, 2024
ede1d3c
fix: Handle some compilation issues
hamada147 Apr 30, 2024
ff54776
update wasm copy dir and add basic test
curtis-h Apr 30, 2024
ce6d28f
fix: updating namespace in UDL to correctly map to generated binaries
hamada147 Apr 30, 2024
7ef2af0
fix: forcing ed25519 wasm into test folder
curtis-h Apr 30, 2024
1f3ec54
lint
curtis-h Apr 30, 2024
c7aac59
fix: add convert function for KMMEdPrivate key conversion to x25519Pr…
elribonazo Apr 30, 2024
e17fb3c
fix: JS wrap EdHdKey.initFromSeed in companion to make static
curtis-h May 3, 2024
f28f0d9
adding rust toolchain to workflows
curtis-h May 3, 2024
a5c15e7
edit workflow to not use actions
curtis-h May 3, 2024
f40bfdb
rust-ed25519-bip32 submodule update
curtis-h May 3, 2024
b686270
chore: rust-ed25519-bip32 submodule update
hamada147 May 6, 2024
3d2e136
chore: rust-ed25519-bip32 submodule update
hamada147 May 6, 2024
f67452b
chore: rust-ed25519-bip32 submodule update
hamada147 May 6, 2024
506d262
chore: update Gradle & Kotlin file paths
hamada147 May 6, 2024
9f51874
lint fix
curtis-h May 7, 2024
8d2210c
ci fix - install build-essentials
curtis-h May 7, 2024
252502d
rust-ed25519-bip32 submodule update
curtis-h May 7, 2024
abc5f2a
rust-ed25519-bip32 submodule update
curtis-h May 7, 2024
baf81f9
rust-ed25519-bip32 submodule update
curtis-h May 7, 2024
3ca4e01
rust-ed25519-bip32 submodule update
curtis-h May 8, 2024
7d0ea3d
rust-ed25519-bip32 submodule update
curtis-h May 8, 2024
50cd101
rust-ed25519-bip32 submodule pivot to functions
curtis-h May 13, 2024
484dbcd
lint
curtis-h May 13, 2024
5d30c5d
jsTest fix attempt
curtis-h May 13, 2024
c72b95b
rust-ed25519-bip32 submodule update
curtis-h May 13, 2024
6da3614
rust-ed25519-bip32 submodule update
curtis-h May 13, 2024
cbbe5f8
rust-ed25519-bip32 submodule update
curtis-h May 14, 2024
b3e68f6
removing EdHDKey public key property
curtis-h May 15, 2024
32a4889
comments for convertSecretKeytoX25519
curtis-h May 15, 2024
0cb9105
android test and workflow updates
curtis-h May 15, 2024
d2ff239
Merge branch 'main' into feature/ATL-6719-implementation
hamada147 May 15, 2024
0357161
rust-ed25519-bip32 submodule update
curtis-h May 16, 2024
298532e
rust-ed25519-bip32 submodule update
curtis-h May 22, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,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
Loading