Fabrice Benhamouda
Fabrice Benhamouda
The country MK recently changed names as well as region short codes according to https://www.iso.org/obp/ui/#iso:code:3166:MK
This commit adds: * base64 serialization/deserialization functions for unsigned transactions * algodclient.sendBase64RawTransaction that allows sending directly base64-encoded signed transactions This is very useful for wallets such as AlgoSigner that takes...
## Problem Currently, it is only possible to test a full PyTEAL smart contract (by using a sandbox/private network or using a light runtime - https://github.com/scale-it/algo-builder/tree/master/packages/runtime). This allows to test...
## Problem Currently, for dynamic byte arrays `byte[]` we need to write `abi.DynamicArray(abi.Byte)`, which is quite long. Same for static array. ## Solution Add some type aliases. Propositions: * `abi.Bytes`...
**The current state** Currently https://pyteal.readthedocs.io/en/stable/examples.html starts with signature mode examples. Nowadays, almost all DApps are expected to use the application mode. **The proposed state** Maybe add a sentence reflecting the...
Is it possible to get historical ledger supply values, i.e., values of https://developer.algorand.org/docs/reference/rest-apis/algod/v2/#get-v2ledgersupply for previous rounds? Can we add to the above values, a field with the total supply (i.e.,...
## Summary Query parameters after-time and before-time for /v2/transactions always assume UTC even if a different timezone is specified. ```bash $ curl -s "https://testnet.algoexplorerapi.io/idx2/v2/transactions?after-time=2021-04-24T21:30:00-04:00&before-time=2021-04-24T21:30:08-04:00" | jq { "current-round": 13748828, "next-token":...
## Summary The role of the query parameters `application-id` and `asset-id` may be unclear in the endpoint `/v2/accounts`. I think it would be great to clarify the following: - do...
## Summary When querying the account information for a round before the account creation, instead of indicating that the account does not exist, the indexer returns values that do not...
## Summary Current implementation is constant-time. Constant-time is most likely not needed for most cases, as VRF inputs are usually public. There is quite a lot of copy-pasting in ed25519_ref10.c....