aptos-core
aptos-core copied to clipboard
Aptos is a layer 1 blockchain built to support the widespread use of blockchain through better technology and user experience.
### Description Multiple minor cleanups that are still backward-compatible: 1. Check that a resource exists before borrowing it. This would return a nicer error to the users. 2. Use the...
### Description Add a public function to emit a new block event. This is needed for #4037 . The reason is that a genesis writeset will need both a new...
### Description This PR adds several things. - **Pedersen commitments** in Move, based on Ristretto255 elliptic curves - A **Bulletproof** verifier in Move (and a test-only prover). + ~~Still need...
### Description This PR is related to the issue #3739 created to add a function in TS SDK to fetch the resource account given that the source address and seeds...
### Description Many threads for fetching -> channel -> many threads for processing Should allow the indexer to be much more vertically scalable Locally am seeing 1.5x-2x previous TPS (3k),...
### Description Long requested, much desired, finally here. Running this script will ensure that your PR passes the `rust-lint` step in CI. ### Test Plan ``` scripts/rust_lint.sh ``` ``` scripts/rust_lint.sh...
### Description As above ### Test Plan Will rerun coverage once this lands. - - - This change is [](https://reviewable.io/reviews/aptos-labs/aptos-core/4177)
# [Feature Request] Simplify account key rotation ## 1. Proposal The interface of `rotate_authentication_key` can be simplified as: ``` public entry fun rotate_authentication_key_simplified( address: address, from_scheme: u8, from_public_key_bytes: vector, to_scheme:...
This change is [](https://reviewable.io/reviews/aptos-labs/aptos-core/3674)
### Description This creates a separate StakePool per delegation (from a delegator to an operator) and does not allow pooling funds from multiple delegators at all. ### Test Plan Unit...