Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
53d36f9
Update rust edition to 2021 (#749)
ardocrat May 14, 2026
47cf833
Save last scanned block info for wallet scanning (#748)
ardocrat Jun 2, 2026
1cbe813
Bump openssl from 0.10.68 to 0.10.80 (#752)
dependabot[bot] Jun 4, 2026
063248a
Update lmdb (#755)
ardocrat Jun 9, 2026
f5d854a
Node submodules (#758)
ardocrat Jun 20, 2026
fbe902e
Integrated Tor arti Client (#750)
ardocrat Jun 21, 2026
5c29ec2
Global Tor client state (#762)
ardocrat Jun 22, 2026
cdebcc0
Merge master to staging (#764)
wiesche89 Aug 8, 2026
0cbb7cc
Optimize tor sync flow (#763)
wiesche89 Jun 23, 2026
7cc3506
Connection timeout (#765)
ardocrat Jul 5, 2026
3f6802d
Update deps (#768)
ardocrat Jul 16, 2026
730a8df
Bump lodash from 4.17.21 to 4.18.1 (#774)
wiesche89 Jul 24, 2026
b353d84
Global config instance (#769)
ardocrat Jul 24, 2026
574a71a
Wrong Slatepack address fix (#773)
ardocrat Jul 26, 2026
ed49e38
Use native tls for client (#779)
ardocrat Jul 27, 2026
f71b809
expose mwixnet onion apis (#781)
wiesche89 Jul 27, 2026
eeefd45
Update jayson and uuid (#777)
wiesche89 Aug 2, 2026
e635ede
Optimize outputs scan and selection (#780)
ardocrat Aug 6, 2026
eccb1ee
Make updater APIs public (#782)
ardocrat Aug 8, 2026
eddcebc
Add mwixnet wallet request support
wiesche89 Jul 28, 2026
73917b3
mwixnet key conversion tests
wiesche89 Jul 28, 2026
1b68d12
validate and track mwixnet requests
wiesche89 Jul 28, 2026
4639cd4
fix Arti HTTP POST request formatting
wiesche89 Jul 29, 2026
ddf025f
add mwixnet wallet CLI submission
wiesche89 Jul 29, 2026
e18a052
unlock mwixnet outputs when requests are not sent
wiesche89 Aug 7, 2026
6cb28f1
support automatic mwixnet output selection
wiesche89 Aug 9, 2026
af1e0d0
move mwixnet response parsing to libwallet
wiesche89 Aug 9, 2026
0cbf7a6
limit mwixnet hops
wiesche89 Aug 9, 2026
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
13 changes: 10 additions & 3 deletions .github/workflows/cd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@ jobs:
name: Linux Release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Checkout
uses: actions/checkout@v6
with:
submodules: recursive
- name: Build
run: cargo build --release
- name: Archive
Expand All @@ -32,7 +35,9 @@ jobs:
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v6
with:
submodules: recursive
- name: Build
run: cargo build --release
- name: Archive
Expand All @@ -53,7 +58,9 @@ jobs:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v6
with:
submodules: recursive
- name: Build
run: cargo build --release
- name: Archive
Expand Down
12 changes: 9 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@ jobs:
matrix:
job_args: [api, config, controller, impls, libwallet, .]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v6
with:
submodules: recursive
- name: Test ${{ matrix.job_args }}
working-directory: ${{ matrix.job_args }}
run: cargo test --release
Expand All @@ -19,7 +21,9 @@ jobs:
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v6
with:
submodules: recursive
- name: Tests
run: cargo test --release --all

Expand All @@ -28,6 +32,8 @@ jobs:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v6
with:
submodules: recursive
- name: Tests
run: cargo test --release --all
4 changes: 4 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[submodule "grin"]
path = grin
branch = staging
url = https://github.com/mimblewimble/grin
Empty file modified .hooks/pre-commit
100644 → 100755
Empty file.
Loading