'init'
This commit is contained in:
13
app/providers/AccountProvider/usePublicKey.ts
Normal file
13
app/providers/AccountProvider/usePublicKey.ts
Normal file
@@ -0,0 +1,13 @@
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user