Jason Paulos

Results 83 comments of Jason Paulos
trafficstars

It looks like the Solid protocol has changed how authentication works. The README for [solid-auth-client](https://github.com/solid/solid-auth-client), the authentication library used by solid-health, now says: > **⚠️ New projects should use [solid-client-authn](https://github.com/inrupt/solid-client-authn-js)...

Are you aware of this table? https://pyteal.readthedocs.io/en/stable/versions.html Or are you looking for a more detailed table that shows support for each individual feature?

@ivanschuetz thank you for reporting this, we're looking into it

We can't use `[\d]+` with the code as is, since it would make things like `uint64[0000000001]` appear as a valid type. And we don't want this because method signatures need...

Just made this: https://github.com/fabrice102/ARCs/pull/2

Hi @oliviera9, both the Javascript and Python SDKs directly return the REST response from indexer. I would expect both of them to behave exactly the same with respect to the...

The `execute` function no longer exists, but it used to be here: https://github.com/algorand/pyteal/blob/5c22a45de9a4ae4886db3ab0f355d51ec5a159f7/pyteal/util.py#L115 Instead of using the CLI tool `goal`, the examples should use the v2 algod client from the...

The `Algod.compile()` function sends the program to an algod node to be compiled, in comparison to directly invoking the command line program `goal clerk compile`. See this link for more...

If the primary purpose of this PR is to make it easier for users to convert between `Transaction` objects and an encoded form for use with 3rd party libraries, I...

That makes a lot of sense, thanks for explaining why using `Transaction` objects is not desirable. It seems like it would be acceptable to use a `Uint8Array` containing the msgpack...