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 Now blocks are looked up via a binary search, and old block info is pruned at the rate of the database. ### Test Plan The current E2E tests,...
### Description Indexer API is an upgraded indexer server (typescript). There are 2 main upgrades: Rust for scalability and reusability, graphQL for extensibility. The very cool thing here is that...
Testing the docs versioning feature of Docusaurus. DRAFT only. --- This change is [](https://reviewable.io/reviews/aptos-labs/aptos-core/2295)
### Description Very simple and limited delegations support in Aptos Framework. This allows delegators to delegate to validators with immutable lockup. Once the lockup expires, all delegators can withdraw. ###...
### Description This API should be able to get responses in both JSON and BCS direct from the DB, and can use move types to convert the versions directly in...
### Description ### Test Plan --- This change is [](https://reviewable.io/reviews/aptos-labs/aptos-core/2337)
### Description ### Test Plan --- This change is [](https://reviewable.io/reviews/aptos-labs/aptos-core/2335)
In the Poem based API (v1) there are few places where I use the `impl_poem_type` and `impl_poem_parameter` macros. These macros are hacks to deal with types that I can't apply...
### Description Add smoke test that checks txn goes through consensus even if the local validator is not creating proposals. This behavior should be true with both mempool and quorum...
### Description Adding failpoints REST API (/failpoints?name=str&actions=str), to allow modifying failpoints during execution. This will allow more targeted/surgical testing - both within smoke tests as well as forge/cluster tests ###...