Bob Broderick
Bob Broderick
I like the pyproject.toml-based categorized feature gate support approach over adding a pyteal.ini.
yes I hacked this with ``` diff --git a/pyteal/compiler/sourcemap.py b/pyteal/compiler/sourcemap.py index 4282006..3b31426 100644 --- a/pyteal/compiler/sourcemap.py +++ b/pyteal/compiler/sourcemap.py @@ -1,3 +1,4 @@ +import yapf.yapflib.yapf_api as yapf_api import ast import bisect from...
my favorite is now ` _PYTEAL_HYBRID_UNPARSED: "| " + yapf_api.FormatCode (self.hybrid_unparsed(), style_config="{COLUMN_LIMIT:80}")[0].strip().replace ('\n','\n//'),`
Most of the constraints regarding macro names in TEAL are resolved by the Tealish Const pattern `(?P[A-Z][a-zA-Z0-9_]*)`, particularly the requirement for an initial uppercase letter, including the requirement for a...
Nice! I did notice the inconsistency between the code and the docs but I went with the code. There are no all-cap field names at the moment (although TxID comes...
TIL prepeating. Expressing the intent to "remote" by providing it as an explicit command even if it is technically possible to session-manage your way into the same functionality feels safer...
sounds like a request to move to a push/webhook notification system in algod
Really cool! Also, kind of a mystery. I guess my only concern is where this logic is located. From an implementation perspective there is a lot of cut and paste...
A standard node would run this function once per round? and maybe whenever the VRF opcode is used?
I feel like this PR is in a bind because the person most qualified to review it also wrote it.