alnoki
alnoki
@0xmaayan per https://github.com/aptos-foundation/AIPs/issues/306#issuecomment-1948524298
@wrwg # Steps to reproduce ``` econia=0xc0deb00c405f84c85dc13442e305df75d1288100cdd82675695f6148c7ece51c url=https://fullnode.mainnet.aptoslabs.com aptos move download --account $econia --bytecode --package Econia --url $url aptos move decompile --package-path Econia/bytecode_modules ``` Then see `avl_queue.mv.move::traverse` # Commentary This...
# Current problem Currently the `code` module lacks test-only functions, making it difficult for devs to mock out or stub behaviors that depend on autonomous publication during runtime. In particular,...
@junkil-park @movekevin Add to the Aptos Standard Library helper functions to calculate the number of significant figures in both `u128` and `u64` integers, along with tests and docs
@banool @wrwg @movekevin @vgao1996 @davidiw # Description of problem The following sequence results in different output when run on CLI v2.1.0 versus v2.3.0: ```sh wait=5 && echo echo This script...
# General In #11183 @igor-aptos raised the issue of performance regression, and @movekevin is recommending against inlining per https://github.com/aptos-labs/aptos-core/pull/11183#issuecomment-2093873910 despite the importance of inlining for performance in critical code paths...
cc @banool @CapCap @crbl69 ## Description The focus contract address alpha feature is presumably intended to simplify client filtering behavior: only events corresponding to a particular Move package are allowed...
Presently, processor insertions are nondeterministic when concurrent processing tasks are enabled, such that the processor must be pinned to single-threading to enforce total ordering of transactions. In practice, this slows...
@banool @bowenyang007 Per offline discussion > none of the readmes are updated. This is the only place we actually updated: https://aptos.dev/indexer/legacy/migration#2-migrate-processors-to-transaction-stream-service
@brmataptos @crbl69 @wrwg @xbtmatt Currently, modules that have only inline functions are included in a Move package ABI. Example: https://aptos-explorer.netlify.app/account/0xd00db145c047cd3619ecba69e45b4ad77f43737d309d8113d6c1c35f7a8dd00d/modules/code/hex_codes?network=testnet Suggestion: Allow `#[inline_only]` or similar qualifier that prevents inline modules...