Ben Guidarelli
Ben Guidarelli
## Problem If I have a tuple `(uint64,address)` and I want to set the values in a tuple, I need to first create ABI types to hold them, then pass...
## Problem I want to know how much a given expression should cost for computing how many additional opup requests to make. Adding another element to the `Op` tuple for...
## Problem Initializing the scratch var seems weird ```py program = Seq( (x := ScratchVar()).store(Int(1)), x.load() ) ``` what if? ```py program = Seq( v := Var(Int(1)), v.load() ) ```...
## Problem It is difficult to map the `pc` returned from a failed transaction back to the PyTeal source line that caused it. ## Solution Add a `debug: bool` flag...
## Problem At the moment the only method we have available to compile teal is `compileTeal` which takes a number of arguments including mode and version. The version _must_ be...
## Problem Couple reports in the discord with confusion around including a call like `App.localGetEx` return var in the seq. The error message is something like: ``` raise TealInternalError(msg) from...
Running the sandbox with DevMode flag set to `true` does not seem to produce a block seed which is useful for things like the new `vrf_verify` op and some folks...
## Problem The function that looks up PendingTransactionInformation starts by checking the local cache for a given transaction ID. If it is found there it _still_ iterates through up to...
## Problem While digging into #2904 what it would take to support a remote API for `goal`, it was noted that some of the API calls currently only support the...
While comparing DryrunRequest output across multiple SDKs, I noticed Go omits some empty values that js/python do not. Go | JS | Python  I'm not sure this is a...