Skip to main content

useAddress

Using this hook, you can get your wallet address.

Usage

import { useAddress } from "ethylene/hooks";

function App() {

const address = useAddress();

return (
...
);
}

API

type ReturnType = string;