+
+
- [**Integrations**](./docs/Integrations.md)
- > More integration and helpful hooks to come, stay tuned!
- - [`useNfd`](./docs/useNfd.md) - fetches NFD metadata from [NFD API](https://api-docs.nf.domains/). [![][img-demo]](https://codesandbox.io/s/awesomealgo-hook-usenfd-example-23bnq4)
+ - [`useNfd`](./docs/useNfd.md) - [🚀🚀🚀](https://codesandbox.io/s/awesomealgo-hook-usenfd-example-23bnq4) - fetches NFD metadata from [NFD API](https://api-docs.nf.domains/).
+- [**Helpers**](./docs/Helpers.md)
+ - [`useShortAddress`](./docs/useShortAddress.md) - [🚀🚀🚀](https://codesandbox.io/s/awesomealgo-hook-useshortaddress-example-r30poo) - shortens a wallet address string.
@@ -36,15 +41,15 @@
Usage – how to import.
Unlicense – public domain.
+
+ Contribution – click to see the guideline.
-[img-demo]: https://img.shields.io/badge/demo-%20%20%20%F0%9F%9A%80-green.svg
-
---
-## ⭐️ Stargazers
+## Stargazers
Special thanks to everyone who contributed to the repository ❤️
@@ -52,6 +57,6 @@ Special thanks to everyone who contributed to the repository ❤️
[](https://github.com/aorumbayev/awesomealgo-hooks/network/members)
-## 📝 Credits
+## Credits
- [react-use](https://github.com/streamich/react-use) - for providing a great set of examples on maintaining and distributing hook package repos.
diff --git a/docs/Helpers.md b/docs/Helpers.md
new file mode 100644
index 0000000..a6878ad
--- /dev/null
+++ b/docs/Helpers.md
@@ -0,0 +1,3 @@
+# Helpers
+
+**Helpers** are a set of hooks with various minor helper utilities.
diff --git a/docs/useShortAddress.md b/docs/useShortAddress.md
new file mode 100644
index 0000000..41d3eca
--- /dev/null
+++ b/docs/useShortAddress.md
@@ -0,0 +1,25 @@
+# `useShortAddress`
+
+React hook that shortens a wallet address string.
+
+## Usage
+
+```jsx
+import { useShortAddress } from 'awesomealgo-hooks';
+
+const Demo = () => {
+ const shortAddress = useShortAddress('NRLA7VZ2YV6WOS2LBS3UK25DB463XRSNG63BYNQI6CSGGROFWVQ2EKBQSI');
+
+ return (
+