Skip to content
Merged
Show file tree
Hide file tree
Changes from 15 commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
ce20bb2
Add tutorial runner and Playwright harness
WiktorStarczewski Jan 27, 2026
166c532
Migrate tutorials to Miden SDK 0.13.0-next.4
WiktorStarczewski Jan 27, 2026
39f132e
fix(ci): use crates.io miden client
WiktorStarczewski Jan 29, 2026
ce607e0
docs: add Building a React Wallet tutorial
WiktorStarczewski Feb 6, 2026
7eb8197
docs: add React SDK examples to existing tutorials
WiktorStarczewski Feb 6, 2026
a86f9ef
docs: specify filenames in unauthenticated note tutorial
WiktorStarczewski Feb 6, 2026
b5abd6c
docs: specify filenames in tutorials instead of generic 'library file'
WiktorStarczewski Feb 6, 2026
f25ec4e
style: format markdown with prettier
WiktorStarczewski Feb 6, 2026
c459143
fix: restore prettier-ignore comments mangled by prettier
WiktorStarczewski Feb 6, 2026
82d38f8
fix: remove prettier-ignore comments that get mangled
WiktorStarczewski Feb 6, 2026
6dec03b
docs: update signer package names and Turnkey connect flow
WiktorStarczewski Feb 9, 2026
59975a3
style: format markdown with prettier
WiktorStarczewski Feb 9, 2026
068395a
docs: update TurnkeySignerProvider usage to use defaults
WiktorStarczewski Feb 9, 2026
97c8fcb
style: fix markdown formatting and add CLAUDE.md
WiktorStarczewski Feb 9, 2026
15359a0
switch tutorials from devnet to testnet
WiktorStarczewski Feb 16, 2026
6e85ae6
fix: address PR #159 review feedback
WiktorStarczewski Feb 18, 2026
8d198a0
rename contributing.md to CONTRIBUTING.md
WiktorStarczewski Feb 18, 2026
671c9b4
fix: address final PR #159 review feedback
WiktorStarczewski Feb 19, 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
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ web-client/.next/
web-client/playwright-report/
web-client/test-results/
**/.DS_Store
.DS_Store
.DS_Store
19 changes: 19 additions & 0 deletions CLAUDE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Miden Tutorials

## Markdown Formatting

This repo has a CI check that enforces markdown formatting via Prettier.

After making any changes to `.md` files, run:

```sh
npx prettier --check "**/*.md"
```

If it fails, fix with:

```sh
npx prettier --write "**/*.md"
```

The Prettier config is in `.prettierrc`. Files listed in `.prettierignore` are excluded from formatting.
Loading