go bindings for zerokit rln in Mac and iOS architectures
Go to file
Alvaro Revuelta 5df5db48b6
chore: bump zerokit to v0.5.1 (rlnv2 custom witness) (#7)
2024-05-29 17:34:23 +02:00
libs chore: bump zerokit to v0.5.1 (rlnv2 custom witness) (#7) 2024-05-29 17:34:23 +02:00
rln chore: bump zerokit to v0.5.1 (rlnv2 custom witness) (#7) 2024-05-29 17:34:23 +02:00
scripts chore: update zerokit to include atomic_operation 2023-05-17 17:51:59 -04:00
zerokit@85d71a5427 chore: bump zerokit to v0.5.1 (rlnv2 custom witness) (#7) 2024-05-29 17:34:23 +02:00
.gitmodules initial commit 2023-03-31 18:30:42 -04:00
LICENSE initial commit 2023-03-31 18:30:42 -04:00
Makefile initial commit 2023-03-31 18:30:42 -04:00
README.md chore: update README.md 2023-12-15 08:38:51 -04:00
cbindgen.toml initial commit 2023-03-31 18:30:42 -04:00
go.mod initial commit 2023-03-31 18:30:42 -04:00

README.md

This project is used in https://github.com/waku-org/go-zerokit-rln to bypass the 500mb limit for go modules

How to build

git clone https://github.com/waku-org/go-zerokit-rln_apple
cd go-zerokit-rln_apple
git submodule init
git submodule update --recursive
make

Updating zerokit

export ZEROKIT_COMMIT=master    # Use a commit, branch or tag
cd zerokit
git pull
git checkout ${ZEROKIT_COMMIT}
cd ..
make
git add zerokit
git add libs/*/librln.a
git commit -m "chore: bump zerokit"
git push