js-algorand-sdk
js-algorand-sdk copied to clipboard
The official JavaScript SDK for Algorand.
Original version: https://github.com/kael-shipman/js-algorand-sdk/tree/feature/621-disassemble Companion SDK-testing PR: https://github.com/algorand/algorand-sdk-testing/pull/233
Itemizes breaking changes slated for the next major version bump. ---- Candidate changes to consider. Move to story if we want to include it. * Remove need to adjust casing...
In the case that a foreign ref (asset,acct,app) is not specified in the method signature but might be needed for some reason, the caller of the `AtomicTransactionComposer.addMethodCall` should still be...
Itemizes functionality that will be removed in the upcoming major release.
### Subject of the issue Please upgrade superagent library. Version 6 is deprecated. https://www.npmjs.com/package/superagent I am facing issues superagent crashing the typescript app.. Unable to catch error in try catch....
## Problem According to the FAQ page: > Webpack 5 no longer auto-polyfills some of the node modules used by this sdk. You will have to polyfill them to fix...
Bumps [jszip](https://github.com/Stuk/jszip) from 3.6.0 to 3.10.1. Changelog Sourced from jszip's changelog. v3.10.1 2022-08-02 Add sponsorship files. If you appreciate the time spent maintaining JSZip then I would really appreciate your...
## Problem Any usage of custom headers in HTTP requests causes browsers to send extra preflight query. This makes no sense in case of empty token and can be avoided...
### Subject of the issue On an M1 (and I think any ARM processor in general will also have this error), the cucumber docker container will fail on the following...
I noticed the following code in the transaction constructor: ```ts txn.appArgs.forEach((arg) => { if (arg.constructor !== Uint8Array) throw Error('each element of AppArgs must be a Uint8Array.'); }); ``` It forces...