Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
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
7 changes: 0 additions & 7 deletions .gitignore
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This file was deleted.

173 changes: 0 additions & 173 deletions FileSaver.js

This file was deleted.

14 changes: 14 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
build:
go build -o main ./main.go

build-arm64:
GOARCH=arm64 GOOS=darwin go build -o zkproof_darwin_arm64 ./main.go

build-amd64:
GOARCH=amd64 GOOS=darwin go build -o zkproof_darwin_amd64 ./main.go

build-linux:
GOARCH=amd64 GOOS=linux go build -o zkproof_linux_amd64 ./main.go

build-windows:
GOARCH=amd64 GOOS=windows go build -o zkproof_windows_amd64.exe ./main.go
Loading