Skip to content

Commit

Permalink
Fix e2e tests and lock file, deps audit. (#710)
Browse files Browse the repository at this point in the history
  • Loading branch information
shimkiv authored Dec 7, 2024
1 parent 97cd253 commit 8f7736e
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 31 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm

### Changed

- Release `0.22.0` corresponding with o1js [release](https://github.com/o1-labs/o1js/pull/1881) `2.0.0`. [#702](https://github.com/o1-labs/zkapp-cli/pull/702)
- Release `0.22.0` corresponding with o1js [release](https://github.com/o1-labs/o1js/pull/1881) `2.0.0`. [#702](https://github.com/o1-labs/zkapp-cli/pull/702)
- o1js minor version dependency updated in cli package.json to `^2.*`\*.
- o1js minor version peer dependency updated in template/example contract package.json to `^2.*`\*.

Expand Down
7 changes: 3 additions & 4 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Contributing
# Contributing

Welcome to the zkApp CLI open source repository. Thank you for being a part of the Mina ecosystem and for your interest in contributing to the zkApp CLI project.

Expand All @@ -12,12 +12,11 @@ By contributing, you can help us improve the functionality and user experience o

All contributors agree to respect and follow the Mina Protocol [Code of Conduct](https://github.com/MinaProtocol/mina/blob/develop/CODE_OF_CONDUCT.md).


## Did you find a bug?

To see if others have also experienced the issue:

- Ask questions in the Mina Protocol Discord in the [#zkapps-developers](https://discord.com/channels/484437221055922177/915745847692636181) channel on Mina Protocol Discord.
- Ask questions in the Mina Protocol Discord in the [#zkapps-developers](https://discord.com/channels/484437221055922177/915745847692636181) channel on Mina Protocol Discord.
- Check if the bug was already reported by searching on GitHub under [Issues](https://github.com/o1-labs/zkapp-cli/issues).

If you don't find an open issue addressing the problem, open a new one. Be sure to include a title and clear description, as much relevant information as possible, and the output of the `zk system` command. This information includes your OS, NodeJS, and zkapp-cli versions to help us reproduce the issue.
Expand Down Expand Up @@ -56,7 +55,7 @@ Make your changes and commit:
git push origin <your-branch>
```

Create and submit your pull request against the `main` branch.
Create and submit your pull request against the `main` branch.

To switch back to the released version of zkApp CLI:

Expand Down
41 changes: 21 additions & 20 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "zkapp-cli",
"version": "0.22.2",
"version": "0.22.3",
"description": "CLI to create zkApps (zero-knowledge apps) for Mina Protocol",
"homepage": "https://github.com/o1-labs/zkapp-cli/",
"repository": {
Expand Down Expand Up @@ -74,7 +74,7 @@
"yargs": "^17.7.2"
},
"devDependencies": {
"@playwright/test": "^1.45.1",
"@playwright/test": "^1.49.0",
"@shimkiv/cli-testing-library": "^0.1.7",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.12",
Expand Down
4 changes: 0 additions & 4 deletions src/lib/ui/next/customNextPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,13 @@ import GradientBG from '../components/GradientBG.js';
import styles from '../styles/Home.module.css';
import heroMinaLogo from '../public/assets/hero-mina-logo.svg';
import arrowRightSmall from '../public/assets/arrow-right-small.svg';
import './reactCOIServiceWorker';
import {fetchAccount, Mina, PublicKey} from "o1js";
import {Add} from "../../contracts";
// We've already deployed the Add contract on testnet at this address
// https://minascan.io/devnet/account/B62qnTDEeYtBHBePA4yhCt4TCgDtA4L2CGvK7PirbJyX4pKH8bmtWe5
const zkAppAddress = "B62qnTDEeYtBHBePA4yhCt4TCgDtA4L2CGvK7PirbJyX4pKH8bmtWe5";
import './reactCOIServiceWorker';
export default function Home() {
const zkApp = useRef<Add>(new Add(PublicKey.fromBase58(zkAppAddress)));
Expand Down

0 comments on commit 8f7736e

Please sign in to comment.