kin-node icon indicating copy to clipboard operation
kin-node copied to clipboard

The Kin Node SDK to communicate with the Kin API.

Results 7 kin-node issues
Sort by recently updated
recently updated
newest added

I am using @kinecosystem/kin-sdk-v2 version 0.5.0 SDK I have two issue with submitPayment method - Getting super slow response approx 2 to 3min - Sometimes get BadNonce exception ``` return...

The submit transaction result only accounts for "error" or "success", and mis-handles "unknown" as "success" https://github.com/kinecosystem/kin-node/blob/4295b4fbde73714c7bd63771ca0ac066b0300f7a/src/client/internal.ts#L49 this causes the issue where if Agora or blockchain has a problem (e.g. runs...

We've been using `kin-node` for more than a year, and just discovered an undocumented limit in the "EarnBatch" code. Had to dig into the kin-node code, to discover there was...

Need an example in documentation how to initialize an account and what do all these parameter values should be for KIN

In order to facilitate the easy integration of common functionality like showing a history of transactions, it would be great if the Kin Node.js SDK could expose this functionality, similar...

It contains syntax errors: ``` app.use("/events", EventsHandler(events: []Event) => { ``` should be ``` app.use("/events", EventsHandler(events: Event[]) => { ``` and ``` app.use("/sign_transaction", SignTransactionHandler(req: SignTransactionRequest, resp: SignTransactionResponse) => { //...

If you don't use express, it's nearly impossible to use webhooks, because the webhook functionality assumes express responses: https://github.com/kinecosystem/kin-node/blob/91cb7115a8e198c293793a8de267d719a7eaa283/src/webhook/index.ts#L282 A better function signature would be to have a function that...