├── .do └── app.yaml ├── .dockerignore ├── .env-sample ├── .eslintrc.json ├── .git-blame-ignore-revs ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── code-linter.yaml │ ├── codeql-analysis.yml │ └── integrate.yaml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── AGENTS.md ├── CHANGELOG.md ├── CLAUDE.md ├── CONTRIBUTING.md ├── DEPLOY_DIGITALOCEAN.md ├── Dockerfile ├── LICENSE ├── README.md ├── app.ts ├── bot ├── commands.ts ├── index.ts ├── messages.ts ├── middleware │ ├── commands.ts │ ├── index.ts │ ├── stage.ts │ └── user.ts ├── modules │ ├── block │ │ ├── commands.ts │ │ ├── index.ts │ │ └── messages.ts │ ├── community │ │ ├── actions.ts │ │ ├── commands.ts │ │ ├── communityContext.ts │ │ ├── index.ts │ │ ├── messages.ts │ │ ├── scenes.communityAdmin.ts │ │ └── scenes.ts │ ├── dispute │ │ ├── actions.ts │ │ ├── commands.ts │ │ ├── index.ts │ │ └── messages.ts │ ├── events │ │ ├── community.ts │ │ ├── index.ts │ │ └── orders.ts │ ├── language │ │ ├── actions.ts │ │ ├── commands.ts │ │ ├── index.ts │ │ └── messages.ts │ ├── nostr │ │ ├── commands.ts │ │ ├── config.ts │ │ ├── events.ts │ │ ├── index.ts │ │ └── lib.ts │ ├── orders │ │ ├── commands.ts │ │ ├── index.ts │ │ ├── messages.ts │ │ ├── scenes.ts │ │ └── takeOrder.ts │ └── user │ │ ├── index.ts │ │ └── scenes │ │ ├── index.ts │ │ └── settings.ts ├── ordersActions.ts ├── scenes.ts ├── start.ts └── validations.ts ├── db_connect.ts ├── docs ├── FAQ.en.md ├── FAQ.es.md ├── INSTALL.es.md ├── INSTALL.md └── images │ ├── bot_continuar.jpg │ ├── bot_tomar_oferta.jpg │ ├── cantidad.jpg │ ├── compra_exiosa.jpg │ ├── confirmar_envio.png │ ├── copiar_factura.jpg │ ├── crear_factura.jpg │ ├── factura.jpg │ ├── fiatsent.jpg │ ├── oferta.jpg │ ├── pagar.jpg │ ├── polar.jpg │ ├── polarVariables.jpg │ ├── release.png │ ├── solicitud.jpg │ ├── solicitud_de_pago.jpg │ ├── telegram.jpg │ ├── telegram_bot.jpg │ ├── tomar_orden.jpg │ └── tomar_orden_venta.jpg ├── images ├── Ant.png ├── Aquarium.png ├── Badger.png ├── Bat Face.png ├── Bear.png ├── Beaver.png ├── Bee.png ├── Bird.png ├── Bug.png ├── Bull.png ├── Bumblebee.png ├── Butterfly.png ├── Cat Footprint.png ├── Cat.png ├── Caterpillar.png ├── Chicken.png ├── Clown Fish.png ├── Corgi.png ├── Cow.png ├── Crab.png ├── Deer.png ├── Dinosaur.png ├── Dog Park.png ├── Dog.png ├── Dolphin.png ├── Dragonfly.png ├── Duck.png ├── Elephant.png ├── Falcon.png ├── Fish Food.png ├── Fish.png ├── Fly.png ├── Frog.png ├── Giraffe.png ├── Gorilla.png ├── Grasshopper.png ├── Honeybadger.png ├── Hornet Hive.png ├── Hornet.png ├── Horse.png ├── Hummingbird.png ├── Insect.png ├── Kangaroo.png ├── Kiwi Bird.png ├── Ladybird.png ├── Leopard.png ├── Lion.png ├── Llama.png ├── Mite.png ├── Mosquito.png ├── Octopus.png ├── Panda.png ├── Pig With Lipstick.png ├── Pig.png ├── Prawn.png ├── Puffin Bird.png ├── Rabbit.png ├── Rhinoceros.png ├── Seahorse.png ├── Shark.png ├── Sheep.png ├── Snail.png ├── Spider.png ├── Starfish.png ├── Stork.png ├── Tentacles.png ├── Turtle.png ├── Unicorn.png ├── Wasp.png ├── Whale.png └── Wolf.png ├── jobs ├── calculate_community_earnings.ts ├── cancel_orders.ts ├── check_solvers.ts ├── communities.ts ├── delete_published_orders.ts ├── index.ts ├── node_info.ts └── pending_payments.ts ├── ln ├── connect.ts ├── hold_invoice.ts ├── index.ts ├── info.ts ├── pay_request.ts ├── resubscribe_invoices.ts ├── subscribe_invoice.ts └── subscribe_probe.ts ├── lnurl └── lnurl-pay.ts ├── locales ├── de.yaml ├── en.yaml ├── es.yaml ├── fa.yaml ├── fr.yaml ├── it.yaml ├── ko.yaml ├── pt.yaml ├── ru.yaml └── uk.yaml ├── logger.ts ├── logo-600.png ├── models ├── block.ts ├── community.ts ├── config.ts ├── dispute.ts ├── index.ts ├── indexes.ts ├── order.ts ├── pending_payment.ts └── user.ts ├── package.json ├── tests ├── bot │ ├── bot.spec.ts │ ├── mocks │ │ ├── currenciesResponse.ts │ │ └── languagesResponse.ts │ ├── modules │ │ └── dispute │ │ │ └── messages.ts │ └── validation.spec.ts └── ln │ ├── lightning.spec.ts │ └── mocks │ └── lightningResponse.ts ├── tsconfig.json ├── tsconfig.test.json └── util ├── communityHelper.ts ├── errors.ts ├── fiat.json ├── fiatModel.ts ├── imageCache.ts ├── index.ts ├── languages.json └── languagesModel.ts /.do/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/.do/app.yaml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env-sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/.env-sample -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/code-linter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/.github/workflows/code-linter.yaml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/integrate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/.github/workflows/integrate.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | .github 2 | *.md -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/.prettierrc -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/AGENTS.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DEPLOY_DIGITALOCEAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/DEPLOY_DIGITALOCEAN.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/README.md -------------------------------------------------------------------------------- /app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/app.ts -------------------------------------------------------------------------------- /bot/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/bot/commands.ts -------------------------------------------------------------------------------- /bot/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/bot/index.ts -------------------------------------------------------------------------------- /bot/messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/bot/messages.ts -------------------------------------------------------------------------------- /bot/middleware/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/bot/middleware/commands.ts -------------------------------------------------------------------------------- /bot/middleware/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/bot/middleware/index.ts -------------------------------------------------------------------------------- /bot/middleware/stage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/bot/middleware/stage.ts -------------------------------------------------------------------------------- /bot/middleware/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/bot/middleware/user.ts -------------------------------------------------------------------------------- /bot/modules/block/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/bot/modules/block/commands.ts -------------------------------------------------------------------------------- /bot/modules/block/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/bot/modules/block/index.ts -------------------------------------------------------------------------------- /bot/modules/block/messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/bot/modules/block/messages.ts -------------------------------------------------------------------------------- /bot/modules/community/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/bot/modules/community/actions.ts -------------------------------------------------------------------------------- /bot/modules/community/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/bot/modules/community/commands.ts -------------------------------------------------------------------------------- /bot/modules/community/communityContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/bot/modules/community/communityContext.ts -------------------------------------------------------------------------------- /bot/modules/community/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/bot/modules/community/index.ts -------------------------------------------------------------------------------- /bot/modules/community/messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/bot/modules/community/messages.ts -------------------------------------------------------------------------------- /bot/modules/community/scenes.communityAdmin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/bot/modules/community/scenes.communityAdmin.ts -------------------------------------------------------------------------------- /bot/modules/community/scenes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/bot/modules/community/scenes.ts -------------------------------------------------------------------------------- /bot/modules/dispute/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/bot/modules/dispute/actions.ts -------------------------------------------------------------------------------- /bot/modules/dispute/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/bot/modules/dispute/commands.ts -------------------------------------------------------------------------------- /bot/modules/dispute/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/bot/modules/dispute/index.ts -------------------------------------------------------------------------------- /bot/modules/dispute/messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/bot/modules/dispute/messages.ts -------------------------------------------------------------------------------- /bot/modules/events/community.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/bot/modules/events/community.ts -------------------------------------------------------------------------------- /bot/modules/events/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/bot/modules/events/index.ts -------------------------------------------------------------------------------- /bot/modules/events/orders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/bot/modules/events/orders.ts -------------------------------------------------------------------------------- /bot/modules/language/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/bot/modules/language/actions.ts -------------------------------------------------------------------------------- /bot/modules/language/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/bot/modules/language/commands.ts -------------------------------------------------------------------------------- /bot/modules/language/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/bot/modules/language/index.ts -------------------------------------------------------------------------------- /bot/modules/language/messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/bot/modules/language/messages.ts -------------------------------------------------------------------------------- /bot/modules/nostr/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/bot/modules/nostr/commands.ts -------------------------------------------------------------------------------- /bot/modules/nostr/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/bot/modules/nostr/config.ts -------------------------------------------------------------------------------- /bot/modules/nostr/events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/bot/modules/nostr/events.ts -------------------------------------------------------------------------------- /bot/modules/nostr/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/bot/modules/nostr/index.ts -------------------------------------------------------------------------------- /bot/modules/nostr/lib.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/bot/modules/nostr/lib.ts -------------------------------------------------------------------------------- /bot/modules/orders/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/bot/modules/orders/commands.ts -------------------------------------------------------------------------------- /bot/modules/orders/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/bot/modules/orders/index.ts -------------------------------------------------------------------------------- /bot/modules/orders/messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/bot/modules/orders/messages.ts -------------------------------------------------------------------------------- /bot/modules/orders/scenes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/bot/modules/orders/scenes.ts -------------------------------------------------------------------------------- /bot/modules/orders/takeOrder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/bot/modules/orders/takeOrder.ts -------------------------------------------------------------------------------- /bot/modules/user/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/bot/modules/user/index.ts -------------------------------------------------------------------------------- /bot/modules/user/scenes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/bot/modules/user/scenes/index.ts -------------------------------------------------------------------------------- /bot/modules/user/scenes/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/bot/modules/user/scenes/settings.ts -------------------------------------------------------------------------------- /bot/ordersActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/bot/ordersActions.ts -------------------------------------------------------------------------------- /bot/scenes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/bot/scenes.ts -------------------------------------------------------------------------------- /bot/start.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/bot/start.ts -------------------------------------------------------------------------------- /bot/validations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/bot/validations.ts -------------------------------------------------------------------------------- /db_connect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/db_connect.ts -------------------------------------------------------------------------------- /docs/FAQ.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/docs/FAQ.en.md -------------------------------------------------------------------------------- /docs/FAQ.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/docs/FAQ.es.md -------------------------------------------------------------------------------- /docs/INSTALL.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/docs/INSTALL.es.md -------------------------------------------------------------------------------- /docs/INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/docs/INSTALL.md -------------------------------------------------------------------------------- /docs/images/bot_continuar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/docs/images/bot_continuar.jpg -------------------------------------------------------------------------------- /docs/images/bot_tomar_oferta.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/docs/images/bot_tomar_oferta.jpg -------------------------------------------------------------------------------- /docs/images/cantidad.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/docs/images/cantidad.jpg -------------------------------------------------------------------------------- /docs/images/compra_exiosa.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/docs/images/compra_exiosa.jpg -------------------------------------------------------------------------------- /docs/images/confirmar_envio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/docs/images/confirmar_envio.png -------------------------------------------------------------------------------- /docs/images/copiar_factura.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/docs/images/copiar_factura.jpg -------------------------------------------------------------------------------- /docs/images/crear_factura.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/docs/images/crear_factura.jpg -------------------------------------------------------------------------------- /docs/images/factura.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/docs/images/factura.jpg -------------------------------------------------------------------------------- /docs/images/fiatsent.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/docs/images/fiatsent.jpg -------------------------------------------------------------------------------- /docs/images/oferta.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/docs/images/oferta.jpg -------------------------------------------------------------------------------- /docs/images/pagar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/docs/images/pagar.jpg -------------------------------------------------------------------------------- /docs/images/polar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/docs/images/polar.jpg -------------------------------------------------------------------------------- /docs/images/polarVariables.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/docs/images/polarVariables.jpg -------------------------------------------------------------------------------- /docs/images/release.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/docs/images/release.png -------------------------------------------------------------------------------- /docs/images/solicitud.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/docs/images/solicitud.jpg -------------------------------------------------------------------------------- /docs/images/solicitud_de_pago.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/docs/images/solicitud_de_pago.jpg -------------------------------------------------------------------------------- /docs/images/telegram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/docs/images/telegram.jpg -------------------------------------------------------------------------------- /docs/images/telegram_bot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/docs/images/telegram_bot.jpg -------------------------------------------------------------------------------- /docs/images/tomar_orden.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/docs/images/tomar_orden.jpg -------------------------------------------------------------------------------- /docs/images/tomar_orden_venta.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/docs/images/tomar_orden_venta.jpg -------------------------------------------------------------------------------- /images/Ant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/images/Ant.png -------------------------------------------------------------------------------- /images/Aquarium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/images/Aquarium.png -------------------------------------------------------------------------------- /images/Badger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/images/Badger.png -------------------------------------------------------------------------------- /images/Bat Face.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/images/Bat Face.png -------------------------------------------------------------------------------- /images/Bear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/images/Bear.png -------------------------------------------------------------------------------- /images/Beaver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/images/Beaver.png -------------------------------------------------------------------------------- /images/Bee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/images/Bee.png -------------------------------------------------------------------------------- /images/Bird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/images/Bird.png -------------------------------------------------------------------------------- /images/Bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/images/Bug.png -------------------------------------------------------------------------------- /images/Bull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/images/Bull.png -------------------------------------------------------------------------------- /images/Bumblebee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/images/Bumblebee.png -------------------------------------------------------------------------------- /images/Butterfly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/images/Butterfly.png -------------------------------------------------------------------------------- /images/Cat Footprint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/images/Cat Footprint.png -------------------------------------------------------------------------------- /images/Cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/images/Cat.png -------------------------------------------------------------------------------- /images/Caterpillar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/images/Caterpillar.png -------------------------------------------------------------------------------- /images/Chicken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/images/Chicken.png -------------------------------------------------------------------------------- /images/Clown Fish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/images/Clown Fish.png -------------------------------------------------------------------------------- /images/Corgi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/images/Corgi.png -------------------------------------------------------------------------------- /images/Cow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/images/Cow.png -------------------------------------------------------------------------------- /images/Crab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/images/Crab.png -------------------------------------------------------------------------------- /images/Deer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/images/Deer.png -------------------------------------------------------------------------------- /images/Dinosaur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/images/Dinosaur.png -------------------------------------------------------------------------------- /images/Dog Park.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/images/Dog Park.png -------------------------------------------------------------------------------- /images/Dog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/images/Dog.png -------------------------------------------------------------------------------- /images/Dolphin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/images/Dolphin.png -------------------------------------------------------------------------------- /images/Dragonfly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/images/Dragonfly.png -------------------------------------------------------------------------------- /images/Duck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/images/Duck.png -------------------------------------------------------------------------------- /images/Elephant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/images/Elephant.png -------------------------------------------------------------------------------- /images/Falcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/images/Falcon.png -------------------------------------------------------------------------------- /images/Fish Food.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/images/Fish Food.png -------------------------------------------------------------------------------- /images/Fish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/images/Fish.png -------------------------------------------------------------------------------- /images/Fly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/images/Fly.png -------------------------------------------------------------------------------- /images/Frog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/images/Frog.png -------------------------------------------------------------------------------- /images/Giraffe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/images/Giraffe.png -------------------------------------------------------------------------------- /images/Gorilla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/images/Gorilla.png -------------------------------------------------------------------------------- /images/Grasshopper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/images/Grasshopper.png -------------------------------------------------------------------------------- /images/Honeybadger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/images/Honeybadger.png -------------------------------------------------------------------------------- /images/Hornet Hive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/images/Hornet Hive.png -------------------------------------------------------------------------------- /images/Hornet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/images/Hornet.png -------------------------------------------------------------------------------- /images/Horse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/images/Horse.png -------------------------------------------------------------------------------- /images/Hummingbird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/images/Hummingbird.png -------------------------------------------------------------------------------- /images/Insect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/images/Insect.png -------------------------------------------------------------------------------- /images/Kangaroo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/images/Kangaroo.png -------------------------------------------------------------------------------- /images/Kiwi Bird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/images/Kiwi Bird.png -------------------------------------------------------------------------------- /images/Ladybird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/images/Ladybird.png -------------------------------------------------------------------------------- /images/Leopard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/images/Leopard.png -------------------------------------------------------------------------------- /images/Lion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/images/Lion.png -------------------------------------------------------------------------------- /images/Llama.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/images/Llama.png -------------------------------------------------------------------------------- /images/Mite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/images/Mite.png -------------------------------------------------------------------------------- /images/Mosquito.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/images/Mosquito.png -------------------------------------------------------------------------------- /images/Octopus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/images/Octopus.png -------------------------------------------------------------------------------- /images/Panda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/images/Panda.png -------------------------------------------------------------------------------- /images/Pig With Lipstick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/images/Pig With Lipstick.png -------------------------------------------------------------------------------- /images/Pig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/images/Pig.png -------------------------------------------------------------------------------- /images/Prawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/images/Prawn.png -------------------------------------------------------------------------------- /images/Puffin Bird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/images/Puffin Bird.png -------------------------------------------------------------------------------- /images/Rabbit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/images/Rabbit.png -------------------------------------------------------------------------------- /images/Rhinoceros.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/images/Rhinoceros.png -------------------------------------------------------------------------------- /images/Seahorse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/images/Seahorse.png -------------------------------------------------------------------------------- /images/Shark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/images/Shark.png -------------------------------------------------------------------------------- /images/Sheep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/images/Sheep.png -------------------------------------------------------------------------------- /images/Snail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/images/Snail.png -------------------------------------------------------------------------------- /images/Spider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/images/Spider.png -------------------------------------------------------------------------------- /images/Starfish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/images/Starfish.png -------------------------------------------------------------------------------- /images/Stork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/images/Stork.png -------------------------------------------------------------------------------- /images/Tentacles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/images/Tentacles.png -------------------------------------------------------------------------------- /images/Turtle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/images/Turtle.png -------------------------------------------------------------------------------- /images/Unicorn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/images/Unicorn.png -------------------------------------------------------------------------------- /images/Wasp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/images/Wasp.png -------------------------------------------------------------------------------- /images/Whale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/images/Whale.png -------------------------------------------------------------------------------- /images/Wolf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/images/Wolf.png -------------------------------------------------------------------------------- /jobs/calculate_community_earnings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/jobs/calculate_community_earnings.ts -------------------------------------------------------------------------------- /jobs/cancel_orders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/jobs/cancel_orders.ts -------------------------------------------------------------------------------- /jobs/check_solvers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/jobs/check_solvers.ts -------------------------------------------------------------------------------- /jobs/communities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/jobs/communities.ts -------------------------------------------------------------------------------- /jobs/delete_published_orders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/jobs/delete_published_orders.ts -------------------------------------------------------------------------------- /jobs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/jobs/index.ts -------------------------------------------------------------------------------- /jobs/node_info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/jobs/node_info.ts -------------------------------------------------------------------------------- /jobs/pending_payments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/jobs/pending_payments.ts -------------------------------------------------------------------------------- /ln/connect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/ln/connect.ts -------------------------------------------------------------------------------- /ln/hold_invoice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/ln/hold_invoice.ts -------------------------------------------------------------------------------- /ln/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/ln/index.ts -------------------------------------------------------------------------------- /ln/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/ln/info.ts -------------------------------------------------------------------------------- /ln/pay_request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/ln/pay_request.ts -------------------------------------------------------------------------------- /ln/resubscribe_invoices.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/ln/resubscribe_invoices.ts -------------------------------------------------------------------------------- /ln/subscribe_invoice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/ln/subscribe_invoice.ts -------------------------------------------------------------------------------- /ln/subscribe_probe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/ln/subscribe_probe.ts -------------------------------------------------------------------------------- /lnurl/lnurl-pay.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/lnurl/lnurl-pay.ts -------------------------------------------------------------------------------- /locales/de.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/locales/de.yaml -------------------------------------------------------------------------------- /locales/en.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/locales/en.yaml -------------------------------------------------------------------------------- /locales/es.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/locales/es.yaml -------------------------------------------------------------------------------- /locales/fa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/locales/fa.yaml -------------------------------------------------------------------------------- /locales/fr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/locales/fr.yaml -------------------------------------------------------------------------------- /locales/it.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/locales/it.yaml -------------------------------------------------------------------------------- /locales/ko.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/locales/ko.yaml -------------------------------------------------------------------------------- /locales/pt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/locales/pt.yaml -------------------------------------------------------------------------------- /locales/ru.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/locales/ru.yaml -------------------------------------------------------------------------------- /locales/uk.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/locales/uk.yaml -------------------------------------------------------------------------------- /logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/logger.ts -------------------------------------------------------------------------------- /logo-600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/logo-600.png -------------------------------------------------------------------------------- /models/block.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/models/block.ts -------------------------------------------------------------------------------- /models/community.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/models/community.ts -------------------------------------------------------------------------------- /models/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/models/config.ts -------------------------------------------------------------------------------- /models/dispute.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/models/dispute.ts -------------------------------------------------------------------------------- /models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/models/index.ts -------------------------------------------------------------------------------- /models/indexes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/models/indexes.ts -------------------------------------------------------------------------------- /models/order.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/models/order.ts -------------------------------------------------------------------------------- /models/pending_payment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/models/pending_payment.ts -------------------------------------------------------------------------------- /models/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/models/user.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/package.json -------------------------------------------------------------------------------- /tests/bot/bot.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/tests/bot/bot.spec.ts -------------------------------------------------------------------------------- /tests/bot/mocks/currenciesResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/tests/bot/mocks/currenciesResponse.ts -------------------------------------------------------------------------------- /tests/bot/mocks/languagesResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/tests/bot/mocks/languagesResponse.ts -------------------------------------------------------------------------------- /tests/bot/modules/dispute/messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/tests/bot/modules/dispute/messages.ts -------------------------------------------------------------------------------- /tests/bot/validation.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/tests/bot/validation.spec.ts -------------------------------------------------------------------------------- /tests/ln/lightning.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/tests/ln/lightning.spec.ts -------------------------------------------------------------------------------- /tests/ln/mocks/lightningResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/tests/ln/mocks/lightningResponse.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/tsconfig.test.json -------------------------------------------------------------------------------- /util/communityHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/util/communityHelper.ts -------------------------------------------------------------------------------- /util/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/util/errors.ts -------------------------------------------------------------------------------- /util/fiat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/util/fiat.json -------------------------------------------------------------------------------- /util/fiatModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/util/fiatModel.ts -------------------------------------------------------------------------------- /util/imageCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/util/imageCache.ts -------------------------------------------------------------------------------- /util/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/util/index.ts -------------------------------------------------------------------------------- /util/languages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/util/languages.json -------------------------------------------------------------------------------- /util/languagesModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnp2pBot/bot/HEAD/util/languagesModel.ts --------------------------------------------------------------------------------