Skip to content

Latest commit

 

History

History
52 lines (36 loc) · 1.35 KB

readme.md

File metadata and controls

52 lines (36 loc) · 1.35 KB

use-tronlink

A Simple React hook that connects with Tronlink wallet extension 📝


🏗️ Installation

  # Install using yarn
  yarn add use-tronlink
  
  # Install using npm
  npm install use-tronlink

🧑‍💻 Usage

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 (
    ...
  )
}

📕 License

Released in 2022. This project is under the MIT license 🚀

Made with love by Eryk Luiz 🚀