13 lines
418 B
TypeScript
13 lines
418 B
TypeScript
import { useContext } from "react";
|
|
import { AccountContext, AccountContextValue } from "./AccountProvider";
|
|
|
|
export function usePublicKey() {
|
|
const context : AccountContextValue = useContext(AccountContext);
|
|
if(!context){
|
|
throw new Error("useAccount must be used within a AccountProvider");
|
|
}
|
|
if(!context.loginedAccount){
|
|
return "";
|
|
}
|
|
return context.loginedAccount.publicKey;
|
|
} |