Skip to main content

useSigner

This hook helps you get Signer information from the state.

Usage

import { useSigner } from "ethylene/hooks";

function App() {

const signer = useSigner();

return (
...
);
}

API

type ReturnType = JsonRpcSigner | undefined;