aboutsummaryrefslogtreecommitdiffstats
path: root/packages/browser-extension/src/settings.ts
blob: ee7f072210211914a1c4e4a2839a35cd3e5f4489 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
import { useChromeStorageSync } from "use-chrome-storage";

export type Settings = {
  apiKey: string;
  address: string;
};

export default function usePluginSettings() {
  return useChromeStorageSync("settings", {
    apiKey: "",
    address: "",
  } as Settings);
}