Ben Guidarelli
Ben Guidarelli
### Subject of the issue Reported in Discord Currently the following produces somewhat surprising results https://testnet-idx.algonode.cloud/v2/applications/83648221/logs?limit=500 https://testnet-idx.algonode.cloud/v2/applications/83648221/logs?limit=1 Where limit 1 returns no results. I believe this is because the transaction...
### Subject of the issue A request like `https://mainnet-idx.algonode.cloud/v2/assets/0` Will generate the query ```sql SELECT index, creator_addr, params, created_at, closed_at, deleted FROM asset a WHERE NOT a.deleted ORDER BY index...
A community member (Frank) noticed that the closing amount field in the transaction payload https://github.com/algorand/indexer/blob/99ab66fdadcd77fef4048bb2aa86cae1f06c6e08/api/converter_utils.go#L311 https://github.com/algorand/indexer/blob/99ab66fdadcd77fef4048bb2aa86cae1f06c6e08/api/converter_utils.go#L489 Are both of these necessary?
## Problem I'd like the ability to filter transactions by ApplicationArgs and application OnComplete. This will be useful especially with application calls that conform to the ABI spec allowing a...
## Problem [ARC22](https://github.com/algorandfoundation/ARCs/blob/main/ARCs/arc-0022.md) describes a way to mark methods as `read only`, to denote they should not be called through the normal transaction process. ## Solution Add a `read_only` argument...
### Subject of the issue Without digging more I expect this is a diff between `DynamicBytes` and `DynamicArray[Byte]` Posting this so we don't forget to fix
If a subroutine is declared as ```py @Subroutine(TealType.none) def txn_checks(txn: abi.Transaction): # ... ``` and called with ```py @router.method def payme(ptxn: abi.PaymentTransaction): return Seq( txn_checks(ptxn) # ... ``` Pyteal will...
Addresses #530
I've never seen 4180 as the port for an Algod API. In sandbox its 4001, for APIs it's almost always 443. If the dev doesn't set it to an empty...