-
Notifications
You must be signed in to change notification settings - Fork 817
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 Confidential Transfers Module #1980
Open
mj850
wants to merge
61
commits into
main
Choose a base branch
from
feature/ct_module
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* scaffolding for new module * keeper scaffolding * scaffold with types * go sum * comments pt1 * comments * drop prev580
* pending balance type * convert apply pending balance to a message type * close account type
* new types * add deposit to msgs * add import issues * revert evm/params to old state * withdraw with tests * small changes * refactor and add tests * comment
* Genesis draft * revert evm params * revert evm params -2 * working simple test * linting * addressing linter errors * remove creating address for now
* add genesis init/export tests * refactor store * confidential transfers queries * working draft test * more tests * refactor tests * all accounts query * formatting * add pagination to request/response * update implementation to use paginated response instead * formatting * remove redundant param * all accounts with denoms * clean up commented code * return GetAccount back to keeper * formatting
* new types * add deposit to msgs * add import issues * revert evm/params to old state * withdraw with tests * small changes * refactor and add tests * comment * refactor initialize type * types * non module account types * msg server methods with module accounts * tests scaffold * add msg server tests * codeql * test issues * test improvements * comments * todo * app
* basic cli and first draft command for ct module * add second command draft * draft of init account * close account update * lint errors
* update codec * cleanup and queryies * enable in module * add other query * fix bug * fix lint * add decryption query * cleanup * validate address * comments * rectify test failures * speed up withdraw test * make other tests slightly faster
* - fix ct account by address and denom REST query - update swagger * - regenerate with latest changes - set module version to 1
* add ct to load test framework * comment out receiver account creation for now * - add ct account population script - add ct query client - add 4 types of ct messages for load test * - script updates * - add error handling * script updates * formatting * disable state writing for transfers * add metrics * Revert "add metrics" This reverts commit a7814b1. * self review fixes
* save * backend tests passing * test * types test * acl tests * utils * codeql * lint
* save * backend tests passing * test * types test * acl tests * utils * codeql * draft * register subspace * params disable * add scaling gas * update tests * add tests for disable feature * integration tests fees bump * update close account test * lint * comments * comments
* refactor ct cli to use coin format like e.g. 1usei * update integration tests * formatting * update integration tests * update integration tests - 2
* test new verifier * update to prod version * update cryptography version * try optimize test * add optimization * small optimization
- update kryptology version
* - remove dead code - add test for keys * - basic test for transfer object * - transfer invalid inputs * - wrong private key test * - refactor tests * - refactor tests - tests for createTransferPartyParams * - add more checks to transfers * - tests for VerifyTransferProofs * - tests for VerifyTransferProofs * fix tests
* change key devrivation * hash again * version * issues * types test * add tests * bump unit test timeout * add fixed prefix before hashing denom * mertge issues
* Consume gas before verifying range proof * bump timeout * uint64 * test issue
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Describe your changes and provide context
This is the working branch for adding the Confidential Transfers module.
Testing performed to validate your change
Associated unit and integration tests have been added here.