ArkEcosystem / typescript-client

A simple TypeScript API client for the ARK Blockchain.
MIT License
7 stars 20 forks source link

feat: update and add new core-v3 endpoints #142

Closed KovacZan closed 4 years ago

KovacZan commented 4 years ago

Summary

Added and updated core-v3 endpoints. Made it possible to work with dot notation. Had to adjust parameters like this:

"timestamp.from"?: number;
"timestamp.to"?: number;

instead of:

timestamp?: {
    from?: number;
    to?: number;
}

because GET method doesn't parse the object to dot notation.

Checklist

faustbrian commented 4 years ago

Closing this PR because it contains a large amount of unrelated changes. Feel free to reopen smaller PRs that are submitting specific changes.

KovacZan commented 4 years ago

Could you open a specific branch for core-v3 changes.