api-sdk-ts icon indicating copy to clipboard operation
api-sdk-ts copied to clipboard

Typed SDK for TzKT API

Results 4 api-sdk-ts issues
Sort by recently updated
recently updated
newest added

```ts const liveBlocks = await blocksGet({ sort: { desc: 'level', }, limit: this.liveBlocksLimit, select: { fields: ['hash', 'timestamp'] }, ...filters, }); ``` Returns plain array of hashes although should return...

- Fixes parsing of array values `await operationsGetTransactions( { target: { eq: 'KT1R7WEtNNim3YgkxPt8wPMczjH3eyhbJMtz' }, entrypoint: { in: ['e1', 'e2', 'e3'] } });` - Current: `...&entrypoint.in=e1&entrypoint.in=e2&entrypoint.in=e3` - New: `...&entrypoint.in=e1,e2,e3`

Heya, and thank you! It seems to work quite nicely :) Small issue: it's not quite compatible with more recent versions of taquito. At best type errors (15.0), at worst...

- **I'm submitting a ...** - [x] feature request - **Summary** I wish it works like this: ```ts contractsGetBigMapByNameKeys( address, 'name', { value: { token_id: { in: ['0', '1'], },...