js-algorand-sdk
js-algorand-sdk copied to clipboard
The official JavaScript SDK for Algorand.
### Subject of the issue ``` const client = new algosdk.Algodv2("DUMMYTOKEN", "http://127.0.0.1:17458"); ``` Should create a client which will request port 17458, but the client requests port 4180. it is...
## Problem Integration of Algorand Wallet and Explorer with Binance Smart Chain based Trading System ## Solution Integration using Algorand Wallet reference implementation and Algorand Indexer Utility ## Dependencies Dependency...
part of https://github.com/algorand/go-algorand-internal/issues/1415
We require these types in [`algo-builder`](https://github.com/scale-it/algo-builder) ```js export interface AlgodTokenHeader { 'X-Algo-API-Token': string; } export interface IndexerTokenHeader { 'X-Indexer-API-Token': string; } export interface KMDTokenHeader { 'X-KMD-API-Token': string; } export interface...
## Summary This issue tracks the migration of the logic templates to TypeScript. ## Scope Migrate the directory `src/logicTemplates` to TypeScript. ## Urgency Lower priority since the logic templates do...
## Summary Recently this SDK had a bug where the transaction extra pages field, `apep`, was being ignored when decoding a transaction. In order to prevent bugs like this from...
The Algorand document lists names for the fields --- https://developer.algorand.org/docs/reference/transactions/ --- and the JS SDK (maybe the other's too, but I don't know) doesn't uses these names. For example, the...
Hi, I am trying to execute an atomic transfer that involves closing out an escrow account but I keep getting the following error: ``` "TransactionPool.Remember: transactionGroup: incomplete group: XGHNMDXO6YA6PPCZYTVUBRW7PL4SV2WT2DJTDAN44VYCOIIN5XXQ !=...
## Summary Since the internal `bytesToSign` function returns a `Buffer` instead of a `Uint8Array`, signing a transaction throws an error inside Jest's node testing environment. ### Background Jest's standard node...
## Summary The generated documentation website PR (#333) automates the generation of a static documentation website for all of the existing doc comments. In the future, we should add doc...