Daniel Porteous (dport)

Results 207 issues of Daniel Porteous (dport)

Currently [Transaction](https://github.com/aptos-labs/aptos-core/blob/main/api/doc/v1/spec.yaml#L2344) is a union of different variants of transactions. We know however that all of these variants have some common fields, e.g. `success` in some cases, for example when...

enhancement
interface

I was just recently surprised (though it makes sense) to learn that the the Move VM checks that your account has at least max_gas gas as part of the prologue....

enhancement
interface

### Description This PR makes getAccountResources and getAccountModules use pagination, leveraging the support added in https://github.com/aptos-labs/aptos-core/pull/5313. ### Test Plan I ran the below tests both against a local node built...

### Description We want to move to pnpm instead of yarn: https://aptos-org.slack.com/archives/C03N83P7QUC/p1667514786627619. I used `pnpm import` to ensure the locked versions stay the same. ### Test Plan ``` cd ecosystem/typescript/sdk...

CICD:build-images

### Description This is part of our general migration from yarn to pnpm. This bumps the versions of some packages in the new lock file but that's fine for this...

## Repro Clean everything up: ``` rm -rf .aptos rm -rf ~/.move ``` Make a new directory with this `Move.toml` in it: ``` [package] name = "AptosInfiniteJukebox" version = "0.2.1"...

bug

This recently came up in a StackOverflow question: https://stackoverflow.com/questions/74133381/how-do-you-define-and-query-a-read-function-in-a-move-module-on-aptos-blockchain. Indeed, when I was first onboarding, I made this comment in my notes: > The get_message function in HelloBlockchain is misleading....

enhancement

Move.toml: ``` [package] name = "AptosInfiniteJukebox" version = "0.2.1" upgrade_policy = "compatible" [dependencies.AptosFramework] git = 'https://github.com/aptos-labs/aptos-core.git' rev = 'testnet' subdir = 'aptos-move/framework/aptos-framework' [dependencies.DataStructure] git = 'https://github.com/aptos-labs/aptos-core.git' rev = 'testnet' subdir...

bug
move

As it is now, it points to aptos.dev. Instead we want to be able to set it custom for each network to point to the fullnode. This would be the...

bug
documentation

Currently the API spec viewer in aptos.dev (pending https://github.com/aptos-labs/aptos-core/pull/5345 landing) uses stacked view. Stacked view has two issues: 1. It is harder to navigate and looks a bit busier. 2....

documentation
enhancement