Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ALL-1506 - Fix docs links #841

Merged
merged 1 commit into from
Jun 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## [1.5.1] - 2023.06.20
### Changed
- Fixed docs links to make it working in the /docs folder

## [1.5.0] - 2023.06.19

### Added
Expand Down
4 changes: 2 additions & 2 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
Welcome to the Tatum SDK documentation! Use the following links to navigate to the desired parts of our documentation:

- [Getting Started with Tatum SDK](https://docs.tatum.com)
- [Structure](https://github.com/tatumio/tatum-js/master/docs/structure.md)
- [RPC submodule](https://github.com/tatumio/tatum-js/master/docs/rpc.md)
- [Structure](https://github.com/tatumio/tatum-js/blob/master/docs/structure.md)
- [RPC submodule](https://github.com/tatumio/tatum-js/blob/master/docs/rpc.md)
2 changes: 1 addition & 1 deletion docs/rpc.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ See the [RPC API Reference](https://docs.tatum.com/docs/rpc-api-reference) for m
Load balancer is used managing RPC calls to nodes in a blockchain network.
It maintains a list of available nodes and their status, and it automatically selects the most responsive node for subsequent RPC calls.

> **_For use of the Load Balancer, you need to know how it is working!._** Load Balancer works automatically in the background and selects the most responsive node for subsequent RPC calls. You can use the SDK without any knowledge of the Load Balancer.
> **_For use of the Load Balancer, you don't need to know how it is working!._** Load Balancer works automatically in the background and selects the most responsive node for subsequent RPC calls. You can use the SDK without any knowledge of the Load Balancer.

Load Balancer implementation is available in [LoadBalancerRpc.ts](https://github.com/tatumio/tatum-js/blob/master/src/service/rpc/generic/LoadBalancerRpc.ts)

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tatumcom/js",
"version": "1.5.0",
"version": "1.5.1",
"description": "Tatum JS SDK",
"author": "Tatum",
"repository": "https://github.com/tatumio/tatum-js",
Expand Down
Loading