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

add cosmwasm support #106

Merged
merged 28 commits into from
Mar 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
f457887
adding wamsd module to fairyring
ap0calypse644 Jan 24, 2024
bc667e7
updating testutil and simulation
ap0calypse644 Jan 24, 2024
1ea36e8
adding ante decorators
ap0calypse644 Jan 25, 2024
a194d2e
adding functionalities to keyshare module to support general keyshare…
ap0calypse644 Feb 7, 2024
1c99c9c
making Keyshare module compatible with private gov
ap0calypse644 Feb 13, 2024
03d5a09
making keyshare module compatible to gov
ap0calypse644 Feb 15, 2024
cc9a53b
Merge branch 'main' into wasm
ap0calypse644 Feb 15, 2024
ec7e513
making keyshare module compatible to gov
ap0calypse644 Feb 19, 2024
338d1b6
checking IBc info of get request
ap0calypse644 Feb 20, 2024
b9d5776
adding route to gov ibc
ap0calypse644 Feb 21, 2024
be82c78
Update for testing wasm branch
p0p3yee Feb 22, 2024
0de8161
fix active pubkey not being updated in destination chain
ap0calypse644 Feb 23, 2024
f3a4ab5
update testscripts
ap0calypse644 Feb 26, 2024
96a3fcc
Update script account name & genesis account balance
p0p3yee Feb 26, 2024
5fc1a44
Update to keep encrypted tx & update its processed height
p0p3yee Feb 28, 2024
e423698
integration tests for priv governance
ap0calypse644 Feb 29, 2024
2692f80
Add encrypt vote
p0p3yee Feb 29, 2024
be9f121
updating vote encrypter
ap0calypse644 Mar 1, 2024
e7bc1ad
updating vote encrypter
ap0calypse644 Mar 1, 2024
cdab1af
updating vote encrypter
ap0calypse644 Mar 1, 2024
8b37586
Add submit general keyshare
p0p3yee Mar 2, 2024
297d811
fixing null-pointer error when submitting agg keyshare
ap0calypse644 Mar 4, 2024
eefebd6
Fix conflict
p0p3yee Mar 4, 2024
d0e1eec
Generte openapi docs
p0p3yee Mar 4, 2024
e2fc8f6
Fix proto error
p0p3yee Mar 4, 2024
49e4054
clean up after test
p0p3yee Mar 4, 2024
956f6cb
removing local dependencies for release
ap0calypse644 Mar 5, 2024
9e44885
removing local dependencies for release
ap0calypse644 Mar 5, 2024
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
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,5 @@ DistributedIBE/
encrypter
ShareGenerator
data/
devnet_data/
devnet_data/
github.com/
7 changes: 5 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -182,8 +182,7 @@ test-block-tx-limit: init-test-block-limit-framework \

integration-test-all: init-test-framework \
init-relayer \
test-keyshare-module \
test-pep-module
test-keyshare-module
-@rm -rf ./data
-@killall fairyringd 2>/dev/null

Expand All @@ -204,6 +203,10 @@ test-pep-module:
@echo "Testing Pep module..."
./scripts/tests/pep.sh

test-gov-module:
@echo "Testing Gov module..."
./scripts/tests/priv_gov.sh

init-relayer:
@echo "Initializing hermes relayer..."
./scripts/tests/relayer.sh
Expand Down
Loading