alnoki

Results 44 issues of alnoki

Presently, the `aptos` CLI does not support the kind of doc building that is included in the `move` CLI: ``` move build --doc ``` For users to generate module documentation...

enhancement
tooling

# 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...

tooling

@davidiw @wrwg @movekevin @gregnazario #1975 Proposes a move native function getter for the Aptos database version number of the current transaction, with the underlying motivation of assigning serial IDs to...

enhancement
move
community

Per recent discussion with @davidiw , adds resource account creation via timestamp seed, a non-deterministic approach (in practice) that simplifies resource account creation for callers. Tagging @alinush per cryptographic considerations....

* Adds a `size_of()` function analogous to `sizeof()` in C. * Adds a 4K disk sector optimized implementation of `BigVector`. * Adds simple index-based borrowers/swap remove for `BigVector`. * Adds...

Addresses @davidiw 's [request to decouple commits](https://github.com/aptos-labs/aptos-core/pull/4067#discussion_r979445090) Adds `size_of()` function for calculating number of bytes in a type, tests with vector size dynamism. - - - This change is [](https://reviewable.io/reviews/aptos-labs/aptos-core/4540)

Adds test-only standalone signer creation, independent of an Aptos-style account. @davidiw @wrwg @alinush @chen-robert - - - This change is [](https://reviewable.io/reviews/aptos-labs/aptos-core/5433)

It is proposed that the Aptos unit test stack support the assertion of event fields so that developers can ensure events have been emitted correctly. Per discussion with @wrwg ,...

enhancement
community

Currently, the gas schedule assesses a gas cost of 13000 units to load a constant (`ld_const_base`), plus 700 units per byte (`ld_const_per_byte`) as defined in `instr.rs`. One primary use case...

bug
community

Presently, [`instr.rs`](https://github.com/aptos-labs/aptos-core/blob/main/aptos-move/aptos-gas/src/instr.rs) charges per function call the most gas out of any operation, effectively penalizing abstraction and function decomposition. Hence, rather than writing modular code with easily verifiable inner functions,...

bug
community