ECBSJ

Results 22 issues of ECBSJ

Why use the BN module over the native js BigInt? What advantageous did you obtain from using BN and would it be possible to implement the same logic using BigInt...

good first issue

i can't seem to get any results returned back from this BRC-20 API endpoint when passing in tickers as an array of strings: curl example: `curl -X GET "https://api.hiro.so/ordinals/v1/brc-20/tokens?ticker=%5B%22piza%22%2C%22pepe%22%5D"` js...

api
ordinals

Passing in the block hash into this endpoint for getting activity for a block will time out and returns back: https://api.hiro.so/runes/v1/blocks/00000000000000000002461ebc57d847e9bd6d65be686b4a954db876e347e945/activity?offset=0&limit=1 ``` { "statusCode": 500, "code": "57014", "error": "Internal Server...

api
runes

Within `UnsignedContractCallOptions` type, it should be: `publicKey: PublicKey` ref: https://github.com/hirosystems/stacks.js/blob/fd0bf26b5f29fc3c1bf79581d0ad9b89f0d7f15a/packages/transactions/src/builders.ts#L429

Why use `webworkify` module over the js `Worker` class? What were you able to obtain/solve better with using the `webworkify` module? I ask because I am having issues importing/requiring external...

Milano from STX tools requested for an API endpoint to get data on miner rewards over time. They would like to track this information on their end.

Request from a dev for us to expose an NFT holders endpoint (ie `/extended/v1/tokens/nft/{asset}/holders`) We have one for FTs already but not for NFTs. ![Image](https://github.com/user-attachments/assets/caa78243-a53b-4d9c-8167-110a3400f31b)

In the readme, it suggests to run the below commands to compile just this library and its dependencies into a single JavaScript file, and then import it as a .js...

This relates to @stacks/connect and @stacks/transactions having different "network" types. @stacks/connect methods uses `NetworkString`: `export type NetworkString = LiteralUnion;` @stacks/transactions methods uses `StacksNetworkName | StacksNetwork`: ``` export declare const StacksNetworks:...

It would be nice to add a `memo` field to the `stx_transferSip10Ft` and `stx_transferSip09Nft` request functions. ``` let response = await request('stx_transferSip10Ft', { asset: "SM3VDXK3WZZSA84XXFKAFAF15NNZX32CTSG82JFQ4.sbtc-token::sbtc-token", amount: amount.value, recipient: 'SP1HEJ1XHBJZJFNA2AECYQXQGZD8EQE4F30D6H5CR', memo?:...