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

bring main up to date #64

Merged
merged 37 commits into from
Apr 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
9b4e699
cleanup lol
Trivo25 Dec 24, 2022
7d60fef
temp
Trivo25 Dec 27, 2022
50c9052
more cleanup'ing
Trivo25 Dec 28, 2022
bc30940
bump submodule
Trivo25 Dec 28, 2022
de72ab0
make build
Trivo25 Dec 28, 2022
de5b51b
ugly temp fix .(
Trivo25 Dec 28, 2022
8772f90
minor typing (oof)
Trivo25 Dec 30, 2022
9b56697
add graphql server
Trivo25 Dec 30, 2022
1b4854e
type gen
Trivo25 Dec 30, 2022
1dc31f2
add tx types
Trivo25 Dec 30, 2022
0e4b67c
minor typing
Trivo25 Dec 30, 2022
b4a9acc
happy new year ;)
Trivo25 Dec 31, 2022
29883b2
move resolvers
Trivo25 Dec 31, 2022
380ff82
Update README.md
Trivo25 Dec 31, 2022
ae3e235
bump
Trivo25 Jan 1, 2023
0890f28
acc abstraction
Trivo25 Jan 1, 2023
1e628eb
snarkyjs submodule
Trivo25 Jan 1, 2023
49bc489
lotsa work idk
Trivo25 Jan 1, 2023
9fd91d7
bump sub
Trivo25 Jan 17, 2023
8e20886
some more restructuring
Trivo25 Feb 12, 2023
c73018f
comment
Trivo25 Feb 12, 2023
97e4113
comment
Trivo25 Feb 12, 2023
8ea536e
ad comment
Trivo25 Feb 12, 2023
3a39dd7
latest snarkyjs version
Trivo25 Feb 12, 2023
5dbf0ca
add comment
Trivo25 Feb 13, 2023
bb80b76
transition to struct
Trivo25 Feb 13, 2023
dfd6af3
transition to struct continues
Trivo25 Feb 13, 2023
f7581bb
throw out old structure
Trivo25 Mar 5, 2023
0793066
bump snarkyjs
Trivo25 Mar 5, 2023
d0cacdc
add run script to main package
Trivo25 Mar 5, 2023
7c4b8dd
impl demo preconditions checker
Trivo25 Mar 6, 2023
77cc8a8
isolate verifier
Trivo25 Mar 6, 2023
ca01fbf
add first step of permissions
Trivo25 Mar 6, 2023
dca30ec
fix int_tests
Trivo25 Apr 15, 2023
38db4cd
bump submodule
Trivo25 Apr 15, 2023
b9e10d9
build submodules
Trivo25 Apr 15, 2023
ec2c044
fix isolate modules
Trivo25 Apr 15, 2023
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
1 change: 0 additions & 1 deletion .env_example

This file was deleted.

9 changes: 3 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,3 @@
#
# ci.yml
#
# Run tests for all pushed commits and opened pull requests on Github.
#

name: CI
on: [push, pull_request]
jobs:
Expand All @@ -19,7 +13,10 @@ jobs:
uses: actions/checkout@v2
- name: NPM ci, build, & test
run: |
git submodule update --init --recursive
npm ci
npm run build-snarkyjs
npm run build-proof_aggregator
npm run build --if-present
npm run integration
env:
Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
node_modules
build
coverage

dist
# Editor
.vscode

Expand Down
6 changes: 6 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[submodule "src/proof_aggregator"]
path = src/proof_aggregator
url = https://github.com/Trivo25/proof_aggregator
[submodule "src/snarkyjs"]
path = src/snarkyjs
url = https://github.com/o1-labs/snarkyjs
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ zkFusion is a **zkRollup framework** for zkApps on Mina Protocol.
zkFusion is a modular zkRollup for Mina Protocol.
The goal is the provide an easy to use framework for developers to kickstart their application - without having to worry about sequencing, throughput or scalability!

`git submodule update --recursive`

## Contact

Twitter: @zktrivo
8 changes: 8 additions & 0 deletions codegen.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
schema: './src/rollup_operator/controllers/schema.graphql'
generates:
./src/rollup_operator/controllers/generated/graphql_types.ts:
plugins:
- 'typescript'
- 'typescript-resolvers'
config:
useIndexSignature: true
Loading