Skip to content

Commit 8f7736e

Browse files
authored
Fix e2e tests and lock file, deps audit. (#710)
1 parent 97cd253 commit 8f7736e

File tree

5 files changed

+27
-31
lines changed

5 files changed

+27
-31
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
3333

3434
### Changed
3535

36-
- 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)
36+
- 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)
3737
- o1js minor version dependency updated in cli package.json to `^2.*`\*.
3838
- o1js minor version peer dependency updated in template/example contract package.json to `^2.*`\*.
3939

CONTRIBUTING.md

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Contributing
1+
# Contributing
22

33
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.
44

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

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

15-
1615
## Did you find a bug?
1716

1817
To see if others have also experienced the issue:
1918

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

2322
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.
@@ -56,7 +55,7 @@ Make your changes and commit:
5655
git push origin <your-branch>
5756
```
5857

59-
Create and submit your pull request against the `main` branch.
58+
Create and submit your pull request against the `main` branch.
6059

6160
To switch back to the released version of zkApp CLI:
6261

package-lock.json

+21-20
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "zkapp-cli",
3-
"version": "0.22.2",
3+
"version": "0.22.3",
44
"description": "CLI to create zkApps (zero-knowledge apps) for Mina Protocol",
55
"homepage": "https://github.com/o1-labs/zkapp-cli/",
66
"repository": {
@@ -74,7 +74,7 @@
7474
"yargs": "^17.7.2"
7575
},
7676
"devDependencies": {
77-
"@playwright/test": "^1.45.1",
77+
"@playwright/test": "^1.49.0",
7878
"@shimkiv/cli-testing-library": "^0.1.7",
7979
"@types/fs-extra": "^11.0.4",
8080
"@types/jest": "^29.5.12",

src/lib/ui/next/customNextPage.js

-4
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,13 @@ import GradientBG from '../components/GradientBG.js';
66
import styles from '../styles/Home.module.css';
77
import heroMinaLogo from '../public/assets/hero-mina-logo.svg';
88
import arrowRightSmall from '../public/assets/arrow-right-small.svg';
9-
import './reactCOIServiceWorker';
109
import {fetchAccount, Mina, PublicKey} from "o1js";
1110
import {Add} from "../../contracts";
1211
13-
1412
// We've already deployed the Add contract on testnet at this address
1513
// https://minascan.io/devnet/account/B62qnTDEeYtBHBePA4yhCt4TCgDtA4L2CGvK7PirbJyX4pKH8bmtWe5
1614
const zkAppAddress = "B62qnTDEeYtBHBePA4yhCt4TCgDtA4L2CGvK7PirbJyX4pKH8bmtWe5";
1715
18-
import './reactCOIServiceWorker';
19-
2016
export default function Home() {
2117
const zkApp = useRef<Add>(new Add(PublicKey.fromBase58(zkAppAddress)));
2218

0 commit comments

Comments
 (0)