aptos-core icon indicating copy to clipboard operation
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.

Results 1509 aptos-core issues
Sort by recently updated
recently updated
newest added
trafficstars

## Description ## How Has This Been Tested? ## Key Areas to Review ## Type of Change - [ ] New feature - [ ] Bug fix - [ ]...

CICD:run-e2e-tests

Compiler (tested on V2) will optimize ``` public fun eq1(): bool { 1 == 1 } ``` to ``` public fun eq1(): bool { true } ``` However, it compiles...

enhancement
compiler-v2

This commit contains the API and also the scheduled transactions high level logic written in move. [AIP-119](https://github.com/aptos-foundation/AIPs/blob/7324bf161352f2fc934fe1ecfaa035b600250c24/aips/aip-119.md)

## Description This PR adds `const` qualifier to accessors to `AccountAddress` inner data and a const constructor from `u64`. ## How Has This Been Tested? Added test case. ## Key...

## Description As the first step to support function value in Move prover, this PR adds the logic to rewrite invoke(closure) operation into call to the corresponding lifted move/spec function....

# 🐛 Bug Consider the following example: ```move //# publish module 0xc0ffee::m { enum W has copy, drop { W1(u64), W2(u64), } fun use_it(_x: u64) {} fun weird(w: &mut W):...

bug
compiler-v2

## Description When creating a hotfix releases from private branch, when creating the release page, then automatically the hotfix tag is being created for the public repo as well and...

## Description This makes the error returned by a view function human readable. It gets the error info for the code from the relevant move module. https://github.com/user-attachments/assets/486c4602-7b8e-4d06-b6e1-86516b1f7e49 ## How Has...

## Description This PR updates the API tests for orderless transactions. For a lot of the API tests that submit a transaction to the blockchain, we duplicated the test using...