A Simple React hook that connects with Tronlink wallet extension 📝
# Install using yarn
yarn add use-tronlink
# Install using npm
npm install use-tronlink
use-tronlink is a simple hook just like other ones, follow the example above to use it.
import { useTronlink } from 'use-tronlink';
const MyComponent = () => {
const {
address, // The connected wallet address
walletName, // The wallet name
trxBalance, // The wallet TRX balance
isConnected, // A boolean checking it is connected or not
} = useTronlink();
return (
...
)
}
Released in 2022. This project is under the MIT license 🚀
Made with love by Eryk Luiz 🚀