Skip to content

Latest commit

 

History

History
21 lines (18 loc) · 723 Bytes

usetypink.md

File metadata and controls

21 lines (18 loc) · 723 Bytes

useTypink

useTypink to access various shared states from TypinkProvider, you will probably use this a lot when accessing current connected account or network information ...

// ...
const { 
  accounts, // list available accounts connected from the wallet
  connectedAccount, // connected account to interact with contracts & networks
  network, // current connected network info
  client, // Dedot clients to interact with network
  deployments, // contract deployments
  connectedWallet, // connected wallet
  connectWallet, // func to connect to a wallet given its id
  disconnect, // func to sign out and disconnect from the wallet
  wallets, // available wallets
  ...
} = useTypink();
// ...