├── .eslintrc.cjs ├── .gitignore ├── LICENSE ├── README.md ├── components.json ├── index.html ├── jsconfig.json ├── package.json ├── postcss.config.js ├── src ├── App.css ├── App.tsx ├── components │ ├── CopyableTextarea.tsx │ ├── FAQ.tsx │ ├── Footer.tsx │ ├── Inscribe.tsx │ ├── Recover.tsx │ ├── WalletConnect.tsx │ └── ui │ │ ├── accordion.tsx │ │ ├── alert.tsx │ │ ├── button.tsx │ │ ├── card.tsx │ │ ├── dialog.tsx │ │ ├── input.tsx │ │ ├── select.tsx │ │ ├── tabs.tsx │ │ ├── textarea.tsx │ │ ├── toast.tsx │ │ ├── toaster.tsx │ │ └── use-toast.ts ├── index.css ├── lib │ ├── checksum.ts │ ├── decrypt.tsx │ ├── encrypt.tsx │ ├── parse.tsx │ └── utils.ts ├── main.tsx └── vite-env.d.ts ├── tailwind.config.js ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdoman/multisig-backup/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdoman/multisig-backup/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdoman/multisig-backup/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdoman/multisig-backup/HEAD/README.md -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdoman/multisig-backup/HEAD/components.json -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdoman/multisig-backup/HEAD/index.html -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdoman/multisig-backup/HEAD/jsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdoman/multisig-backup/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdoman/multisig-backup/HEAD/postcss.config.js -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdoman/multisig-backup/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/components/CopyableTextarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdoman/multisig-backup/HEAD/src/components/CopyableTextarea.tsx -------------------------------------------------------------------------------- /src/components/FAQ.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdoman/multisig-backup/HEAD/src/components/FAQ.tsx -------------------------------------------------------------------------------- /src/components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdoman/multisig-backup/HEAD/src/components/Footer.tsx -------------------------------------------------------------------------------- /src/components/Inscribe.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdoman/multisig-backup/HEAD/src/components/Inscribe.tsx -------------------------------------------------------------------------------- /src/components/Recover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdoman/multisig-backup/HEAD/src/components/Recover.tsx -------------------------------------------------------------------------------- /src/components/WalletConnect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdoman/multisig-backup/HEAD/src/components/WalletConnect.tsx -------------------------------------------------------------------------------- /src/components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdoman/multisig-backup/HEAD/src/components/ui/accordion.tsx -------------------------------------------------------------------------------- /src/components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdoman/multisig-backup/HEAD/src/components/ui/alert.tsx -------------------------------------------------------------------------------- /src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdoman/multisig-backup/HEAD/src/components/ui/button.tsx -------------------------------------------------------------------------------- /src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdoman/multisig-backup/HEAD/src/components/ui/card.tsx -------------------------------------------------------------------------------- /src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdoman/multisig-backup/HEAD/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdoman/multisig-backup/HEAD/src/components/ui/input.tsx -------------------------------------------------------------------------------- /src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdoman/multisig-backup/HEAD/src/components/ui/select.tsx -------------------------------------------------------------------------------- /src/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdoman/multisig-backup/HEAD/src/components/ui/tabs.tsx -------------------------------------------------------------------------------- /src/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdoman/multisig-backup/HEAD/src/components/ui/textarea.tsx -------------------------------------------------------------------------------- /src/components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdoman/multisig-backup/HEAD/src/components/ui/toast.tsx -------------------------------------------------------------------------------- /src/components/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdoman/multisig-backup/HEAD/src/components/ui/toaster.tsx -------------------------------------------------------------------------------- /src/components/ui/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdoman/multisig-backup/HEAD/src/components/ui/use-toast.ts -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdoman/multisig-backup/HEAD/src/index.css -------------------------------------------------------------------------------- /src/lib/checksum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdoman/multisig-backup/HEAD/src/lib/checksum.ts -------------------------------------------------------------------------------- /src/lib/decrypt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdoman/multisig-backup/HEAD/src/lib/decrypt.tsx -------------------------------------------------------------------------------- /src/lib/encrypt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdoman/multisig-backup/HEAD/src/lib/encrypt.tsx -------------------------------------------------------------------------------- /src/lib/parse.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdoman/multisig-backup/HEAD/src/lib/parse.tsx -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdoman/multisig-backup/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdoman/multisig-backup/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdoman/multisig-backup/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdoman/multisig-backup/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdoman/multisig-backup/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdoman/multisig-backup/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdoman/multisig-backup/HEAD/vite.config.ts --------------------------------------------------------------------------------