Skip to content
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

fix: auth server and sdk when not using sessions #45

Merged
merged 6 commits into from
Dec 22, 2024
Merged
Changes from 1 commit
Commits
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
Prev Previous commit
Next Next commit
chore: update readme
MexicanAce committed Dec 21, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit 662e9411e7f1e41e72b10b4f86d1f4053b1e10e3
14 changes: 9 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -125,13 +125,19 @@ This monorepo is comprised of the following packages, products, and examples:
[workspace protocol](https://pnpm.io/workspaces#workspace-protocol-workspace)
to link SDK in the new folder.

3. Start a local node:
3. Install `foundry-zksync`:

```bash
curl -L https://raw.githubusercontent.com/matter-labs/foundry-zksync/main/install-foundry-zksync | bash
```

4. Start a local node:

```bash
npx zksync-cli dev start
```

4. Compile and deploy contracts to the local node:
5. Compile and deploy contracts to the local node:

```bash
# Compile and deploy contracts
@@ -140,11 +146,9 @@ This monorepo is comprised of the following packages, products, and examples:
pnpm run deploy
```

5. Start the demo application:
6. Start the demo application:

```bash
# Go back to root folder to start demo app
cd ../..
pnpm nx dev demo-app
```