├── .dockerignore ├── .envrc ├── .github ├── templates │ └── failed-backport-issue.md └── workflows │ ├── ci.yml │ └── docker-ci.yml ├── .gitignore ├── .husky ├── commit-msg └── pre-commit ├── .npmrc ├── .prettierrc ├── CODEOWNERS ├── CONTRIBUTING.md ├── Dockerfile ├── JUSTFILE ├── LICENSE ├── README.md ├── apps └── router │ ├── .eslintrc.cjs │ ├── index.html │ ├── package.json │ ├── public │ ├── favicon.ico │ └── robots.txt │ ├── setupTests.ts │ ├── src │ ├── App.tsx │ ├── api │ │ ├── GatewayApi.ts │ │ └── GuardianApi.ts │ ├── components │ │ ├── Footer.tsx │ │ ├── Header.tsx │ │ ├── Logo.tsx │ │ └── Wrapper.tsx │ ├── constants │ │ └── index.tsx │ ├── context │ │ ├── AppContext.tsx │ │ ├── gateway │ │ │ └── GatewayContext.tsx │ │ └── guardian │ │ │ ├── AdminContext.tsx │ │ │ ├── GuardianContext.tsx │ │ │ └── SetupContext.tsx │ ├── gateway-ui │ │ ├── Gateway.tsx │ │ ├── assets │ │ │ └── svgs │ │ │ │ ├── check-circle.svg │ │ │ │ ├── copy.svg │ │ │ │ ├── info-solid.svg │ │ │ │ ├── linkIcon.svg │ │ │ │ └── x-circle.svg │ │ ├── components │ │ │ ├── ConnectFederationModal.tsx │ │ │ ├── ErrorMessage.tsx │ │ │ ├── GatewayCard.tsx │ │ │ ├── HeaderWithUnitSelector.tsx │ │ │ ├── Loading.tsx │ │ │ ├── federations │ │ │ │ ├── ConnectFederation.tsx │ │ │ │ ├── FederationsTable.tsx │ │ │ │ └── ViewConfig.tsx │ │ │ ├── form │ │ │ │ ├── AmountInput.tsx │ │ │ │ ├── CreateButton.tsx │ │ │ │ ├── InfoField.tsx │ │ │ │ ├── QRPanel.tsx │ │ │ │ └── QRTabs.tsx │ │ │ ├── index.tsx │ │ │ ├── lightning │ │ │ │ └── LightningCard.tsx │ │ │ ├── walletCard │ │ │ │ ├── BalancesSummary.tsx │ │ │ │ ├── EcashCard.tsx │ │ │ │ ├── LightningCard.tsx │ │ │ │ ├── OnchainCard.tsx │ │ │ │ └── WalletCard.tsx │ │ │ └── walletModal │ │ │ │ ├── FederationSelector.tsx │ │ │ │ ├── WalletActionSelector.tsx │ │ │ │ ├── WalletModal.tsx │ │ │ │ ├── WalletTypeButtons.tsx │ │ │ │ ├── receive │ │ │ │ ├── ReceiveEcash.tsx │ │ │ │ ├── ReceiveLightning.tsx │ │ │ │ └── ReceiveOnchain.tsx │ │ │ │ └── send │ │ │ │ ├── SendEcash.tsx │ │ │ │ ├── SendLightning.tsx │ │ │ │ ├── SendOnchain.tsx │ │ │ │ └── SendOnchainSuccess.tsx │ │ ├── hooks │ │ │ └── useBalanceCalculations.ts │ │ ├── setupTests.ts │ │ ├── typings │ │ │ └── i18next.d.ts │ │ └── utils │ │ │ └── index.ts │ ├── guardian-ui │ │ ├── Guardian.tsx │ │ ├── admin │ │ │ └── FederationAdmin.tsx │ │ ├── assets │ │ │ ├── images │ │ │ │ └── Fedimint-Full.png │ │ │ └── svgs │ │ │ │ ├── account.svg │ │ │ │ ├── arrow-left.svg │ │ │ │ ├── arrow-right.svg │ │ │ │ ├── banknotes.svg │ │ │ │ ├── bitcoin-white.svg │ │ │ │ ├── bitcoin.svg │ │ │ │ ├── calendar.svg │ │ │ │ ├── check-circle.svg │ │ │ │ ├── check.svg │ │ │ │ ├── chevron-down.svg │ │ │ │ ├── chevron-up.svg │ │ │ │ ├── copy.svg │ │ │ │ ├── ecash.svg │ │ │ │ ├── fedimint.svg │ │ │ │ ├── guardians.svg │ │ │ │ ├── home.svg │ │ │ │ ├── info.svg │ │ │ │ ├── intersect-square.svg │ │ │ │ ├── lightbulb.svg │ │ │ │ ├── lightningIcon.svg │ │ │ │ ├── linkIcon.svg │ │ │ │ ├── modules.svg │ │ │ │ ├── plus.svg │ │ │ │ ├── qr.svg │ │ │ │ ├── settings.svg │ │ │ │ ├── solo.svg │ │ │ │ ├── stars.svg │ │ │ │ ├── trash.svg │ │ │ │ ├── warning.svg │ │ │ │ ├── white-check.svg │ │ │ │ ├── x-circle.svg │ │ │ │ └── x.svg │ │ ├── components │ │ │ ├── AwaitingLocalParams │ │ │ │ └── index.tsx │ │ │ ├── BftInfo.tsx │ │ │ ├── CenterBox │ │ │ │ └── index.tsx │ │ │ ├── NumberFormControl.tsx │ │ │ ├── SharingConnectionCodes │ │ │ │ └── index.tsx │ │ │ ├── TermsOfService.tsx │ │ │ └── dashboard │ │ │ │ ├── admin │ │ │ │ ├── BitcoinNodeCard.tsx │ │ │ │ └── InviteCode.tsx │ │ │ │ ├── danger │ │ │ │ ├── DangerZone.tsx │ │ │ │ ├── DownloadBackup.tsx │ │ │ │ ├── GuardianAuthenticationCode.tsx │ │ │ │ ├── ScheduleShutdown.tsx │ │ │ │ └── SignApiAnnouncement.tsx │ │ │ │ └── tabs │ │ │ │ ├── ApiAnnouncements.tsx │ │ │ │ ├── FederationTabsCard.tsx │ │ │ │ ├── balanceSheet │ │ │ │ ├── BalanceSheet.tsx │ │ │ │ └── BalanceTable.tsx │ │ │ │ ├── info │ │ │ │ └── FederationInfo.tsx │ │ │ │ ├── meta │ │ │ │ ├── manager │ │ │ │ │ ├── CustomMetaFields.tsx │ │ │ │ │ ├── EditMetaField.tsx │ │ │ │ │ ├── IconPreview.tsx │ │ │ │ │ ├── MetaInput.tsx │ │ │ │ │ ├── MetaManager.tsx │ │ │ │ │ ├── ProposeMetaModal.tsx │ │ │ │ │ ├── RequiredMeta.tsx │ │ │ │ │ └── SitesInput.tsx │ │ │ │ └── proposals │ │ │ │ │ ├── ConfirmNewMetaModal.tsx │ │ │ │ │ ├── NoPendingProposals.tsx │ │ │ │ │ └── ProposedMetas.tsx │ │ │ │ └── status │ │ │ │ ├── FederationStatus.tsx │ │ │ │ ├── GatewaysStatus.tsx │ │ │ │ └── GuardiansStatus.tsx │ │ ├── hooks │ │ │ └── index.tsx │ │ ├── setupTests.ts │ │ ├── typings │ │ │ └── i18next.d.ts │ │ └── utils │ │ │ ├── api.ts │ │ │ ├── constants.ts │ │ │ ├── debounce.ts │ │ │ ├── index.ts │ │ │ └── validators.ts │ ├── helpers │ │ ├── service.test.ts │ │ └── service.ts │ ├── hooks │ │ ├── custom │ │ │ ├── useQuery.tsx │ │ │ └── useTrimmedInput.tsx │ │ ├── gateway │ │ │ └── useGateway.tsx │ │ ├── guardian │ │ │ ├── useGuardian.tsx │ │ │ └── useGuardianSetup.tsx │ │ └── index.tsx │ ├── images │ │ └── hero-1.svg │ ├── index.tsx │ ├── languages │ │ ├── ca.json │ │ ├── de.json │ │ ├── en.json │ │ ├── es.json │ │ ├── fr.json │ │ ├── hu.json │ │ ├── index.ts │ │ ├── it.json │ │ ├── ja.json │ │ ├── ko.json │ │ ├── pt.json │ │ ├── ru.json │ │ └── zh.json │ ├── pages │ │ ├── Home │ │ │ ├── Home.test.tsx │ │ │ ├── Home.tsx │ │ │ └── index.tsx │ │ └── utils.ts │ ├── types │ │ ├── gateway.tsx │ │ ├── guardian.tsx │ │ └── index.tsx │ ├── utils │ │ └── testing │ │ │ └── customRender.tsx │ └── vite-env.d.ts │ ├── tsconfig.json │ ├── vercel.json │ ├── vite.config.ts │ └── vitest.config.ts ├── docker-compose.yml ├── docs └── nix.md ├── flake.lock ├── flake.nix ├── misc ├── git-hooks │ ├── commit-msg │ ├── commit-template.txt │ └── pre-commit ├── mprocs.yaml └── test │ ├── bitcoin.conf │ ├── electrs.toml │ ├── lightningd.conf │ └── lnd.conf ├── mprocs-docker.yml ├── mprocs-nix-gateway.yml ├── mprocs-nix-guardian.yml ├── mprocs-rotate.yml ├── original-docker-compose.yml ├── package.json ├── packages ├── eslint-config │ ├── README.md │ ├── index.js │ └── package.json ├── tsconfig │ ├── README.md │ ├── base.json │ ├── package.json │ ├── react-app.json │ ├── react-library.json │ └── ts-library.json ├── types │ ├── .eslintrc.js │ ├── README.md │ ├── package.json │ ├── src │ │ ├── bitcoin.ts │ │ ├── federation.ts │ │ ├── gateway.ts │ │ ├── index.ts │ │ ├── meta.ts │ │ └── modules.ts │ ├── tsconfig.json │ └── tsup.config.json ├── ui │ ├── .eslintrc.js │ ├── README.md │ ├── package.json │ ├── src │ │ ├── ColorModeSwitcher.tsx │ │ ├── CopyInput.tsx │ │ ├── FormGroup.tsx │ │ ├── FormGroupHeading.tsx │ │ ├── KeyValues.tsx │ │ ├── Login.tsx │ │ ├── NetworkIndicator.tsx │ │ ├── RadioButtonGroup.tsx │ │ ├── SharedChakraProvider.tsx │ │ ├── StatusIndicator.tsx │ │ ├── Table.tsx │ │ ├── index.tsx │ │ └── theme.tsx │ ├── tsconfig.json │ └── tsup.config.json └── utils │ ├── .eslintrc.js │ ├── TRANSLATING.md │ ├── package.json │ ├── src │ ├── format.tsx │ ├── i18n.tsx │ ├── index.tsx │ └── meta.ts │ ├── tsconfig.json │ └── tsup.config.json ├── scripts ├── merge-locales.js ├── mprocs-nix-gateway.sh ├── mprocs-nix-guardian-manual.sh ├── mprocs-nix-guardian.sh ├── mprocs-nix.sh ├── mprocs-restart-guardian.sh ├── mprocs-rotate-guardian.sh ├── mprocs-user-shell.sh └── translate.js ├── testing.md ├── testing ├── btc.png └── test-pngs.py ├── turbo.json ├── vercel.json └── yarn.lock /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/.dockerignore -------------------------------------------------------------------------------- /.envrc: -------------------------------------------------------------------------------- 1 | use flake 2 | -------------------------------------------------------------------------------- /.github/templates/failed-backport-issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/.github/templates/failed-backport-issue.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/docker-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/.github/workflows/docker-ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/.npmrc -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/.prettierrc -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/Dockerfile -------------------------------------------------------------------------------- /JUSTFILE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/JUSTFILE -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/README.md -------------------------------------------------------------------------------- /apps/router/.eslintrc.cjs: -------------------------------------------------------------------------------- 1 | module.exports = require('@fedimint/eslint-config'); 2 | -------------------------------------------------------------------------------- /apps/router/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/index.html -------------------------------------------------------------------------------- /apps/router/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/package.json -------------------------------------------------------------------------------- /apps/router/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/public/favicon.ico -------------------------------------------------------------------------------- /apps/router/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/public/robots.txt -------------------------------------------------------------------------------- /apps/router/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/setupTests.ts -------------------------------------------------------------------------------- /apps/router/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/App.tsx -------------------------------------------------------------------------------- /apps/router/src/api/GatewayApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/api/GatewayApi.ts -------------------------------------------------------------------------------- /apps/router/src/api/GuardianApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/api/GuardianApi.ts -------------------------------------------------------------------------------- /apps/router/src/components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/components/Footer.tsx -------------------------------------------------------------------------------- /apps/router/src/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/components/Header.tsx -------------------------------------------------------------------------------- /apps/router/src/components/Logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/components/Logo.tsx -------------------------------------------------------------------------------- /apps/router/src/components/Wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/components/Wrapper.tsx -------------------------------------------------------------------------------- /apps/router/src/constants/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/constants/index.tsx -------------------------------------------------------------------------------- /apps/router/src/context/AppContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/context/AppContext.tsx -------------------------------------------------------------------------------- /apps/router/src/context/gateway/GatewayContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/context/gateway/GatewayContext.tsx -------------------------------------------------------------------------------- /apps/router/src/context/guardian/AdminContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/context/guardian/AdminContext.tsx -------------------------------------------------------------------------------- /apps/router/src/context/guardian/GuardianContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/context/guardian/GuardianContext.tsx -------------------------------------------------------------------------------- /apps/router/src/context/guardian/SetupContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/context/guardian/SetupContext.tsx -------------------------------------------------------------------------------- /apps/router/src/gateway-ui/Gateway.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/gateway-ui/Gateway.tsx -------------------------------------------------------------------------------- /apps/router/src/gateway-ui/assets/svgs/check-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/gateway-ui/assets/svgs/check-circle.svg -------------------------------------------------------------------------------- /apps/router/src/gateway-ui/assets/svgs/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/gateway-ui/assets/svgs/copy.svg -------------------------------------------------------------------------------- /apps/router/src/gateway-ui/assets/svgs/info-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/gateway-ui/assets/svgs/info-solid.svg -------------------------------------------------------------------------------- /apps/router/src/gateway-ui/assets/svgs/linkIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/gateway-ui/assets/svgs/linkIcon.svg -------------------------------------------------------------------------------- /apps/router/src/gateway-ui/assets/svgs/x-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/gateway-ui/assets/svgs/x-circle.svg -------------------------------------------------------------------------------- /apps/router/src/gateway-ui/components/ConnectFederationModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/gateway-ui/components/ConnectFederationModal.tsx -------------------------------------------------------------------------------- /apps/router/src/gateway-ui/components/ErrorMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/gateway-ui/components/ErrorMessage.tsx -------------------------------------------------------------------------------- /apps/router/src/gateway-ui/components/GatewayCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/gateway-ui/components/GatewayCard.tsx -------------------------------------------------------------------------------- /apps/router/src/gateway-ui/components/HeaderWithUnitSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/gateway-ui/components/HeaderWithUnitSelector.tsx -------------------------------------------------------------------------------- /apps/router/src/gateway-ui/components/Loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/gateway-ui/components/Loading.tsx -------------------------------------------------------------------------------- /apps/router/src/gateway-ui/components/federations/ConnectFederation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/gateway-ui/components/federations/ConnectFederation.tsx -------------------------------------------------------------------------------- /apps/router/src/gateway-ui/components/federations/FederationsTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/gateway-ui/components/federations/FederationsTable.tsx -------------------------------------------------------------------------------- /apps/router/src/gateway-ui/components/federations/ViewConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/gateway-ui/components/federations/ViewConfig.tsx -------------------------------------------------------------------------------- /apps/router/src/gateway-ui/components/form/AmountInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/gateway-ui/components/form/AmountInput.tsx -------------------------------------------------------------------------------- /apps/router/src/gateway-ui/components/form/CreateButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/gateway-ui/components/form/CreateButton.tsx -------------------------------------------------------------------------------- /apps/router/src/gateway-ui/components/form/InfoField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/gateway-ui/components/form/InfoField.tsx -------------------------------------------------------------------------------- /apps/router/src/gateway-ui/components/form/QRPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/gateway-ui/components/form/QRPanel.tsx -------------------------------------------------------------------------------- /apps/router/src/gateway-ui/components/form/QRTabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/gateway-ui/components/form/QRTabs.tsx -------------------------------------------------------------------------------- /apps/router/src/gateway-ui/components/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/gateway-ui/components/index.tsx -------------------------------------------------------------------------------- /apps/router/src/gateway-ui/components/lightning/LightningCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/gateway-ui/components/lightning/LightningCard.tsx -------------------------------------------------------------------------------- /apps/router/src/gateway-ui/components/walletCard/BalancesSummary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/gateway-ui/components/walletCard/BalancesSummary.tsx -------------------------------------------------------------------------------- /apps/router/src/gateway-ui/components/walletCard/EcashCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/gateway-ui/components/walletCard/EcashCard.tsx -------------------------------------------------------------------------------- /apps/router/src/gateway-ui/components/walletCard/LightningCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/gateway-ui/components/walletCard/LightningCard.tsx -------------------------------------------------------------------------------- /apps/router/src/gateway-ui/components/walletCard/OnchainCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/gateway-ui/components/walletCard/OnchainCard.tsx -------------------------------------------------------------------------------- /apps/router/src/gateway-ui/components/walletCard/WalletCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/gateway-ui/components/walletCard/WalletCard.tsx -------------------------------------------------------------------------------- /apps/router/src/gateway-ui/components/walletModal/FederationSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/gateway-ui/components/walletModal/FederationSelector.tsx -------------------------------------------------------------------------------- /apps/router/src/gateway-ui/components/walletModal/WalletActionSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/gateway-ui/components/walletModal/WalletActionSelector.tsx -------------------------------------------------------------------------------- /apps/router/src/gateway-ui/components/walletModal/WalletModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/gateway-ui/components/walletModal/WalletModal.tsx -------------------------------------------------------------------------------- /apps/router/src/gateway-ui/components/walletModal/WalletTypeButtons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/gateway-ui/components/walletModal/WalletTypeButtons.tsx -------------------------------------------------------------------------------- /apps/router/src/gateway-ui/components/walletModal/receive/ReceiveEcash.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/gateway-ui/components/walletModal/receive/ReceiveEcash.tsx -------------------------------------------------------------------------------- /apps/router/src/gateway-ui/components/walletModal/receive/ReceiveLightning.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/gateway-ui/components/walletModal/receive/ReceiveLightning.tsx -------------------------------------------------------------------------------- /apps/router/src/gateway-ui/components/walletModal/receive/ReceiveOnchain.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/gateway-ui/components/walletModal/receive/ReceiveOnchain.tsx -------------------------------------------------------------------------------- /apps/router/src/gateway-ui/components/walletModal/send/SendEcash.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/gateway-ui/components/walletModal/send/SendEcash.tsx -------------------------------------------------------------------------------- /apps/router/src/gateway-ui/components/walletModal/send/SendLightning.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/gateway-ui/components/walletModal/send/SendLightning.tsx -------------------------------------------------------------------------------- /apps/router/src/gateway-ui/components/walletModal/send/SendOnchain.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/gateway-ui/components/walletModal/send/SendOnchain.tsx -------------------------------------------------------------------------------- /apps/router/src/gateway-ui/components/walletModal/send/SendOnchainSuccess.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/gateway-ui/components/walletModal/send/SendOnchainSuccess.tsx -------------------------------------------------------------------------------- /apps/router/src/gateway-ui/hooks/useBalanceCalculations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/gateway-ui/hooks/useBalanceCalculations.ts -------------------------------------------------------------------------------- /apps/router/src/gateway-ui/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/gateway-ui/setupTests.ts -------------------------------------------------------------------------------- /apps/router/src/gateway-ui/typings/i18next.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/gateway-ui/typings/i18next.d.ts -------------------------------------------------------------------------------- /apps/router/src/gateway-ui/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/gateway-ui/utils/index.ts -------------------------------------------------------------------------------- /apps/router/src/guardian-ui/Guardian.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/guardian-ui/Guardian.tsx -------------------------------------------------------------------------------- /apps/router/src/guardian-ui/admin/FederationAdmin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/guardian-ui/admin/FederationAdmin.tsx -------------------------------------------------------------------------------- /apps/router/src/guardian-ui/assets/images/Fedimint-Full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/guardian-ui/assets/images/Fedimint-Full.png -------------------------------------------------------------------------------- /apps/router/src/guardian-ui/assets/svgs/account.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/guardian-ui/assets/svgs/account.svg -------------------------------------------------------------------------------- /apps/router/src/guardian-ui/assets/svgs/arrow-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/guardian-ui/assets/svgs/arrow-left.svg -------------------------------------------------------------------------------- /apps/router/src/guardian-ui/assets/svgs/arrow-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/guardian-ui/assets/svgs/arrow-right.svg -------------------------------------------------------------------------------- /apps/router/src/guardian-ui/assets/svgs/banknotes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/guardian-ui/assets/svgs/banknotes.svg -------------------------------------------------------------------------------- /apps/router/src/guardian-ui/assets/svgs/bitcoin-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/guardian-ui/assets/svgs/bitcoin-white.svg -------------------------------------------------------------------------------- /apps/router/src/guardian-ui/assets/svgs/bitcoin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/guardian-ui/assets/svgs/bitcoin.svg -------------------------------------------------------------------------------- /apps/router/src/guardian-ui/assets/svgs/calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/guardian-ui/assets/svgs/calendar.svg -------------------------------------------------------------------------------- /apps/router/src/guardian-ui/assets/svgs/check-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/guardian-ui/assets/svgs/check-circle.svg -------------------------------------------------------------------------------- /apps/router/src/guardian-ui/assets/svgs/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/guardian-ui/assets/svgs/check.svg -------------------------------------------------------------------------------- /apps/router/src/guardian-ui/assets/svgs/chevron-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/guardian-ui/assets/svgs/chevron-down.svg -------------------------------------------------------------------------------- /apps/router/src/guardian-ui/assets/svgs/chevron-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/guardian-ui/assets/svgs/chevron-up.svg -------------------------------------------------------------------------------- /apps/router/src/guardian-ui/assets/svgs/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/guardian-ui/assets/svgs/copy.svg -------------------------------------------------------------------------------- /apps/router/src/guardian-ui/assets/svgs/ecash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/guardian-ui/assets/svgs/ecash.svg -------------------------------------------------------------------------------- /apps/router/src/guardian-ui/assets/svgs/fedimint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/guardian-ui/assets/svgs/fedimint.svg -------------------------------------------------------------------------------- /apps/router/src/guardian-ui/assets/svgs/guardians.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/guardian-ui/assets/svgs/guardians.svg -------------------------------------------------------------------------------- /apps/router/src/guardian-ui/assets/svgs/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/guardian-ui/assets/svgs/home.svg -------------------------------------------------------------------------------- /apps/router/src/guardian-ui/assets/svgs/info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/guardian-ui/assets/svgs/info.svg -------------------------------------------------------------------------------- /apps/router/src/guardian-ui/assets/svgs/intersect-square.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/guardian-ui/assets/svgs/intersect-square.svg -------------------------------------------------------------------------------- /apps/router/src/guardian-ui/assets/svgs/lightbulb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/guardian-ui/assets/svgs/lightbulb.svg -------------------------------------------------------------------------------- /apps/router/src/guardian-ui/assets/svgs/lightningIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/guardian-ui/assets/svgs/lightningIcon.svg -------------------------------------------------------------------------------- /apps/router/src/guardian-ui/assets/svgs/linkIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/guardian-ui/assets/svgs/linkIcon.svg -------------------------------------------------------------------------------- /apps/router/src/guardian-ui/assets/svgs/modules.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/guardian-ui/assets/svgs/modules.svg -------------------------------------------------------------------------------- /apps/router/src/guardian-ui/assets/svgs/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/guardian-ui/assets/svgs/plus.svg -------------------------------------------------------------------------------- /apps/router/src/guardian-ui/assets/svgs/qr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/guardian-ui/assets/svgs/qr.svg -------------------------------------------------------------------------------- /apps/router/src/guardian-ui/assets/svgs/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/guardian-ui/assets/svgs/settings.svg -------------------------------------------------------------------------------- /apps/router/src/guardian-ui/assets/svgs/solo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/guardian-ui/assets/svgs/solo.svg -------------------------------------------------------------------------------- /apps/router/src/guardian-ui/assets/svgs/stars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/guardian-ui/assets/svgs/stars.svg -------------------------------------------------------------------------------- /apps/router/src/guardian-ui/assets/svgs/trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/guardian-ui/assets/svgs/trash.svg -------------------------------------------------------------------------------- /apps/router/src/guardian-ui/assets/svgs/warning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/guardian-ui/assets/svgs/warning.svg -------------------------------------------------------------------------------- /apps/router/src/guardian-ui/assets/svgs/white-check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/guardian-ui/assets/svgs/white-check.svg -------------------------------------------------------------------------------- /apps/router/src/guardian-ui/assets/svgs/x-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/guardian-ui/assets/svgs/x-circle.svg -------------------------------------------------------------------------------- /apps/router/src/guardian-ui/assets/svgs/x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/guardian-ui/assets/svgs/x.svg -------------------------------------------------------------------------------- /apps/router/src/guardian-ui/components/AwaitingLocalParams/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/guardian-ui/components/AwaitingLocalParams/index.tsx -------------------------------------------------------------------------------- /apps/router/src/guardian-ui/components/BftInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/guardian-ui/components/BftInfo.tsx -------------------------------------------------------------------------------- /apps/router/src/guardian-ui/components/CenterBox/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/guardian-ui/components/CenterBox/index.tsx -------------------------------------------------------------------------------- /apps/router/src/guardian-ui/components/NumberFormControl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/guardian-ui/components/NumberFormControl.tsx -------------------------------------------------------------------------------- /apps/router/src/guardian-ui/components/SharingConnectionCodes/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/guardian-ui/components/SharingConnectionCodes/index.tsx -------------------------------------------------------------------------------- /apps/router/src/guardian-ui/components/TermsOfService.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/guardian-ui/components/TermsOfService.tsx -------------------------------------------------------------------------------- /apps/router/src/guardian-ui/components/dashboard/admin/BitcoinNodeCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/guardian-ui/components/dashboard/admin/BitcoinNodeCard.tsx -------------------------------------------------------------------------------- /apps/router/src/guardian-ui/components/dashboard/admin/InviteCode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/guardian-ui/components/dashboard/admin/InviteCode.tsx -------------------------------------------------------------------------------- /apps/router/src/guardian-ui/components/dashboard/danger/DangerZone.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/guardian-ui/components/dashboard/danger/DangerZone.tsx -------------------------------------------------------------------------------- /apps/router/src/guardian-ui/components/dashboard/danger/DownloadBackup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/guardian-ui/components/dashboard/danger/DownloadBackup.tsx -------------------------------------------------------------------------------- /apps/router/src/guardian-ui/components/dashboard/danger/GuardianAuthenticationCode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/guardian-ui/components/dashboard/danger/GuardianAuthenticationCode.tsx -------------------------------------------------------------------------------- /apps/router/src/guardian-ui/components/dashboard/danger/ScheduleShutdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/guardian-ui/components/dashboard/danger/ScheduleShutdown.tsx -------------------------------------------------------------------------------- /apps/router/src/guardian-ui/components/dashboard/danger/SignApiAnnouncement.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/guardian-ui/components/dashboard/danger/SignApiAnnouncement.tsx -------------------------------------------------------------------------------- /apps/router/src/guardian-ui/components/dashboard/tabs/ApiAnnouncements.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/guardian-ui/components/dashboard/tabs/ApiAnnouncements.tsx -------------------------------------------------------------------------------- /apps/router/src/guardian-ui/components/dashboard/tabs/FederationTabsCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/guardian-ui/components/dashboard/tabs/FederationTabsCard.tsx -------------------------------------------------------------------------------- /apps/router/src/guardian-ui/components/dashboard/tabs/balanceSheet/BalanceSheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/guardian-ui/components/dashboard/tabs/balanceSheet/BalanceSheet.tsx -------------------------------------------------------------------------------- /apps/router/src/guardian-ui/components/dashboard/tabs/balanceSheet/BalanceTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/guardian-ui/components/dashboard/tabs/balanceSheet/BalanceTable.tsx -------------------------------------------------------------------------------- /apps/router/src/guardian-ui/components/dashboard/tabs/info/FederationInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/guardian-ui/components/dashboard/tabs/info/FederationInfo.tsx -------------------------------------------------------------------------------- /apps/router/src/guardian-ui/components/dashboard/tabs/meta/manager/CustomMetaFields.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/guardian-ui/components/dashboard/tabs/meta/manager/CustomMetaFields.tsx -------------------------------------------------------------------------------- /apps/router/src/guardian-ui/components/dashboard/tabs/meta/manager/EditMetaField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/guardian-ui/components/dashboard/tabs/meta/manager/EditMetaField.tsx -------------------------------------------------------------------------------- /apps/router/src/guardian-ui/components/dashboard/tabs/meta/manager/IconPreview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/guardian-ui/components/dashboard/tabs/meta/manager/IconPreview.tsx -------------------------------------------------------------------------------- /apps/router/src/guardian-ui/components/dashboard/tabs/meta/manager/MetaInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/guardian-ui/components/dashboard/tabs/meta/manager/MetaInput.tsx -------------------------------------------------------------------------------- /apps/router/src/guardian-ui/components/dashboard/tabs/meta/manager/MetaManager.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/guardian-ui/components/dashboard/tabs/meta/manager/MetaManager.tsx -------------------------------------------------------------------------------- /apps/router/src/guardian-ui/components/dashboard/tabs/meta/manager/ProposeMetaModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/guardian-ui/components/dashboard/tabs/meta/manager/ProposeMetaModal.tsx -------------------------------------------------------------------------------- /apps/router/src/guardian-ui/components/dashboard/tabs/meta/manager/RequiredMeta.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/guardian-ui/components/dashboard/tabs/meta/manager/RequiredMeta.tsx -------------------------------------------------------------------------------- /apps/router/src/guardian-ui/components/dashboard/tabs/meta/manager/SitesInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/guardian-ui/components/dashboard/tabs/meta/manager/SitesInput.tsx -------------------------------------------------------------------------------- /apps/router/src/guardian-ui/components/dashboard/tabs/meta/proposals/ConfirmNewMetaModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/guardian-ui/components/dashboard/tabs/meta/proposals/ConfirmNewMetaModal.tsx -------------------------------------------------------------------------------- /apps/router/src/guardian-ui/components/dashboard/tabs/meta/proposals/NoPendingProposals.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/guardian-ui/components/dashboard/tabs/meta/proposals/NoPendingProposals.tsx -------------------------------------------------------------------------------- /apps/router/src/guardian-ui/components/dashboard/tabs/meta/proposals/ProposedMetas.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/guardian-ui/components/dashboard/tabs/meta/proposals/ProposedMetas.tsx -------------------------------------------------------------------------------- /apps/router/src/guardian-ui/components/dashboard/tabs/status/FederationStatus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/guardian-ui/components/dashboard/tabs/status/FederationStatus.tsx -------------------------------------------------------------------------------- /apps/router/src/guardian-ui/components/dashboard/tabs/status/GatewaysStatus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/guardian-ui/components/dashboard/tabs/status/GatewaysStatus.tsx -------------------------------------------------------------------------------- /apps/router/src/guardian-ui/components/dashboard/tabs/status/GuardiansStatus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/guardian-ui/components/dashboard/tabs/status/GuardiansStatus.tsx -------------------------------------------------------------------------------- /apps/router/src/guardian-ui/hooks/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/guardian-ui/hooks/index.tsx -------------------------------------------------------------------------------- /apps/router/src/guardian-ui/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/guardian-ui/setupTests.ts -------------------------------------------------------------------------------- /apps/router/src/guardian-ui/typings/i18next.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/guardian-ui/typings/i18next.d.ts -------------------------------------------------------------------------------- /apps/router/src/guardian-ui/utils/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/guardian-ui/utils/api.ts -------------------------------------------------------------------------------- /apps/router/src/guardian-ui/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/guardian-ui/utils/constants.ts -------------------------------------------------------------------------------- /apps/router/src/guardian-ui/utils/debounce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/guardian-ui/utils/debounce.ts -------------------------------------------------------------------------------- /apps/router/src/guardian-ui/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/guardian-ui/utils/index.ts -------------------------------------------------------------------------------- /apps/router/src/guardian-ui/utils/validators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/guardian-ui/utils/validators.ts -------------------------------------------------------------------------------- /apps/router/src/helpers/service.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/helpers/service.test.ts -------------------------------------------------------------------------------- /apps/router/src/helpers/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/helpers/service.ts -------------------------------------------------------------------------------- /apps/router/src/hooks/custom/useQuery.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/hooks/custom/useQuery.tsx -------------------------------------------------------------------------------- /apps/router/src/hooks/custom/useTrimmedInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/hooks/custom/useTrimmedInput.tsx -------------------------------------------------------------------------------- /apps/router/src/hooks/gateway/useGateway.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/hooks/gateway/useGateway.tsx -------------------------------------------------------------------------------- /apps/router/src/hooks/guardian/useGuardian.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/hooks/guardian/useGuardian.tsx -------------------------------------------------------------------------------- /apps/router/src/hooks/guardian/useGuardianSetup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/hooks/guardian/useGuardianSetup.tsx -------------------------------------------------------------------------------- /apps/router/src/hooks/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/hooks/index.tsx -------------------------------------------------------------------------------- /apps/router/src/images/hero-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/images/hero-1.svg -------------------------------------------------------------------------------- /apps/router/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/index.tsx -------------------------------------------------------------------------------- /apps/router/src/languages/ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/languages/ca.json -------------------------------------------------------------------------------- /apps/router/src/languages/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/languages/de.json -------------------------------------------------------------------------------- /apps/router/src/languages/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/languages/en.json -------------------------------------------------------------------------------- /apps/router/src/languages/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/languages/es.json -------------------------------------------------------------------------------- /apps/router/src/languages/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/languages/fr.json -------------------------------------------------------------------------------- /apps/router/src/languages/hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/languages/hu.json -------------------------------------------------------------------------------- /apps/router/src/languages/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/languages/index.ts -------------------------------------------------------------------------------- /apps/router/src/languages/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/languages/it.json -------------------------------------------------------------------------------- /apps/router/src/languages/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/languages/ja.json -------------------------------------------------------------------------------- /apps/router/src/languages/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/languages/ko.json -------------------------------------------------------------------------------- /apps/router/src/languages/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/languages/pt.json -------------------------------------------------------------------------------- /apps/router/src/languages/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/languages/ru.json -------------------------------------------------------------------------------- /apps/router/src/languages/zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/languages/zh.json -------------------------------------------------------------------------------- /apps/router/src/pages/Home/Home.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/pages/Home/Home.test.tsx -------------------------------------------------------------------------------- /apps/router/src/pages/Home/Home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/pages/Home/Home.tsx -------------------------------------------------------------------------------- /apps/router/src/pages/Home/index.tsx: -------------------------------------------------------------------------------- 1 | export { default } from './Home'; 2 | -------------------------------------------------------------------------------- /apps/router/src/pages/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/pages/utils.ts -------------------------------------------------------------------------------- /apps/router/src/types/gateway.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/types/gateway.tsx -------------------------------------------------------------------------------- /apps/router/src/types/guardian.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/types/guardian.tsx -------------------------------------------------------------------------------- /apps/router/src/types/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/types/index.tsx -------------------------------------------------------------------------------- /apps/router/src/utils/testing/customRender.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/utils/testing/customRender.tsx -------------------------------------------------------------------------------- /apps/router/src/vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/src/vite-env.d.ts -------------------------------------------------------------------------------- /apps/router/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/tsconfig.json -------------------------------------------------------------------------------- /apps/router/vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/vercel.json -------------------------------------------------------------------------------- /apps/router/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/vite.config.ts -------------------------------------------------------------------------------- /apps/router/vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/apps/router/vitest.config.ts -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/nix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/docs/nix.md -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/flake.nix -------------------------------------------------------------------------------- /misc/git-hooks/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/misc/git-hooks/commit-msg -------------------------------------------------------------------------------- /misc/git-hooks/commit-template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/misc/git-hooks/commit-template.txt -------------------------------------------------------------------------------- /misc/git-hooks/pre-commit: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | set -eo pipefail 4 | 5 | echo "pre-commit.sh" 6 | -------------------------------------------------------------------------------- /misc/mprocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/misc/mprocs.yaml -------------------------------------------------------------------------------- /misc/test/bitcoin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/misc/test/bitcoin.conf -------------------------------------------------------------------------------- /misc/test/electrs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/misc/test/electrs.toml -------------------------------------------------------------------------------- /misc/test/lightningd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/misc/test/lightningd.conf -------------------------------------------------------------------------------- /misc/test/lnd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/misc/test/lnd.conf -------------------------------------------------------------------------------- /mprocs-docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/mprocs-docker.yml -------------------------------------------------------------------------------- /mprocs-nix-gateway.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/mprocs-nix-gateway.yml -------------------------------------------------------------------------------- /mprocs-nix-guardian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/mprocs-nix-guardian.yml -------------------------------------------------------------------------------- /mprocs-rotate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/mprocs-rotate.yml -------------------------------------------------------------------------------- /original-docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/original-docker-compose.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/package.json -------------------------------------------------------------------------------- /packages/eslint-config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/packages/eslint-config/README.md -------------------------------------------------------------------------------- /packages/eslint-config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/packages/eslint-config/index.js -------------------------------------------------------------------------------- /packages/eslint-config/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/packages/eslint-config/package.json -------------------------------------------------------------------------------- /packages/tsconfig/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/packages/tsconfig/README.md -------------------------------------------------------------------------------- /packages/tsconfig/base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/packages/tsconfig/base.json -------------------------------------------------------------------------------- /packages/tsconfig/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/packages/tsconfig/package.json -------------------------------------------------------------------------------- /packages/tsconfig/react-app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/packages/tsconfig/react-app.json -------------------------------------------------------------------------------- /packages/tsconfig/react-library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/packages/tsconfig/react-library.json -------------------------------------------------------------------------------- /packages/tsconfig/ts-library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/packages/tsconfig/ts-library.json -------------------------------------------------------------------------------- /packages/types/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@fedimint/eslint-config'); 2 | -------------------------------------------------------------------------------- /packages/types/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/packages/types/README.md -------------------------------------------------------------------------------- /packages/types/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/packages/types/package.json -------------------------------------------------------------------------------- /packages/types/src/bitcoin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/packages/types/src/bitcoin.ts -------------------------------------------------------------------------------- /packages/types/src/federation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/packages/types/src/federation.ts -------------------------------------------------------------------------------- /packages/types/src/gateway.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/packages/types/src/gateway.ts -------------------------------------------------------------------------------- /packages/types/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/packages/types/src/index.ts -------------------------------------------------------------------------------- /packages/types/src/meta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/packages/types/src/meta.ts -------------------------------------------------------------------------------- /packages/types/src/modules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/packages/types/src/modules.ts -------------------------------------------------------------------------------- /packages/types/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/packages/types/tsconfig.json -------------------------------------------------------------------------------- /packages/types/tsup.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/packages/types/tsup.config.json -------------------------------------------------------------------------------- /packages/ui/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@fedimint/eslint-config'); 2 | -------------------------------------------------------------------------------- /packages/ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/packages/ui/README.md -------------------------------------------------------------------------------- /packages/ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/packages/ui/package.json -------------------------------------------------------------------------------- /packages/ui/src/ColorModeSwitcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/packages/ui/src/ColorModeSwitcher.tsx -------------------------------------------------------------------------------- /packages/ui/src/CopyInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/packages/ui/src/CopyInput.tsx -------------------------------------------------------------------------------- /packages/ui/src/FormGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/packages/ui/src/FormGroup.tsx -------------------------------------------------------------------------------- /packages/ui/src/FormGroupHeading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/packages/ui/src/FormGroupHeading.tsx -------------------------------------------------------------------------------- /packages/ui/src/KeyValues.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/packages/ui/src/KeyValues.tsx -------------------------------------------------------------------------------- /packages/ui/src/Login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/packages/ui/src/Login.tsx -------------------------------------------------------------------------------- /packages/ui/src/NetworkIndicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/packages/ui/src/NetworkIndicator.tsx -------------------------------------------------------------------------------- /packages/ui/src/RadioButtonGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/packages/ui/src/RadioButtonGroup.tsx -------------------------------------------------------------------------------- /packages/ui/src/SharedChakraProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/packages/ui/src/SharedChakraProvider.tsx -------------------------------------------------------------------------------- /packages/ui/src/StatusIndicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/packages/ui/src/StatusIndicator.tsx -------------------------------------------------------------------------------- /packages/ui/src/Table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/packages/ui/src/Table.tsx -------------------------------------------------------------------------------- /packages/ui/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/packages/ui/src/index.tsx -------------------------------------------------------------------------------- /packages/ui/src/theme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/packages/ui/src/theme.tsx -------------------------------------------------------------------------------- /packages/ui/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/packages/ui/tsconfig.json -------------------------------------------------------------------------------- /packages/ui/tsup.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/packages/ui/tsup.config.json -------------------------------------------------------------------------------- /packages/utils/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@fedimint/eslint-config'); 2 | -------------------------------------------------------------------------------- /packages/utils/TRANSLATING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/packages/utils/TRANSLATING.md -------------------------------------------------------------------------------- /packages/utils/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/packages/utils/package.json -------------------------------------------------------------------------------- /packages/utils/src/format.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/packages/utils/src/format.tsx -------------------------------------------------------------------------------- /packages/utils/src/i18n.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/packages/utils/src/i18n.tsx -------------------------------------------------------------------------------- /packages/utils/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/packages/utils/src/index.tsx -------------------------------------------------------------------------------- /packages/utils/src/meta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/packages/utils/src/meta.ts -------------------------------------------------------------------------------- /packages/utils/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/packages/utils/tsconfig.json -------------------------------------------------------------------------------- /packages/utils/tsup.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/packages/utils/tsup.config.json -------------------------------------------------------------------------------- /scripts/merge-locales.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/scripts/merge-locales.js -------------------------------------------------------------------------------- /scripts/mprocs-nix-gateway.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/scripts/mprocs-nix-gateway.sh -------------------------------------------------------------------------------- /scripts/mprocs-nix-guardian-manual.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/scripts/mprocs-nix-guardian-manual.sh -------------------------------------------------------------------------------- /scripts/mprocs-nix-guardian.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/scripts/mprocs-nix-guardian.sh -------------------------------------------------------------------------------- /scripts/mprocs-nix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/scripts/mprocs-nix.sh -------------------------------------------------------------------------------- /scripts/mprocs-restart-guardian.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/scripts/mprocs-restart-guardian.sh -------------------------------------------------------------------------------- /scripts/mprocs-rotate-guardian.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/scripts/mprocs-rotate-guardian.sh -------------------------------------------------------------------------------- /scripts/mprocs-user-shell.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/scripts/mprocs-user-shell.sh -------------------------------------------------------------------------------- /scripts/translate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/scripts/translate.js -------------------------------------------------------------------------------- /testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/testing.md -------------------------------------------------------------------------------- /testing/btc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/testing/btc.png -------------------------------------------------------------------------------- /testing/test-pngs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/testing/test-pngs.py -------------------------------------------------------------------------------- /turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/turbo.json -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedibtc/fedimint-ui/HEAD/yarn.lock --------------------------------------------------------------------------------