├── .gitignore ├── .vite └── deps_temp │ └── package.json ├── LICENSE ├── dashboard ├── .eslintignore ├── .eslintrc.cjs ├── .gitignore ├── .npmrc ├── .prettierignore ├── .prettierrc ├── Dockerfile ├── README.md ├── example.env ├── package-lock.json ├── package.json ├── postcss.config.js ├── src │ ├── app.css │ ├── app.d.ts │ ├── app.html │ ├── index.test.ts │ ├── lib │ │ ├── comps │ │ │ ├── Header.svelte │ │ │ ├── Tokens.svelte │ │ │ ├── config │ │ │ │ ├── Configuration.svelte │ │ │ │ ├── General.svelte │ │ │ │ ├── Mints.svelte │ │ │ │ └── Routes.svelte │ │ │ └── insight │ │ │ │ ├── Earned.svelte │ │ │ │ ├── Insight.svelte │ │ │ │ └── RouteCount.svelte │ │ ├── index.ts │ │ └── server │ │ │ └── redis.ts │ ├── routes │ │ ├── +layout.svelte │ │ ├── +page.server.ts │ │ ├── +page.svelte │ │ └── api │ │ │ └── config │ │ │ └── +server.ts │ ├── types.ts │ └── util │ │ └── toast.ts ├── static │ ├── X-bg.svg │ ├── favicon.png │ └── proxnut_black.svg ├── svelte.config.js ├── tailwind.config.js ├── tsconfig.json └── vite.config.ts ├── demo-backend ├── .vscode │ └── settings.json ├── Dockerfile ├── main.ts ├── nut.jpeg └── server.ts ├── demo-frontend ├── .gitignore ├── .vscode │ └── extensions.json ├── Dockerfile ├── README.md ├── index.html ├── package-lock.json ├── package.json ├── postcss.config.js ├── public │ ├── X-bg.svg │ ├── proxnut-wallet.js │ └── proxnut_black.svg ├── src │ ├── App.svelte │ ├── app.css │ ├── assets │ │ └── svelte.svg │ ├── cashu-wallet.css │ ├── lib │ │ ├── Card.svelte │ │ └── Cards.svelte │ ├── main.ts │ └── vite-env.d.ts ├── svelte.config.js ├── tailwind.config.js ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts ├── demo-webserver ├── Dockerfile ├── main.ts ├── public │ ├── nut.html │ └── nut.jpeg └── server.ts ├── docker-compose.yml ├── docs ├── PROXNUT_avatar.png ├── proxnut.png ├── proxnut.svg └── setup.png ├── frontend ├── cashu-request │ ├── cashuGoto.js │ ├── cashuRequest.js │ └── package.json ├── cashu-wallet-wc │ ├── .gitignore │ ├── .vscode │ │ └── extensions.json │ ├── Dockerfile │ ├── README.md │ ├── cashu-wallet.css │ ├── extensions.json │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── packages │ │ └── lib │ │ │ ├── index.ts │ │ │ ├── src │ │ │ ├── app.css │ │ │ ├── comp │ │ │ │ ├── Base.svelte │ │ │ │ ├── Wallet.wc.svelte │ │ │ │ ├── cashout │ │ │ │ │ └── Cashout.svelte │ │ │ │ ├── etc │ │ │ │ │ ├── Spinner.svelte │ │ │ │ │ ├── Toast.svelte │ │ │ │ │ └── Toasts.svelte │ │ │ │ └── topup │ │ │ │ │ └── Topup.svelte │ │ │ ├── stores.ts │ │ │ ├── toast.ts │ │ │ └── util.ts │ │ │ └── svelte.config.js │ ├── postcss.config.js │ ├── src │ │ └── lib │ │ │ ├── index.js │ │ │ └── utils.ts │ ├── static │ │ └── cashu-wallet.css │ ├── tailwind.config.js │ ├── tsconfig.json │ ├── tsconfig.node.json │ ├── vite.config.ts │ └── vite.demo.config.ts └── dummy.html ├── proxnut-proxy ├── Dockerfile ├── bun.lockb ├── example.env ├── index.ts ├── package.json ├── redis.ts ├── tsconfig.json └── types.ts └── readme.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/.gitignore -------------------------------------------------------------------------------- /.vite/deps_temp/package.json: -------------------------------------------------------------------------------- 1 | {"type":"module"} -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/LICENSE -------------------------------------------------------------------------------- /dashboard/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/dashboard/.eslintignore -------------------------------------------------------------------------------- /dashboard/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/dashboard/.eslintrc.cjs -------------------------------------------------------------------------------- /dashboard/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/dashboard/.gitignore -------------------------------------------------------------------------------- /dashboard/.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | resolution-mode=highest 3 | -------------------------------------------------------------------------------- /dashboard/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/dashboard/.prettierignore -------------------------------------------------------------------------------- /dashboard/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/dashboard/.prettierrc -------------------------------------------------------------------------------- /dashboard/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/dashboard/Dockerfile -------------------------------------------------------------------------------- /dashboard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/dashboard/README.md -------------------------------------------------------------------------------- /dashboard/example.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/dashboard/example.env -------------------------------------------------------------------------------- /dashboard/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/dashboard/package-lock.json -------------------------------------------------------------------------------- /dashboard/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/dashboard/package.json -------------------------------------------------------------------------------- /dashboard/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/dashboard/postcss.config.js -------------------------------------------------------------------------------- /dashboard/src/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/dashboard/src/app.css -------------------------------------------------------------------------------- /dashboard/src/app.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/dashboard/src/app.d.ts -------------------------------------------------------------------------------- /dashboard/src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/dashboard/src/app.html -------------------------------------------------------------------------------- /dashboard/src/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/dashboard/src/index.test.ts -------------------------------------------------------------------------------- /dashboard/src/lib/comps/Header.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/dashboard/src/lib/comps/Header.svelte -------------------------------------------------------------------------------- /dashboard/src/lib/comps/Tokens.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/dashboard/src/lib/comps/Tokens.svelte -------------------------------------------------------------------------------- /dashboard/src/lib/comps/config/Configuration.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/dashboard/src/lib/comps/config/Configuration.svelte -------------------------------------------------------------------------------- /dashboard/src/lib/comps/config/General.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/dashboard/src/lib/comps/config/General.svelte -------------------------------------------------------------------------------- /dashboard/src/lib/comps/config/Mints.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/dashboard/src/lib/comps/config/Mints.svelte -------------------------------------------------------------------------------- /dashboard/src/lib/comps/config/Routes.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/dashboard/src/lib/comps/config/Routes.svelte -------------------------------------------------------------------------------- /dashboard/src/lib/comps/insight/Earned.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/dashboard/src/lib/comps/insight/Earned.svelte -------------------------------------------------------------------------------- /dashboard/src/lib/comps/insight/Insight.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/dashboard/src/lib/comps/insight/Insight.svelte -------------------------------------------------------------------------------- /dashboard/src/lib/comps/insight/RouteCount.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/dashboard/src/lib/comps/insight/RouteCount.svelte -------------------------------------------------------------------------------- /dashboard/src/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/dashboard/src/lib/index.ts -------------------------------------------------------------------------------- /dashboard/src/lib/server/redis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/dashboard/src/lib/server/redis.ts -------------------------------------------------------------------------------- /dashboard/src/routes/+layout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/dashboard/src/routes/+layout.svelte -------------------------------------------------------------------------------- /dashboard/src/routes/+page.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/dashboard/src/routes/+page.server.ts -------------------------------------------------------------------------------- /dashboard/src/routes/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/dashboard/src/routes/+page.svelte -------------------------------------------------------------------------------- /dashboard/src/routes/api/config/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/dashboard/src/routes/api/config/+server.ts -------------------------------------------------------------------------------- /dashboard/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/dashboard/src/types.ts -------------------------------------------------------------------------------- /dashboard/src/util/toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/dashboard/src/util/toast.ts -------------------------------------------------------------------------------- /dashboard/static/X-bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/dashboard/static/X-bg.svg -------------------------------------------------------------------------------- /dashboard/static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/dashboard/static/favicon.png -------------------------------------------------------------------------------- /dashboard/static/proxnut_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/dashboard/static/proxnut_black.svg -------------------------------------------------------------------------------- /dashboard/svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/dashboard/svelte.config.js -------------------------------------------------------------------------------- /dashboard/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/dashboard/tailwind.config.js -------------------------------------------------------------------------------- /dashboard/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/dashboard/tsconfig.json -------------------------------------------------------------------------------- /dashboard/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/dashboard/vite.config.ts -------------------------------------------------------------------------------- /demo-backend/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/demo-backend/.vscode/settings.json -------------------------------------------------------------------------------- /demo-backend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/demo-backend/Dockerfile -------------------------------------------------------------------------------- /demo-backend/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/demo-backend/main.ts -------------------------------------------------------------------------------- /demo-backend/nut.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/demo-backend/nut.jpeg -------------------------------------------------------------------------------- /demo-backend/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/demo-backend/server.ts -------------------------------------------------------------------------------- /demo-frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/demo-frontend/.gitignore -------------------------------------------------------------------------------- /demo-frontend/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/demo-frontend/.vscode/extensions.json -------------------------------------------------------------------------------- /demo-frontend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/demo-frontend/Dockerfile -------------------------------------------------------------------------------- /demo-frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/demo-frontend/README.md -------------------------------------------------------------------------------- /demo-frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/demo-frontend/index.html -------------------------------------------------------------------------------- /demo-frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/demo-frontend/package-lock.json -------------------------------------------------------------------------------- /demo-frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/demo-frontend/package.json -------------------------------------------------------------------------------- /demo-frontend/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/demo-frontend/postcss.config.js -------------------------------------------------------------------------------- /demo-frontend/public/X-bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/demo-frontend/public/X-bg.svg -------------------------------------------------------------------------------- /demo-frontend/public/proxnut-wallet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/demo-frontend/public/proxnut-wallet.js -------------------------------------------------------------------------------- /demo-frontend/public/proxnut_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/demo-frontend/public/proxnut_black.svg -------------------------------------------------------------------------------- /demo-frontend/src/App.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/demo-frontend/src/App.svelte -------------------------------------------------------------------------------- /demo-frontend/src/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/demo-frontend/src/app.css -------------------------------------------------------------------------------- /demo-frontend/src/assets/svelte.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/demo-frontend/src/assets/svelte.svg -------------------------------------------------------------------------------- /demo-frontend/src/cashu-wallet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/demo-frontend/src/cashu-wallet.css -------------------------------------------------------------------------------- /demo-frontend/src/lib/Card.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/demo-frontend/src/lib/Card.svelte -------------------------------------------------------------------------------- /demo-frontend/src/lib/Cards.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/demo-frontend/src/lib/Cards.svelte -------------------------------------------------------------------------------- /demo-frontend/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/demo-frontend/src/main.ts -------------------------------------------------------------------------------- /demo-frontend/src/vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/demo-frontend/src/vite-env.d.ts -------------------------------------------------------------------------------- /demo-frontend/svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/demo-frontend/svelte.config.js -------------------------------------------------------------------------------- /demo-frontend/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/demo-frontend/tailwind.config.js -------------------------------------------------------------------------------- /demo-frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/demo-frontend/tsconfig.json -------------------------------------------------------------------------------- /demo-frontend/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/demo-frontend/tsconfig.node.json -------------------------------------------------------------------------------- /demo-frontend/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/demo-frontend/vite.config.ts -------------------------------------------------------------------------------- /demo-webserver/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/demo-webserver/Dockerfile -------------------------------------------------------------------------------- /demo-webserver/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/demo-webserver/main.ts -------------------------------------------------------------------------------- /demo-webserver/public/nut.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/demo-webserver/public/nut.html -------------------------------------------------------------------------------- /demo-webserver/public/nut.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/demo-webserver/public/nut.jpeg -------------------------------------------------------------------------------- /demo-webserver/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/demo-webserver/server.ts -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/PROXNUT_avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/docs/PROXNUT_avatar.png -------------------------------------------------------------------------------- /docs/proxnut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/docs/proxnut.png -------------------------------------------------------------------------------- /docs/proxnut.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/docs/proxnut.svg -------------------------------------------------------------------------------- /docs/setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/docs/setup.png -------------------------------------------------------------------------------- /frontend/cashu-request/cashuGoto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/frontend/cashu-request/cashuGoto.js -------------------------------------------------------------------------------- /frontend/cashu-request/cashuRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/frontend/cashu-request/cashuRequest.js -------------------------------------------------------------------------------- /frontend/cashu-request/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/frontend/cashu-request/package.json -------------------------------------------------------------------------------- /frontend/cashu-wallet-wc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/frontend/cashu-wallet-wc/.gitignore -------------------------------------------------------------------------------- /frontend/cashu-wallet-wc/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/frontend/cashu-wallet-wc/.vscode/extensions.json -------------------------------------------------------------------------------- /frontend/cashu-wallet-wc/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/frontend/cashu-wallet-wc/Dockerfile -------------------------------------------------------------------------------- /frontend/cashu-wallet-wc/README.md: -------------------------------------------------------------------------------- 1 | # embedded Cashu wallet Web-Component 2 | 3 | Proxnut -------------------------------------------------------------------------------- /frontend/cashu-wallet-wc/cashu-wallet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/frontend/cashu-wallet-wc/cashu-wallet.css -------------------------------------------------------------------------------- /frontend/cashu-wallet-wc/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/frontend/cashu-wallet-wc/extensions.json -------------------------------------------------------------------------------- /frontend/cashu-wallet-wc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/frontend/cashu-wallet-wc/index.html -------------------------------------------------------------------------------- /frontend/cashu-wallet-wc/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/frontend/cashu-wallet-wc/package-lock.json -------------------------------------------------------------------------------- /frontend/cashu-wallet-wc/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/frontend/cashu-wallet-wc/package.json -------------------------------------------------------------------------------- /frontend/cashu-wallet-wc/packages/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/frontend/cashu-wallet-wc/packages/lib/index.ts -------------------------------------------------------------------------------- /frontend/cashu-wallet-wc/packages/lib/src/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/frontend/cashu-wallet-wc/packages/lib/src/app.css -------------------------------------------------------------------------------- /frontend/cashu-wallet-wc/packages/lib/src/comp/Base.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/frontend/cashu-wallet-wc/packages/lib/src/comp/Base.svelte -------------------------------------------------------------------------------- /frontend/cashu-wallet-wc/packages/lib/src/comp/Wallet.wc.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/frontend/cashu-wallet-wc/packages/lib/src/comp/Wallet.wc.svelte -------------------------------------------------------------------------------- /frontend/cashu-wallet-wc/packages/lib/src/comp/cashout/Cashout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/frontend/cashu-wallet-wc/packages/lib/src/comp/cashout/Cashout.svelte -------------------------------------------------------------------------------- /frontend/cashu-wallet-wc/packages/lib/src/comp/etc/Spinner.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/frontend/cashu-wallet-wc/packages/lib/src/comp/etc/Spinner.svelte -------------------------------------------------------------------------------- /frontend/cashu-wallet-wc/packages/lib/src/comp/etc/Toast.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/frontend/cashu-wallet-wc/packages/lib/src/comp/etc/Toast.svelte -------------------------------------------------------------------------------- /frontend/cashu-wallet-wc/packages/lib/src/comp/etc/Toasts.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/frontend/cashu-wallet-wc/packages/lib/src/comp/etc/Toasts.svelte -------------------------------------------------------------------------------- /frontend/cashu-wallet-wc/packages/lib/src/comp/topup/Topup.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/frontend/cashu-wallet-wc/packages/lib/src/comp/topup/Topup.svelte -------------------------------------------------------------------------------- /frontend/cashu-wallet-wc/packages/lib/src/stores.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/frontend/cashu-wallet-wc/packages/lib/src/stores.ts -------------------------------------------------------------------------------- /frontend/cashu-wallet-wc/packages/lib/src/toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/frontend/cashu-wallet-wc/packages/lib/src/toast.ts -------------------------------------------------------------------------------- /frontend/cashu-wallet-wc/packages/lib/src/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/frontend/cashu-wallet-wc/packages/lib/src/util.ts -------------------------------------------------------------------------------- /frontend/cashu-wallet-wc/packages/lib/svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/frontend/cashu-wallet-wc/packages/lib/svelte.config.js -------------------------------------------------------------------------------- /frontend/cashu-wallet-wc/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/frontend/cashu-wallet-wc/postcss.config.js -------------------------------------------------------------------------------- /frontend/cashu-wallet-wc/src/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/frontend/cashu-wallet-wc/src/lib/index.js -------------------------------------------------------------------------------- /frontend/cashu-wallet-wc/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/frontend/cashu-wallet-wc/src/lib/utils.ts -------------------------------------------------------------------------------- /frontend/cashu-wallet-wc/static/cashu-wallet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/frontend/cashu-wallet-wc/static/cashu-wallet.css -------------------------------------------------------------------------------- /frontend/cashu-wallet-wc/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/frontend/cashu-wallet-wc/tailwind.config.js -------------------------------------------------------------------------------- /frontend/cashu-wallet-wc/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/frontend/cashu-wallet-wc/tsconfig.json -------------------------------------------------------------------------------- /frontend/cashu-wallet-wc/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/frontend/cashu-wallet-wc/tsconfig.node.json -------------------------------------------------------------------------------- /frontend/cashu-wallet-wc/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/frontend/cashu-wallet-wc/vite.config.ts -------------------------------------------------------------------------------- /frontend/cashu-wallet-wc/vite.demo.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/frontend/cashu-wallet-wc/vite.demo.config.ts -------------------------------------------------------------------------------- /frontend/dummy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/frontend/dummy.html -------------------------------------------------------------------------------- /proxnut-proxy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/proxnut-proxy/Dockerfile -------------------------------------------------------------------------------- /proxnut-proxy/bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/proxnut-proxy/bun.lockb -------------------------------------------------------------------------------- /proxnut-proxy/example.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/proxnut-proxy/example.env -------------------------------------------------------------------------------- /proxnut-proxy/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/proxnut-proxy/index.ts -------------------------------------------------------------------------------- /proxnut-proxy/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/proxnut-proxy/package.json -------------------------------------------------------------------------------- /proxnut-proxy/redis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/proxnut-proxy/redis.ts -------------------------------------------------------------------------------- /proxnut-proxy/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/proxnut-proxy/tsconfig.json -------------------------------------------------------------------------------- /proxnut-proxy/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/proxnut-proxy/types.ts -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandlafbtc/proxnut/HEAD/readme.md --------------------------------------------------------------------------------