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.
# π Bug ``` public(script) fun create_finite_collection_script( account: signer, description: vector, name: vector, uri: vector, maximum: u64, ) ``` in https://github.com/aptos-labs/aptos-core/blob/main/developer-docs-site/docs/tutorials/your-first-nft.md This seems to be written wrong, it should be...
function create_finite_collection_script is posted incorrectly , replace it with create_limited_collection_script ### Description when i test the create_limited_collection_script, it can't sign and submit the transaction successfully.And I can hardly find a...
This PR looks to clean up a lot of old uglies from our legacy.... why... I claim OCD. * Starting with the script allowlist, since this is obviously not necessary...
### Description add rust example code for your-first-nft ### Test Plan change path to `developer-docs-site/static/examples/rust` run `cargo run --bin first-nft` --- This change isβ[](https://reviewable.io/reviews/aptos-labs/aptos-core/2384)
### Description ### Test Plan --- This change isβ[](https://reviewable.io/reviews/aptos-labs/aptos-core/2346)
**Note: still a WIP** This implements a proper gas metering system for the Aptos blockchain. More specifically, this 1. Defines a new extensible on-chain gas schedule 2. Introduces an `aptos-gas`...
Adding utilities to analyze validator performance, based on accessing live on-chain data Fastest to run a full node locally, and connecting cli to it. Currently fetching from all transactions. We...
Ignore
### Description ### Test Plan --- This change isβ[](https://reviewable.io/reviews/aptos-labs/aptos-core/2375)
### Description 1. switch the token modules 2. update the cached framework to load move modules from multiple packages for testing 3. update the python and ts example 4. update...
# π Bug `aptos account list` returns `account not found by address` for a local testnet without a faucet. ## To reproduce ``` aptos node run-local-testnet aptos init # skip...