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.
This issue thread will be used to better understand auth key rotation and how we can leverage it in the best way. This will also play a role in standardizing...
This [Linear issue](https://linear.app/aptoslabs/issue/DOC-16/revamp-accounts-documentation-in-aptosdev) calls for enhancing the Accounts doc with a few specific details. This PR addresses them. cc: @jjleng --- This change isβ[](https://reviewable.io/reviews/aptos-labs/aptos-core/1961)
### Description Slightly refactored delta operations so that `Aggregator` 1) can reuse `apply_to` functionality based on operation 2) can reuse unique serialization/deserialization for delta op values (This way it should...
Currently the best way to see what the evaluator choices are is to run a command like this: ``` $ cargo run -- configuration create --evaluators x --url http://whatever.com --configuration-name...
# π Feature Request It will be nice if we can add a new command to create resource account on-chain. Something like: ``` aptos account create-resource-account --seed 0xabc --authentication-key ```...
## How to upgrade my move package (or module) I try to modify my move module and execute the `publish` command after compilation Old Package: - sources - FooMessage.move New...
# π Bug I used this link to build the APtos CLI `https://github.com/aptos-labs/aptos-core/blob/main/crates/aptos/README.md`,I am getting the following error: ``` Compiling executor v0.1.0 (/root/.cargo/git/checkouts/aptos-core-8f3268fcf79e1f38/22fd977/execution/executor) error: failed to run custom build command...
# π Bug ## To reproduce **Code snippet to reproduce** ```rust cargo install --git https://github.com/aptos-labs/aptos-core.git aptos --tag aptos-cli-latest ``` **Stack trace/error message** ``` Compiling tracing-subscriber v0.3.12 error[E0407]: method `event_enabled` is...
# Overview As described in #1275, the `aptos` CLI does not support coverage testing, and since the `move` CLI does not support `AptosFramework` native functions, coverage testing is thus prohibited...
# π Feature Request Currently this move module compiles: ``` $ cat mytest/sources/MyTest.move module MyModule::MyTest { struct MyTest has key {} struct Vote has copy, drop, store { blah: u8,...